script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 44395 #test discharge for which the notebook will definitely work
shot_no = 47571
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([6464190.925575106, 6563958.333393243, 6666953.34078326, 6804011.492530334, 6829061.51884679, 6924129.590410255, 6947013.633102521, 6950536.472710542, 6983460.24564524, 7032473.826939501, 7038746.752329487, 7040562.976684806, 7066104.529185352, 7093632.8125, 7135716.103020287, 7187870.626827805, 7227646.842362041, 7298480.254595476, 7300244.648441611, 7350892.697457389, 7368607.507809716, 7369257.950040537, 7379497.957699641, 7380278.161576079, 7400992.419571591, 7404487.974012743, 7412130.90229884, 7439956.980140814, 7456263.15140471, 7458959.606102917, 7470291.200700005, 7475013.616598764, 7480063.4731755415, 7482006.340742057, 7482764.089219326, 7490544.213326281, 7502996.209618222, 7505890.976600171, 7533409.848661835, 7534468.2379662255, 7546412.380634997, 7549059.272755857, 7551682.388730236, 7554430.567238615, 7555262.831672282, 7575368.383473061, 7582866.28538294, 7583791.266029902, 7585127.688577799, 7587437.190816154, 7591675.104819252, 7596733.802024824, 7601535.013395047, 7610962.359066334, 7618065.87791745, 7619631.6047966145, 7621789.149200012, 7622437.254908893, 7623625.835078365, 7637196.987669044, 7638525.683074412, 7644682.482528479, 7655530.427948467, 7664414.840981656, 7665114.175447033, 7674783.189396079, 7683167.620456753, 7685572.447244111, 7690085.00559724, 7690624.004223098, 7690660.91888563, 7691920.508345139, 7691970.288941388, 7704637.15390849, 7705235.029481951, 7705436.515858415, 7705982.112197326, 7706896.7621153025, 7708547.914713594, 7711786.866068608, 7711842.443934833, 7712452.7115259, 7712788.716045873, 7713770.313766701, 7728081.680182103, 7739719.870231165, 7740119.036523134, 7742424.899731779, 7742878.590505812, 7743738.215296898, 7746445.434283993, 7748208.513127745, 7748664.941475474, 7759931.159240875, 7760296.300788229, 7768917.399631657, 7801303.225378918, 7801927.949448999, 7804024.5938409865, 7804083.911899066, 7805250.535814746, 7806085.693588076, 7814775.007993313, 7816840.225339743, 7835200.699962041, 7837434.845451413, 7838141.224746761, 7838490.607500274, 7839853.409468111, 7845919.481595013, 7846223.617913614, 7849742.816774006, 7854850.5105366865, 7857497.461485415, 7859004.33474731, 7859672.480539606, 7861699.022982824, 7862046.704636173, 7864518.672949773, 7867309.89002515, 7883735.696178458, 7885288.910677694, 7888864.495904038, 7889102.893733655, 7889116.937099867, 7889133.708879974, 7889575.035223519, 7891649.26800963, 7897086.942603537, 7899421.448554324, 7910360.059891955, 7911582.5984001225, 7915117.961061422, 7920001.074285163, 7924957.696444037, 7925605.10733588, 7926648.992891481, 7926685.6315892115, 7927926.5625, 7928297.909326942, 7929040.827995593, 7929490.641384526, 7929526.705971211, 7931400.016727273, 7931442.5979079055, 7931655.064602685, 7931908.062009153, 7932896.399231869, 7932982.633855205, 7935273.970182122, 7937786.498049568, 7940236.590067307, 7940305.5570579795, 7940562.144554396, 7941079.623641618, 7942827.160758197, 7943566.944819962, 7944834.518403845, 7945306.035366201, 7946387.348951888, 7947762.764692135, 7948446.09346335, 7948720.029985353, 7948933.508675484, 7949249.3457047995, 7949792.1875, 7950053.005290399, 7955601.909234222, 7964845.581662856, 7967168.458705395, 7967561.471319245, 7967910.356390301, 7969256.218264374, 7971682.869859228, 7971821.656786011, 7972336.109913552, 7998169.302319084, 7998627.149616535, 7999334.167899464, 8000929.30812298, 8001088.892895568, 8001644.174494994, 8002531.354318749, 8003733.285496329, 8003772.4751788825, 8004314.451655923, 8008937.006374128, 8011181.472481353, 8016241.047083499, 8018531.646770369, 8020019.057452117, 8020427.835276267, 8020764.932551091, 8024283.673338855, 8024517.0839264365, 8026031.416790968, 8026212.416081538, 8026269.075689203, 8027079.88206555, 8027879.898612558, 8029737.340451258, 8030592.767861878, 8031127.151642853, 8032463.959179758, 8032633.116379364, 8032870.133998978, 8035818.250873203, 8038860.738550316, 8047224.1230237745, 8048705.555701038, 8049975.902774341, 8049981.9469055, 8050560.4471536875, 8050999.299581837, 8053151.744069595, 8054203.96964141, 8054267.813638206, 8055067.480048481, 8056154.572877492, 8056790.077070495, 8058424.63056379, 8059942.480332006, 8060915.102307684, 8065062.193128054, 8076412.254011427, 8078149.249682989, 8078606.427680843, 8084615.093180933, 8089782.8125, 8090411.828639828, 8097960.153565765, 8108519.34775388, 8115515.805009265, 8116474.398623819, 8118803.52741529, 8123934.5304382825, 8125063.602166785, 8126776.903590861, 8128667.148477131, 8130698.623653943, 8134704.879041904, 8137076.538398128, 8145762.165685576, 8148667.197903697, 8150333.509434983, 8159327.819531488, 8159668.067653415, 8164772.030820912, 8179152.740545674, 8181196.579129788, 8181665.916601558, 8183127.49937793, 8184956.375943476, 8185242.085669251, 8185431.912964476, 8189441.016561441, 8194922.982255195, 8203421.442156925, 8204223.732114163, 8213925.895560858, 8216946.63481964, 8220455.651022192, 8224889.519583094, 8242672.8169552395, 8243519.944144029, 8244288.589645261, 8244306.739413869, 8244931.548397459, 8247710.151426718, 8248602.200572883, 8249525.0, 8249603.201717038, 8251612.101594565, 8252477.329874493, 8255037.08820541, 8273100.246012467, 8273738.128815259, 8274156.031388568, 8275069.388825308, 8275445.979608681, 8276363.518659283, 8276485.463028484, 8276653.045399513, 8276924.824400582, 8286136.944351151, 8286223.217593782, 8287898.864480796, 8289294.646290411, 8289424.817904094, 8291390.618398566, 8293183.520862225, 8293366.7212179685, 8300848.256594203, 8302622.40029135, 8303328.083300212, 8303626.878115582, 8303775.875579262, 8304277.543544814, 8305386.512700698, 8309357.536063939, 8309807.119081824, 8313352.373836482, 8315048.258194173, 8317883.742659552, 8317931.543438776, 8318268.163030532, 8320402.381517155, 8320909.691505261, 8321314.53040675, 8321351.433262985, 8322414.6810359, 8324177.080809678, 8324210.288598626, 8331097.005290834, 8340251.114147335, 8347249.870600018, 8357222.017462457, 8358154.682250659, 8367308.814336153, 8372868.076941428, 8379036.182218682, 8379241.128905263, 8380537.844706571, 8381062.086180892, 8390235.76198768, 8392735.080190904, 8412849.90861424, 8427795.63357948, 8430656.670344813, 8464925.24325625, 8467402.995027836, 8468049.838847874, 8470763.185002917, 8471141.331530808, 8471953.754128465, 8472374.46344071, 8473567.733006498, 8474241.000696106, 8475206.194267852, 8478040.07824991, 8481256.512415575, 8486744.875278791, 8490346.998456206, 8496777.269340407, 8496936.409701558, 8497540.74098844, 8499938.485825868, 8501198.112439258, 8501845.529066823, 8502440.473110141, 8503905.312803956, 8503913.17564518, 8504199.086120171, 8504752.726605931, 8505926.592828779, 8507116.904017847, 8507713.111625528, 8529674.031073052, 8533315.90961168, 8533982.556637978, 8535753.482876645, 8535934.427839618, 8536411.231555982, 8536660.413977513, 8539327.542401848, 8541685.691169152, 8552387.643152516, 8554197.59830289, 8554818.898866426, 8556170.48028743, 8557210.912207576, 8557667.824917324, 8558121.94656427, 8560696.274585245, 8561040.849999405, 8562175.99877687, 8562214.550350275, 8562241.7368241, 8589493.50727618, 8592439.29316107, 8598115.0635144, 8601090.910885978, 8603081.808725642, 8603347.824977232, 8604395.44274798, 8604506.875883654, 8604553.19644682, 8605601.3033042, 8605960.60983313, 8606108.255361414, 8608459.006490111, 8608618.393224495, 8608954.904505946, 8609234.907038635, 8609354.460603107, 8609474.7140283, 8609691.820314022, 8610228.434026508, 8611479.814256702, 8611546.167827854, 8611635.110979559, 8611786.161466453, 8612225.82146002, 8612440.044260534, 8612998.437332006, 8613097.965910664, 8613297.489166148, 8613375.728519425, 8614017.2971302, 8614157.565181294, 8614619.40708584, 8614730.96058566, 8615786.190803282, 8616342.388312433, 8616561.551528791, 8616563.678684508, 8618338.135944506, 8618649.884887325, 8618877.177118383, 8618886.713036323, 8619077.912741099, 8619086.972787544, 8619260.583698645, 8619584.274065226, 8619586.508869007, 8619701.869383678, 8619799.80128689, 8619891.07801613, 8620224.639562188, 8620354.832590366, 8620624.310725758, 8620767.814189741, 8620991.72474978, 8621032.768114023, 8621043.591843178, 8621078.56748467, 8621131.38501887, 8621196.801687596, 8621530.759235403, 8624304.386709763, 8624595.455694778, 8625260.743286056, 8627171.98896024, 8627188.242138293, 8627208.363621714, 8628452.959616128, 8628490.625, 8629821.949220093, 8630580.98035689, 8630762.901256714, 8631231.362474216, 8631600.904651716, 8631636.355542896, 8631860.931210168, 8632400.848029932, 8632418.412132187, 8633087.511608955, 8633180.608941384, 8633226.819242448, 8633229.646410601, 8633388.173863161, 8633585.351200163, 8633999.913329056, 8634033.87347852, 8634072.037751198, 8634264.393933225, 8634531.604347156, 8635278.847056806, 8635742.643406862, 8638922.831930988, 8641492.515933184, 8642410.145401793, 8642537.465861633, 8642696.23591133, 8643122.635450067, 8644195.647530288, 8644363.809863612, 8644581.072825044, 8644736.645247228, 8645036.05099874, 8645045.77859577, 8645201.004272416, 8645736.440469429, 8645849.201186089, 8645962.17769138, 8646299.576191673, 8646360.809812436, 8646456.289391048, 8646458.537885217, 8646586.149299547, 8647382.130919514, 8647596.576284759, 8647685.938524444, 8647907.104325835, 8648246.853375386, 8648575.662987418, 8648981.411608776, 8649059.403143227, 8649993.52237947, 8650196.21612094, 8650395.472117208, 8655884.228964472, 8666027.748106943, 8668959.291801313, 8669154.944731973, 8670489.506531648, 8670832.48522624, 8670838.40804592, 8672079.28333827, 8672160.587768529, 8672266.695493912, 8672341.823315453, 8672713.078794941, 8672745.3125, 8675584.807148218, 8676001.770816075, 8679543.514187533, 8679702.998457177, 8680566.16595668, 8680568.488942143, 8682340.46707104, 8682721.674194882, 8682895.837575039, 8683993.20383387, 8684317.651470069, 8690180.203650977, 8694063.51743602, 8694925.30714421, 8694927.059464322, 8695451.36529836, 8695609.101112163, 8701638.18573207, 8705167.056927297, 8716580.055236489, 8717047.398709998, 8722563.552743904, 8723098.472231003, 8724467.686922029, 8724595.864595292, 8724678.9039194, 8724732.04522576, 8724785.497913972, 8725878.745712848, 8726150.345318029, 8728230.227102313, 8740813.36602159, 8743411.513811087, 8745791.07484729, 8751411.25859974, 8754318.75, 8755305.692095619, 8756257.219270416, 8760215.89083349, 8762216.214164235, 8762337.04742425, 8762674.279657504, 8762919.830936618, 8763237.981464028, 8763253.921866, 8764057.36972822, 8765587.558140045, 8787918.03677669, 8788324.562789362, 8833220.064596085, 8889721.875, 8910199.094792485, 8914059.375, 8930610.898290409, 8932909.010819491, 8934143.878281182, 8943331.895934071, 8944714.571410967, 8954370.644315794, 8954432.400355782, 8954775.073634982, 8954905.845136076, 8955778.076244798, 8956557.138878917, 8962039.0625, 8966837.356278049, 8967045.060692517, 8992515.644458381, 9070891.831041949, 9091453.125, 9091465.41420902, 9091492.1875, 9095391.692588944, 9095681.669438247, 9096922.74372676, 9100657.114657328, 9101200.580459349, 9103144.421818182, 9103241.650803633, 9103321.29479806, 9103420.063742273, 9103860.889033152, 9104020.675142683, 9104075.575230876, 9104149.91629909, 9104206.131431593, 9104217.925558774, 9104242.561208189, 9104315.853571106, 9104489.386088066, 9104752.85776232, 9105293.231747448, 9105457.283614412, 9106036.840977486, 9106239.967362937, 9106296.21824584, 9106605.347989189, 9106856.369238038, 9108760.445774537, 9109486.823183233, 9109982.359604722, 9110667.775629828, 9110883.648041803, 9110958.301150545, 9120749.642756546, 9121772.44557265, 9123788.38574457, 9124108.232481271, 9124224.211906476, 9124429.58079953, 9124434.543832438, 9124525.948382244, 9124548.128971163, 9124832.088479428, 9125365.684475895, 9125627.847514901, 9125648.029392848, 9125955.97423874, 9126559.244678488, 9126755.37499965, 9126917.485657444, 9126923.065678256, 9126936.219767695, 9126954.125550162, 9127114.270964446, 9127521.742593119, 9127635.404713523, 9127679.71069185, 9128339.311608203, 9128678.617832799, 9128837.323728614, 9128838.726039676, 9129031.699722454, 9129075.397924425, 9129114.191145824, 9129613.220493823, 9129939.0625, 9130355.808080724, 9130525.471266255, 9132774.353893925, 9133953.125, 9140393.654628685, 9141899.599665498, 9144561.092176927, 9144862.038178053, 9144862.434326425, 9146355.548765197, 9146662.247716699, 9148063.571799522, 9148995.644227983, 9149502.9729773, 9149689.844784517, 9151163.718590258, 9152567.980411341, 9155359.374971803, 9156001.256173134, 9176312.924311997, 9181045.985914465, 9184160.756653741, 9213255.1629882, 9243181.846790941, 9247379.6875, 9249735.71906238, 9255253.671484234, 9275330.834319955, 9275415.14344379, 9275664.3996733, 9276466.233853864, 9278113.075504161, 9278121.653229559, 9283330.645098574, 9285229.255143993, 9288322.678041166, 9294654.450684603, 9297690.359645706, 9298551.586662024, 9299411.683485825, 9303183.722282004, 9314671.972189222, 9315744.897575827, 9316751.204654071, 9318538.492190156, 9318697.895615283, 9318981.06531484, 9319574.576236118, 9319638.025382396, 9319726.00008295, 9321340.197032942, 9321363.795684092, 9321410.32063086, 9322117.633980863, 9322460.311900502, 9322638.166864594, 9323226.608950766, 9325200.768192308, 9327257.624077927, 9328380.063861785, 9329329.620210322, 9330100.394447459, 9331192.39029005, 9332079.8015632, 9332896.902536588, 9337316.932872504, 9338550.255855767, 9339850.206063006, 9340066.42381982, 9342526.153605321, 9369386.041419892, 9372299.5023563, 9373704.247531004, 9375346.033864714, 9386616.529662084, 9389091.813536089, 9390743.706465868, 9391409.900348226, 9391853.125, 9394220.894120691, 9405215.252486616, 9409745.923984326, 9427773.372316739, 9428606.166856918, 9428668.032158565, 9429339.153252084, 9429918.118937816, 9430616.724890893, 9442377.58969681, 9451078.123942113, 9453513.333444247, 9456357.098774446, 9456638.891312802, 9462193.007979877, 9466134.654899517, 9468437.203122294, 9471910.087006645, 9472327.688466905, 9474091.606449988, 9480546.352344764, 9481503.848745579, 9483006.539359502, 9484325.028058507, 9485266.745560868, 9488417.956849698, 9488552.521086695, 9488603.858955417, 9488789.41554713, 9489949.430152997, 9490018.144521797, 9490032.01572092, 9490275.625190917, 9490686.63057361, 9492056.126915712, 9492779.212895915, 9493889.630331978, 9494013.304457126, 9494167.862743849, 9494401.911398368, 9494470.433352573, 9494625.785079276, 9494704.068400854, 9494796.516494475, 9494991.274590712, 9495451.659782154, 9495598.96342685, 9495919.13085164, 9495989.823169682, 9496046.036027296, 9496534.929198729, 9496735.843560638, 9497657.8125, 9498121.572510667, 9498262.599743716, 9501800.649882672, 9501858.76065911, 9502313.92082148, 9503290.162569879, 9503616.826569788, 9504461.827340584, 9504728.7912917, 9505515.625, 9505560.193205373, 9506001.787580451, 9506228.25285185, 9506843.571546204, 9509546.813980376, 9509876.57784982, 9510548.4375, 9512811.608491568, 9513173.86506572, 9515051.43653704, 9515209.199395591, 9515218.75, 9515468.707700057, 9515594.872178169, 9515774.826682063, 9515860.291981127, 9515927.978414122, 9516057.585423825, 9516423.92691486, 9517522.446481356, 9518950.927046802, 9521475.997176481, 9521967.588025773, 9522310.154160447, 9524580.96088635, 9524897.006120192, 9525072.632491082, 9525860.65589255, 9526224.40119277, 9526817.309478743, 9527247.649208248, 9527475.354749108, 9527647.65629116, 9527813.738481032, 9528249.761106968, 9528462.698447976, 9528541.621420445, 9528565.806280503, 9528660.479184529, 9529071.200638743, 9529125.116652599, 9529132.430795604, 9529214.0625, 9529475.160400886, 9530329.087463686, 9530466.778047414, 9531249.748605687, 9532312.968690893, 9533258.061512321, 9548598.895438515, 9549773.4375, 9550126.045636967, 9551702.956147274, 9558925.434321996, 9559092.750509286, 9560734.33021443, 9561427.908791402, 9561457.10685828, 9561612.993187523, 9561818.066753816, 9562166.473063322, 9562636.498415574, 9562657.68848947, 9566301.039972618, 9566802.346626021, 9567611.351906499, 9571182.724143155, 9572023.626534043, 9573740.542480676, 9574074.547792234, 9582334.943896119, 9585009.162365492, 9591739.590011865, 9597456.110857187, 9598854.063260684, 9600300.722318936, 9600410.57200785, 9601721.598100679, 9602893.165945359, 9603213.311837723, 9603222.876425156, 9605476.54060291, 9606537.346922422, 9607703.509672802, 9608834.64041334, 9609830.009572402, 9613145.967994725, 9633590.489450589, 9634321.02113413, 9634559.397956902, 9635314.409536293, 9635671.875, 9635901.928139327, 9635905.390293181, 9635928.119641883, 9636367.862757124, 9637357.8125, 9638891.022828503, 9639132.271216782, 9640158.987713516, 9640462.328312607, 9640563.656262634, 9640867.742259113, 9641275.105501683, 9641464.994317172, 9641886.364411991, 9642134.375, 9642257.147701384, 9642769.479774125, 9642902.612694016, 9643061.400963616, 9643174.605482832, 9643456.090007968, 9643456.181032673, 9643632.384108134, 9643722.113148183, 9643754.137733478, 9644181.955907878, 9644212.535863152, 9644334.422136629, 9644473.70765136, 9644616.56397789, 9644785.463655293, 9644858.12862357, 9644955.502213128, 9645087.203425841, 9645110.692684794, 9645466.699336665, 9646467.141985718, 9646596.432260519, 9647831.010630239, 9648288.589563642, 9648544.985313151, 9648569.613331981, 9648735.577689288, 9648802.254523583, 9648831.964203563, 9648860.477869377, 9648957.042850731, 9649061.699177738, 9649066.86362666, 9649219.974924902, 9649328.583600126, 9649431.354537098, 9649648.524255605, 9649687.640649632, 9649736.4936337, 9649828.538263738, 9649949.901589865, 9650002.200877227, 9650081.25, 9650138.261811843, 9650328.305193827, 9650382.475918135, 9650611.907865085, 9650886.598385304, 9650989.503295856, 9651089.0625, 9651116.909961239, 9651155.475591004, 9651231.25, 9651427.64498074, 9651451.060190191, 9651666.77403715, 9651696.849527657, 9651838.43030106, 9651861.78139774, 9651937.301775308, 9651972.686925871, 9652067.511774426, 9652072.893171135, 9652142.49165395, 9652312.082498847, 9652351.424078384, 9652370.663070709, 9652635.994360024, 9652636.43157395, 9652811.748679414, 9653057.221892886, 9653352.920464411, 9653493.190782564, 9653584.133846458, 9653820.957353726, 9653853.352617178, 9653976.749494588, 9653992.88095996, 9654267.733834095, 9654309.01344055, 9654371.713371025, 9654384.338183254, 9654404.602356078, 9654605.473205907, 9654749.685209524, 9654844.408048121, 9654931.383209191, 9654960.173254862, 9655047.59684201, 9655131.952338396, 9655150.486844359, 9655200.53636854, 9655248.4375, 9655372.453380343, 9655455.293867104, 9655560.950750234, 9655603.97900681, 9655614.654677996, 9655678.224322025, ...], [19.67850200543998, 19.742286237258597, 15.313771680983358, 7.8171258890091195, 5.744783094215319, 14.583926460896507, 22.22754772631114, 12.081802621966562, 6.183573336274594, 9.68393675653626, 16.380160483653498, 17.134038632419525, 23.035099710907687, 67.96138395543356, 7.78579070855248, 9.612121933631533, 8.269392910876341, 7.278954197753812, 5.319670365596779, 17.321420662185492, 10.682665397953176, 11.349719489602364, 13.38171065242979, 11.185362928006558, 6.524096425420381, 9.767174313153838, 42.1714396616089, 20.77759710315187, 12.32546823836608, 8.412690081320465, 5.744403599456248, 13.476692706239568, 16.184936931739585, 15.299035685927425, 8.300757673873013, 17.060319837337634, 6.9568785799619235, 5.41208766065022, 6.328956242761941, 7.427978991381751, 10.946120276236766, 14.56561560745717, 13.539786632805628, 7.955759119629995, 7.7277707874102735, 13.707091988161519, 7.86092734395741, 5.364377982805936, 5.590348001789917, 23.634135335872635, 11.295596331033837, 20.794764586216687, 18.099303081893495, 34.76895744467504, 16.001901595244963, 11.731588859294146, 5.946991615898016, 5.2835761276717434, 6.942519719000449, 15.389074652464442, 6.599779557597994, 6.436580130633598, 12.52283041158591, 5.429092601098175, 7.151461921744645, 16.60314251443035, 9.726445522958223, 17.687369030529492, 6.896287704965257, 6.341557220204035, 7.596519029352548, 20.78961101478488, 7.1152725544611926, 23.179315404241187, 5.080994310946658, 15.459602084784542, 6.382643952867679, 14.403327272005223, 8.92529701050342, 6.190295726723746, 5.210004701066986, 10.53757885569445, 13.767209120462185, 6.763759481766502, 6.852539466246062, 13.87091812407156, 6.532964241445159, 9.248035761572465, 7.780751815578268, 12.466101560996504, 15.426940131053154, 8.695428664228789, 6.019790487096377, 6.47295744110792, 13.1272911435104, 7.68180734527327, 6.783713279626311, 7.540954403987033, 21.619168927538148, 21.869258354505078, 8.591820195888292, 6.715769194322019, 6.488344982903735, 15.790490618423041, 18.50620593455486, 11.95234176975492, 8.631420426969159, 11.100463332593213, 8.442964348374272, 23.121235964345672, 11.421921642616354, 17.630947278258247, 17.32473171598465, 17.77395582941712, 13.748262339624082, 15.741764020158199, 17.767823364604883, 9.191388838770566, 6.080123154909383, 9.808479077590542, 9.135360695055635, 8.207890433702532, 11.880207518288488, 5.160010309433772, 10.757642500604971, 12.89299875498822, 15.077486379062002, 12.439953844807842, 22.557681720246237, 6.681255140437629, 12.398564803818548, 8.176512388300916, 19.025362030715126, 6.207425468163588, 14.516870575017283, 13.771932553042957, 9.849751318956567, 29.43257776941909, 37.142985737177966, 8.921456019819765, 11.46055274255779, 5.24560409340892, 9.455735818932652, 9.345587191456396, 16.776450468469314, 24.327155147288394, 6.299245263744909, 10.457444884983937, 14.301679867052636, 18.57200464368825, 12.133664231082708, 18.190884718939785, 7.370469764572052, 13.961779160349506, 27.321982369073766, 9.894267178960092, 5.600758107742501, 9.455675987242016, 8.176245575472448, 14.39542998409807, 7.192814015254646, 5.758331112891118, 8.142623276603354, 5.752544828757901, 18.084429693005042, 39.88028357089471, 14.50405366170215, 6.542854115335754, 16.077307387022763, 23.862581611087986, 5.854563153057471, 20.72042707278607, 18.5461323489023, 15.164737824528405, 8.17445742743065, 15.64208089203596, 5.361210687576585, 12.188790156782293, 10.81872318360667, 6.429220775880065, 26.305886756898374, 7.237695926699472, 5.619841490050708, 11.957347597993609, 8.631690595716835, 16.66598184913067, 7.433953148379608, 9.526885906100249, 27.410237438213564, 16.738287066899876, 5.837084804932012, 17.326966681118346, 16.813488026734625, 6.382451200245683, 6.743003583265929, 15.103328992887405, 20.930669885225825, 5.173016717014692, 5.719253586681926, 11.474541595075383, 25.727481330731123, 9.87559524601489, 7.285438082163981, 12.76803455591413, 5.253730600547473, 10.85970842555718, 13.32843817093818, 10.830351396762412, 19.59669308151897, 19.751605315250824, 8.829607539358133, 6.60218340763985, 6.6694080298379355, 6.948750171510192, 15.681882133316227, 26.64082055114433, 6.8952978100036875, 7.712589248188484, 8.226879075766114, 6.984500295691056, 20.67963137548743, 24.644893921510207, 6.203343934698226, 13.888045100409176, 14.080075091294699, 19.313308616907758, 11.665592458144737, 10.387091678905977, 34.360082951662996, 21.856812109320742, 12.610328413336726, 8.630174887495302, 16.73715369483739, 13.056718708638243, 11.820911166214072, 7.6604414773303, 5.442349422455952, 6.3112765249914435, 8.266048623171509, 18.722815174580763, 5.956261547216807, 23.224694905769766, 5.910810749625762, 9.340215607776761, 9.99952391692713, 5.518436606466847, 6.634520836852677, 15.57065991277686, 9.026188802053005, 5.914046965166422, 8.447045285424698, 7.391618524962274, 9.440215331814562, 37.14312572951724, 18.258850446945655, 5.843531899272208, 18.909161266671973, 5.382180698473126, 11.621704269247214, 17.34804686065155, 10.771955037448835, 8.871559415612047, 8.544044986849096, 20.369363600665064, 16.867765658627544, 8.05141027206409, 17.051052109205205, 16.21548925729535, 16.82686653027027, 5.36427209121087, 45.68395802562099, 5.1671521328683365, 25.93156525986921, 10.077132604422866, 6.424419871830522, 12.997523282107522, 16.528590871883086, 9.15315134638976, 12.298351003751455, 7.30859793821186, 6.985472364372106, 13.396510575749454, 14.646548127837011, 25.48144285852059, 5.087674784936787, 5.390133246068579, 9.720568068285393, 19.981182967805207, 8.192573532480365, 14.916407401974636, 10.01197129081575, 8.965979099403043, 14.29407629636461, 17.394737375613655, 27.725705259799625, 8.46084315604897, 6.633702415743239, 13.108361494128314, 8.61612945764644, 8.145610060865971, 19.758701709071328, 19.30687645391644, 6.244807084169254, 12.977643743913488, 7.712933205402041, 7.998791730199653, 6.6236301129583905, 11.661294366771298, 7.781717400011029, 14.470782929261203, 17.972990878749982, 6.87159107647188, 6.389964032712565, 15.462514210228802, 10.49245504641656, 26.205451196281857, 29.22865306960641, 6.486268665336884, 8.898423903162573, 20.586797690909748, 6.113922966861271, 18.748307881834773, 8.477682705325908, 22.398151500526392, 14.31223334981359, 18.5418753344046, 7.0976345544916875, 16.324960734091377, 25.317585159788386, 16.362832920516247, 14.468224759059554, 7.545973396281419, 18.40514248190782, 6.164788819727534, 30.222695305176064, 8.021851023244666, 7.813219850748913, 26.445672187856346, 6.478390074268386, 21.039084307622918, 16.045870696095143, 13.501334937992672, 15.433915053744624, 14.257753030216957, 8.553135634112202, 17.60073125157141, 6.400338890221726, 6.054935727247886, 11.483972428053661, 7.549210247058104, 5.995775670439597, 18.608078546604375, 23.364449087370847, 13.613209905392777, 15.058382472354236, 9.102678986329602, 7.292079474575319, 17.817468418669016, 6.532651730073964, 7.055779276325831, 7.218815315844144, 15.146808081399444, 7.713171698209, 10.397403114729318, 25.297034015653153, 17.57589589124124, 5.715929589772075, 27.148687447448324, 14.67710749090832, 7.66507218412644, 6.758467615411328, 6.351236620072385, 5.401216931816196, 10.30316286358065, 9.529185992653355, 19.64474054811157, 17.19631363538593, 5.326712252918043, 20.024691241854043, 6.523867663434669, 16.30221311362729, 11.60603840271725, 8.605927238211656, 22.02314022250045, 20.78416604986634, 5.052251384924374, 15.221008290387346, 23.385519498538677, 5.911369387784165, 5.847491379775767, 13.70119471947402, 10.61236086716342, 9.521891483086469, 15.508730587276391, 8.170127607200534, 23.9316030948289, 22.928864743363363, 7.718966757147739, 7.64973595660894, 19.64862780559809, 18.755600891874618, 5.471462248492054, 16.609072877613876, 10.32699705947098, 9.331261130524865, 6.209400022399217, 9.910970565386327, 7.889847659354842, 11.303501513748923, 24.44783449628633, 19.308308089313037, 9.098116209724438, 11.548147500626868, 15.76645077532856, 5.563642362204754, 14.32742552446039, 7.850668893224943, 5.337992604793032, 12.246683093435646, 10.086262859816857, 24.940177559906175, 7.423070163296836, 8.107942090149272, 19.935924886835203, 17.682084795461776, 22.663383436676934, 9.168848070875287, 7.775737561737349, 23.008257125645176, 6.792822601448223, 5.085127354947965, 9.92419116731029, 21.872912764423106, 9.29415221684066, 14.371112358893173, 12.57545652959822, 15.156910881009974, 14.669250572974537, 21.58572568141203, 70.20802368324689, 20.48339199852867, 53.586557117397064, 7.644981836821894, 28.111917706655223, 6.339433603818076, 6.2465270118992455, 31.529479036396555, 15.232154628951678, 47.262872279823114, 13.202787630800955, 5.070947319092865, 12.913572431398459, 5.733890130450291, 5.938857956196885, 10.680372199417343, 13.793160927427483, 6.268666189921361, 18.515140275673858, 16.01956865339682, 5.24399673815152, 12.374343677114938, 5.376523572782575, 10.994884068817315, 13.321880994418006, 7.164901441990926, 16.37560512773709, 16.489222195027256, 19.09903155441434, 9.749137113171718, 13.045926655965607, 15.545967246681048, 8.740827493829963, 17.188263974023187, 7.387364395958688, 6.368306895020883, 17.683206152893444, 15.351133453221056, 5.454213032881416, 12.271166041042637, 8.347523380992362, 17.075533347424372, 8.900142897727255, 5.642489100769358, 19.812913940346718, 10.658708579452737, 13.539675936717558, 14.476178937565079, 15.093805755977055, 18.975528479476356, 6.29433378237579, 10.20681309713276, 23.767166550109167, 14.417684154727134, 5.372074140201321, 11.094073535800112, 12.350600771423347, 9.471895990864835, 11.17198326876774, 15.50665349524024, 5.373869231338842, 8.372828597930068, 6.073043333561132, 5.035249276785469, 7.099751657380047, 8.427457215093236, 7.7721395654394945, 5.447892754485703, 20.0793045390187, 22.505555986812052, 23.135618243550564, 5.379992402686742, 15.576446581041083, 18.921162782058786, 42.4699626401892, 23.72808354943436, 15.799770522846147, 24.60680158968448, 26.251858179292455, 50.3017409894263, 14.03183014025583, 9.201342393531307, 14.620645217809344, 18.807086576106972, 6.984919433278551, 11.939622673501198, 17.356908684068188, 21.05504095258272, 6.1206327160089815, 8.568110508101228, 6.067829280909774, 24.090119001570276, 12.400415828114825, 14.466135960828321, 16.55661037766737, 8.584404448982738, 18.034894433306594, 7.130611407873848, 7.259229075464968, 8.601835091055182, 10.090055869460974, 7.918624442791116, 22.117702127951844, 9.917873813841773, 21.599360587924505, 30.26917946603639, 19.734073794758284, 9.871386297577004, 16.986792092881906, 9.618517420047173, 52.432325325218194, 6.657012328552904, 6.028507226100055, 16.061774256425874, 17.790368647306956, 13.457833979651985, 8.788512692089492, 8.954905824103403, 17.160620588849806, 10.110261060396558, 22.083631920226285, 9.3810525083105, 8.793300104444262, 13.501365030575425, 24.43981600297062, 64.09027364596683, 12.338223992222314, 28.575109924509306, 11.470105612654287, 7.476624770751083, 5.248749860432955, 20.151397026246702, 9.802281503243732, 6.831609782547614, 10.539312474824769, 11.244787237534617, 6.685283601853968, 8.260961949694211, 12.874427091884476, 60.970311105191854, 5.45563146098147, 24.386492783440016, 9.347910708585278, 14.409869572122988, 28.791722692936226, 27.48567012164129, 72.88289766621017, 6.412210723438407, 6.8502363999090035, 6.6324774356707366, 12.815004149337934, 5.991601368720712, 18.31725454684807, 6.987172576799632, 16.995507021238687, 24.42812860485994, 29.140049413939018, 5.212760463638218, 17.705435888757414, 9.261618106370877, 6.252333434686153, 7.3299921722473425, 31.406491001460935, 14.793854145154054, 8.465444453801526, 7.509359902374287, 10.403971143495355, 10.390733551755908, 12.910645836183061, 10.877344517731466, 20.060009369623167, 9.960186758052378, 8.35065523656019, 5.231588215300191, 23.117484836341703, 13.068947887561748, 8.624170062457154, 12.74466052065026, 6.566520449206016, 23.046075765377356, 9.865434744004695, 12.866690708322501, 5.480086039664389, 7.341072179609662, 7.56509650969864, 7.166551244007264, 13.02400534830049, 13.882924901044529, 12.751704889038317, 5.944601834632993, 13.97977898768563, 30.374383143275963, 14.017504391816791, 13.97532427008365, 18.421909993822453, 6.534868299558633, 8.09927496392348, 16.138849812000622, 13.159522878466692, 5.543284246263801, 14.459761639684833, 13.237139643440445, 10.761787707545665, 16.884751287655966, 24.725216999086538, 6.06995837724157, 23.29592217773618, 9.743003584178785, 5.974824864497723, 6.789464386718178, 18.6225928617973, 132.6094769522928, 8.06593619454166, 5.5563982431916665, 7.385152273911026, 41.31638158103945, 10.981837184968663, 13.811660332009662, 15.565769010577602, 30.388094633823034, 6.081296266064248, 12.806748187842445, 6.448257693188095, 10.438542944242542, 16.377053179150394, 33.74539817354476, 15.771190751450769, 15.710614266581752, 6.619011046554477, 26.353123205528668, 7.043190389302997, 28.129202565444544, 26.001481938797994, 25.40223766775834, 5.306004241387878, 20.627079603552808, 44.35827788150388, 19.194855004654915, 15.901040293732688, 6.21607086078394, 13.376844672637624, 11.699069490653335, 6.586966620156847, 6.884110644945199, 24.80424042277789, 11.919157772434822, 18.81389618238297, 12.451151619695086, 7.0605611109861, 9.116676476828951, 6.270255898777572, 15.477517552854755, 16.47448757612894, 13.306963016159388, 13.565248572429153, 13.732996893245994, 6.654750447668848, 21.085211283177518, 7.537778654609343, 43.83046545008683, 12.061872474453994, 17.085748772093368, 17.41973449006736, 15.587174778060422, 5.580805277296793, 7.773119650475843, 6.644722902860699, 11.356260197765184, 26.80852096773293, 5.428676401326394, 10.845432237801138, 6.547753306942763, 14.691088909722506, 16.693303608652624, 9.508969136417116, 11.310801582526047, 7.613227652788659, 5.600111151673236, 15.029510296497723, 5.957553896923334, 7.920188140475491, 9.008041937374486, 16.11814875360843, 17.640136544384028, 22.11359954403304, 6.362852702735333, 6.187515295429543, 22.849798913572478, 5.810766119463816, 9.818974907780289, 30.90996507909441, 6.885456843484516, 22.866662974087475, 12.240042665259066, 7.579830927730889, 11.000188984679024, 7.940251997191429, 7.636394300963667, 12.980879718508788, 18.574917149632107, 8.916381705633821, 7.602855108248186, 19.03894468423656, 75.10143832677791, 6.245809688471396, 8.773998349511487, 23.737552331940496, 23.790706743143904, 5.082076780140445, 8.987688988093495, 10.326619391619401, 19.465647481419797, 18.66991085932817, 16.1724238819358, 5.61559829230166, 22.09252411732388, 8.740135922035082, 29.69048682234339, 10.040048726719775, 8.482536098001585, 13.1387373498497, 6.970893956000032, 18.968253227183624, 11.776124669809267, 6.002124023525573, 20.967490723792725, 6.040097030791792, 17.660769318434063, 7.350294759182319, 12.37736793072683, 5.840254808771119, 11.322011723437877, 19.11006913040186, 16.217153079212842, 31.558426550430095, 5.220293556338372, 7.147261159242439, 12.062973872662223, 16.62334711649803, 6.925504333170617, 23.769652066582083, 5.420091750912196, 21.067407968681835, 32.483652082070435, 6.704583005181676, 11.28727580733449, 18.173443064803834, 8.8608759877449, 5.286730877199525, 6.416964879730655, 7.477711366193234, 5.577884199694598, 11.138021018192822, 34.06669074916473, 6.938641714038072, 20.45012462314942, 28.694611927066745, 25.4382800641979, 11.03365014313821, 13.878116939937016, 41.24283253331852, 12.368061024802161, 9.721142785030706, 14.482191692864822, 33.70983889676083, 30.038110326180366, 8.264334365131791, 15.729088281614962, 10.867191710856828, 18.30854172689224, 8.210552152093308, 5.389863502705644, 8.563533837119973, 9.866376344954954, 5.885913081134456, 8.895139707765717, 31.853338176873436, 6.370928252788113, 5.519211559958069, 13.3732321516388, 7.335905610584781, 13.96680456191775, 20.560994937626443, 6.1008764559586695, 7.909507428555515, 14.818453286205308, 19.08210214424376, 12.168155663123626, 10.773762434267057, 5.956875917085182, 13.932118239003728, 9.489538797045142, 8.058223148986349, 6.020670978574737, 15.405591350087828, 7.4707793488305745, 28.63794230218461, 15.59028353090852, 7.399733891349403, 9.007629332495647, 6.448392071268162, 12.364621319881397, 18.604782574415538, 14.8600224320566, 35.78589356974461, 10.405705302119046, 8.199258969787149, 9.727790063901407, 12.138735562079722, 14.773511911162796, 28.809453536082827, 8.79840980187423, 5.641923822902217, 5.37298112059412, 19.591121027653653, 17.619284588397225, 14.551231311464546, 21.271283004091604, 22.503495361219514, 16.797456944040018, 14.61509991888342, 34.0634188978697, 14.636043849045787, 7.007445951869709, 12.150899587432347, 6.72178544817708, 18.072037273177777, 10.916966503492691, 5.886826102881216, 5.265821475557363, 13.710172390270218, 10.72082589088054, 15.680528812551874, 19.310684462797354, 20.904739435777206, 14.858699670104137, 6.46335976132559, 16.642928533291435, 5.252634888248021, 11.671431273853118, 18.20995388811424, 7.554936631437884, 10.012268134971913, 11.163780518909585, 27.96280369319941, 34.17690577140411, 19.73059400679386, 25.841117968308865, 20.49606270141303, 39.08931030075184, 38.32432559742525, 16.710824429324287, 21.09093158594243, 7.023236008067975, 14.325150084806332, 22.48236419453416, 6.577719084681392, 7.641846810519642, 16.445274377815732, 16.863614456619718, 57.38460222035037, 19.992895527279675, 10.035442599789835, 17.560367967895246, 17.061073392195787, 22.986985475435155, 7.080020269703302, 14.684996499816977, 65.45316159575104, 18.683122123516576, 10.364905219582365, 18.54678026583651, 15.079987858558523, 15.124268313980247, 8.434798353679586, 8.854515397138535, 35.969438941248995, 5.1727898677359345, 78.52520434257023, 9.092620817451703, 5.918365373480601, 10.441746320040956, 32.66492392441458, 13.485653439379437, 14.101417585974419, 8.051372096820218, 20.897836304486773, 5.43253689154135, 13.727121272876781, 12.414304953076957, 12.463653391918713, 49.79731692398464, 8.75563575142009, 12.57133238078485, 8.122424889770288, 10.638095527253098, 24.871302764978417, 8.342642897932944, 7.144445349408449, 15.506142197306447, 17.590753518703934, 16.79144625657189, 56.39709743233405, 6.157099770001824, 38.79978582493706, 24.32875037886879, 19.205752123636096, 23.29444166122993, 23.76288507533331, 29.83029019705277, 5.415596911678198, 71.60917173838908, 5.449979036436705, 19.132380007640464, 92.81227104080796, 6.208398308338992, 8.939956909270212, 9.004665654925207, 28.030477620664087, 14.866633637791136, 19.55834029711975, 5.6031711981382175, 33.53946998686332, 16.3405430117678, 8.01827805135799, 9.602542697307001, 5.090326716178534, 8.214709421296089, 6.83557341234754, 17.469423346080553, 13.010035518225662, 12.686691321759195, 22.72673570924934, 6.45549945693919, 20.92203707941683, 6.716298552578023, 18.14088867285203, 15.886375854891163, 19.738279539644296, 18.46210019805112, 30.150151743864384, 14.32092472711976, 45.94089524437945, 33.180965211626, 26.947076629658707, 6.93120462821912, 21.037895353983924, 7.3058878230893, 5.823902794741755, 17.961419299455617, 37.717323498986616, 10.005402889523996, 19.097007918162433, 17.47411349758113, 42.947991163620244, 17.087437305065727, 17.89673162089959, 14.992254762116229, 36.87713135585778, 7.8324456143053975, 6.78349876997483, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6464190.925575106, 6563958.333393243, 6666953.34078326, 6804011.492530334, 6829061.51884679, 6924129.590410255, 6947013.633102521, 6950536.472710542, 6983460.24564524, 7032473.826939501, 7038746.752329487, 7040562.976684806, 7066104.529185352, 7093632.8125, 7135716.103020287, 7187870.626827805, 7227646.842362041, 7298480.254595476, 7300244.648441611, 7350892.697457389, 7368607.507809716, 7369257.950040537, 7379497.957699641, 7380278.161576079, 7400992.419571591, 7404487.974012743, 7412130.90229884, 7439956.980140814, 7456263.15140471, 7458959.606102917, 7470291.200700005, 7475013.616598764, 7480063.4731755415, 7482006.340742057, 7482764.089219326, 7490544.213326281, 7502996.209618222, 7505890.976600171, 7533409.848661835, 7534468.2379662255, 7546412.380634997, 7549059.272755857, 7551682.388730236, 7554430.567238615, 7555262.831672282, 7575368.383473061, 7582866.28538294, 7583791.266029902, 7585127.688577799, 7587437.190816154, 7591675.104819252, 7596733.802024824, 7601535.013395047, 7610962.359066334, 7618065.87791745, 7619631.6047966145, 7621789.149200012, 7622437.254908893, 7623625.835078365, 7637196.987669044, 7638525.683074412, 7644682.482528479, 7655530.427948467, 7664414.840981656, 7665114.175447033, 7674783.189396079, 7683167.620456753, 7685572.447244111, 7690085.00559724, 7690624.004223098, 7690660.91888563, 7691920.508345139, 7691970.288941388, 7704637.15390849, 7705235.029481951, 7705436.515858415, 7705982.112197326, 7706896.7621153025, 7708547.914713594, 7711786.866068608, 7711842.443934833, 7712452.7115259, 7712788.716045873, 7713770.313766701, 7728081.680182103, 7739719.870231165, 7740119.036523134, 7742424.899731779, 7742878.590505812, 7743738.215296898, 7746445.434283993, 7748208.513127745, 7748664.941475474, 7759931.159240875, 7760296.300788229, 7768917.399631657, 7801303.225378918, 7801927.949448999, 7804024.5938409865, 7804083.911899066, 7805250.535814746, 7806085.693588076, 7814775.007993313, 7816840.225339743, 7835200.699962041, 7837434.845451413, 7838141.224746761, 7838490.607500274, 7839853.409468111, 7845919.481595013, 7846223.617913614, 7849742.816774006, 7854850.5105366865, 7857497.461485415, 7859004.33474731, 7859672.480539606, 7861699.022982824, 7862046.704636173, 7864518.672949773, 7867309.89002515, 7883735.696178458, 7885288.910677694, 7888864.495904038, 7889102.893733655, 7889116.937099867, 7889133.708879974, 7889575.035223519, 7891649.26800963, 7897086.942603537, 7899421.448554324, 7910360.059891955, 7911582.5984001225, 7915117.961061422, 7920001.074285163, 7924957.696444037, 7925605.10733588, 7926648.992891481, 7926685.6315892115, 7927926.5625, 7928297.909326942, 7929040.827995593, 7929490.641384526, 7929526.705971211, 7931400.016727273, 7931442.5979079055, 7931655.064602685, 7931908.062009153, 7932896.399231869, 7932982.633855205, 7935273.970182122, 7937786.498049568, 7940236.590067307, 7940305.5570579795, 7940562.144554396, 7941079.623641618, 7942827.160758197, 7943566.944819962, 7944834.518403845, 7945306.035366201, 7946387.348951888, 7947762.764692135, 7948446.09346335, 7948720.029985353, 7948933.508675484, 7949249.3457047995, 7949792.1875, 7950053.005290399, 7955601.909234222, 7964845.581662856, 7967168.458705395, 7967561.471319245, 7967910.356390301, 7969256.218264374, 7971682.869859228, 7971821.656786011, 7972336.109913552, 7998169.302319084, 7998627.149616535, 7999334.167899464, 8000929.30812298, 8001088.892895568, 8001644.174494994, 8002531.354318749, 8003733.285496329, 8003772.4751788825, 8004314.451655923, 8008937.006374128, 8011181.472481353, 8016241.047083499, 8018531.646770369, 8020019.057452117, 8020427.835276267, 8020764.932551091, 8024283.673338855, 8024517.0839264365, 8026031.416790968, 8026212.416081538, 8026269.075689203, 8027079.88206555, 8027879.898612558, 8029737.340451258, 8030592.767861878, 8031127.151642853, 8032463.959179758, 8032633.116379364, 8032870.133998978, 8035818.250873203, 8038860.738550316, 8047224.1230237745, 8048705.555701038, 8049975.902774341, 8049981.9469055, 8050560.4471536875, 8050999.299581837, 8053151.744069595, 8054203.96964141, 8054267.813638206, 8055067.480048481, 8056154.572877492, 8056790.077070495, 8058424.63056379, 8059942.480332006, 8060915.102307684, 8065062.193128054, 8076412.254011427, 8078149.249682989, 8078606.427680843, 8084615.093180933, 8089782.8125, 8090411.828639828, 8097960.153565765, 8108519.34775388, 8115515.805009265, 8116474.398623819, 8118803.52741529, 8123934.5304382825, 8125063.602166785, 8126776.903590861, 8128667.148477131, 8130698.623653943, 8134704.879041904, 8137076.538398128, 8145762.165685576, 8148667.197903697, 8150333.509434983, 8159327.819531488, 8159668.067653415, 8164772.030820912, 8179152.740545674, 8181196.579129788, 8181665.916601558, 8183127.49937793, 8184956.375943476, 8185242.085669251, 8185431.912964476, 8189441.016561441, 8194922.982255195, 8203421.442156925, 8204223.732114163, 8213925.895560858, 8216946.63481964, 8220455.651022192, 8224889.519583094, 8242672.8169552395, 8243519.944144029, 8244288.589645261, 8244306.739413869, 8244931.548397459, 8247710.151426718, 8248602.200572883, 8249525.0, 8249603.201717038, 8251612.101594565, 8252477.329874493, 8255037.08820541, 8273100.246012467, 8273738.128815259, 8274156.031388568, 8275069.388825308, 8275445.979608681, 8276363.518659283, 8276485.463028484, 8276653.045399513, 8276924.824400582, 8286136.944351151, 8286223.217593782, 8287898.864480796, 8289294.646290411, 8289424.817904094, 8291390.618398566, 8293183.520862225, 8293366.7212179685, 8300848.256594203, 8302622.40029135, 8303328.083300212, 8303626.878115582, 8303775.875579262, 8304277.543544814, 8305386.512700698, 8309357.536063939, 8309807.119081824, 8313352.373836482, 8315048.258194173, 8317883.742659552, 8317931.543438776, 8318268.163030532, 8320402.381517155, 8320909.691505261, 8321314.53040675, 8321351.433262985, 8322414.6810359, 8324177.080809678, 8324210.288598626, 8331097.005290834, 8340251.114147335, 8347249.870600018, 8357222.017462457, 8358154.682250659, 8367308.814336153, 8372868.076941428, 8379036.182218682, 8379241.128905263, 8380537.844706571, 8381062.086180892, 8390235.76198768, 8392735.080190904, 8412849.90861424, 8427795.63357948, 8430656.670344813, 8464925.24325625, 8467402.995027836, 8468049.838847874, 8470763.185002917, 8471141.331530808, 8471953.754128465, 8472374.46344071, 8473567.733006498, 8474241.000696106, 8475206.194267852, 8478040.07824991, 8481256.512415575, 8486744.875278791, 8490346.998456206, 8496777.269340407, 8496936.409701558, 8497540.74098844, 8499938.485825868, 8501198.112439258, 8501845.529066823, 8502440.473110141, 8503905.312803956, 8503913.17564518, 8504199.086120171, 8504752.726605931, 8505926.592828779, 8507116.904017847, 8507713.111625528, 8529674.031073052, 8533315.90961168, 8533982.556637978, 8535753.482876645, 8535934.427839618, 8536411.231555982, 8536660.413977513, 8539327.542401848, 8541685.691169152, 8552387.643152516, 8554197.59830289, 8554818.898866426, 8556170.48028743, 8557210.912207576, 8557667.824917324, 8558121.94656427, 8560696.274585245, 8561040.849999405, 8562175.99877687, 8562214.550350275, 8562241.7368241, 8589493.50727618, 8592439.29316107, 8598115.0635144, 8601090.910885978, 8603081.808725642, 8603347.824977232, 8604395.44274798, 8604506.875883654, 8604553.19644682, 8605601.3033042, 8605960.60983313, 8606108.255361414, 8608459.006490111, 8608618.393224495, 8608954.904505946, 8609234.907038635, 8609354.460603107, 8609474.7140283, 8609691.820314022, 8610228.434026508, 8611479.814256702, 8611546.167827854, 8611635.110979559, 8611786.161466453, 8612225.82146002, 8612440.044260534, 8612998.437332006, 8613097.965910664, 8613297.489166148, 8613375.728519425, 8614017.2971302, 8614157.565181294, 8614619.40708584, 8614730.96058566, 8615786.190803282, 8616342.388312433, 8616561.551528791, 8616563.678684508, 8618338.135944506, 8618649.884887325, 8618877.177118383, 8618886.713036323, 8619077.912741099, 8619086.972787544, 8619260.583698645, 8619584.274065226, 8619586.508869007, 8619701.869383678, 8619799.80128689, 8619891.07801613, 8620224.639562188, 8620354.832590366, 8620624.310725758, 8620767.814189741, 8620991.72474978, 8621032.768114023, 8621043.591843178, 8621078.56748467, 8621131.38501887, 8621196.801687596, 8621530.759235403, 8624304.386709763, 8624595.455694778, 8625260.743286056, 8627171.98896024, 8627188.242138293, 8627208.363621714, 8628452.959616128, 8628490.625, 8629821.949220093, 8630580.98035689, 8630762.901256714, 8631231.362474216, 8631600.904651716, 8631636.355542896, 8631860.931210168, 8632400.848029932, 8632418.412132187, 8633087.511608955, 8633180.608941384, 8633226.819242448, 8633229.646410601, 8633388.173863161, 8633585.351200163, 8633999.913329056, 8634033.87347852, 8634072.037751198, 8634264.393933225, 8634531.604347156, 8635278.847056806, 8635742.643406862, 8638922.831930988, 8641492.515933184, 8642410.145401793, 8642537.465861633, 8642696.23591133, 8643122.635450067, 8644195.647530288, 8644363.809863612, 8644581.072825044, 8644736.645247228, 8645036.05099874, 8645045.77859577, 8645201.004272416, 8645736.440469429, 8645849.201186089, 8645962.17769138, 8646299.576191673, 8646360.809812436, 8646456.289391048, 8646458.537885217, 8646586.149299547, 8647382.130919514, 8647596.576284759, 8647685.938524444, 8647907.104325835, 8648246.853375386, 8648575.662987418, 8648981.411608776, 8649059.403143227, 8649993.52237947, 8650196.21612094, 8650395.472117208, 8655884.228964472, 8666027.748106943, 8668959.291801313, 8669154.944731973, 8670489.506531648, 8670832.48522624, 8670838.40804592, 8672079.28333827, 8672160.587768529, 8672266.695493912, 8672341.823315453, 8672713.078794941, 8672745.3125, 8675584.807148218, 8676001.770816075, 8679543.514187533, 8679702.998457177, 8680566.16595668, 8680568.488942143, 8682340.46707104, 8682721.674194882, 8682895.837575039, 8683993.20383387, 8684317.651470069, 8690180.203650977, 8694063.51743602, 8694925.30714421, 8694927.059464322, 8695451.36529836, 8695609.101112163, 8701638.18573207, 8705167.056927297, 8716580.055236489, 8717047.398709998, 8722563.552743904, 8723098.472231003, 8724467.686922029, 8724595.864595292, 8724678.9039194, 8724732.04522576, 8724785.497913972, 8725878.745712848, 8726150.345318029, 8728230.227102313, 8740813.36602159, 8743411.513811087, 8745791.07484729, 8751411.25859974, 8754318.75, 8755305.692095619, 8756257.219270416, 8760215.89083349, 8762216.214164235, 8762337.04742425, 8762674.279657504, 8762919.830936618, 8763237.981464028, 8763253.921866, 8764057.36972822, 8765587.558140045, 8787918.03677669, 8788324.562789362, 8833220.064596085, 8889721.875, 8910199.094792485, 8914059.375, 8930610.898290409, 8932909.010819491, 8934143.878281182, 8943331.895934071, 8944714.571410967, 8954370.644315794, 8954432.400355782, 8954775.073634982, 8954905.845136076, 8955778.076244798, 8956557.138878917, 8962039.0625, 8966837.356278049, 8967045.060692517, 8992515.644458381, 9070891.831041949, 9091453.125, 9091465.41420902, 9091492.1875, 9095391.692588944, 9095681.669438247, 9096922.74372676, 9100657.114657328, 9101200.580459349, 9103144.421818182, 9103241.650803633, 9103321.29479806, 9103420.063742273, 9103860.889033152, 9104020.675142683, 9104075.575230876, 9104149.91629909, 9104206.131431593, 9104217.925558774, 9104242.561208189, 9104315.853571106, 9104489.386088066, 9104752.85776232, 9105293.231747448, 9105457.283614412, 9106036.840977486, 9106239.967362937, 9106296.21824584, 9106605.347989189, 9106856.369238038, 9108760.445774537, 9109486.823183233, 9109982.359604722, 9110667.775629828, 9110883.648041803, 9110958.301150545, 9120749.642756546, 9121772.44557265, 9123788.38574457, 9124108.232481271, 9124224.211906476, 9124429.58079953, 9124434.543832438, 9124525.948382244, 9124548.128971163, 9124832.088479428, 9125365.684475895, 9125627.847514901, 9125648.029392848, 9125955.97423874, 9126559.244678488, 9126755.37499965, 9126917.485657444, 9126923.065678256, 9126936.219767695, 9126954.125550162, 9127114.270964446, 9127521.742593119, 9127635.404713523, 9127679.71069185, 9128339.311608203, 9128678.617832799, 9128837.323728614, 9128838.726039676, 9129031.699722454, 9129075.397924425, 9129114.191145824, 9129613.220493823, 9129939.0625, 9130355.808080724, 9130525.471266255, 9132774.353893925, 9133953.125, 9140393.654628685, 9141899.599665498, 9144561.092176927, 9144862.038178053, 9144862.434326425, 9146355.548765197, 9146662.247716699, 9148063.571799522, 9148995.644227983, 9149502.9729773, 9149689.844784517, 9151163.718590258, 9152567.980411341, 9155359.374971803, 9156001.256173134, 9176312.924311997, 9181045.985914465, 9184160.756653741, 9213255.1629882, 9243181.846790941, 9247379.6875, 9249735.71906238, 9255253.671484234, 9275330.834319955, 9275415.14344379, 9275664.3996733, 9276466.233853864, 9278113.075504161, 9278121.653229559, 9283330.645098574, 9285229.255143993, 9288322.678041166, 9294654.450684603, 9297690.359645706, 9298551.586662024, 9299411.683485825, 9303183.722282004, 9314671.972189222, 9315744.897575827, 9316751.204654071, 9318538.492190156, 9318697.895615283, 9318981.06531484, 9319574.576236118, 9319638.025382396, 9319726.00008295, 9321340.197032942, 9321363.795684092, 9321410.32063086, 9322117.633980863, 9322460.311900502, 9322638.166864594, 9323226.608950766, 9325200.768192308, 9327257.624077927, 9328380.063861785, 9329329.620210322, 9330100.394447459, 9331192.39029005, 9332079.8015632, 9332896.902536588, 9337316.932872504, 9338550.255855767, 9339850.206063006, 9340066.42381982, 9342526.153605321, 9369386.041419892, 9372299.5023563, 9373704.247531004, 9375346.033864714, 9386616.529662084, 9389091.813536089, 9390743.706465868, 9391409.900348226, 9391853.125, 9394220.894120691, 9405215.252486616, 9409745.923984326, 9427773.372316739, 9428606.166856918, 9428668.032158565, 9429339.153252084, 9429918.118937816, 9430616.724890893, 9442377.58969681, 9451078.123942113, 9453513.333444247, 9456357.098774446, 9456638.891312802, 9462193.007979877, 9466134.654899517, 9468437.203122294, 9471910.087006645, 9472327.688466905, 9474091.606449988, 9480546.352344764, 9481503.848745579, 9483006.539359502, 9484325.028058507, 9485266.745560868, 9488417.956849698, 9488552.521086695, 9488603.858955417, 9488789.41554713, 9489949.430152997, 9490018.144521797, 9490032.01572092, 9490275.625190917, 9490686.63057361, 9492056.126915712, 9492779.212895915, 9493889.630331978, 9494013.304457126, 9494167.862743849, 9494401.911398368, 9494470.433352573, 9494625.785079276, 9494704.068400854, 9494796.516494475, 9494991.274590712, 9495451.659782154, 9495598.96342685, 9495919.13085164, 9495989.823169682, 9496046.036027296, 9496534.929198729, 9496735.843560638, 9497657.8125, 9498121.572510667, 9498262.599743716, 9501800.649882672, 9501858.76065911, 9502313.92082148, 9503290.162569879, 9503616.826569788, 9504461.827340584, 9504728.7912917, 9505515.625, 9505560.193205373, 9506001.787580451, 9506228.25285185, 9506843.571546204, 9509546.813980376, 9509876.57784982, 9510548.4375, 9512811.608491568, 9513173.86506572, 9515051.43653704, 9515209.199395591, 9515218.75, 9515468.707700057, 9515594.872178169, 9515774.826682063, 9515860.291981127, 9515927.978414122, 9516057.585423825, 9516423.92691486, 9517522.446481356, 9518950.927046802, 9521475.997176481, 9521967.588025773, 9522310.154160447, 9524580.96088635, 9524897.006120192, 9525072.632491082, 9525860.65589255, 9526224.40119277, 9526817.309478743, 9527247.649208248, 9527475.354749108, 9527647.65629116, 9527813.738481032, 9528249.761106968, 9528462.698447976, 9528541.621420445, 9528565.806280503, 9528660.479184529, 9529071.200638743, 9529125.116652599, 9529132.430795604, 9529214.0625, 9529475.160400886, 9530329.087463686, 9530466.778047414, 9531249.748605687, 9532312.968690893, 9533258.061512321, 9548598.895438515, 9549773.4375, 9550126.045636967, 9551702.956147274, 9558925.434321996, 9559092.750509286, 9560734.33021443, 9561427.908791402, 9561457.10685828, 9561612.993187523, 9561818.066753816, 9562166.473063322, 9562636.498415574, 9562657.68848947, 9566301.039972618, 9566802.346626021, 9567611.351906499, 9571182.724143155, 9572023.626534043, 9573740.542480676, 9574074.547792234, 9582334.943896119, 9585009.162365492, 9591739.590011865, 9597456.110857187, 9598854.063260684, 9600300.722318936, 9600410.57200785, 9601721.598100679, 9602893.165945359, 9603213.311837723, 9603222.876425156, 9605476.54060291, 9606537.346922422, 9607703.509672802, 9608834.64041334, 9609830.009572402, 9613145.967994725, 9633590.489450589, 9634321.02113413, 9634559.397956902, 9635314.409536293, 9635671.875, 9635901.928139327, 9635905.390293181, 9635928.119641883, 9636367.862757124, 9637357.8125, 9638891.022828503, 9639132.271216782, 9640158.987713516, 9640462.328312607, 9640563.656262634, 9640867.742259113, 9641275.105501683, 9641464.994317172, 9641886.364411991, 9642134.375, 9642257.147701384, 9642769.479774125, 9642902.612694016, 9643061.400963616, 9643174.605482832, 9643456.090007968, 9643456.181032673, 9643632.384108134, 9643722.113148183, 9643754.137733478, 9644181.955907878, 9644212.535863152, 9644334.422136629, 9644473.70765136, 9644616.56397789, 9644785.463655293, 9644858.12862357, 9644955.502213128, 9645087.203425841, 9645110.692684794, 9645466.699336665, 9646467.141985718, 9646596.432260519, 9647831.010630239, 9648288.589563642, 9648544.985313151, 9648569.613331981, 9648735.577689288, 9648802.254523583, 9648831.964203563, 9648860.477869377, 9648957.042850731, 9649061.699177738, 9649066.86362666, 9649219.974924902, 9649328.583600126, 9649431.354537098, 9649648.524255605, 9649687.640649632, 9649736.4936337, 9649828.538263738, 9649949.901589865, 9650002.200877227, 9650081.25, 9650138.261811843, 9650328.305193827, 9650382.475918135, 9650611.907865085, 9650886.598385304, 9650989.503295856, 9651089.0625, 9651116.909961239, 9651155.475591004, 9651231.25, 9651427.64498074, 9651451.060190191, 9651666.77403715, 9651696.849527657, 9651838.43030106, 9651861.78139774, 9651937.301775308, 9651972.686925871, 9652067.511774426, 9652072.893171135, 9652142.49165395, 9652312.082498847, 9652351.424078384, 9652370.663070709, 9652635.994360024, 9652636.43157395, 9652811.748679414, 9653057.221892886, 9653352.920464411, 9653493.190782564, 9653584.133846458, 9653820.957353726, 9653853.352617178, 9653976.749494588, 9653992.88095996, 9654267.733834095, 9654309.01344055, 9654371.713371025, 9654384.338183254, 9654404.602356078, 9654605.473205907, 9654749.685209524, 9654844.408048121, 9654931.383209191, 9654960.173254862, 9655047.59684201, 9655131.952338396, 9655150.486844359, 9655200.53636854, 9655248.4375, 9655372.453380343, 9655455.293867104, 9655560.950750234, 9655603.97900681, 9655614.654677996, 9655678.224322025, ...], [19.67850200543998, 19.742286237258597, 15.313771680983358, 7.8171258890091195, 5.744783094215319, 14.583926460896507, 22.22754772631114, 12.081802621966562, 6.183573336274594, 9.68393675653626, 16.380160483653498, 17.134038632419525, 23.035099710907687, 67.96138395543356, 7.78579070855248, 9.612121933631533, 8.269392910876341, 7.278954197753812, 5.319670365596779, 17.321420662185492, 10.682665397953176, 11.349719489602364, 13.38171065242979, 11.185362928006558, 6.524096425420381, 9.767174313153838, 42.1714396616089, 20.77759710315187, 12.32546823836608, 8.412690081320465, 5.744403599456248, 13.476692706239568, 16.184936931739585, 15.299035685927425, 8.300757673873013, 17.060319837337634, 6.9568785799619235, 5.41208766065022, 6.328956242761941, 7.427978991381751, 10.946120276236766, 14.56561560745717, 13.539786632805628, 7.955759119629995, 7.7277707874102735, 13.707091988161519, 7.86092734395741, 5.364377982805936, 5.590348001789917, 23.634135335872635, 11.295596331033837, 20.794764586216687, 18.099303081893495, 34.76895744467504, 16.001901595244963, 11.731588859294146, 5.946991615898016, 5.2835761276717434, 6.942519719000449, 15.389074652464442, 6.599779557597994, 6.436580130633598, 12.52283041158591, 5.429092601098175, 7.151461921744645, 16.60314251443035, 9.726445522958223, 17.687369030529492, 6.896287704965257, 6.341557220204035, 7.596519029352548, 20.78961101478488, 7.1152725544611926, 23.179315404241187, 5.080994310946658, 15.459602084784542, 6.382643952867679, 14.403327272005223, 8.92529701050342, 6.190295726723746, 5.210004701066986, 10.53757885569445, 13.767209120462185, 6.763759481766502, 6.852539466246062, 13.87091812407156, 6.532964241445159, 9.248035761572465, 7.780751815578268, 12.466101560996504, 15.426940131053154, 8.695428664228789, 6.019790487096377, 6.47295744110792, 13.1272911435104, 7.68180734527327, 6.783713279626311, 7.540954403987033, 21.619168927538148, 21.869258354505078, 8.591820195888292, 6.715769194322019, 6.488344982903735, 15.790490618423041, 18.50620593455486, 11.95234176975492, 8.631420426969159, 11.100463332593213, 8.442964348374272, 23.121235964345672, 11.421921642616354, 17.630947278258247, 17.32473171598465, 17.77395582941712, 13.748262339624082, 15.741764020158199, 17.767823364604883, 9.191388838770566, 6.080123154909383, 9.808479077590542, 9.135360695055635, 8.207890433702532, 11.880207518288488, 5.160010309433772, 10.757642500604971, 12.89299875498822, 15.077486379062002, 12.439953844807842, 22.557681720246237, 6.681255140437629, 12.398564803818548, 8.176512388300916, 19.025362030715126, 6.207425468163588, 14.516870575017283, 13.771932553042957, 9.849751318956567, 29.43257776941909, 37.142985737177966, 8.921456019819765, 11.46055274255779, 5.24560409340892, 9.455735818932652, 9.345587191456396, 16.776450468469314, 24.327155147288394, 6.299245263744909, 10.457444884983937, 14.301679867052636, 18.57200464368825, 12.133664231082708, 18.190884718939785, 7.370469764572052, 13.961779160349506, 27.321982369073766, 9.894267178960092, 5.600758107742501, 9.455675987242016, 8.176245575472448, 14.39542998409807, 7.192814015254646, 5.758331112891118, 8.142623276603354, 5.752544828757901, 18.084429693005042, 39.88028357089471, 14.50405366170215, 6.542854115335754, 16.077307387022763, 23.862581611087986, 5.854563153057471, 20.72042707278607, 18.5461323489023, 15.164737824528405, 8.17445742743065, 15.64208089203596, 5.361210687576585, 12.188790156782293, 10.81872318360667, 6.429220775880065, 26.305886756898374, 7.237695926699472, 5.619841490050708, 11.957347597993609, 8.631690595716835, 16.66598184913067, 7.433953148379608, 9.526885906100249, 27.410237438213564, 16.738287066899876, 5.837084804932012, 17.326966681118346, 16.813488026734625, 6.382451200245683, 6.743003583265929, 15.103328992887405, 20.930669885225825, 5.173016717014692, 5.719253586681926, 11.474541595075383, 25.727481330731123, 9.87559524601489, 7.285438082163981, 12.76803455591413, 5.253730600547473, 10.85970842555718, 13.32843817093818, 10.830351396762412, 19.59669308151897, 19.751605315250824, 8.829607539358133, 6.60218340763985, 6.6694080298379355, 6.948750171510192, 15.681882133316227, 26.64082055114433, 6.8952978100036875, 7.712589248188484, 8.226879075766114, 6.984500295691056, 20.67963137548743, 24.644893921510207, 6.203343934698226, 13.888045100409176, 14.080075091294699, 19.313308616907758, 11.665592458144737, 10.387091678905977, 34.360082951662996, 21.856812109320742, 12.610328413336726, 8.630174887495302, 16.73715369483739, 13.056718708638243, 11.820911166214072, 7.6604414773303, 5.442349422455952, 6.3112765249914435, 8.266048623171509, 18.722815174580763, 5.956261547216807, 23.224694905769766, 5.910810749625762, 9.340215607776761, 9.99952391692713, 5.518436606466847, 6.634520836852677, 15.57065991277686, 9.026188802053005, 5.914046965166422, 8.447045285424698, 7.391618524962274, 9.440215331814562, 37.14312572951724, 18.258850446945655, 5.843531899272208, 18.909161266671973, 5.382180698473126, 11.621704269247214, 17.34804686065155, 10.771955037448835, 8.871559415612047, 8.544044986849096, 20.369363600665064, 16.867765658627544, 8.05141027206409, 17.051052109205205, 16.21548925729535, 16.82686653027027, 5.36427209121087, 45.68395802562099, 5.1671521328683365, 25.93156525986921, 10.077132604422866, 6.424419871830522, 12.997523282107522, 16.528590871883086, 9.15315134638976, 12.298351003751455, 7.30859793821186, 6.985472364372106, 13.396510575749454, 14.646548127837011, 25.48144285852059, 5.087674784936787, 5.390133246068579, 9.720568068285393, 19.981182967805207, 8.192573532480365, 14.916407401974636, 10.01197129081575, 8.965979099403043, 14.29407629636461, 17.394737375613655, 27.725705259799625, 8.46084315604897, 6.633702415743239, 13.108361494128314, 8.61612945764644, 8.145610060865971, 19.758701709071328, 19.30687645391644, 6.244807084169254, 12.977643743913488, 7.712933205402041, 7.998791730199653, 6.6236301129583905, 11.661294366771298, 7.781717400011029, 14.470782929261203, 17.972990878749982, 6.87159107647188, 6.389964032712565, 15.462514210228802, 10.49245504641656, 26.205451196281857, 29.22865306960641, 6.486268665336884, 8.898423903162573, 20.586797690909748, 6.113922966861271, 18.748307881834773, 8.477682705325908, 22.398151500526392, 14.31223334981359, 18.5418753344046, 7.0976345544916875, 16.324960734091377, 25.317585159788386, 16.362832920516247, 14.468224759059554, 7.545973396281419, 18.40514248190782, 6.164788819727534, 30.222695305176064, 8.021851023244666, 7.813219850748913, 26.445672187856346, 6.478390074268386, 21.039084307622918, 16.045870696095143, 13.501334937992672, 15.433915053744624, 14.257753030216957, 8.553135634112202, 17.60073125157141, 6.400338890221726, 6.054935727247886, 11.483972428053661, 7.549210247058104, 5.995775670439597, 18.608078546604375, 23.364449087370847, 13.613209905392777, 15.058382472354236, 9.102678986329602, 7.292079474575319, 17.817468418669016, 6.532651730073964, 7.055779276325831, 7.218815315844144, 15.146808081399444, 7.713171698209, 10.397403114729318, 25.297034015653153, 17.57589589124124, 5.715929589772075, 27.148687447448324, 14.67710749090832, 7.66507218412644, 6.758467615411328, 6.351236620072385, 5.401216931816196, 10.30316286358065, 9.529185992653355, 19.64474054811157, 17.19631363538593, 5.326712252918043, 20.024691241854043, 6.523867663434669, 16.30221311362729, 11.60603840271725, 8.605927238211656, 22.02314022250045, 20.78416604986634, 5.052251384924374, 15.221008290387346, 23.385519498538677, 5.911369387784165, 5.847491379775767, 13.70119471947402, 10.61236086716342, 9.521891483086469, 15.508730587276391, 8.170127607200534, 23.9316030948289, 22.928864743363363, 7.718966757147739, 7.64973595660894, 19.64862780559809, 18.755600891874618, 5.471462248492054, 16.609072877613876, 10.32699705947098, 9.331261130524865, 6.209400022399217, 9.910970565386327, 7.889847659354842, 11.303501513748923, 24.44783449628633, 19.308308089313037, 9.098116209724438, 11.548147500626868, 15.76645077532856, 5.563642362204754, 14.32742552446039, 7.850668893224943, 5.337992604793032, 12.246683093435646, 10.086262859816857, 24.940177559906175, 7.423070163296836, 8.107942090149272, 19.935924886835203, 17.682084795461776, 22.663383436676934, 9.168848070875287, 7.775737561737349, 23.008257125645176, 6.792822601448223, 5.085127354947965, 9.92419116731029, 21.872912764423106, 9.29415221684066, 14.371112358893173, 12.57545652959822, 15.156910881009974, 14.669250572974537, 21.58572568141203, 70.20802368324689, 20.48339199852867, 53.586557117397064, 7.644981836821894, 28.111917706655223, 6.339433603818076, 6.2465270118992455, 31.529479036396555, 15.232154628951678, 47.262872279823114, 13.202787630800955, 5.070947319092865, 12.913572431398459, 5.733890130450291, 5.938857956196885, 10.680372199417343, 13.793160927427483, 6.268666189921361, 18.515140275673858, 16.01956865339682, 5.24399673815152, 12.374343677114938, 5.376523572782575, 10.994884068817315, 13.321880994418006, 7.164901441990926, 16.37560512773709, 16.489222195027256, 19.09903155441434, 9.749137113171718, 13.045926655965607, 15.545967246681048, 8.740827493829963, 17.188263974023187, 7.387364395958688, 6.368306895020883, 17.683206152893444, 15.351133453221056, 5.454213032881416, 12.271166041042637, 8.347523380992362, 17.075533347424372, 8.900142897727255, 5.642489100769358, 19.812913940346718, 10.658708579452737, 13.539675936717558, 14.476178937565079, 15.093805755977055, 18.975528479476356, 6.29433378237579, 10.20681309713276, 23.767166550109167, 14.417684154727134, 5.372074140201321, 11.094073535800112, 12.350600771423347, 9.471895990864835, 11.17198326876774, 15.50665349524024, 5.373869231338842, 8.372828597930068, 6.073043333561132, 5.035249276785469, 7.099751657380047, 8.427457215093236, 7.7721395654394945, 5.447892754485703, 20.0793045390187, 22.505555986812052, 23.135618243550564, 5.379992402686742, 15.576446581041083, 18.921162782058786, 42.4699626401892, 23.72808354943436, 15.799770522846147, 24.60680158968448, 26.251858179292455, 50.3017409894263, 14.03183014025583, 9.201342393531307, 14.620645217809344, 18.807086576106972, 6.984919433278551, 11.939622673501198, 17.356908684068188, 21.05504095258272, 6.1206327160089815, 8.568110508101228, 6.067829280909774, 24.090119001570276, 12.400415828114825, 14.466135960828321, 16.55661037766737, 8.584404448982738, 18.034894433306594, 7.130611407873848, 7.259229075464968, 8.601835091055182, 10.090055869460974, 7.918624442791116, 22.117702127951844, 9.917873813841773, 21.599360587924505, 30.26917946603639, 19.734073794758284, 9.871386297577004, 16.986792092881906, 9.618517420047173, 52.432325325218194, 6.657012328552904, 6.028507226100055, 16.061774256425874, 17.790368647306956, 13.457833979651985, 8.788512692089492, 8.954905824103403, 17.160620588849806, 10.110261060396558, 22.083631920226285, 9.3810525083105, 8.793300104444262, 13.501365030575425, 24.43981600297062, 64.09027364596683, 12.338223992222314, 28.575109924509306, 11.470105612654287, 7.476624770751083, 5.248749860432955, 20.151397026246702, 9.802281503243732, 6.831609782547614, 10.539312474824769, 11.244787237534617, 6.685283601853968, 8.260961949694211, 12.874427091884476, 60.970311105191854, 5.45563146098147, 24.386492783440016, 9.347910708585278, 14.409869572122988, 28.791722692936226, 27.48567012164129, 72.88289766621017, 6.412210723438407, 6.8502363999090035, 6.6324774356707366, 12.815004149337934, 5.991601368720712, 18.31725454684807, 6.987172576799632, 16.995507021238687, 24.42812860485994, 29.140049413939018, 5.212760463638218, 17.705435888757414, 9.261618106370877, 6.252333434686153, 7.3299921722473425, 31.406491001460935, 14.793854145154054, 8.465444453801526, 7.509359902374287, 10.403971143495355, 10.390733551755908, 12.910645836183061, 10.877344517731466, 20.060009369623167, 9.960186758052378, 8.35065523656019, 5.231588215300191, 23.117484836341703, 13.068947887561748, 8.624170062457154, 12.74466052065026, 6.566520449206016, 23.046075765377356, 9.865434744004695, 12.866690708322501, 5.480086039664389, 7.341072179609662, 7.56509650969864, 7.166551244007264, 13.02400534830049, 13.882924901044529, 12.751704889038317, 5.944601834632993, 13.97977898768563, 30.374383143275963, 14.017504391816791, 13.97532427008365, 18.421909993822453, 6.534868299558633, 8.09927496392348, 16.138849812000622, 13.159522878466692, 5.543284246263801, 14.459761639684833, 13.237139643440445, 10.761787707545665, 16.884751287655966, 24.725216999086538, 6.06995837724157, 23.29592217773618, 9.743003584178785, 5.974824864497723, 6.789464386718178, 18.6225928617973, 132.6094769522928, 8.06593619454166, 5.5563982431916665, 7.385152273911026, 41.31638158103945, 10.981837184968663, 13.811660332009662, 15.565769010577602, 30.388094633823034, 6.081296266064248, 12.806748187842445, 6.448257693188095, 10.438542944242542, 16.377053179150394, 33.74539817354476, 15.771190751450769, 15.710614266581752, 6.619011046554477, 26.353123205528668, 7.043190389302997, 28.129202565444544, 26.001481938797994, 25.40223766775834, 5.306004241387878, 20.627079603552808, 44.35827788150388, 19.194855004654915, 15.901040293732688, 6.21607086078394, 13.376844672637624, 11.699069490653335, 6.586966620156847, 6.884110644945199, 24.80424042277789, 11.919157772434822, 18.81389618238297, 12.451151619695086, 7.0605611109861, 9.116676476828951, 6.270255898777572, 15.477517552854755, 16.47448757612894, 13.306963016159388, 13.565248572429153, 13.732996893245994, 6.654750447668848, 21.085211283177518, 7.537778654609343, 43.83046545008683, 12.061872474453994, 17.085748772093368, 17.41973449006736, 15.587174778060422, 5.580805277296793, 7.773119650475843, 6.644722902860699, 11.356260197765184, 26.80852096773293, 5.428676401326394, 10.845432237801138, 6.547753306942763, 14.691088909722506, 16.693303608652624, 9.508969136417116, 11.310801582526047, 7.613227652788659, 5.600111151673236, 15.029510296497723, 5.957553896923334, 7.920188140475491, 9.008041937374486, 16.11814875360843, 17.640136544384028, 22.11359954403304, 6.362852702735333, 6.187515295429543, 22.849798913572478, 5.810766119463816, 9.818974907780289, 30.90996507909441, 6.885456843484516, 22.866662974087475, 12.240042665259066, 7.579830927730889, 11.000188984679024, 7.940251997191429, 7.636394300963667, 12.980879718508788, 18.574917149632107, 8.916381705633821, 7.602855108248186, 19.03894468423656, 75.10143832677791, 6.245809688471396, 8.773998349511487, 23.737552331940496, 23.790706743143904, 5.082076780140445, 8.987688988093495, 10.326619391619401, 19.465647481419797, 18.66991085932817, 16.1724238819358, 5.61559829230166, 22.09252411732388, 8.740135922035082, 29.69048682234339, 10.040048726719775, 8.482536098001585, 13.1387373498497, 6.970893956000032, 18.968253227183624, 11.776124669809267, 6.002124023525573, 20.967490723792725, 6.040097030791792, 17.660769318434063, 7.350294759182319, 12.37736793072683, 5.840254808771119, 11.322011723437877, 19.11006913040186, 16.217153079212842, 31.558426550430095, 5.220293556338372, 7.147261159242439, 12.062973872662223, 16.62334711649803, 6.925504333170617, 23.769652066582083, 5.420091750912196, 21.067407968681835, 32.483652082070435, 6.704583005181676, 11.28727580733449, 18.173443064803834, 8.8608759877449, 5.286730877199525, 6.416964879730655, 7.477711366193234, 5.577884199694598, 11.138021018192822, 34.06669074916473, 6.938641714038072, 20.45012462314942, 28.694611927066745, 25.4382800641979, 11.03365014313821, 13.878116939937016, 41.24283253331852, 12.368061024802161, 9.721142785030706, 14.482191692864822, 33.70983889676083, 30.038110326180366, 8.264334365131791, 15.729088281614962, 10.867191710856828, 18.30854172689224, 8.210552152093308, 5.389863502705644, 8.563533837119973, 9.866376344954954, 5.885913081134456, 8.895139707765717, 31.853338176873436, 6.370928252788113, 5.519211559958069, 13.3732321516388, 7.335905610584781, 13.96680456191775, 20.560994937626443, 6.1008764559586695, 7.909507428555515, 14.818453286205308, 19.08210214424376, 12.168155663123626, 10.773762434267057, 5.956875917085182, 13.932118239003728, 9.489538797045142, 8.058223148986349, 6.020670978574737, 15.405591350087828, 7.4707793488305745, 28.63794230218461, 15.59028353090852, 7.399733891349403, 9.007629332495647, 6.448392071268162, 12.364621319881397, 18.604782574415538, 14.8600224320566, 35.78589356974461, 10.405705302119046, 8.199258969787149, 9.727790063901407, 12.138735562079722, 14.773511911162796, 28.809453536082827, 8.79840980187423, 5.641923822902217, 5.37298112059412, 19.591121027653653, 17.619284588397225, 14.551231311464546, 21.271283004091604, 22.503495361219514, 16.797456944040018, 14.61509991888342, 34.0634188978697, 14.636043849045787, 7.007445951869709, 12.150899587432347, 6.72178544817708, 18.072037273177777, 10.916966503492691, 5.886826102881216, 5.265821475557363, 13.710172390270218, 10.72082589088054, 15.680528812551874, 19.310684462797354, 20.904739435777206, 14.858699670104137, 6.46335976132559, 16.642928533291435, 5.252634888248021, 11.671431273853118, 18.20995388811424, 7.554936631437884, 10.012268134971913, 11.163780518909585, 27.96280369319941, 34.17690577140411, 19.73059400679386, 25.841117968308865, 20.49606270141303, 39.08931030075184, 38.32432559742525, 16.710824429324287, 21.09093158594243, 7.023236008067975, 14.325150084806332, 22.48236419453416, 6.577719084681392, 7.641846810519642, 16.445274377815732, 16.863614456619718, 57.38460222035037, 19.992895527279675, 10.035442599789835, 17.560367967895246, 17.061073392195787, 22.986985475435155, 7.080020269703302, 14.684996499816977, 65.45316159575104, 18.683122123516576, 10.364905219582365, 18.54678026583651, 15.079987858558523, 15.124268313980247, 8.434798353679586, 8.854515397138535, 35.969438941248995, 5.1727898677359345, 78.52520434257023, 9.092620817451703, 5.918365373480601, 10.441746320040956, 32.66492392441458, 13.485653439379437, 14.101417585974419, 8.051372096820218, 20.897836304486773, 5.43253689154135, 13.727121272876781, 12.414304953076957, 12.463653391918713, 49.79731692398464, 8.75563575142009, 12.57133238078485, 8.122424889770288, 10.638095527253098, 24.871302764978417, 8.342642897932944, 7.144445349408449, 15.506142197306447, 17.590753518703934, 16.79144625657189, 56.39709743233405, 6.157099770001824, 38.79978582493706, 24.32875037886879, 19.205752123636096, 23.29444166122993, 23.76288507533331, 29.83029019705277, 5.415596911678198, 71.60917173838908, 5.449979036436705, 19.132380007640464, 92.81227104080796, 6.208398308338992, 8.939956909270212, 9.004665654925207, 28.030477620664087, 14.866633637791136, 19.55834029711975, 5.6031711981382175, 33.53946998686332, 16.3405430117678, 8.01827805135799, 9.602542697307001, 5.090326716178534, 8.214709421296089, 6.83557341234754, 17.469423346080553, 13.010035518225662, 12.686691321759195, 22.72673570924934, 6.45549945693919, 20.92203707941683, 6.716298552578023, 18.14088867285203, 15.886375854891163, 19.738279539644296, 18.46210019805112, 30.150151743864384, 14.32092472711976, 45.94089524437945, 33.180965211626, 26.947076629658707, 6.93120462821912, 21.037895353983924, 7.3058878230893, 5.823902794741755, 17.961419299455617, 37.717323498986616, 10.005402889523996, 19.097007918162433, 17.47411349758113, 42.947991163620244, 17.087437305065727, 17.89673162089959, 14.992254762116229, 36.87713135585778, 7.8324456143053975, 6.78349876997483, ...])
caption, T_hit,count1 = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count1, caption);
([6464190.925575106, 6563958.333393243, 6666953.34078326, 6804011.492530334, 6829061.51884679, 6924129.590410255, 6947013.633102521, 6950536.472710542, 6983460.24564524, 7032473.826939501, 7038746.752329487, 7040562.976684806, 7066104.529185352, 7093632.8125, 7135716.103020287, 7187870.626827805, 7227646.842362041, 7298480.254595476, 7300244.648441611, 7350892.697457389, 7368607.507809716, 7369257.950040537, 7379497.957699641, 7380278.161576079, 7400992.419571591, 7404487.974012743, 7412130.90229884, 7439956.980140814, 7456263.15140471, 7458959.606102917, 7470291.200700005, 7475013.616598764, 7480063.4731755415, 7482006.340742057, 7482764.089219326, 7490544.213326281, 7502996.209618222, 7505890.976600171, 7533409.848661835, 7534468.2379662255, 7546412.380634997, 7549059.272755857, 7551682.388730236, 7554430.567238615, 7555262.831672282, 7575368.383473061, 7582866.28538294, 7583791.266029902, 7585127.688577799, 7587437.190816154, 7591675.104819252, 7596733.802024824, 7601535.013395047, 7610962.359066334, 7618065.87791745, 7619631.6047966145, 7621789.149200012, 7622437.254908893, 7623625.835078365, 7637196.987669044, 7638525.683074412, 7644682.482528479, 7655530.427948467, 7664414.840981656, 7665114.175447033, 7674783.189396079, 7683167.620456753, 7685572.447244111, 7690085.00559724, 7690624.004223098, 7690660.91888563, 7691920.508345139, 7691970.288941388, 7704637.15390849, 7705235.029481951, 7705436.515858415, 7705982.112197326, 7706896.7621153025, 7708547.914713594, 7711786.866068608, 7711842.443934833, 7712452.7115259, 7712788.716045873, 7713770.313766701, 7728081.680182103, 7739719.870231165, 7740119.036523134, 7742424.899731779, 7742878.590505812, 7743738.215296898, 7746445.434283993, 7748208.513127745, 7748664.941475474, 7759931.159240875, 7760296.300788229, 7768917.399631657, 7801303.225378918, 7801927.949448999, 7804024.5938409865, 7804083.911899066, 7805250.535814746, 7806085.693588076, 7814775.007993313, 7816840.225339743, 7835200.699962041, 7837434.845451413, 7838141.224746761, 7838490.607500274, 7839853.409468111, 7845919.481595013, 7846223.617913614, 7849742.816774006, 7854850.5105366865, 7857497.461485415, 7859004.33474731, 7859672.480539606, 7861699.022982824, 7862046.704636173, 7864518.672949773, 7867309.89002515, 7883735.696178458, 7885288.910677694, 7888864.495904038, 7889102.893733655, 7889116.937099867, 7889133.708879974, 7889575.035223519, 7891649.26800963, 7897086.942603537, 7899421.448554324, 7910360.059891955, 7911582.5984001225, 7915117.961061422, 7920001.074285163, 7924957.696444037, 7925605.10733588, 7926648.992891481, 7926685.6315892115, 7927926.5625, 7928297.909326942, 7929040.827995593, 7929490.641384526, 7929526.705971211, 7931400.016727273, 7931442.5979079055, 7931655.064602685, 7931908.062009153, 7932896.399231869, 7932982.633855205, 7935273.970182122, 7937786.498049568, 7940236.590067307, 7940305.5570579795, 7940562.144554396, 7941079.623641618, 7942827.160758197, 7943566.944819962, 7944834.518403845, 7945306.035366201, 7946387.348951888, 7947762.764692135, 7948446.09346335, 7948720.029985353, 7948933.508675484, 7949249.3457047995, 7949792.1875, 7950053.005290399, 7955601.909234222, 7964845.581662856, 7967168.458705395, 7967561.471319245, 7967910.356390301, 7969256.218264374, 7971682.869859228, 7971821.656786011, 7972336.109913552, 7998169.302319084, 7998627.149616535, 7999334.167899464, 8000929.30812298, 8001088.892895568, 8001644.174494994, 8002531.354318749, 8003733.285496329, 8003772.4751788825, 8004314.451655923, 8008937.006374128, 8011181.472481353, 8016241.047083499, 8018531.646770369, 8020019.057452117, 8020427.835276267, 8020764.932551091, 8024283.673338855, 8024517.0839264365, 8026031.416790968, 8026212.416081538, 8026269.075689203, 8027079.88206555, 8027879.898612558, 8029737.340451258, 8030592.767861878, 8031127.151642853, 8032463.959179758, 8032633.116379364, 8032870.133998978, 8035818.250873203, 8038860.738550316, 8047224.1230237745, 8048705.555701038, 8049975.902774341, 8049981.9469055, 8050560.4471536875, 8050999.299581837, 8053151.744069595, 8054203.96964141, 8054267.813638206, 8055067.480048481, 8056154.572877492, 8056790.077070495, 8058424.63056379, 8059942.480332006, 8060915.102307684, 8065062.193128054, 8076412.254011427, 8078149.249682989, 8078606.427680843, 8084615.093180933, 8089782.8125, 8090411.828639828, 8097960.153565765, 8108519.34775388, 8115515.805009265, 8116474.398623819, 8118803.52741529, 8123934.5304382825, 8125063.602166785, 8126776.903590861, 8128667.148477131, 8130698.623653943, 8134704.879041904, 8137076.538398128, 8145762.165685576, 8148667.197903697, 8150333.509434983, 8159327.819531488, 8159668.067653415, 8164772.030820912, 8179152.740545674, 8181196.579129788, 8181665.916601558, 8183127.49937793, 8184956.375943476, 8185242.085669251, 8185431.912964476, 8189441.016561441, 8194922.982255195, 8203421.442156925, 8204223.732114163, 8213925.895560858, 8216946.63481964, 8220455.651022192, 8224889.519583094, 8242672.8169552395, 8243519.944144029, 8244288.589645261, 8244306.739413869, 8244931.548397459, 8247710.151426718, 8248602.200572883, 8249525.0, 8249603.201717038, 8251612.101594565, 8252477.329874493, 8255037.08820541, 8273100.246012467, 8273738.128815259, 8274156.031388568, 8275069.388825308, 8275445.979608681, 8276363.518659283, 8276485.463028484, 8276653.045399513, 8276924.824400582, 8286136.944351151, 8286223.217593782, 8287898.864480796, 8289294.646290411, 8289424.817904094, 8291390.618398566, 8293183.520862225, 8293366.7212179685, 8300848.256594203, 8302622.40029135, 8303328.083300212, 8303626.878115582, 8303775.875579262, 8304277.543544814, 8305386.512700698, 8309357.536063939, 8309807.119081824, 8313352.373836482, 8315048.258194173, 8317883.742659552, 8317931.543438776, 8318268.163030532, 8320402.381517155, 8320909.691505261, 8321314.53040675, 8321351.433262985, 8322414.6810359, 8324177.080809678, 8324210.288598626, 8331097.005290834, 8340251.114147335, 8347249.870600018, 8357222.017462457, 8358154.682250659, 8367308.814336153, 8372868.076941428, 8379036.182218682, 8379241.128905263, 8380537.844706571, 8381062.086180892, 8390235.76198768, 8392735.080190904, 8412849.90861424, 8427795.63357948, 8430656.670344813, 8464925.24325625, 8467402.995027836, 8468049.838847874, 8470763.185002917, 8471141.331530808, 8471953.754128465, 8472374.46344071, 8473567.733006498, 8474241.000696106, 8475206.194267852, 8478040.07824991, 8481256.512415575, 8486744.875278791, 8490346.998456206, 8496777.269340407, 8496936.409701558, 8497540.74098844, 8499938.485825868, 8501198.112439258, 8501845.529066823, 8502440.473110141, 8503905.312803956, 8503913.17564518, 8504199.086120171, 8504752.726605931, 8505926.592828779, 8507116.904017847, 8507713.111625528, 8529674.031073052, 8533315.90961168, 8533982.556637978, 8535753.482876645, 8535934.427839618, 8536411.231555982, 8536660.413977513, 8539327.542401848, 8541685.691169152, 8552387.643152516, 8554197.59830289, 8554818.898866426, 8556170.48028743, 8557210.912207576, 8557667.824917324, 8558121.94656427, 8560696.274585245, 8561040.849999405, 8562175.99877687, 8562214.550350275, 8562241.7368241, 8589493.50727618, 8592439.29316107, 8598115.0635144, 8601090.910885978, 8603081.808725642, 8603347.824977232, 8604395.44274798, 8604506.875883654, 8604553.19644682, 8605601.3033042, 8605960.60983313, 8606108.255361414, 8608459.006490111, 8608618.393224495, 8608954.904505946, 8609234.907038635, 8609354.460603107, 8609474.7140283, 8609691.820314022, 8610228.434026508, 8611479.814256702, 8611546.167827854, 8611635.110979559, 8611786.161466453, 8612225.82146002, 8612440.044260534, 8612998.437332006, 8613097.965910664, 8613297.489166148, 8613375.728519425, 8614017.2971302, 8614157.565181294, 8614619.40708584, 8614730.96058566, 8615786.190803282, 8616342.388312433, 8616561.551528791, 8616563.678684508, 8618338.135944506, 8618649.884887325, 8618877.177118383, 8618886.713036323, 8619077.912741099, 8619086.972787544, 8619260.583698645, 8619584.274065226, 8619586.508869007, 8619701.869383678, 8619799.80128689, 8619891.07801613, 8620224.639562188, 8620354.832590366, 8620624.310725758, 8620767.814189741, 8620991.72474978, 8621032.768114023, 8621043.591843178, 8621078.56748467, 8621131.38501887, 8621196.801687596, 8621530.759235403, 8624304.386709763, 8624595.455694778, 8625260.743286056, 8627171.98896024, 8627188.242138293, 8627208.363621714, 8628452.959616128, 8628490.625, 8629821.949220093, 8630580.98035689, 8630762.901256714, 8631231.362474216, 8631600.904651716, 8631636.355542896, 8631860.931210168, 8632400.848029932, 8632418.412132187, 8633087.511608955, 8633180.608941384, 8633226.819242448, 8633229.646410601, 8633388.173863161, 8633585.351200163, 8633999.913329056, 8634033.87347852, 8634072.037751198, 8634264.393933225, 8634531.604347156, 8635278.847056806, 8635742.643406862, 8638922.831930988, 8641492.515933184, 8642410.145401793, 8642537.465861633, 8642696.23591133, 8643122.635450067, 8644195.647530288, 8644363.809863612, 8644581.072825044, 8644736.645247228, 8645036.05099874, 8645045.77859577, 8645201.004272416, 8645736.440469429, 8645849.201186089, 8645962.17769138, 8646299.576191673, 8646360.809812436, 8646456.289391048, 8646458.537885217, 8646586.149299547, 8647382.130919514, 8647596.576284759, 8647685.938524444, 8647907.104325835, 8648246.853375386, 8648575.662987418, 8648981.411608776, 8649059.403143227, 8649993.52237947, 8650196.21612094, 8650395.472117208, 8655884.228964472, 8666027.748106943, 8668959.291801313, 8669154.944731973, 8670489.506531648, 8670832.48522624, 8670838.40804592, 8672079.28333827, 8672160.587768529, 8672266.695493912, 8672341.823315453, 8672713.078794941, 8672745.3125, 8675584.807148218, 8676001.770816075, 8679543.514187533, 8679702.998457177, 8680566.16595668, 8680568.488942143, 8682340.46707104, 8682721.674194882, 8682895.837575039, 8683993.20383387, 8684317.651470069, 8690180.203650977, 8694063.51743602, 8694925.30714421, 8694927.059464322, 8695451.36529836, 8695609.101112163, 8701638.18573207, 8705167.056927297, 8716580.055236489, 8717047.398709998, 8722563.552743904, 8723098.472231003, 8724467.686922029, 8724595.864595292, 8724678.9039194, 8724732.04522576, 8724785.497913972, 8725878.745712848, 8726150.345318029, 8728230.227102313, 8740813.36602159, 8743411.513811087, 8745791.07484729, 8751411.25859974, 8754318.75, 8755305.692095619, 8756257.219270416, 8760215.89083349, 8762216.214164235, 8762337.04742425, 8762674.279657504, 8762919.830936618, 8763237.981464028, 8763253.921866, 8764057.36972822, 8765587.558140045, 8787918.03677669, 8788324.562789362, 8833220.064596085, 8889721.875, 8910199.094792485, 8914059.375, 8930610.898290409, 8932909.010819491, 8934143.878281182, 8943331.895934071, 8944714.571410967, 8954370.644315794, 8954432.400355782, 8954775.073634982, 8954905.845136076, 8955778.076244798, 8956557.138878917, 8962039.0625, 8966837.356278049, 8967045.060692517, 8992515.644458381, 9070891.831041949, 9091453.125, 9091465.41420902, 9091492.1875, 9095391.692588944, 9095681.669438247, 9096922.74372676, 9100657.114657328, 9101200.580459349, 9103144.421818182, 9103241.650803633, 9103321.29479806, 9103420.063742273, 9103860.889033152, 9104020.675142683, 9104075.575230876, 9104149.91629909, 9104206.131431593, 9104217.925558774, 9104242.561208189, 9104315.853571106, 9104489.386088066, 9104752.85776232, 9105293.231747448, 9105457.283614412, 9106036.840977486, 9106239.967362937, 9106296.21824584, 9106605.347989189, 9106856.369238038, 9108760.445774537, 9109486.823183233, 9109982.359604722, 9110667.775629828, 9110883.648041803, 9110958.301150545, 9120749.642756546, 9121772.44557265, 9123788.38574457, 9124108.232481271, 9124224.211906476, 9124429.58079953, 9124434.543832438, 9124525.948382244, 9124548.128971163, 9124832.088479428, 9125365.684475895, 9125627.847514901, 9125648.029392848, 9125955.97423874, 9126559.244678488, 9126755.37499965, 9126917.485657444, 9126923.065678256, 9126936.219767695, 9126954.125550162, 9127114.270964446, 9127521.742593119, 9127635.404713523, 9127679.71069185, 9128339.311608203, 9128678.617832799, 9128837.323728614, 9128838.726039676, 9129031.699722454, 9129075.397924425, 9129114.191145824, 9129613.220493823, 9129939.0625, 9130355.808080724, 9130525.471266255, 9132774.353893925, 9133953.125, 9140393.654628685, 9141899.599665498, 9144561.092176927, 9144862.038178053, 9144862.434326425, 9146355.548765197, 9146662.247716699, 9148063.571799522, 9148995.644227983, 9149502.9729773, 9149689.844784517, 9151163.718590258, 9152567.980411341, 9155359.374971803, 9156001.256173134, 9176312.924311997, 9181045.985914465, 9184160.756653741, 9213255.1629882, 9243181.846790941, 9247379.6875, 9249735.71906238, 9255253.671484234, 9275330.834319955, 9275415.14344379, 9275664.3996733, 9276466.233853864, 9278113.075504161, 9278121.653229559, 9283330.645098574, 9285229.255143993, 9288322.678041166, 9294654.450684603, 9297690.359645706, 9298551.586662024, 9299411.683485825, 9303183.722282004, 9314671.972189222, 9315744.897575827, 9316751.204654071, 9318538.492190156, 9318697.895615283, 9318981.06531484, 9319574.576236118, 9319638.025382396, 9319726.00008295, 9321340.197032942, 9321363.795684092, 9321410.32063086, 9322117.633980863, 9322460.311900502, 9322638.166864594, 9323226.608950766, 9325200.768192308, 9327257.624077927, 9328380.063861785, 9329329.620210322, 9330100.394447459, 9331192.39029005, 9332079.8015632, 9332896.902536588, 9337316.932872504, 9338550.255855767, 9339850.206063006, 9340066.42381982, 9342526.153605321, 9369386.041419892, 9372299.5023563, 9373704.247531004, 9375346.033864714, 9386616.529662084, 9389091.813536089, 9390743.706465868, 9391409.900348226, 9391853.125, 9394220.894120691, 9405215.252486616, 9409745.923984326, 9427773.372316739, 9428606.166856918, 9428668.032158565, 9429339.153252084, 9429918.118937816, 9430616.724890893, 9442377.58969681, 9451078.123942113, 9453513.333444247, 9456357.098774446, 9456638.891312802, 9462193.007979877, 9466134.654899517, 9468437.203122294, 9471910.087006645, 9472327.688466905, 9474091.606449988, 9480546.352344764, 9481503.848745579, 9483006.539359502, 9484325.028058507, 9485266.745560868, 9488417.956849698, 9488552.521086695, 9488603.858955417, 9488789.41554713, 9489949.430152997, 9490018.144521797, 9490032.01572092, 9490275.625190917, 9490686.63057361, 9492056.126915712, 9492779.212895915, 9493889.630331978, 9494013.304457126, 9494167.862743849, 9494401.911398368, 9494470.433352573, 9494625.785079276, 9494704.068400854, 9494796.516494475, 9494991.274590712, 9495451.659782154, 9495598.96342685, 9495919.13085164, 9495989.823169682, 9496046.036027296, 9496534.929198729, 9496735.843560638, 9497657.8125, 9498121.572510667, 9498262.599743716, 9501800.649882672, 9501858.76065911, 9502313.92082148, 9503290.162569879, 9503616.826569788, 9504461.827340584, 9504728.7912917, 9505515.625, 9505560.193205373, 9506001.787580451, 9506228.25285185, 9506843.571546204, 9509546.813980376, 9509876.57784982, 9510548.4375, 9512811.608491568, 9513173.86506572, 9515051.43653704, 9515209.199395591, 9515218.75, 9515468.707700057, 9515594.872178169, 9515774.826682063, 9515860.291981127, 9515927.978414122, 9516057.585423825, 9516423.92691486, 9517522.446481356, 9518950.927046802, 9521475.997176481, 9521967.588025773, 9522310.154160447, 9524580.96088635, 9524897.006120192, 9525072.632491082, 9525860.65589255, 9526224.40119277, 9526817.309478743, 9527247.649208248, 9527475.354749108, 9527647.65629116, 9527813.738481032, 9528249.761106968, 9528462.698447976, 9528541.621420445, 9528565.806280503, 9528660.479184529, 9529071.200638743, 9529125.116652599, 9529132.430795604, 9529214.0625, 9529475.160400886, 9530329.087463686, 9530466.778047414, 9531249.748605687, 9532312.968690893, 9533258.061512321, 9548598.895438515, 9549773.4375, 9550126.045636967, 9551702.956147274, 9558925.434321996, 9559092.750509286, 9560734.33021443, 9561427.908791402, 9561457.10685828, 9561612.993187523, 9561818.066753816, 9562166.473063322, 9562636.498415574, 9562657.68848947, 9566301.039972618, 9566802.346626021, 9567611.351906499, 9571182.724143155, 9572023.626534043, 9573740.542480676, 9574074.547792234, 9582334.943896119, 9585009.162365492, 9591739.590011865, 9597456.110857187, 9598854.063260684, 9600300.722318936, 9600410.57200785, 9601721.598100679, 9602893.165945359, 9603213.311837723, 9603222.876425156, 9605476.54060291, 9606537.346922422, 9607703.509672802, 9608834.64041334, 9609830.009572402, 9613145.967994725, 9633590.489450589, 9634321.02113413, 9634559.397956902, 9635314.409536293, 9635671.875, 9635901.928139327, 9635905.390293181, 9635928.119641883, 9636367.862757124, 9637357.8125, 9638891.022828503, 9639132.271216782, 9640158.987713516, 9640462.328312607, 9640563.656262634, 9640867.742259113, 9641275.105501683, 9641464.994317172, 9641886.364411991, 9642134.375, 9642257.147701384, 9642769.479774125, 9642902.612694016, 9643061.400963616, 9643174.605482832, 9643456.090007968, 9643456.181032673, 9643632.384108134, 9643722.113148183, 9643754.137733478, 9644181.955907878, 9644212.535863152, 9644334.422136629, 9644473.70765136, 9644616.56397789, 9644785.463655293, 9644858.12862357, 9644955.502213128, 9645087.203425841, 9645110.692684794, 9645466.699336665, 9646467.141985718, 9646596.432260519, 9647831.010630239, 9648288.589563642, 9648544.985313151, 9648569.613331981, 9648735.577689288, 9648802.254523583, 9648831.964203563, 9648860.477869377, 9648957.042850731, 9649061.699177738, 9649066.86362666, 9649219.974924902, 9649328.583600126, 9649431.354537098, 9649648.524255605, 9649687.640649632, 9649736.4936337, 9649828.538263738, 9649949.901589865, 9650002.200877227, 9650081.25, 9650138.261811843, 9650328.305193827, 9650382.475918135, 9650611.907865085, 9650886.598385304, 9650989.503295856, 9651089.0625, 9651116.909961239, 9651155.475591004, 9651231.25, 9651427.64498074, 9651451.060190191, 9651666.77403715, 9651696.849527657, 9651838.43030106, 9651861.78139774, 9651937.301775308, 9651972.686925871, 9652067.511774426, 9652072.893171135, 9652142.49165395, 9652312.082498847, 9652351.424078384, 9652370.663070709, 9652635.994360024, 9652636.43157395, 9652811.748679414, 9653057.221892886, 9653352.920464411, 9653493.190782564, 9653584.133846458, 9653820.957353726, 9653853.352617178, 9653976.749494588, 9653992.88095996, 9654267.733834095, 9654309.01344055, 9654371.713371025, 9654384.338183254, 9654404.602356078, 9654605.473205907, 9654749.685209524, 9654844.408048121, 9654931.383209191, 9654960.173254862, 9655047.59684201, 9655131.952338396, 9655150.486844359, 9655200.53636854, 9655248.4375, 9655372.453380343, 9655455.293867104, 9655560.950750234, 9655603.97900681, 9655614.654677996, 9655678.224322025, ...], [19.67850200543998, 19.742286237258597, 15.313771680983358, 7.8171258890091195, 5.744783094215319, 14.583926460896507, 22.22754772631114, 12.081802621966562, 6.183573336274594, 9.68393675653626, 16.380160483653498, 17.134038632419525, 23.035099710907687, 67.96138395543356, 7.78579070855248, 9.612121933631533, 8.269392910876341, 7.278954197753812, 5.319670365596779, 17.321420662185492, 10.682665397953176, 11.349719489602364, 13.38171065242979, 11.185362928006558, 6.524096425420381, 9.767174313153838, 42.1714396616089, 20.77759710315187, 12.32546823836608, 8.412690081320465, 5.744403599456248, 13.476692706239568, 16.184936931739585, 15.299035685927425, 8.300757673873013, 17.060319837337634, 6.9568785799619235, 5.41208766065022, 6.328956242761941, 7.427978991381751, 10.946120276236766, 14.56561560745717, 13.539786632805628, 7.955759119629995, 7.7277707874102735, 13.707091988161519, 7.86092734395741, 5.364377982805936, 5.590348001789917, 23.634135335872635, 11.295596331033837, 20.794764586216687, 18.099303081893495, 34.76895744467504, 16.001901595244963, 11.731588859294146, 5.946991615898016, 5.2835761276717434, 6.942519719000449, 15.389074652464442, 6.599779557597994, 6.436580130633598, 12.52283041158591, 5.429092601098175, 7.151461921744645, 16.60314251443035, 9.726445522958223, 17.687369030529492, 6.896287704965257, 6.341557220204035, 7.596519029352548, 20.78961101478488, 7.1152725544611926, 23.179315404241187, 5.080994310946658, 15.459602084784542, 6.382643952867679, 14.403327272005223, 8.92529701050342, 6.190295726723746, 5.210004701066986, 10.53757885569445, 13.767209120462185, 6.763759481766502, 6.852539466246062, 13.87091812407156, 6.532964241445159, 9.248035761572465, 7.780751815578268, 12.466101560996504, 15.426940131053154, 8.695428664228789, 6.019790487096377, 6.47295744110792, 13.1272911435104, 7.68180734527327, 6.783713279626311, 7.540954403987033, 21.619168927538148, 21.869258354505078, 8.591820195888292, 6.715769194322019, 6.488344982903735, 15.790490618423041, 18.50620593455486, 11.95234176975492, 8.631420426969159, 11.100463332593213, 8.442964348374272, 23.121235964345672, 11.421921642616354, 17.630947278258247, 17.32473171598465, 17.77395582941712, 13.748262339624082, 15.741764020158199, 17.767823364604883, 9.191388838770566, 6.080123154909383, 9.808479077590542, 9.135360695055635, 8.207890433702532, 11.880207518288488, 5.160010309433772, 10.757642500604971, 12.89299875498822, 15.077486379062002, 12.439953844807842, 22.557681720246237, 6.681255140437629, 12.398564803818548, 8.176512388300916, 19.025362030715126, 6.207425468163588, 14.516870575017283, 13.771932553042957, 9.849751318956567, 29.43257776941909, 37.142985737177966, 8.921456019819765, 11.46055274255779, 5.24560409340892, 9.455735818932652, 9.345587191456396, 16.776450468469314, 24.327155147288394, 6.299245263744909, 10.457444884983937, 14.301679867052636, 18.57200464368825, 12.133664231082708, 18.190884718939785, 7.370469764572052, 13.961779160349506, 27.321982369073766, 9.894267178960092, 5.600758107742501, 9.455675987242016, 8.176245575472448, 14.39542998409807, 7.192814015254646, 5.758331112891118, 8.142623276603354, 5.752544828757901, 18.084429693005042, 39.88028357089471, 14.50405366170215, 6.542854115335754, 16.077307387022763, 23.862581611087986, 5.854563153057471, 20.72042707278607, 18.5461323489023, 15.164737824528405, 8.17445742743065, 15.64208089203596, 5.361210687576585, 12.188790156782293, 10.81872318360667, 6.429220775880065, 26.305886756898374, 7.237695926699472, 5.619841490050708, 11.957347597993609, 8.631690595716835, 16.66598184913067, 7.433953148379608, 9.526885906100249, 27.410237438213564, 16.738287066899876, 5.837084804932012, 17.326966681118346, 16.813488026734625, 6.382451200245683, 6.743003583265929, 15.103328992887405, 20.930669885225825, 5.173016717014692, 5.719253586681926, 11.474541595075383, 25.727481330731123, 9.87559524601489, 7.285438082163981, 12.76803455591413, 5.253730600547473, 10.85970842555718, 13.32843817093818, 10.830351396762412, 19.59669308151897, 19.751605315250824, 8.829607539358133, 6.60218340763985, 6.6694080298379355, 6.948750171510192, 15.681882133316227, 26.64082055114433, 6.8952978100036875, 7.712589248188484, 8.226879075766114, 6.984500295691056, 20.67963137548743, 24.644893921510207, 6.203343934698226, 13.888045100409176, 14.080075091294699, 19.313308616907758, 11.665592458144737, 10.387091678905977, 34.360082951662996, 21.856812109320742, 12.610328413336726, 8.630174887495302, 16.73715369483739, 13.056718708638243, 11.820911166214072, 7.6604414773303, 5.442349422455952, 6.3112765249914435, 8.266048623171509, 18.722815174580763, 5.956261547216807, 23.224694905769766, 5.910810749625762, 9.340215607776761, 9.99952391692713, 5.518436606466847, 6.634520836852677, 15.57065991277686, 9.026188802053005, 5.914046965166422, 8.447045285424698, 7.391618524962274, 9.440215331814562, 37.14312572951724, 18.258850446945655, 5.843531899272208, 18.909161266671973, 5.382180698473126, 11.621704269247214, 17.34804686065155, 10.771955037448835, 8.871559415612047, 8.544044986849096, 20.369363600665064, 16.867765658627544, 8.05141027206409, 17.051052109205205, 16.21548925729535, 16.82686653027027, 5.36427209121087, 45.68395802562099, 5.1671521328683365, 25.93156525986921, 10.077132604422866, 6.424419871830522, 12.997523282107522, 16.528590871883086, 9.15315134638976, 12.298351003751455, 7.30859793821186, 6.985472364372106, 13.396510575749454, 14.646548127837011, 25.48144285852059, 5.087674784936787, 5.390133246068579, 9.720568068285393, 19.981182967805207, 8.192573532480365, 14.916407401974636, 10.01197129081575, 8.965979099403043, 14.29407629636461, 17.394737375613655, 27.725705259799625, 8.46084315604897, 6.633702415743239, 13.108361494128314, 8.61612945764644, 8.145610060865971, 19.758701709071328, 19.30687645391644, 6.244807084169254, 12.977643743913488, 7.712933205402041, 7.998791730199653, 6.6236301129583905, 11.661294366771298, 7.781717400011029, 14.470782929261203, 17.972990878749982, 6.87159107647188, 6.389964032712565, 15.462514210228802, 10.49245504641656, 26.205451196281857, 29.22865306960641, 6.486268665336884, 8.898423903162573, 20.586797690909748, 6.113922966861271, 18.748307881834773, 8.477682705325908, 22.398151500526392, 14.31223334981359, 18.5418753344046, 7.0976345544916875, 16.324960734091377, 25.317585159788386, 16.362832920516247, 14.468224759059554, 7.545973396281419, 18.40514248190782, 6.164788819727534, 30.222695305176064, 8.021851023244666, 7.813219850748913, 26.445672187856346, 6.478390074268386, 21.039084307622918, 16.045870696095143, 13.501334937992672, 15.433915053744624, 14.257753030216957, 8.553135634112202, 17.60073125157141, 6.400338890221726, 6.054935727247886, 11.483972428053661, 7.549210247058104, 5.995775670439597, 18.608078546604375, 23.364449087370847, 13.613209905392777, 15.058382472354236, 9.102678986329602, 7.292079474575319, 17.817468418669016, 6.532651730073964, 7.055779276325831, 7.218815315844144, 15.146808081399444, 7.713171698209, 10.397403114729318, 25.297034015653153, 17.57589589124124, 5.715929589772075, 27.148687447448324, 14.67710749090832, 7.66507218412644, 6.758467615411328, 6.351236620072385, 5.401216931816196, 10.30316286358065, 9.529185992653355, 19.64474054811157, 17.19631363538593, 5.326712252918043, 20.024691241854043, 6.523867663434669, 16.30221311362729, 11.60603840271725, 8.605927238211656, 22.02314022250045, 20.78416604986634, 5.052251384924374, 15.221008290387346, 23.385519498538677, 5.911369387784165, 5.847491379775767, 13.70119471947402, 10.61236086716342, 9.521891483086469, 15.508730587276391, 8.170127607200534, 23.9316030948289, 22.928864743363363, 7.718966757147739, 7.64973595660894, 19.64862780559809, 18.755600891874618, 5.471462248492054, 16.609072877613876, 10.32699705947098, 9.331261130524865, 6.209400022399217, 9.910970565386327, 7.889847659354842, 11.303501513748923, 24.44783449628633, 19.308308089313037, 9.098116209724438, 11.548147500626868, 15.76645077532856, 5.563642362204754, 14.32742552446039, 7.850668893224943, 5.337992604793032, 12.246683093435646, 10.086262859816857, 24.940177559906175, 7.423070163296836, 8.107942090149272, 19.935924886835203, 17.682084795461776, 22.663383436676934, 9.168848070875287, 7.775737561737349, 23.008257125645176, 6.792822601448223, 5.085127354947965, 9.92419116731029, 21.872912764423106, 9.29415221684066, 14.371112358893173, 12.57545652959822, 15.156910881009974, 14.669250572974537, 21.58572568141203, 70.20802368324689, 20.48339199852867, 53.586557117397064, 7.644981836821894, 28.111917706655223, 6.339433603818076, 6.2465270118992455, 31.529479036396555, 15.232154628951678, 47.262872279823114, 13.202787630800955, 5.070947319092865, 12.913572431398459, 5.733890130450291, 5.938857956196885, 10.680372199417343, 13.793160927427483, 6.268666189921361, 18.515140275673858, 16.01956865339682, 5.24399673815152, 12.374343677114938, 5.376523572782575, 10.994884068817315, 13.321880994418006, 7.164901441990926, 16.37560512773709, 16.489222195027256, 19.09903155441434, 9.749137113171718, 13.045926655965607, 15.545967246681048, 8.740827493829963, 17.188263974023187, 7.387364395958688, 6.368306895020883, 17.683206152893444, 15.351133453221056, 5.454213032881416, 12.271166041042637, 8.347523380992362, 17.075533347424372, 8.900142897727255, 5.642489100769358, 19.812913940346718, 10.658708579452737, 13.539675936717558, 14.476178937565079, 15.093805755977055, 18.975528479476356, 6.29433378237579, 10.20681309713276, 23.767166550109167, 14.417684154727134, 5.372074140201321, 11.094073535800112, 12.350600771423347, 9.471895990864835, 11.17198326876774, 15.50665349524024, 5.373869231338842, 8.372828597930068, 6.073043333561132, 5.035249276785469, 7.099751657380047, 8.427457215093236, 7.7721395654394945, 5.447892754485703, 20.0793045390187, 22.505555986812052, 23.135618243550564, 5.379992402686742, 15.576446581041083, 18.921162782058786, 42.4699626401892, 23.72808354943436, 15.799770522846147, 24.60680158968448, 26.251858179292455, 50.3017409894263, 14.03183014025583, 9.201342393531307, 14.620645217809344, 18.807086576106972, 6.984919433278551, 11.939622673501198, 17.356908684068188, 21.05504095258272, 6.1206327160089815, 8.568110508101228, 6.067829280909774, 24.090119001570276, 12.400415828114825, 14.466135960828321, 16.55661037766737, 8.584404448982738, 18.034894433306594, 7.130611407873848, 7.259229075464968, 8.601835091055182, 10.090055869460974, 7.918624442791116, 22.117702127951844, 9.917873813841773, 21.599360587924505, 30.26917946603639, 19.734073794758284, 9.871386297577004, 16.986792092881906, 9.618517420047173, 52.432325325218194, 6.657012328552904, 6.028507226100055, 16.061774256425874, 17.790368647306956, 13.457833979651985, 8.788512692089492, 8.954905824103403, 17.160620588849806, 10.110261060396558, 22.083631920226285, 9.3810525083105, 8.793300104444262, 13.501365030575425, 24.43981600297062, 64.09027364596683, 12.338223992222314, 28.575109924509306, 11.470105612654287, 7.476624770751083, 5.248749860432955, 20.151397026246702, 9.802281503243732, 6.831609782547614, 10.539312474824769, 11.244787237534617, 6.685283601853968, 8.260961949694211, 12.874427091884476, 60.970311105191854, 5.45563146098147, 24.386492783440016, 9.347910708585278, 14.409869572122988, 28.791722692936226, 27.48567012164129, 72.88289766621017, 6.412210723438407, 6.8502363999090035, 6.6324774356707366, 12.815004149337934, 5.991601368720712, 18.31725454684807, 6.987172576799632, 16.995507021238687, 24.42812860485994, 29.140049413939018, 5.212760463638218, 17.705435888757414, 9.261618106370877, 6.252333434686153, 7.3299921722473425, 31.406491001460935, 14.793854145154054, 8.465444453801526, 7.509359902374287, 10.403971143495355, 10.390733551755908, 12.910645836183061, 10.877344517731466, 20.060009369623167, 9.960186758052378, 8.35065523656019, 5.231588215300191, 23.117484836341703, 13.068947887561748, 8.624170062457154, 12.74466052065026, 6.566520449206016, 23.046075765377356, 9.865434744004695, 12.866690708322501, 5.480086039664389, 7.341072179609662, 7.56509650969864, 7.166551244007264, 13.02400534830049, 13.882924901044529, 12.751704889038317, 5.944601834632993, 13.97977898768563, 30.374383143275963, 14.017504391816791, 13.97532427008365, 18.421909993822453, 6.534868299558633, 8.09927496392348, 16.138849812000622, 13.159522878466692, 5.543284246263801, 14.459761639684833, 13.237139643440445, 10.761787707545665, 16.884751287655966, 24.725216999086538, 6.06995837724157, 23.29592217773618, 9.743003584178785, 5.974824864497723, 6.789464386718178, 18.6225928617973, 132.6094769522928, 8.06593619454166, 5.5563982431916665, 7.385152273911026, 41.31638158103945, 10.981837184968663, 13.811660332009662, 15.565769010577602, 30.388094633823034, 6.081296266064248, 12.806748187842445, 6.448257693188095, 10.438542944242542, 16.377053179150394, 33.74539817354476, 15.771190751450769, 15.710614266581752, 6.619011046554477, 26.353123205528668, 7.043190389302997, 28.129202565444544, 26.001481938797994, 25.40223766775834, 5.306004241387878, 20.627079603552808, 44.35827788150388, 19.194855004654915, 15.901040293732688, 6.21607086078394, 13.376844672637624, 11.699069490653335, 6.586966620156847, 6.884110644945199, 24.80424042277789, 11.919157772434822, 18.81389618238297, 12.451151619695086, 7.0605611109861, 9.116676476828951, 6.270255898777572, 15.477517552854755, 16.47448757612894, 13.306963016159388, 13.565248572429153, 13.732996893245994, 6.654750447668848, 21.085211283177518, 7.537778654609343, 43.83046545008683, 12.061872474453994, 17.085748772093368, 17.41973449006736, 15.587174778060422, 5.580805277296793, 7.773119650475843, 6.644722902860699, 11.356260197765184, 26.80852096773293, 5.428676401326394, 10.845432237801138, 6.547753306942763, 14.691088909722506, 16.693303608652624, 9.508969136417116, 11.310801582526047, 7.613227652788659, 5.600111151673236, 15.029510296497723, 5.957553896923334, 7.920188140475491, 9.008041937374486, 16.11814875360843, 17.640136544384028, 22.11359954403304, 6.362852702735333, 6.187515295429543, 22.849798913572478, 5.810766119463816, 9.818974907780289, 30.90996507909441, 6.885456843484516, 22.866662974087475, 12.240042665259066, 7.579830927730889, 11.000188984679024, 7.940251997191429, 7.636394300963667, 12.980879718508788, 18.574917149632107, 8.916381705633821, 7.602855108248186, 19.03894468423656, 75.10143832677791, 6.245809688471396, 8.773998349511487, 23.737552331940496, 23.790706743143904, 5.082076780140445, 8.987688988093495, 10.326619391619401, 19.465647481419797, 18.66991085932817, 16.1724238819358, 5.61559829230166, 22.09252411732388, 8.740135922035082, 29.69048682234339, 10.040048726719775, 8.482536098001585, 13.1387373498497, 6.970893956000032, 18.968253227183624, 11.776124669809267, 6.002124023525573, 20.967490723792725, 6.040097030791792, 17.660769318434063, 7.350294759182319, 12.37736793072683, 5.840254808771119, 11.322011723437877, 19.11006913040186, 16.217153079212842, 31.558426550430095, 5.220293556338372, 7.147261159242439, 12.062973872662223, 16.62334711649803, 6.925504333170617, 23.769652066582083, 5.420091750912196, 21.067407968681835, 32.483652082070435, 6.704583005181676, 11.28727580733449, 18.173443064803834, 8.8608759877449, 5.286730877199525, 6.416964879730655, 7.477711366193234, 5.577884199694598, 11.138021018192822, 34.06669074916473, 6.938641714038072, 20.45012462314942, 28.694611927066745, 25.4382800641979, 11.03365014313821, 13.878116939937016, 41.24283253331852, 12.368061024802161, 9.721142785030706, 14.482191692864822, 33.70983889676083, 30.038110326180366, 8.264334365131791, 15.729088281614962, 10.867191710856828, 18.30854172689224, 8.210552152093308, 5.389863502705644, 8.563533837119973, 9.866376344954954, 5.885913081134456, 8.895139707765717, 31.853338176873436, 6.370928252788113, 5.519211559958069, 13.3732321516388, 7.335905610584781, 13.96680456191775, 20.560994937626443, 6.1008764559586695, 7.909507428555515, 14.818453286205308, 19.08210214424376, 12.168155663123626, 10.773762434267057, 5.956875917085182, 13.932118239003728, 9.489538797045142, 8.058223148986349, 6.020670978574737, 15.405591350087828, 7.4707793488305745, 28.63794230218461, 15.59028353090852, 7.399733891349403, 9.007629332495647, 6.448392071268162, 12.364621319881397, 18.604782574415538, 14.8600224320566, 35.78589356974461, 10.405705302119046, 8.199258969787149, 9.727790063901407, 12.138735562079722, 14.773511911162796, 28.809453536082827, 8.79840980187423, 5.641923822902217, 5.37298112059412, 19.591121027653653, 17.619284588397225, 14.551231311464546, 21.271283004091604, 22.503495361219514, 16.797456944040018, 14.61509991888342, 34.0634188978697, 14.636043849045787, 7.007445951869709, 12.150899587432347, 6.72178544817708, 18.072037273177777, 10.916966503492691, 5.886826102881216, 5.265821475557363, 13.710172390270218, 10.72082589088054, 15.680528812551874, 19.310684462797354, 20.904739435777206, 14.858699670104137, 6.46335976132559, 16.642928533291435, 5.252634888248021, 11.671431273853118, 18.20995388811424, 7.554936631437884, 10.012268134971913, 11.163780518909585, 27.96280369319941, 34.17690577140411, 19.73059400679386, 25.841117968308865, 20.49606270141303, 39.08931030075184, 38.32432559742525, 16.710824429324287, 21.09093158594243, 7.023236008067975, 14.325150084806332, 22.48236419453416, 6.577719084681392, 7.641846810519642, 16.445274377815732, 16.863614456619718, 57.38460222035037, 19.992895527279675, 10.035442599789835, 17.560367967895246, 17.061073392195787, 22.986985475435155, 7.080020269703302, 14.684996499816977, 65.45316159575104, 18.683122123516576, 10.364905219582365, 18.54678026583651, 15.079987858558523, 15.124268313980247, 8.434798353679586, 8.854515397138535, 35.969438941248995, 5.1727898677359345, 78.52520434257023, 9.092620817451703, 5.918365373480601, 10.441746320040956, 32.66492392441458, 13.485653439379437, 14.101417585974419, 8.051372096820218, 20.897836304486773, 5.43253689154135, 13.727121272876781, 12.414304953076957, 12.463653391918713, 49.79731692398464, 8.75563575142009, 12.57133238078485, 8.122424889770288, 10.638095527253098, 24.871302764978417, 8.342642897932944, 7.144445349408449, 15.506142197306447, 17.590753518703934, 16.79144625657189, 56.39709743233405, 6.157099770001824, 38.79978582493706, 24.32875037886879, 19.205752123636096, 23.29444166122993, 23.76288507533331, 29.83029019705277, 5.415596911678198, 71.60917173838908, 5.449979036436705, 19.132380007640464, 92.81227104080796, 6.208398308338992, 8.939956909270212, 9.004665654925207, 28.030477620664087, 14.866633637791136, 19.55834029711975, 5.6031711981382175, 33.53946998686332, 16.3405430117678, 8.01827805135799, 9.602542697307001, 5.090326716178534, 8.214709421296089, 6.83557341234754, 17.469423346080553, 13.010035518225662, 12.686691321759195, 22.72673570924934, 6.45549945693919, 20.92203707941683, 6.716298552578023, 18.14088867285203, 15.886375854891163, 19.738279539644296, 18.46210019805112, 30.150151743864384, 14.32092472711976, 45.94089524437945, 33.180965211626, 26.947076629658707, 6.93120462821912, 21.037895353983924, 7.3058878230893, 5.823902794741755, 17.961419299455617, 37.717323498986616, 10.005402889523996, 19.097007918162433, 17.47411349758113, 42.947991163620244, 17.087437305065727, 17.89673162089959, 14.992254762116229, 36.87713135585778, 7.8324456143053975, 6.78349876997483, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)