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 = 47560
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);
([3170662.778920304, 3205002.984061642, 3314839.8119114935, 3324948.2119158, 3331775.261740507, 3366779.551484165, 3425693.556915628, 3432736.7742413757, 3446643.662523684, 3450689.3509218395, 3475690.041482327, 3478682.074535926, 3506761.7348984797, 3527071.051991788, 3532787.2821951313, 3545248.4874090306, 3633634.8890272686, 3665673.048272454, 3681805.387395829, 3685323.8266829406, 3695072.9207246304, 3698220.4254627167, 3771977.6269566035, 3953140.934509467, 4292489.0625, 4329443.047960084, 4605160.93104762, 4618337.5, 4622633.128566535, 4622666.510156012, 4776051.14053092, 6352520.008670687, 6381229.6875, 6419202.938267179, 6433871.929356284, 6552844.5811529355, 6649769.937740729, 6770503.233477557, 6783700.916627535, 6801013.9649035, 6814028.179139443, 6815809.51832191, 6900330.682784515, 6953339.878681957, 6970449.053704422, 7015180.149239343, 7079059.817028945, 7093627.98458546, 7104727.938597363, 7106446.320647336, 7112950.0812923135, 7114469.750735856, 7114470.872660009, 7115006.737047807, 7127012.011785672, 7133018.850359661, 7144152.254009876, 7145016.87678038, 7145234.893622324, 7145898.945505077, 7147918.654474609, 7148142.078903356, 7149568.249750321, 7151365.710881779, 7152124.026688438, 7153212.3765514, 7154127.6368762925, 7155456.6632691985, 7166215.625, 7207576.446686671, 7247587.5, 7270136.836615882, 7273561.383126703, 7282497.464919823, 7284680.00527561, 7286382.223306828, 7287011.48633993, 7290583.841367485, 7292134.603726318, 7316507.1098935595, 7318127.828882741, 7323643.422760534, 7324326.76757137, 7332485.65969385, 7334470.673693894, 7375741.3380641965, 7386710.0873153405, 7387397.2688259585, 7387631.582849457, 7407501.188998979, 7426113.992395118, 7427895.851177876, 7430560.9375, 7430560.946610323, 7431596.875, 7441773.455903717, 7441816.387357855, 7446277.236230395, 7447762.36829888, 7452950.054625879, 7468288.821010372, 7488177.090400975, 7494541.347700473, 7494888.738509626, 7497132.6308089355, 7499621.047457991, 7526707.696145794, 7536632.969486956, 7537943.041790175, 7549669.557254451, 7585340.869869667, 7596953.845175921, 7606892.870066757, 7607901.565802508, 7625091.549279223, 7646841.169813864, 7696888.232952024, 7747385.180958239, 7779335.352337171, 7781149.77840142, 7852435.556667241, 7891110.9375, 7950218.054314734, 8002483.689929875, 8065007.514102424, 8070721.657686096, 8108369.45920465, 8108977.638829696, 8201991.467833956, 8221711.754691131, 8226817.358840493, 8278450.368070567, 8310332.706500282, 8311786.672618344, 8345656.473546236, 8402116.23681655, 8403816.306020025, 8435949.151810132, 8451624.749344457, 8481090.93658454, 8482302.491937317, 8520129.981932271, 8539774.852152703, 8545468.620284373, 8571990.01663024, 8582852.651624458, 8587395.494858438, 8589237.5, 8596049.127064921, 8596218.775608834, 8635000.043312347, 8637194.449647924, 8638682.60187736, 8639062.817461468, 8641962.482160741, 8643543.43853402, 8645058.918615257, 8656470.768385123, 8661081.25, 8663929.147094473, 8666653.739106877, 8682675.48293851, 8704309.754080532, 8705611.998604933, 8706693.07625161, 8708549.541975655, 8711266.686974162, 8722390.625, 8743593.48114523, 8743844.809107594, 8745068.943061076, 8745213.84446005, 8746751.41913508, 8747214.340300974, 8790755.482927425, 8796487.46262275, 8797375.098873993, 8797724.082006957, 8801791.140279071, 8802196.892519942, 8802696.868195094, 8809231.672801951, 8810948.11339481, 8819293.327634284, 8820648.009772643, 8820926.132963764, 8821124.018872377, 8822053.97051397, 8822822.064668588, 8823062.378683673, 8823101.542730195, 8823268.759606263, 8823541.300807495, 8829186.400079362, 8840452.09702926, 8840690.137210108, 8842474.809958464, 8842702.138561916, 8844306.593084443, 8845090.55448559, 8848417.43835474, 8857332.023260474, 8857533.57731856, 8858515.81024289, 8858868.104448006, 8858924.214977417, 8859852.424357401, 8870274.1224116, 8873418.577867188, 8874902.788609006, 8884805.531521913, 8888012.589547774, 8888821.319767728, 8890559.163191078, 8890929.914893515, 8891382.868784865, 8891968.020960998, 8891978.222476581, 8892093.795941511, 8892281.759826066, 8892640.651658615, 8892755.863677278, 8892996.90868275, 8894461.912547724, 8896521.114856133, 8897229.459363136, 8897242.948388772, 8898294.008412309, 8901391.164254611, 8901508.056879308, 8902998.351359375, 8904726.512819529, 8908004.555805251, 8912269.83455445, 8912993.211852444, 8914276.836335083, 8915224.568524085, 8917388.03367622, 8924927.740088334, 8931683.505337553, 8931845.519710703, 8938638.059969002, 8938775.088903233, 8940555.567549655, 8943884.495948268, 8956352.88330919, 8957462.385244923, 8968013.282779796, 8972065.204068882, 8972099.696725234, 8973027.237893643, 8976459.705305733, 8979475.558670588, 8993278.611012153, 8994815.356748166, 9015513.920127697, 9016617.003564889, 9019465.026986761, 9035957.891533965, 9036556.25, 9040674.058669508, 9042500.747409927, 9043452.568278922, 9047273.866273459, 9064190.177807603, 9076854.373538697, 9077040.29306828, 9077404.51432058, 9081852.951585252, 9084372.88444449, 9111988.422542104, 9116990.930396456, 9118633.023289522, 9121240.680032, 9121333.687103326, 9131357.571735842, 9145485.011051282, 9146110.935969714, 9153125.0, 9155895.135534316, 9159348.012949757, 9159898.820258435, 9171186.005523356, 9187945.237935934, 9194228.180079846, 9195499.530429726, 9196719.150048202, 9211377.337176243, 9216091.086728364, 9216345.9626374, 9217251.291916402, 9217364.965589192, 9218135.979119552, 9218263.086802239, 9218314.30684086, 9219198.044871286, 9220458.935364086, 9230298.352658905, 9230430.899752425, 9231150.0, 9233699.550693288, 9235341.62897204, 9237711.418812504, 9238350.785821013, 9238495.442441383, 9241022.817932399, 9250520.904627828, 9252149.68828257, 9253292.801619375, 9253357.959146386, 9254301.155227741, 9255247.607072271, 9255859.784726383, 9256630.672733739, 9257504.70979737, 9257558.293702332, 9257681.930039842, 9257903.842853485, 9258713.952580005, 9258770.943221087, 9259158.501426587, 9260215.637426836, 9261473.926449897, 9267425.025711346, 9267600.13036472, 9267870.96839347, 9267908.93857748, 9268232.912806274, 9268285.717452802, 9268564.943032082, 9268834.342882426, 9269295.546769517, 9269441.900644429, 9269491.76837372, 9269807.000755584, 9270107.878741372, 9270316.72052796, 9270368.709890896, 9270538.894721285, 9270982.39027227, 9271112.995198278, 9271144.890179798, 9271281.543205263, 9271477.980569433, 9271529.096781522, 9271713.990933822, 9271774.027155228, 9272060.173394457, 9272174.613833975, 9272461.537001632, 9272805.390682759, 9273613.874953154, 9280566.426965754, 9285191.41590158, 9289856.957944635, 9299279.390470363, 9338077.697526745, 9347784.003310865, 9354914.289896272, 9356570.196596477, 9357234.375, 9358030.518069776, 9360035.06430011, 9361227.811056225, 9362081.454375189, 9362183.020808643, 9375497.22950949, 9380428.796161432, 9382789.930432819, 9383228.423436904, 9384775.069286406, 9387241.883674448, 9392322.054742422, 9397144.72503332, 9424644.256095437, 9445056.223166626, 9451906.531950932, 9473540.32505649, 9473611.330017632, 9474019.611456553, 9475629.235417923, 9481274.464189691, 9510722.333666792, 9512956.305118438, 9527890.09138781, 9530794.403419837, 9532098.855028527, 9535746.382416565, 9545972.100177683, 9545991.820174383, 9545992.503078267, 9545995.887118917, 9546123.704265097, 9546340.392375577, 9546432.064990748, 9546546.744055029, 9546870.4700693, 9547145.722539762, 9547263.724865245, 9547344.995737238, 9547956.316365223, 9548071.572313461, 9548122.909969885, 9548158.168394873, 9548538.697424492, 9548788.924352469, 9548855.468960091, 9549050.106508596, 9549668.75, 9550363.445070205, 9550398.91933625, 9550436.48767869, 9550512.600329675, 9550649.161250204, 9550964.074426282, 9550981.111881612, 9551039.450491482, 9551138.299487986, 9551210.897516157, 9551284.282587137, 9551318.710564727, 9551386.606855879, 9551424.469640335, 9551427.15709313, 9551510.323201912, 9551596.432870202, 9551834.453819675, 9551983.632196302, 9552018.885061793, 9552083.427475711, 9552105.568129785, 9552216.683933022, 9552318.783148786, 9552413.623936072, 9552417.056469519, 9552526.741103359, 9552544.931520922, 9552573.335755287, 9552654.89183959, 9552695.96158759, 9552760.693401255, 9552853.221794127, 9552885.781897454, 9552898.829062888, 9552928.261621267, 9552931.311109934, 9552933.953626323, 9552953.753393654, 9552958.93376762, 9552987.209984515, 9553001.811031485, 9553022.915356837, 9553023.505871128, 9553068.76512943, 9553076.5625, 9553078.196053788, 9553083.310822614, 9553087.478784092, 9553088.304604992, 9553137.748785548, 9553175.817972653, 9553176.198701464, 9553187.251930956, 9553197.350480907, 9553198.447111594, 9553202.314959502, 9553207.31408727, 9553242.028207641, 9553276.329402968, 9553303.356119938, 9553330.260610176, 9553337.002628084, 9553345.361329269, 9553381.323866837, 9553381.999342162, 9553399.477578778, 9553405.91295602, 9553409.919301853, 9553413.470515784, 9553417.297009153, 9553433.392585507, 9553483.237980396, 9553558.888314566, 9553600.862632828, 9553642.416863667, 9553649.664549025, 9553654.7777594, 9553655.739160376, 9553686.061173895, 9553711.639135642, 9553749.487067863, 9553754.718957834, 9553770.883952951, 9553772.441343188, 9553773.383307418, 9553821.198891472, 9553879.341050707, 9553903.816422436, 9553921.340272384, 9553925.440805502, 9553960.970705694, 9553963.75875269, 9553996.994124893, 9554003.108054131, 9554042.239327725, 9554047.144110056, 9554049.739054538, 9554126.245299337, 9554140.730703065, 9554184.295282422, 9554200.0242141, 9554259.841595579, 9554273.399346527, 9554275.699470751, 9554295.61265875, 9554361.512386125, 9554415.984594658, 9554417.32192662, 9554480.580940599, 9554505.74308114, 9554583.696441786, 9554610.312775683, 9554654.6875, 9554695.614559662, 9554704.29535086, 9554738.285719315, 9554742.228168156, 9554766.357899262, 9554766.842085315, 9554767.250486283, 9554776.857217733, 9554816.901520062, 9554875.085299013, 9554892.261598917, 9554919.831745293, 9554922.325292908, 9554984.36515751, 9554994.274600852, 9555002.616561618, 9555044.948761918, 9555062.736751704, 9555086.896118687, 9555120.84457027, 9555195.753896827, 9555206.986159442, 9555216.429532744, 9555218.190785024, 9555230.289573865, 9555256.901330238, 9555310.113283504, 9555377.537286624, 9555465.203877462, 9555561.484284813, 9555628.63757715, 9555655.31060711, 9556394.306717735, 9556449.200402236, 9556937.743238345, 9561401.979523653, 9561514.78280707, 9561565.07512188, 9561949.642365718, 9562029.138250535, 9562116.631979274, 9562173.946632441, 9562240.540118156, 9562275.793724617, 9562548.302285561, 9562570.699342348, 9562728.947926406, 9562746.887984259, 9562786.887451172, 9563139.087129949, 9563201.368027747, 9563295.046804463, 9563455.141606351, 9563519.288433397, 9563522.42021139, 9563560.417803645, 9563579.662799597, 9563604.704191627, 9563803.79040388, 9563857.142553737, 9563870.446388217, 9563935.346395895, 9563960.135039985, 9564106.983954042, 9564109.966622038, 9564168.626700241, 9564270.563236313, 9564359.123628737, 9564410.788893264, 9564411.451938886, 9564546.543450017, 9564635.196868889, 9564848.372742606, 9564921.233279428, 9564922.7112419, 9564940.567734016, 9564985.014492964, 9565219.583463917, 9565370.727318851, 9565488.760336732, 9565621.254830599, 9565708.059808254, 9565790.417807808, 9566104.406528348, 9566231.646719733, 9566395.773703158, 9566514.109968225, 9566661.0779259, 9566673.547068298, 9566715.76087604, 9566723.095677014, 9566944.963314202, 9567202.450388335, 9567215.753587496, 9567246.919926712, 9567261.16261919, 9567273.827100461, 9567310.677309187, 9567321.349615153, 9567417.252259597, 9567423.97848174, 9567439.773757134, 9567554.833718209, 9567629.146662092, 9567659.553133097, 9567704.709314745, 9567724.894898744, 9567725.056834025, 9567829.485377938, 9567889.878523193, 9568023.578322908, 9568029.386460437, 9568037.011228643, 9568050.398796327, 9568123.139703466, 9568154.652663354, 9568154.929032672, 9568287.033636853, 9568299.747211365, 9568384.132057076, 9568389.100856395, 9568441.486859398, 9568455.636392549, 9568494.173634132, 9568569.678019904, 9568626.34361952, 9568650.961438153, 9568676.543322446, 9568681.325441726, 9568748.305975193, 9568794.78372248, 9568797.301289387, 9568800.154232347, 9568837.669617739, 9568839.91205829, 9568874.146145886, 9569047.51974908, 9569058.657648487, 9569088.0213244, 9569120.302216671, 9569209.305663833, 9569246.875, 9569291.445323242, 9569330.395093583, 9569424.541671803, 9569489.3948565, 9569613.473854916, 9569615.459683107, 9569661.102630472, 9569717.89025045, 9569878.582659522, 9569883.765202804, 9569887.879238708, 9569916.885809304, 9569945.146631163, 9569950.538588012, 9570013.999830624, 9570136.999162195, 9570188.592949895, 9570245.235135116, 9570362.797448892, 9570451.606368212, 9570478.892003674, 9570530.207697246, 9570925.150264459, 9571220.174344832, 9571255.159098912, 9571333.734896563, 9571560.93129456, 9571674.356929744, 9571684.186673487, 9571991.105002673, 9572219.249290993, 9572225.492173094, 9572350.373678528, 9572584.252503792, 9573005.713245573, 9573021.689291095, 9573046.05925007, 9573075.904161034, 9573253.223581456, 9573292.645165069, 9573321.913771903, 9573490.324141981, 9573609.37208532, 9573687.384300122, 9573713.097291404, 9574202.133570924, 9574273.811750254, 9575016.671680937, 9575183.973244643, 9575320.092167964, 9575566.294009402, 9575760.077473132, 9575900.287433915, 9576581.626455866, 9576582.396849874, 9577725.18419971, 9578474.407427114, 9579066.532861402, 9582245.832469, 9582260.100094052, 9582315.023876298, 9582350.57581849, 9582527.747374943, 9582877.874705486, 9583030.551883508, 9583309.518947192, 9584230.999478506, 9584337.901531618, 9584570.796200024, 9584961.60093002, 9585457.724660542, 9585713.923823565, 9585978.619338902, 9586046.920251215, 9586256.572067194, 9586270.714788292, 9586319.051454358, 9586321.647695603, 9586371.775357112, 9586381.03371122, 9586384.572414398, 9586418.032976096, 9586425.496027825, 9586428.081636326, 9586482.539912611, 9586508.267712269, 9586533.733233957, 9586548.796337934, 9586569.597963225, 9586574.138484728, 9586619.481684307, 9586717.212183246, 9586732.135620637, 9586738.782884985, 9586868.699414795, 9586879.352233293, 9586887.791956162, 9586902.261122797, 9586915.488080138, 9586951.523713104, 9586967.978237186, 9586972.144573355, 9587005.034533618, 9587017.826160474, 9587048.998558281, 9587072.45749862, 9587073.176939204, 9587106.1217833, 9587109.670989135, 9587110.176057609, 9587112.380768247, 9587139.228180544, 9587174.154144173, 9587207.091574486, 9587285.288653689, 9587337.68902142, 9587353.155149234, 9587404.253485072, 9587430.264186148, 9587449.465071682, 9587484.80382973, 9587596.679033, 9587607.41602509, 9587655.93036833, 9587697.947024003, 9587721.89257817, 9587756.331793334, 9587797.222717853, 9587797.370556207, 9587799.616528377, 9587809.507573301, 9587838.979033355, 9587881.191293107, 9587899.606587294, 9587924.640836539, 9587934.929218689, 9587946.997062989, 9587959.605064692, 9587962.809886426, 9588008.244627569, 9588042.079923451, 9588068.960964927, 9588116.055649886, 9588116.168960605, 9588129.250976417, 9588138.473736592, 9588145.234718945, 9588158.931042872, 9588183.087690877, 9588228.24802559, 9588302.76012569, 9588308.849188754, 9588326.653793983, 9588370.982255684, 9588374.450451983, 9588382.842466818, 9588447.8245524, 9588457.04182146, 9588457.424684726, 9588460.567181276, 9588497.365870718, 9588538.742336798, 9588552.53095595, 9588563.474260869, 9588569.827933459, 9588606.425906409, 9588607.53567962, 9588611.942818332, 9588658.931697216, 9588678.317938175, 9588737.418098645, 9588759.69816009, 9588763.435291152, 9588897.509972816, 9588918.478559956, 9588925.380510243, 9588936.901194222, 9588950.817460377, 9588980.981254607, 9589003.663433397, 9589022.669464126, 9589044.403440123, 9589076.808262445, 9589150.847350257, 9589403.923458917, 9589471.42218983, 9589537.15153738, 9589574.023790793, 9589599.73135522, 9589607.440542586, 9589840.715846479, 9590019.47841295, 9590429.095339023, 9590453.70978268, 9590715.349084424, 9590745.239330243, 9591566.6428318, 9597173.147920746, 9597456.957148725, 9597526.995349191, 9597667.690962773, 9597833.134595532, 9597907.381322604, 9597922.111444723, 9597960.34890295, 9597979.990508271, 9598055.637809757, 9598071.861502202, 9598181.734581072, 9598310.91072285, 9598333.055122217, 9598418.160805158, 9598581.240221152, 9598679.290614119, 9598756.834475743, 9598835.716240956, 9598851.384760741, 9598870.554322409, 9598886.902477391, 9598900.655268662, 9598924.935714932, 9598943.849734118, 9598968.152841149, 9598993.31052823, 9599031.123508025, 9599134.520780936, 9599163.174509956, 9599188.224446604, 9599216.943805778, 9599307.547368916, 9599379.847257758, 9599621.096849341, 9599688.849667221, 9599690.547647748, 9599691.504665148, 9599691.949174315, 9599717.909507014, 9599724.584976427, 9599927.42708308, 9599959.811026372, 9600245.202358946, 9600298.440420952, 9600325.620650264, 9600340.289463932, 9600399.29382251, 9600416.135490283, 9600421.925883567, 9600454.883133762, 9600822.294005914, 9600883.913609276, 9601001.37585488, 9601089.128296057, 9601133.75778658, 9601186.416793821, 9601235.494857697, 9601291.319675181, 9601301.520180257, 9601321.764829919, 9601435.153005477, 9601550.315998077, 9601837.562271742, 9601866.302453035, 9601870.053886553, 9601871.519666536, 9602067.120074045, 9602114.004992059, 9602123.560165647, 9602132.75731864, 9602160.027670627, 9602180.165652862, 9602218.23958907, 9602234.65832272, 9602248.312002266, 9602268.441055492, 9602291.314881118, 9602299.586818848, 9602321.918581301, 9602353.188020699, 9602380.35922101, 9602387.673887093, 9602389.707810016, 9602403.166411286, 9602427.591834038, 9602460.911045266, 9602490.589134121, 9602492.755014285, 9602563.102122772, 9602629.263795933, 9602634.040835839, 9602653.452287927, 9602654.711337926, 9602656.519200772, 9602657.61305911, 9602701.641926784, 9602733.011938527, 9602773.412623918, 9602834.049422095, 9602856.805409776, 9602896.535168698, 9602919.662017986, 9602939.924142115, 9602944.547807325, 9603068.471990371, 9603114.54280376, 9603121.996471165, 9603295.225787245, 9603303.068738699, 9603316.677624159, 9603329.702485695, 9603333.534399644, 9603440.805108132, 9603455.262499413, 9603496.204463366, 9603512.690013442, 9603563.085525325, 9603599.601898948, 9603635.31237939, 9603724.680361442, 9603728.614522543, 9603827.57246635, 9603897.691893037, 9603970.588890495, 9603986.970497923, 9604036.65105825, 9604088.58314393, 9604122.065464702, 9604126.787135355, 9604136.07402387, 9604273.521736953, 9604299.43263323, 9604447.83977303, 9604601.309669498, 9604638.86362863, 9604761.913932635, 9604841.241462044, ...], [11.593584253505801, 8.21342693664493, 15.502419951817346, 6.064950450920723, 8.430016094131116, 9.218982563791279, 14.253319444993398, 13.56193505895359, 5.16332931183568, 6.822487002921894, 24.02411111428714, 31.9239133785872, 5.2242246338757985, 24.04757197463837, 9.153785618459885, 11.206624341323808, 17.344718426422297, 5.234380651985704, 18.505755406590488, 17.338388711961805, 14.073617206540742, 7.151466133793208, 29.502824795373794, 41.59489847845562, 78.44025677161821, 51.15145618440264, 6.087428482965624, 89.5877931389102, 19.54499225593281, 5.88251187061289, 35.03922213104518, 23.70195041750081, 70.11229198650818, 14.274533846276148, 6.093770091022971, 102.02015155997057, 29.14466557197964, 14.791832955546415, 46.89544382761078, 25.24934257258411, 15.151958529859591, 20.601219311473113, 7.41020743862203, 5.760748503234689, 9.913118017078636, 6.561993739005764, 6.135305071092881, 9.21543133093338, 7.073299251123783, 13.179611679463724, 15.260682881524504, 20.898329305286357, 14.881975936198579, 6.1402559447390095, 13.358440532021433, 15.338347273524711, 12.413169102754127, 5.791341911994272, 6.87165917857575, 7.261716164686741, 5.700705368795668, 8.229972523257727, 8.941437014524258, 6.780774180297076, 5.745310435094298, 14.490970674262366, 6.6698180886407705, 5.8452048316300464, 62.12796509507065, 9.235359393631214, 90.12589947435447, 27.985569845958352, 17.233250900090024, 17.795005297837708, 24.658617657134933, 13.088229210460778, 6.576711807071432, 13.234868732190723, 15.891392416859022, 19.684992804872124, 9.092971123939494, 6.226720764810002, 9.511038531717533, 8.144936442527383, 6.5452424410003935, 18.595924121169638, 23.751902409083147, 16.817443347502284, 5.728274029935924, 20.820769485384396, 7.578077226727496, 17.487635542332914, 46.19344172159547, 11.141976745054073, 68.01906925591145, 15.01212283689054, 6.008664668042997, 7.86655549410286, 12.74627066901655, 25.208591178938512, 18.058570793869762, 17.4247696801256, 18.662637853533386, 8.12236803735053, 6.069406566998845, 30.770519303283024, 9.234919509339331, 5.2495603815743, 19.640386911270834, 38.07669712991703, 8.420457204117353, 6.362687270525678, 9.98395028277728, 11.13287276272859, 12.962788611231009, 19.476611340784693, 13.324591090064974, 6.176123371768775, 13.098703600268175, 24.806680710210042, 12.731480191319406, 65.86882035403372, 19.74044925152864, 7.954734440751409, 21.730359072964184, 24.86770838178398, 18.569377705239532, 8.95157790973254, 19.54999149588905, 7.354219941126465, 5.469169037622432, 16.558301348254076, 26.59141535451365, 6.60885143864939, 11.496076760074823, 7.840599185678303, 8.682838773568317, 10.018471856023131, 24.402198976418433, 5.41052071947603, 20.261049589029177, 5.725756241894797, 10.904216873109343, 14.469117304989703, 5.8881200244877725, 7.440551979947001, 11.42523216893648, 50.48241386347404, 18.860534835778562, 15.040025031741527, 15.109206283383202, 8.694797801839607, 10.813711336197025, 16.307363875717947, 14.873947694049965, 13.873861887897467, 29.460616978399464, 17.019623064619744, 58.276603710647905, 17.618733033706945, 14.92666622078582, 27.805870274287244, 16.614292255880013, 10.425076903892485, 19.9188988079021, 6.211014180471884, 21.48785633588569, 42.66640027996709, 14.007055060479953, 21.459325803268104, 8.39137989895918, 14.170836671233385, 9.213052277171943, 16.11780102562457, 19.18701124611577, 7.5897746815987075, 6.2797717296737945, 18.138649549998803, 22.024352369736807, 11.155202469541521, 5.813476932651368, 18.626567519151163, 5.596362008598487, 8.998099652806797, 7.45553064921201, 22.22604263056215, 12.176805198449237, 7.9406285475798954, 15.717322691945663, 31.16208922840179, 6.759566088131759, 7.123979143336317, 7.8674329500259415, 11.936899062932985, 6.337180016273385, 23.825239314778475, 8.188573506275183, 12.165757629206322, 11.709945087157498, 27.203419536648067, 21.67912177463573, 12.598038270271596, 18.089802478511523, 9.493107186623764, 6.023445248505954, 7.342012065272871, 26.941725393152282, 17.2636415370632, 14.323644187081605, 70.85750851484367, 10.164034195906217, 11.270621190971251, 10.358180801123366, 14.191302577370877, 8.410602308215553, 27.79123355129034, 10.151904447047228, 9.415207972637614, 6.27302024712343, 12.030535157638353, 9.354046722396006, 22.707348740850215, 11.180766441730945, 10.318843944918475, 10.116470509554821, 24.714250410154495, 23.374268605168638, 16.02729827296129, 5.644590235424153, 5.8322862616241125, 5.201232855840049, 14.75547249706439, 17.051829813668686, 8.957522613738615, 13.222769135402821, 11.584519139409025, 13.517718798516954, 8.590508185047797, 6.219762311953044, 17.180020483203315, 11.467810253487064, 27.003205196426443, 6.781386157071188, 10.2057973590052, 15.423457550823324, 24.513022663444247, 8.226811075196238, 19.093079833234526, 5.680482483774895, 13.89918019544095, 9.97620739806403, 6.831291195400422, 27.64998941606031, 6.140141744183408, 17.75891054364278, 25.997198585690608, 26.207642638073306, 7.400377416312528, 15.251556831236195, 36.816571335611705, 9.918355982026823, 18.836593234326987, 8.01259359439733, 11.871287361486596, 7.008659164380817, 13.866175691199828, 5.091978746906118, 6.729418222703747, 6.070249370458215, 8.0142732052114, 7.387090212764931, 16.249055021916522, 25.222470595180823, 15.155498059247948, 18.6991570999701, 24.538083371558344, 7.299328840439137, 14.935679894131855, 40.70184094349982, 30.656471615152263, 5.783221105576237, 6.316799426726758, 8.322879795441871, 27.131880215649666, 15.155687863425534, 18.948978921492163, 32.33834322201155, 12.601314444117438, 7.24835655608715, 9.94911318439504, 24.13391148906137, 29.630993001711712, 15.102552590015174, 17.775894882213034, 5.209691998877054, 13.630055279369953, 22.117167608562237, 22.559960023831295, 6.4335535931097, 35.57148012619815, 13.81432690935764, 28.143992378301036, 6.86355792266274, 12.627195103178193, 5.346394102268557, 13.010087962406951, 30.969165253164142, 23.255738264125515, 5.746989635712987, 5.952278934978215, 13.587388448140585, 8.715771811958236, 11.83481662313187, 15.32946346702586, 15.027183118795252, 17.159162183245435, 12.387890767396147, 8.706549449082836, 33.03665415685494, 17.729827725148958, 7.872985112951859, 6.765990028374628, 17.202479538006145, 8.30022087690634, 15.462824184871515, 18.212555357151114, 8.987770062693096, 19.193080730299883, 6.239791615717389, 12.853855930718854, 14.820489232391857, 21.61011143102332, 18.807770196763197, 9.000486647707486, 12.546307255921437, 5.617719313066292, 10.468634225359667, 11.065587143778302, 10.875208186581075, 22.305663909364423, 17.23762860640099, 10.526071799022462, 5.136818371667631, 9.212193556199662, 16.39426012980786, 9.271614257407824, 6.887227342949617, 23.19773785278174, 13.64901102193418, 9.895569181029192, 12.439057968753218, 14.271809904345616, 19.236040541339126, 6.9323907353184975, 18.56073255995093, 22.36783794447289, 5.68008205747489, 32.0270569183523, 5.407238915795789, 14.517406033934881, 34.69797166373205, 10.148592529675025, 31.830531940474074, 13.866229634430358, 6.519613287349818, 7.680357944556075, 15.583097861783575, 25.02491740994945, 6.183259736590793, 11.6285868363243, 5.711181813632125, 9.087068051313661, 13.536849119106057, 10.31882647371797, 19.983440836183856, 5.164737122789393, 16.13735463445619, 6.705066979767375, 7.751654311459823, 16.715133728173793, 8.976316466289385, 21.143159562998445, 5.980369720010956, 16.576144077726266, 13.234923274647473, 18.1964326714106, 8.52044542995104, 7.4342921551169185, 11.498912078328761, 13.101772575182535, 17.482111277794253, 6.883915927693408, 16.066116518131842, 19.783096145854387, 6.013667807704957, 9.223082875217646, 18.76093602520782, 7.758594756965759, 10.638015241951214, 13.857561266346217, 15.200643425003161, 9.087939394697703, 32.53341017170627, 16.496973805666652, 22.9536218351546, 10.918427465411515, 5.5722486120699575, 16.980533557818127, 29.103320097915965, 10.28270363165738, 31.375157427435155, 17.55539383511824, 9.417703278329554, 18.669943058291476, 8.29289422860206, 5.3932200173002425, 5.138881787222564, 19.217422330786082, 19.924090039741678, 7.097369184125251, 6.0840078736878445, 12.364486747858068, 7.422054297733005, 6.152194098303474, 7.395204989259675, 22.090487133084114, 11.253183268423674, 19.37064151199089, 23.376978341983595, 7.841914364992261, 5.030237392150565, 6.410947441009616, 22.466558753677745, 22.12866075956942, 7.556523860451517, 7.669138572366471, 9.028780614667056, 14.567386957479773, 5.4063436218514935, 6.59389424045025, 7.0587305730374315, 18.348125788882975, 10.892899149639534, 5.974246315894263, 6.791091940835596, 11.22458817783925, 16.948382399672646, 7.8475113589696806, 5.679240677206126, 38.232711003294966, 15.981709159156889, 10.399120818992182, 11.236283842601562, 11.151437710678799, 31.746078533213296, 9.392214600240617, 17.255276071876434, 6.759278355452171, 6.93552426045283, 6.299150786136928, 7.928544200049666, 13.715218375860225, 9.130100130657512, 11.962241093944014, 11.142763649727408, 5.6570739687853635, 6.411699488673828, 17.499647500862743, 19.834467609227325, 6.296847088960972, 8.614832196368745, 6.668112790810878, 7.134346817454815, 14.847121255276015, 7.898780724822274, 22.513741653096545, 7.0355846461716895, 5.360925404947899, 13.080990274246519, 6.281133916305246, 7.827443878855669, 7.2379770606095555, 21.62695637809193, 13.53943494609998, 7.183078519399505, 13.800491504450786, 18.440965622485614, 10.413234161082707, 15.434823693946875, 18.51760311645217, 23.717151103087232, 7.129745590920389, 6.58056479025119, 15.783509012684114, 14.738898939416481, 5.3732411098405874, 6.224397294618888, 12.412975795433786, 21.15353030849605, 5.049051406316818, 15.069602674121425, 7.496951725486872, 5.714381609372786, 14.877310703071092, 7.622091067483164, 15.891331959339826, 5.3885911595138785, 8.125669116157852, 9.422409492713188, 5.808105299428677, 11.165767109647398, 8.549760212526818, 7.111458257223494, 6.359810270089845, 5.211137098892597, 9.86990721736086, 16.515543993928954, 15.00071194752953, 12.88571161782068, 6.994282594919901, 10.21034495148871, 12.996960144756645, 31.26206034176911, 11.309060966873325, 5.514346253796891, 10.097694896065535, 9.36602876753112, 8.716309400006809, 23.18746298128922, 19.234442564304317, 11.621890566991777, 6.231730577659109, 13.368383597508114, 5.618156664893087, 5.898604140089939, 16.989209350040447, 8.281379301209643, 7.804676424447531, 8.034841077204165, 9.041681290171482, 11.51909141134504, 6.027474254260745, 5.987120627379089, 8.534654261230502, 5.427382712781664, 7.922676521869154, 10.35329038782912, 9.898264508222008, 5.998207962615489, 6.920428572603049, 7.403657920257368, 18.79801729707347, 14.177236676751061, 5.024283849413802, 9.920402742840222, 15.287290390678505, 5.183518230273074, 9.545907197398332, 11.909138035704313, 10.025041099871668, 21.009562433816374, 7.030510246488065, 18.10179855347171, 8.90205433832146, 9.80250575227338, 10.997573318609513, 5.759206092450481, 10.922736693777004, 9.681420983450087, 10.1398551327636, 8.293455574581671, 7.987200889085737, 9.352316380677419, 12.757660164754899, 9.116412225713576, 11.92034726943765, 12.088360543534094, 14.897515179346057, 8.927503299894367, 14.84819148059698, 5.342493968732946, 7.863042389997638, 10.220432299533922, 7.157097252164607, 13.083271664291606, 19.014430960594048, 12.508106681310647, 5.859091693632687, 7.559242832199348, 9.552812504442873, 9.127529819229176, 25.898518117730678, 7.800538721411888, 19.702085581413872, 5.148464352120202, 6.7506467561924755, 6.962396632991969, 7.9365511589493005, 26.969008484087624, 7.300353163117519, 5.761937738490729, 8.518838433021854, 23.723148189124835, 5.435763222375864, 9.549653140057051, 35.6323889648194, 9.10461258656633, 5.843929092559341, 17.048681565616278, 5.0993916314335435, 5.168644964977403, 16.747166053825882, 10.920137657929178, 5.685343435086607, 29.197215933817006, 7.376199237127107, 16.289963538982455, 15.115559370767777, 12.114055675917339, 7.227775565314192, 14.0345930651162, 13.257056455898105, 15.194224592525382, 7.811367168647585, 6.165324450010245, 12.685206347411846, 6.986186707149694, 5.718189442109809, 8.298147115175011, 17.12288859514746, 15.162651238967356, 6.455866828523841, 10.131986381473, 11.355195242327742, 9.089199892596413, 29.527540299677852, 7.230383319795367, 5.036560966824284, 16.280018587170847, 15.949631877664562, 13.419123281979848, 10.754306637787558, 8.162151743145735, 5.942752806522876, 6.382596001190302, 5.32132625430582, 9.717282163239155, 6.964089838092802, 6.453318593178968, 5.272875055632591, 14.868913928108963, 6.778661969181972, 9.22261367029029, 8.921025405527416, 9.719888881771348, 6.104286231872394, 7.665759614593211, 19.602920023491887, 6.913739182870842, 18.628715323977417, 6.380227532118436, 7.265584063461675, 5.461325339872702, 14.683658013267195, 31.329362794922808, 8.77389381796494, 7.3207681076606, 8.97176369734804, 11.690231011294948, 6.1955856810642205, 10.878777304462359, 22.632991257090666, 6.003034471120446, 12.795770233084557, 7.988444220402211, 5.138690801026059, 6.440816132050492, 8.20076850045098, 17.487108832911293, 5.933966416766295, 8.94101437778144, 24.954334811446355, 27.08266356941405, 18.865766550895188, 5.400153724647714, 18.97756617547512, 12.051398969941616, 11.370993710603255, 9.21725475790752, 6.138553910143046, 8.843073340150928, 9.32616163103155, 5.579431724436455, 14.269202335185877, 17.56920547075211, 6.56831535353136, 9.785386937693243, 29.50464020606615, 10.941487477955855, 5.893986134680099, 8.190753630739593, 12.09713411497346, 6.022212763511816, 7.639286356248503, 11.927290338137011, 11.18885544687336, 12.890961003463207, 11.123154024532575, 5.527491486577428, 17.809670707631927, 8.61356750832635, 5.174170244302033, 6.204156186494939, 10.552888701404894, 24.82468259877329, 5.424680692603298, 18.52331329719213, 6.82228008645232, 8.496218667801966, 6.423850348661355, 9.492167255710074, 20.631956384975087, 20.077754905637736, 5.558859908882645, 15.404228516343021, 20.540355841885226, 7.281516125737094, 13.674181513554267, 14.06624051314346, 10.187563922122813, 8.364194719114991, 13.304570885788944, 5.3036535414457395, 6.139886840145526, 12.351564276505835, 7.571773636802085, 7.085468820614388, 14.259186973711433, 7.619686682654081, 6.308765228860902, 11.820670076371693, 16.230126230752536, 22.791595406157967, 14.574848310246148, 14.176579820627573, 15.751425517591878, 6.62833077456044, 6.866746938442376, 14.778763816690757, 10.726787881613403, 9.748447539801926, 12.95385706754386, 11.739086624105196, 13.145611280808826, 6.164160687510539, 6.608250604374507, 6.49096751920144, 19.893176812328857, 5.196356226587422, 7.585043771917043, 8.116898304851942, 8.447248360494543, 5.081824649149108, 9.218252288719661, 8.266172120511747, 10.103344994994545, 11.576939438813858, 11.717228881726026, 8.655886917289397, 6.340785620943777, 9.877817994075606, 10.74347571835555, 23.27580431669287, 15.521085557267726, 7.921162444031125, 24.514311960261807, 6.288360330607749, 8.70576687692437, 22.609762772493212, 20.126546715183018, 15.714482595483442, 9.357026827556924, 13.510471072714475, 12.157102819598153, 6.406383281836342, 9.722385155307569, 31.401962490461543, 11.210922711708344, 10.66233694584125, 10.438826235143626, 25.023658554406282, 5.465288185875026, 7.734036639148054, 12.002012093991986, 10.576926886338976, 8.357951021999789, 8.242926513063747, 6.477927622400466, 13.627760998422877, 9.04511619232839, 5.8561582618389485, 9.436791947257438, 7.183271056407069, 9.607935850909184, 7.23987491442794, 9.242067973220449, 6.1103159538116785, 8.528244666713684, 5.260629028973688, 8.068481415093663, 13.902433286960562, 6.257421055010638, 8.98225210641117, 16.10553603897583, 7.154171276225542, 13.712012561553975, 6.989767217510926, 15.772303864941971, 5.566493479032674, 8.015881822240186, 9.356871002814879, 6.026596026584583, 8.754954623124322, 10.571199333875589, 5.279783805383361, 11.992692645652559, 5.596574130146499, 10.31085940162445, 19.61831597852859, 5.8982889295631376, 15.5298969362868, 13.98187435490684, 8.012382655170812, 10.498947581727228, 15.236086879320693, 20.635267235145044, 6.538971395374779, 7.980590969967685, 8.653556401555994, 7.051880728693432, 6.841926941333416, 13.063347976145351, 19.353533706734964, 24.15835813813679, 17.511237379451124, 7.91829324772308, 11.136492661172742, 9.548229742617272, 19.585499611451517, 21.01366347920382, 15.659634962574383, 6.695877148121962, 8.623024527639425, 12.943740725852305, 10.592160601993083, 9.409418759989313, 6.167271342873908, 5.5050151061443175, 17.763544169951285, 6.444691731063922, 7.102349476421329, 13.205352804351351, 6.707039323199699, 7.880725979495099, 5.734870813191575, 9.796770815547244, 7.208775511576758, 8.99161906422006, 8.415700387806721, 20.652594793385536, 16.237580476144394, 6.395224221436218, 8.279452339403123, 12.910909864646552, 14.840420333453832, 6.812930554946787, 13.088224876810562, 9.323148270709847, 7.020889506345655, 5.858530356501697, 7.064479174478299, 8.194770304296112, 6.2982421066192975, 15.51992525247756, 5.364888181989489, 6.081439551031664, 15.335781825215568, 7.99416578083492, 8.067090285870636, 14.548647920122944, 11.36348261154645, 26.702111554361906, 10.029584552124387, 5.283618602100957, 5.450500734399079, 6.512429704509238, 16.60590604331772, 8.177145735979895, 8.246091403828794, 7.373626262771625, 14.104792773798932, 8.709239427280146, 7.016467051221337, 12.814823271726956, 16.91227633620176, 14.537688632234518, 11.132275509819651, 6.588993366937876, 8.116767840907967, 6.1819185996540815, 12.031867985424393, 11.208183565774954, 5.8285986992379835, 6.554843223391598, 21.887093015026235, 10.847984640449182, 5.9451559972134564, 11.891744046719136, 15.683510379866526, 12.56996592091303, 7.316873892597674, 22.764622059852858, 7.092789337361676, 19.057930125238123, 11.660372256306083, 7.137917784346677, 12.382211663556872, 24.294195897986423, 13.74052105447825, 8.251240319756418, 8.256398501898968, 5.950159653974032, 9.285176032424511, 18.191556855059538, 9.771315626924109, 8.934145855460468, 24.667596770884792, 15.297608817294355, 23.140547103882177, 5.312883717746062, 9.004873712834645, 22.094560389967924, 9.385265340258151, 18.3166108783297, 6.106370555692919, 9.943964104446252, 16.625200511146794, 5.7755564060041635, 14.84162605420907, 9.301259562339254, 12.148040883970236, 17.870333526803034, 5.155609871565387, 13.804399216623787, 7.726062699771969, 5.204029660933137, 22.047630046110143, 5.390903939493759, 15.253143126794484, 5.5428388523500995, 5.705176654218577, 17.953023333848794, 9.849770165149298, 13.787213766435663, 22.960647392047882, 8.801639954598533, 10.111324771168523, 10.719292500259153, 7.786711728926116, 7.647770627861253, 18.00915989435234, 22.509560834814007, 6.204859101244663, 20.24905244537873, 12.8436680633021, 15.675510383558686, 7.825344424895108, 7.961194469186542, 6.802043590943189, 17.768083213889454, 9.016038816259261, 5.227979923141526, 8.124483177245267, 16.173211780453187, 24.78800066452596, 19.34919899470749, 9.576578009940095, 21.203764425929556, 10.017649288926316, 21.701536340319475, 5.47000131499528, 8.409051309912545, 9.449572798687147, 17.989029094239008, 5.437930310614304, 13.066133304159502, 7.5142831820500895, 14.234069372597926, 5.376532096416656, 17.9599338995787, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3170662.778920304, 3205002.984061642, 3314839.8119114935, 3324948.2119158, 3331775.261740507, 3366779.551484165, 3425693.556915628, 3432736.7742413757, 3446643.662523684, 3450689.3509218395, 3475690.041482327, 3478682.074535926, 3506761.7348984797, 3527071.051991788, 3532787.2821951313, 3545248.4874090306, 3633634.8890272686, 3665673.048272454, 3681805.387395829, 3685323.8266829406, 3695072.9207246304, 3698220.4254627167, 3771977.6269566035, 3953140.934509467, 4292489.0625, 4329443.047960084, 4605160.93104762, 4618337.5, 4622633.128566535, 4622666.510156012, 4776051.14053092, 6352520.008670687, 6381229.6875, 6419202.938267179, 6433871.929356284, 6552844.5811529355, 6649769.937740729, 6770503.233477557, 6783700.916627535, 6801013.9649035, 6814028.179139443, 6815809.51832191, 6900330.682784515, 6953339.878681957, 6970449.053704422, 7015180.149239343, 7079059.817028945, 7093627.98458546, 7104727.938597363, 7106446.320647336, 7112950.0812923135, 7114469.750735856, 7114470.872660009, 7115006.737047807, 7127012.011785672, 7133018.850359661, 7144152.254009876, 7145016.87678038, 7145234.893622324, 7145898.945505077, 7147918.654474609, 7148142.078903356, 7149568.249750321, 7151365.710881779, 7152124.026688438, 7153212.3765514, 7154127.6368762925, 7155456.6632691985, 7166215.625, 7207576.446686671, 7247587.5, 7270136.836615882, 7273561.383126703, 7282497.464919823, 7284680.00527561, 7286382.223306828, 7287011.48633993, 7290583.841367485, 7292134.603726318, 7316507.1098935595, 7318127.828882741, 7323643.422760534, 7324326.76757137, 7332485.65969385, 7334470.673693894, 7375741.3380641965, 7386710.0873153405, 7387397.2688259585, 7387631.582849457, 7407501.188998979, 7426113.992395118, 7427895.851177876, 7430560.9375, 7430560.946610323, 7431596.875, 7441773.455903717, 7441816.387357855, 7446277.236230395, 7447762.36829888, 7452950.054625879, 7468288.821010372, 7488177.090400975, 7494541.347700473, 7494888.738509626, 7497132.6308089355, 7499621.047457991, 7526707.696145794, 7536632.969486956, 7537943.041790175, 7549669.557254451, 7585340.869869667, 7596953.845175921, 7606892.870066757, 7607901.565802508, 7625091.549279223, 7646841.169813864, 7696888.232952024, 7747385.180958239, 7779335.352337171, 7781149.77840142, 7852435.556667241, 7891110.9375, 7950218.054314734, 8002483.689929875, 8065007.514102424, 8070721.657686096, 8108369.45920465, 8108977.638829696, 8201991.467833956, 8221711.754691131, 8226817.358840493, 8278450.368070567, 8310332.706500282, 8311786.672618344, 8345656.473546236, 8402116.23681655, 8403816.306020025, 8435949.151810132, 8451624.749344457, 8481090.93658454, 8482302.491937317, 8520129.981932271, 8539774.852152703, 8545468.620284373, 8571990.01663024, 8582852.651624458, 8587395.494858438, 8589237.5, 8596049.127064921, 8596218.775608834, 8635000.043312347, 8637194.449647924, 8638682.60187736, 8639062.817461468, 8641962.482160741, 8643543.43853402, 8645058.918615257, 8656470.768385123, 8661081.25, 8663929.147094473, 8666653.739106877, 8682675.48293851, 8704309.754080532, 8705611.998604933, 8706693.07625161, 8708549.541975655, 8711266.686974162, 8722390.625, 8743593.48114523, 8743844.809107594, 8745068.943061076, 8745213.84446005, 8746751.41913508, 8747214.340300974, 8790755.482927425, 8796487.46262275, 8797375.098873993, 8797724.082006957, 8801791.140279071, 8802196.892519942, 8802696.868195094, 8809231.672801951, 8810948.11339481, 8819293.327634284, 8820648.009772643, 8820926.132963764, 8821124.018872377, 8822053.97051397, 8822822.064668588, 8823062.378683673, 8823101.542730195, 8823268.759606263, 8823541.300807495, 8829186.400079362, 8840452.09702926, 8840690.137210108, 8842474.809958464, 8842702.138561916, 8844306.593084443, 8845090.55448559, 8848417.43835474, 8857332.023260474, 8857533.57731856, 8858515.81024289, 8858868.104448006, 8858924.214977417, 8859852.424357401, 8870274.1224116, 8873418.577867188, 8874902.788609006, 8884805.531521913, 8888012.589547774, 8888821.319767728, 8890559.163191078, 8890929.914893515, 8891382.868784865, 8891968.020960998, 8891978.222476581, 8892093.795941511, 8892281.759826066, 8892640.651658615, 8892755.863677278, 8892996.90868275, 8894461.912547724, 8896521.114856133, 8897229.459363136, 8897242.948388772, 8898294.008412309, 8901391.164254611, 8901508.056879308, 8902998.351359375, 8904726.512819529, 8908004.555805251, 8912269.83455445, 8912993.211852444, 8914276.836335083, 8915224.568524085, 8917388.03367622, 8924927.740088334, 8931683.505337553, 8931845.519710703, 8938638.059969002, 8938775.088903233, 8940555.567549655, 8943884.495948268, 8956352.88330919, 8957462.385244923, 8968013.282779796, 8972065.204068882, 8972099.696725234, 8973027.237893643, 8976459.705305733, 8979475.558670588, 8993278.611012153, 8994815.356748166, 9015513.920127697, 9016617.003564889, 9019465.026986761, 9035957.891533965, 9036556.25, 9040674.058669508, 9042500.747409927, 9043452.568278922, 9047273.866273459, 9064190.177807603, 9076854.373538697, 9077040.29306828, 9077404.51432058, 9081852.951585252, 9084372.88444449, 9111988.422542104, 9116990.930396456, 9118633.023289522, 9121240.680032, 9121333.687103326, 9131357.571735842, 9145485.011051282, 9146110.935969714, 9153125.0, 9155895.135534316, 9159348.012949757, 9159898.820258435, 9171186.005523356, 9187945.237935934, 9194228.180079846, 9195499.530429726, 9196719.150048202, 9211377.337176243, 9216091.086728364, 9216345.9626374, 9217251.291916402, 9217364.965589192, 9218135.979119552, 9218263.086802239, 9218314.30684086, 9219198.044871286, 9220458.935364086, 9230298.352658905, 9230430.899752425, 9231150.0, 9233699.550693288, 9235341.62897204, 9237711.418812504, 9238350.785821013, 9238495.442441383, 9241022.817932399, 9250520.904627828, 9252149.68828257, 9253292.801619375, 9253357.959146386, 9254301.155227741, 9255247.607072271, 9255859.784726383, 9256630.672733739, 9257504.70979737, 9257558.293702332, 9257681.930039842, 9257903.842853485, 9258713.952580005, 9258770.943221087, 9259158.501426587, 9260215.637426836, 9261473.926449897, 9267425.025711346, 9267600.13036472, 9267870.96839347, 9267908.93857748, 9268232.912806274, 9268285.717452802, 9268564.943032082, 9268834.342882426, 9269295.546769517, 9269441.900644429, 9269491.76837372, 9269807.000755584, 9270107.878741372, 9270316.72052796, 9270368.709890896, 9270538.894721285, 9270982.39027227, 9271112.995198278, 9271144.890179798, 9271281.543205263, 9271477.980569433, 9271529.096781522, 9271713.990933822, 9271774.027155228, 9272060.173394457, 9272174.613833975, 9272461.537001632, 9272805.390682759, 9273613.874953154, 9280566.426965754, 9285191.41590158, 9289856.957944635, 9299279.390470363, 9338077.697526745, 9347784.003310865, 9354914.289896272, 9356570.196596477, 9357234.375, 9358030.518069776, 9360035.06430011, 9361227.811056225, 9362081.454375189, 9362183.020808643, 9375497.22950949, 9380428.796161432, 9382789.930432819, 9383228.423436904, 9384775.069286406, 9387241.883674448, 9392322.054742422, 9397144.72503332, 9424644.256095437, 9445056.223166626, 9451906.531950932, 9473540.32505649, 9473611.330017632, 9474019.611456553, 9475629.235417923, 9481274.464189691, 9510722.333666792, 9512956.305118438, 9527890.09138781, 9530794.403419837, 9532098.855028527, 9535746.382416565, 9545972.100177683, 9545991.820174383, 9545992.503078267, 9545995.887118917, 9546123.704265097, 9546340.392375577, 9546432.064990748, 9546546.744055029, 9546870.4700693, 9547145.722539762, 9547263.724865245, 9547344.995737238, 9547956.316365223, 9548071.572313461, 9548122.909969885, 9548158.168394873, 9548538.697424492, 9548788.924352469, 9548855.468960091, 9549050.106508596, 9549668.75, 9550363.445070205, 9550398.91933625, 9550436.48767869, 9550512.600329675, 9550649.161250204, 9550964.074426282, 9550981.111881612, 9551039.450491482, 9551138.299487986, 9551210.897516157, 9551284.282587137, 9551318.710564727, 9551386.606855879, 9551424.469640335, 9551427.15709313, 9551510.323201912, 9551596.432870202, 9551834.453819675, 9551983.632196302, 9552018.885061793, 9552083.427475711, 9552105.568129785, 9552216.683933022, 9552318.783148786, 9552413.623936072, 9552417.056469519, 9552526.741103359, 9552544.931520922, 9552573.335755287, 9552654.89183959, 9552695.96158759, 9552760.693401255, 9552853.221794127, 9552885.781897454, 9552898.829062888, 9552928.261621267, 9552931.311109934, 9552933.953626323, 9552953.753393654, 9552958.93376762, 9552987.209984515, 9553001.811031485, 9553022.915356837, 9553023.505871128, 9553068.76512943, 9553076.5625, 9553078.196053788, 9553083.310822614, 9553087.478784092, 9553088.304604992, 9553137.748785548, 9553175.817972653, 9553176.198701464, 9553187.251930956, 9553197.350480907, 9553198.447111594, 9553202.314959502, 9553207.31408727, 9553242.028207641, 9553276.329402968, 9553303.356119938, 9553330.260610176, 9553337.002628084, 9553345.361329269, 9553381.323866837, 9553381.999342162, 9553399.477578778, 9553405.91295602, 9553409.919301853, 9553413.470515784, 9553417.297009153, 9553433.392585507, 9553483.237980396, 9553558.888314566, 9553600.862632828, 9553642.416863667, 9553649.664549025, 9553654.7777594, 9553655.739160376, 9553686.061173895, 9553711.639135642, 9553749.487067863, 9553754.718957834, 9553770.883952951, 9553772.441343188, 9553773.383307418, 9553821.198891472, 9553879.341050707, 9553903.816422436, 9553921.340272384, 9553925.440805502, 9553960.970705694, 9553963.75875269, 9553996.994124893, 9554003.108054131, 9554042.239327725, 9554047.144110056, 9554049.739054538, 9554126.245299337, 9554140.730703065, 9554184.295282422, 9554200.0242141, 9554259.841595579, 9554273.399346527, 9554275.699470751, 9554295.61265875, 9554361.512386125, 9554415.984594658, 9554417.32192662, 9554480.580940599, 9554505.74308114, 9554583.696441786, 9554610.312775683, 9554654.6875, 9554695.614559662, 9554704.29535086, 9554738.285719315, 9554742.228168156, 9554766.357899262, 9554766.842085315, 9554767.250486283, 9554776.857217733, 9554816.901520062, 9554875.085299013, 9554892.261598917, 9554919.831745293, 9554922.325292908, 9554984.36515751, 9554994.274600852, 9555002.616561618, 9555044.948761918, 9555062.736751704, 9555086.896118687, 9555120.84457027, 9555195.753896827, 9555206.986159442, 9555216.429532744, 9555218.190785024, 9555230.289573865, 9555256.901330238, 9555310.113283504, 9555377.537286624, 9555465.203877462, 9555561.484284813, 9555628.63757715, 9555655.31060711, 9556394.306717735, 9556449.200402236, 9556937.743238345, 9561401.979523653, 9561514.78280707, 9561565.07512188, 9561949.642365718, 9562029.138250535, 9562116.631979274, 9562173.946632441, 9562240.540118156, 9562275.793724617, 9562548.302285561, 9562570.699342348, 9562728.947926406, 9562746.887984259, 9562786.887451172, 9563139.087129949, 9563201.368027747, 9563295.046804463, 9563455.141606351, 9563519.288433397, 9563522.42021139, 9563560.417803645, 9563579.662799597, 9563604.704191627, 9563803.79040388, 9563857.142553737, 9563870.446388217, 9563935.346395895, 9563960.135039985, 9564106.983954042, 9564109.966622038, 9564168.626700241, 9564270.563236313, 9564359.123628737, 9564410.788893264, 9564411.451938886, 9564546.543450017, 9564635.196868889, 9564848.372742606, 9564921.233279428, 9564922.7112419, 9564940.567734016, 9564985.014492964, 9565219.583463917, 9565370.727318851, 9565488.760336732, 9565621.254830599, 9565708.059808254, 9565790.417807808, 9566104.406528348, 9566231.646719733, 9566395.773703158, 9566514.109968225, 9566661.0779259, 9566673.547068298, 9566715.76087604, 9566723.095677014, 9566944.963314202, 9567202.450388335, 9567215.753587496, 9567246.919926712, 9567261.16261919, 9567273.827100461, 9567310.677309187, 9567321.349615153, 9567417.252259597, 9567423.97848174, 9567439.773757134, 9567554.833718209, 9567629.146662092, 9567659.553133097, 9567704.709314745, 9567724.894898744, 9567725.056834025, 9567829.485377938, 9567889.878523193, 9568023.578322908, 9568029.386460437, 9568037.011228643, 9568050.398796327, 9568123.139703466, 9568154.652663354, 9568154.929032672, 9568287.033636853, 9568299.747211365, 9568384.132057076, 9568389.100856395, 9568441.486859398, 9568455.636392549, 9568494.173634132, 9568569.678019904, 9568626.34361952, 9568650.961438153, 9568676.543322446, 9568681.325441726, 9568748.305975193, 9568794.78372248, 9568797.301289387, 9568800.154232347, 9568837.669617739, 9568839.91205829, 9568874.146145886, 9569047.51974908, 9569058.657648487, 9569088.0213244, 9569120.302216671, 9569209.305663833, 9569246.875, 9569291.445323242, 9569330.395093583, 9569424.541671803, 9569489.3948565, 9569613.473854916, 9569615.459683107, 9569661.102630472, 9569717.89025045, 9569878.582659522, 9569883.765202804, 9569887.879238708, 9569916.885809304, 9569945.146631163, 9569950.538588012, 9570013.999830624, 9570136.999162195, 9570188.592949895, 9570245.235135116, 9570362.797448892, 9570451.606368212, 9570478.892003674, 9570530.207697246, 9570925.150264459, 9571220.174344832, 9571255.159098912, 9571333.734896563, 9571560.93129456, 9571674.356929744, 9571684.186673487, 9571991.105002673, 9572219.249290993, 9572225.492173094, 9572350.373678528, 9572584.252503792, 9573005.713245573, 9573021.689291095, 9573046.05925007, 9573075.904161034, 9573253.223581456, 9573292.645165069, 9573321.913771903, 9573490.324141981, 9573609.37208532, 9573687.384300122, 9573713.097291404, 9574202.133570924, 9574273.811750254, 9575016.671680937, 9575183.973244643, 9575320.092167964, 9575566.294009402, 9575760.077473132, 9575900.287433915, 9576581.626455866, 9576582.396849874, 9577725.18419971, 9578474.407427114, 9579066.532861402, 9582245.832469, 9582260.100094052, 9582315.023876298, 9582350.57581849, 9582527.747374943, 9582877.874705486, 9583030.551883508, 9583309.518947192, 9584230.999478506, 9584337.901531618, 9584570.796200024, 9584961.60093002, 9585457.724660542, 9585713.923823565, 9585978.619338902, 9586046.920251215, 9586256.572067194, 9586270.714788292, 9586319.051454358, 9586321.647695603, 9586371.775357112, 9586381.03371122, 9586384.572414398, 9586418.032976096, 9586425.496027825, 9586428.081636326, 9586482.539912611, 9586508.267712269, 9586533.733233957, 9586548.796337934, 9586569.597963225, 9586574.138484728, 9586619.481684307, 9586717.212183246, 9586732.135620637, 9586738.782884985, 9586868.699414795, 9586879.352233293, 9586887.791956162, 9586902.261122797, 9586915.488080138, 9586951.523713104, 9586967.978237186, 9586972.144573355, 9587005.034533618, 9587017.826160474, 9587048.998558281, 9587072.45749862, 9587073.176939204, 9587106.1217833, 9587109.670989135, 9587110.176057609, 9587112.380768247, 9587139.228180544, 9587174.154144173, 9587207.091574486, 9587285.288653689, 9587337.68902142, 9587353.155149234, 9587404.253485072, 9587430.264186148, 9587449.465071682, 9587484.80382973, 9587596.679033, 9587607.41602509, 9587655.93036833, 9587697.947024003, 9587721.89257817, 9587756.331793334, 9587797.222717853, 9587797.370556207, 9587799.616528377, 9587809.507573301, 9587838.979033355, 9587881.191293107, 9587899.606587294, 9587924.640836539, 9587934.929218689, 9587946.997062989, 9587959.605064692, 9587962.809886426, 9588008.244627569, 9588042.079923451, 9588068.960964927, 9588116.055649886, 9588116.168960605, 9588129.250976417, 9588138.473736592, 9588145.234718945, 9588158.931042872, 9588183.087690877, 9588228.24802559, 9588302.76012569, 9588308.849188754, 9588326.653793983, 9588370.982255684, 9588374.450451983, 9588382.842466818, 9588447.8245524, 9588457.04182146, 9588457.424684726, 9588460.567181276, 9588497.365870718, 9588538.742336798, 9588552.53095595, 9588563.474260869, 9588569.827933459, 9588606.425906409, 9588607.53567962, 9588611.942818332, 9588658.931697216, 9588678.317938175, 9588737.418098645, 9588759.69816009, 9588763.435291152, 9588897.509972816, 9588918.478559956, 9588925.380510243, 9588936.901194222, 9588950.817460377, 9588980.981254607, 9589003.663433397, 9589022.669464126, 9589044.403440123, 9589076.808262445, 9589150.847350257, 9589403.923458917, 9589471.42218983, 9589537.15153738, 9589574.023790793, 9589599.73135522, 9589607.440542586, 9589840.715846479, 9590019.47841295, 9590429.095339023, 9590453.70978268, 9590715.349084424, 9590745.239330243, 9591566.6428318, 9597173.147920746, 9597456.957148725, 9597526.995349191, 9597667.690962773, 9597833.134595532, 9597907.381322604, 9597922.111444723, 9597960.34890295, 9597979.990508271, 9598055.637809757, 9598071.861502202, 9598181.734581072, 9598310.91072285, 9598333.055122217, 9598418.160805158, 9598581.240221152, 9598679.290614119, 9598756.834475743, 9598835.716240956, 9598851.384760741, 9598870.554322409, 9598886.902477391, 9598900.655268662, 9598924.935714932, 9598943.849734118, 9598968.152841149, 9598993.31052823, 9599031.123508025, 9599134.520780936, 9599163.174509956, 9599188.224446604, 9599216.943805778, 9599307.547368916, 9599379.847257758, 9599621.096849341, 9599688.849667221, 9599690.547647748, 9599691.504665148, 9599691.949174315, 9599717.909507014, 9599724.584976427, 9599927.42708308, 9599959.811026372, 9600245.202358946, 9600298.440420952, 9600325.620650264, 9600340.289463932, 9600399.29382251, 9600416.135490283, 9600421.925883567, 9600454.883133762, 9600822.294005914, 9600883.913609276, 9601001.37585488, 9601089.128296057, 9601133.75778658, 9601186.416793821, 9601235.494857697, 9601291.319675181, 9601301.520180257, 9601321.764829919, 9601435.153005477, 9601550.315998077, 9601837.562271742, 9601866.302453035, 9601870.053886553, 9601871.519666536, 9602067.120074045, 9602114.004992059, 9602123.560165647, 9602132.75731864, 9602160.027670627, 9602180.165652862, 9602218.23958907, 9602234.65832272, 9602248.312002266, 9602268.441055492, 9602291.314881118, 9602299.586818848, 9602321.918581301, 9602353.188020699, 9602380.35922101, 9602387.673887093, 9602389.707810016, 9602403.166411286, 9602427.591834038, 9602460.911045266, 9602490.589134121, 9602492.755014285, 9602563.102122772, 9602629.263795933, 9602634.040835839, 9602653.452287927, 9602654.711337926, 9602656.519200772, 9602657.61305911, 9602701.641926784, 9602733.011938527, 9602773.412623918, 9602834.049422095, 9602856.805409776, 9602896.535168698, 9602919.662017986, 9602939.924142115, 9602944.547807325, 9603068.471990371, 9603114.54280376, 9603121.996471165, 9603295.225787245, 9603303.068738699, 9603316.677624159, 9603329.702485695, 9603333.534399644, 9603440.805108132, 9603455.262499413, 9603496.204463366, 9603512.690013442, 9603563.085525325, 9603599.601898948, 9603635.31237939, 9603724.680361442, 9603728.614522543, 9603827.57246635, 9603897.691893037, 9603970.588890495, 9603986.970497923, 9604036.65105825, 9604088.58314393, 9604122.065464702, 9604126.787135355, 9604136.07402387, 9604273.521736953, 9604299.43263323, 9604447.83977303, 9604601.309669498, 9604638.86362863, 9604761.913932635, 9604841.241462044, ...], [11.593584253505801, 8.21342693664493, 15.502419951817346, 6.064950450920723, 8.430016094131116, 9.218982563791279, 14.253319444993398, 13.56193505895359, 5.16332931183568, 6.822487002921894, 24.02411111428714, 31.9239133785872, 5.2242246338757985, 24.04757197463837, 9.153785618459885, 11.206624341323808, 17.344718426422297, 5.234380651985704, 18.505755406590488, 17.338388711961805, 14.073617206540742, 7.151466133793208, 29.502824795373794, 41.59489847845562, 78.44025677161821, 51.15145618440264, 6.087428482965624, 89.5877931389102, 19.54499225593281, 5.88251187061289, 35.03922213104518, 23.70195041750081, 70.11229198650818, 14.274533846276148, 6.093770091022971, 102.02015155997057, 29.14466557197964, 14.791832955546415, 46.89544382761078, 25.24934257258411, 15.151958529859591, 20.601219311473113, 7.41020743862203, 5.760748503234689, 9.913118017078636, 6.561993739005764, 6.135305071092881, 9.21543133093338, 7.073299251123783, 13.179611679463724, 15.260682881524504, 20.898329305286357, 14.881975936198579, 6.1402559447390095, 13.358440532021433, 15.338347273524711, 12.413169102754127, 5.791341911994272, 6.87165917857575, 7.261716164686741, 5.700705368795668, 8.229972523257727, 8.941437014524258, 6.780774180297076, 5.745310435094298, 14.490970674262366, 6.6698180886407705, 5.8452048316300464, 62.12796509507065, 9.235359393631214, 90.12589947435447, 27.985569845958352, 17.233250900090024, 17.795005297837708, 24.658617657134933, 13.088229210460778, 6.576711807071432, 13.234868732190723, 15.891392416859022, 19.684992804872124, 9.092971123939494, 6.226720764810002, 9.511038531717533, 8.144936442527383, 6.5452424410003935, 18.595924121169638, 23.751902409083147, 16.817443347502284, 5.728274029935924, 20.820769485384396, 7.578077226727496, 17.487635542332914, 46.19344172159547, 11.141976745054073, 68.01906925591145, 15.01212283689054, 6.008664668042997, 7.86655549410286, 12.74627066901655, 25.208591178938512, 18.058570793869762, 17.4247696801256, 18.662637853533386, 8.12236803735053, 6.069406566998845, 30.770519303283024, 9.234919509339331, 5.2495603815743, 19.640386911270834, 38.07669712991703, 8.420457204117353, 6.362687270525678, 9.98395028277728, 11.13287276272859, 12.962788611231009, 19.476611340784693, 13.324591090064974, 6.176123371768775, 13.098703600268175, 24.806680710210042, 12.731480191319406, 65.86882035403372, 19.74044925152864, 7.954734440751409, 21.730359072964184, 24.86770838178398, 18.569377705239532, 8.95157790973254, 19.54999149588905, 7.354219941126465, 5.469169037622432, 16.558301348254076, 26.59141535451365, 6.60885143864939, 11.496076760074823, 7.840599185678303, 8.682838773568317, 10.018471856023131, 24.402198976418433, 5.41052071947603, 20.261049589029177, 5.725756241894797, 10.904216873109343, 14.469117304989703, 5.8881200244877725, 7.440551979947001, 11.42523216893648, 50.48241386347404, 18.860534835778562, 15.040025031741527, 15.109206283383202, 8.694797801839607, 10.813711336197025, 16.307363875717947, 14.873947694049965, 13.873861887897467, 29.460616978399464, 17.019623064619744, 58.276603710647905, 17.618733033706945, 14.92666622078582, 27.805870274287244, 16.614292255880013, 10.425076903892485, 19.9188988079021, 6.211014180471884, 21.48785633588569, 42.66640027996709, 14.007055060479953, 21.459325803268104, 8.39137989895918, 14.170836671233385, 9.213052277171943, 16.11780102562457, 19.18701124611577, 7.5897746815987075, 6.2797717296737945, 18.138649549998803, 22.024352369736807, 11.155202469541521, 5.813476932651368, 18.626567519151163, 5.596362008598487, 8.998099652806797, 7.45553064921201, 22.22604263056215, 12.176805198449237, 7.9406285475798954, 15.717322691945663, 31.16208922840179, 6.759566088131759, 7.123979143336317, 7.8674329500259415, 11.936899062932985, 6.337180016273385, 23.825239314778475, 8.188573506275183, 12.165757629206322, 11.709945087157498, 27.203419536648067, 21.67912177463573, 12.598038270271596, 18.089802478511523, 9.493107186623764, 6.023445248505954, 7.342012065272871, 26.941725393152282, 17.2636415370632, 14.323644187081605, 70.85750851484367, 10.164034195906217, 11.270621190971251, 10.358180801123366, 14.191302577370877, 8.410602308215553, 27.79123355129034, 10.151904447047228, 9.415207972637614, 6.27302024712343, 12.030535157638353, 9.354046722396006, 22.707348740850215, 11.180766441730945, 10.318843944918475, 10.116470509554821, 24.714250410154495, 23.374268605168638, 16.02729827296129, 5.644590235424153, 5.8322862616241125, 5.201232855840049, 14.75547249706439, 17.051829813668686, 8.957522613738615, 13.222769135402821, 11.584519139409025, 13.517718798516954, 8.590508185047797, 6.219762311953044, 17.180020483203315, 11.467810253487064, 27.003205196426443, 6.781386157071188, 10.2057973590052, 15.423457550823324, 24.513022663444247, 8.226811075196238, 19.093079833234526, 5.680482483774895, 13.89918019544095, 9.97620739806403, 6.831291195400422, 27.64998941606031, 6.140141744183408, 17.75891054364278, 25.997198585690608, 26.207642638073306, 7.400377416312528, 15.251556831236195, 36.816571335611705, 9.918355982026823, 18.836593234326987, 8.01259359439733, 11.871287361486596, 7.008659164380817, 13.866175691199828, 5.091978746906118, 6.729418222703747, 6.070249370458215, 8.0142732052114, 7.387090212764931, 16.249055021916522, 25.222470595180823, 15.155498059247948, 18.6991570999701, 24.538083371558344, 7.299328840439137, 14.935679894131855, 40.70184094349982, 30.656471615152263, 5.783221105576237, 6.316799426726758, 8.322879795441871, 27.131880215649666, 15.155687863425534, 18.948978921492163, 32.33834322201155, 12.601314444117438, 7.24835655608715, 9.94911318439504, 24.13391148906137, 29.630993001711712, 15.102552590015174, 17.775894882213034, 5.209691998877054, 13.630055279369953, 22.117167608562237, 22.559960023831295, 6.4335535931097, 35.57148012619815, 13.81432690935764, 28.143992378301036, 6.86355792266274, 12.627195103178193, 5.346394102268557, 13.010087962406951, 30.969165253164142, 23.255738264125515, 5.746989635712987, 5.952278934978215, 13.587388448140585, 8.715771811958236, 11.83481662313187, 15.32946346702586, 15.027183118795252, 17.159162183245435, 12.387890767396147, 8.706549449082836, 33.03665415685494, 17.729827725148958, 7.872985112951859, 6.765990028374628, 17.202479538006145, 8.30022087690634, 15.462824184871515, 18.212555357151114, 8.987770062693096, 19.193080730299883, 6.239791615717389, 12.853855930718854, 14.820489232391857, 21.61011143102332, 18.807770196763197, 9.000486647707486, 12.546307255921437, 5.617719313066292, 10.468634225359667, 11.065587143778302, 10.875208186581075, 22.305663909364423, 17.23762860640099, 10.526071799022462, 5.136818371667631, 9.212193556199662, 16.39426012980786, 9.271614257407824, 6.887227342949617, 23.19773785278174, 13.64901102193418, 9.895569181029192, 12.439057968753218, 14.271809904345616, 19.236040541339126, 6.9323907353184975, 18.56073255995093, 22.36783794447289, 5.68008205747489, 32.0270569183523, 5.407238915795789, 14.517406033934881, 34.69797166373205, 10.148592529675025, 31.830531940474074, 13.866229634430358, 6.519613287349818, 7.680357944556075, 15.583097861783575, 25.02491740994945, 6.183259736590793, 11.6285868363243, 5.711181813632125, 9.087068051313661, 13.536849119106057, 10.31882647371797, 19.983440836183856, 5.164737122789393, 16.13735463445619, 6.705066979767375, 7.751654311459823, 16.715133728173793, 8.976316466289385, 21.143159562998445, 5.980369720010956, 16.576144077726266, 13.234923274647473, 18.1964326714106, 8.52044542995104, 7.4342921551169185, 11.498912078328761, 13.101772575182535, 17.482111277794253, 6.883915927693408, 16.066116518131842, 19.783096145854387, 6.013667807704957, 9.223082875217646, 18.76093602520782, 7.758594756965759, 10.638015241951214, 13.857561266346217, 15.200643425003161, 9.087939394697703, 32.53341017170627, 16.496973805666652, 22.9536218351546, 10.918427465411515, 5.5722486120699575, 16.980533557818127, 29.103320097915965, 10.28270363165738, 31.375157427435155, 17.55539383511824, 9.417703278329554, 18.669943058291476, 8.29289422860206, 5.3932200173002425, 5.138881787222564, 19.217422330786082, 19.924090039741678, 7.097369184125251, 6.0840078736878445, 12.364486747858068, 7.422054297733005, 6.152194098303474, 7.395204989259675, 22.090487133084114, 11.253183268423674, 19.37064151199089, 23.376978341983595, 7.841914364992261, 5.030237392150565, 6.410947441009616, 22.466558753677745, 22.12866075956942, 7.556523860451517, 7.669138572366471, 9.028780614667056, 14.567386957479773, 5.4063436218514935, 6.59389424045025, 7.0587305730374315, 18.348125788882975, 10.892899149639534, 5.974246315894263, 6.791091940835596, 11.22458817783925, 16.948382399672646, 7.8475113589696806, 5.679240677206126, 38.232711003294966, 15.981709159156889, 10.399120818992182, 11.236283842601562, 11.151437710678799, 31.746078533213296, 9.392214600240617, 17.255276071876434, 6.759278355452171, 6.93552426045283, 6.299150786136928, 7.928544200049666, 13.715218375860225, 9.130100130657512, 11.962241093944014, 11.142763649727408, 5.6570739687853635, 6.411699488673828, 17.499647500862743, 19.834467609227325, 6.296847088960972, 8.614832196368745, 6.668112790810878, 7.134346817454815, 14.847121255276015, 7.898780724822274, 22.513741653096545, 7.0355846461716895, 5.360925404947899, 13.080990274246519, 6.281133916305246, 7.827443878855669, 7.2379770606095555, 21.62695637809193, 13.53943494609998, 7.183078519399505, 13.800491504450786, 18.440965622485614, 10.413234161082707, 15.434823693946875, 18.51760311645217, 23.717151103087232, 7.129745590920389, 6.58056479025119, 15.783509012684114, 14.738898939416481, 5.3732411098405874, 6.224397294618888, 12.412975795433786, 21.15353030849605, 5.049051406316818, 15.069602674121425, 7.496951725486872, 5.714381609372786, 14.877310703071092, 7.622091067483164, 15.891331959339826, 5.3885911595138785, 8.125669116157852, 9.422409492713188, 5.808105299428677, 11.165767109647398, 8.549760212526818, 7.111458257223494, 6.359810270089845, 5.211137098892597, 9.86990721736086, 16.515543993928954, 15.00071194752953, 12.88571161782068, 6.994282594919901, 10.21034495148871, 12.996960144756645, 31.26206034176911, 11.309060966873325, 5.514346253796891, 10.097694896065535, 9.36602876753112, 8.716309400006809, 23.18746298128922, 19.234442564304317, 11.621890566991777, 6.231730577659109, 13.368383597508114, 5.618156664893087, 5.898604140089939, 16.989209350040447, 8.281379301209643, 7.804676424447531, 8.034841077204165, 9.041681290171482, 11.51909141134504, 6.027474254260745, 5.987120627379089, 8.534654261230502, 5.427382712781664, 7.922676521869154, 10.35329038782912, 9.898264508222008, 5.998207962615489, 6.920428572603049, 7.403657920257368, 18.79801729707347, 14.177236676751061, 5.024283849413802, 9.920402742840222, 15.287290390678505, 5.183518230273074, 9.545907197398332, 11.909138035704313, 10.025041099871668, 21.009562433816374, 7.030510246488065, 18.10179855347171, 8.90205433832146, 9.80250575227338, 10.997573318609513, 5.759206092450481, 10.922736693777004, 9.681420983450087, 10.1398551327636, 8.293455574581671, 7.987200889085737, 9.352316380677419, 12.757660164754899, 9.116412225713576, 11.92034726943765, 12.088360543534094, 14.897515179346057, 8.927503299894367, 14.84819148059698, 5.342493968732946, 7.863042389997638, 10.220432299533922, 7.157097252164607, 13.083271664291606, 19.014430960594048, 12.508106681310647, 5.859091693632687, 7.559242832199348, 9.552812504442873, 9.127529819229176, 25.898518117730678, 7.800538721411888, 19.702085581413872, 5.148464352120202, 6.7506467561924755, 6.962396632991969, 7.9365511589493005, 26.969008484087624, 7.300353163117519, 5.761937738490729, 8.518838433021854, 23.723148189124835, 5.435763222375864, 9.549653140057051, 35.6323889648194, 9.10461258656633, 5.843929092559341, 17.048681565616278, 5.0993916314335435, 5.168644964977403, 16.747166053825882, 10.920137657929178, 5.685343435086607, 29.197215933817006, 7.376199237127107, 16.289963538982455, 15.115559370767777, 12.114055675917339, 7.227775565314192, 14.0345930651162, 13.257056455898105, 15.194224592525382, 7.811367168647585, 6.165324450010245, 12.685206347411846, 6.986186707149694, 5.718189442109809, 8.298147115175011, 17.12288859514746, 15.162651238967356, 6.455866828523841, 10.131986381473, 11.355195242327742, 9.089199892596413, 29.527540299677852, 7.230383319795367, 5.036560966824284, 16.280018587170847, 15.949631877664562, 13.419123281979848, 10.754306637787558, 8.162151743145735, 5.942752806522876, 6.382596001190302, 5.32132625430582, 9.717282163239155, 6.964089838092802, 6.453318593178968, 5.272875055632591, 14.868913928108963, 6.778661969181972, 9.22261367029029, 8.921025405527416, 9.719888881771348, 6.104286231872394, 7.665759614593211, 19.602920023491887, 6.913739182870842, 18.628715323977417, 6.380227532118436, 7.265584063461675, 5.461325339872702, 14.683658013267195, 31.329362794922808, 8.77389381796494, 7.3207681076606, 8.97176369734804, 11.690231011294948, 6.1955856810642205, 10.878777304462359, 22.632991257090666, 6.003034471120446, 12.795770233084557, 7.988444220402211, 5.138690801026059, 6.440816132050492, 8.20076850045098, 17.487108832911293, 5.933966416766295, 8.94101437778144, 24.954334811446355, 27.08266356941405, 18.865766550895188, 5.400153724647714, 18.97756617547512, 12.051398969941616, 11.370993710603255, 9.21725475790752, 6.138553910143046, 8.843073340150928, 9.32616163103155, 5.579431724436455, 14.269202335185877, 17.56920547075211, 6.56831535353136, 9.785386937693243, 29.50464020606615, 10.941487477955855, 5.893986134680099, 8.190753630739593, 12.09713411497346, 6.022212763511816, 7.639286356248503, 11.927290338137011, 11.18885544687336, 12.890961003463207, 11.123154024532575, 5.527491486577428, 17.809670707631927, 8.61356750832635, 5.174170244302033, 6.204156186494939, 10.552888701404894, 24.82468259877329, 5.424680692603298, 18.52331329719213, 6.82228008645232, 8.496218667801966, 6.423850348661355, 9.492167255710074, 20.631956384975087, 20.077754905637736, 5.558859908882645, 15.404228516343021, 20.540355841885226, 7.281516125737094, 13.674181513554267, 14.06624051314346, 10.187563922122813, 8.364194719114991, 13.304570885788944, 5.3036535414457395, 6.139886840145526, 12.351564276505835, 7.571773636802085, 7.085468820614388, 14.259186973711433, 7.619686682654081, 6.308765228860902, 11.820670076371693, 16.230126230752536, 22.791595406157967, 14.574848310246148, 14.176579820627573, 15.751425517591878, 6.62833077456044, 6.866746938442376, 14.778763816690757, 10.726787881613403, 9.748447539801926, 12.95385706754386, 11.739086624105196, 13.145611280808826, 6.164160687510539, 6.608250604374507, 6.49096751920144, 19.893176812328857, 5.196356226587422, 7.585043771917043, 8.116898304851942, 8.447248360494543, 5.081824649149108, 9.218252288719661, 8.266172120511747, 10.103344994994545, 11.576939438813858, 11.717228881726026, 8.655886917289397, 6.340785620943777, 9.877817994075606, 10.74347571835555, 23.27580431669287, 15.521085557267726, 7.921162444031125, 24.514311960261807, 6.288360330607749, 8.70576687692437, 22.609762772493212, 20.126546715183018, 15.714482595483442, 9.357026827556924, 13.510471072714475, 12.157102819598153, 6.406383281836342, 9.722385155307569, 31.401962490461543, 11.210922711708344, 10.66233694584125, 10.438826235143626, 25.023658554406282, 5.465288185875026, 7.734036639148054, 12.002012093991986, 10.576926886338976, 8.357951021999789, 8.242926513063747, 6.477927622400466, 13.627760998422877, 9.04511619232839, 5.8561582618389485, 9.436791947257438, 7.183271056407069, 9.607935850909184, 7.23987491442794, 9.242067973220449, 6.1103159538116785, 8.528244666713684, 5.260629028973688, 8.068481415093663, 13.902433286960562, 6.257421055010638, 8.98225210641117, 16.10553603897583, 7.154171276225542, 13.712012561553975, 6.989767217510926, 15.772303864941971, 5.566493479032674, 8.015881822240186, 9.356871002814879, 6.026596026584583, 8.754954623124322, 10.571199333875589, 5.279783805383361, 11.992692645652559, 5.596574130146499, 10.31085940162445, 19.61831597852859, 5.8982889295631376, 15.5298969362868, 13.98187435490684, 8.012382655170812, 10.498947581727228, 15.236086879320693, 20.635267235145044, 6.538971395374779, 7.980590969967685, 8.653556401555994, 7.051880728693432, 6.841926941333416, 13.063347976145351, 19.353533706734964, 24.15835813813679, 17.511237379451124, 7.91829324772308, 11.136492661172742, 9.548229742617272, 19.585499611451517, 21.01366347920382, 15.659634962574383, 6.695877148121962, 8.623024527639425, 12.943740725852305, 10.592160601993083, 9.409418759989313, 6.167271342873908, 5.5050151061443175, 17.763544169951285, 6.444691731063922, 7.102349476421329, 13.205352804351351, 6.707039323199699, 7.880725979495099, 5.734870813191575, 9.796770815547244, 7.208775511576758, 8.99161906422006, 8.415700387806721, 20.652594793385536, 16.237580476144394, 6.395224221436218, 8.279452339403123, 12.910909864646552, 14.840420333453832, 6.812930554946787, 13.088224876810562, 9.323148270709847, 7.020889506345655, 5.858530356501697, 7.064479174478299, 8.194770304296112, 6.2982421066192975, 15.51992525247756, 5.364888181989489, 6.081439551031664, 15.335781825215568, 7.99416578083492, 8.067090285870636, 14.548647920122944, 11.36348261154645, 26.702111554361906, 10.029584552124387, 5.283618602100957, 5.450500734399079, 6.512429704509238, 16.60590604331772, 8.177145735979895, 8.246091403828794, 7.373626262771625, 14.104792773798932, 8.709239427280146, 7.016467051221337, 12.814823271726956, 16.91227633620176, 14.537688632234518, 11.132275509819651, 6.588993366937876, 8.116767840907967, 6.1819185996540815, 12.031867985424393, 11.208183565774954, 5.8285986992379835, 6.554843223391598, 21.887093015026235, 10.847984640449182, 5.9451559972134564, 11.891744046719136, 15.683510379866526, 12.56996592091303, 7.316873892597674, 22.764622059852858, 7.092789337361676, 19.057930125238123, 11.660372256306083, 7.137917784346677, 12.382211663556872, 24.294195897986423, 13.74052105447825, 8.251240319756418, 8.256398501898968, 5.950159653974032, 9.285176032424511, 18.191556855059538, 9.771315626924109, 8.934145855460468, 24.667596770884792, 15.297608817294355, 23.140547103882177, 5.312883717746062, 9.004873712834645, 22.094560389967924, 9.385265340258151, 18.3166108783297, 6.106370555692919, 9.943964104446252, 16.625200511146794, 5.7755564060041635, 14.84162605420907, 9.301259562339254, 12.148040883970236, 17.870333526803034, 5.155609871565387, 13.804399216623787, 7.726062699771969, 5.204029660933137, 22.047630046110143, 5.390903939493759, 15.253143126794484, 5.5428388523500995, 5.705176654218577, 17.953023333848794, 9.849770165149298, 13.787213766435663, 22.960647392047882, 8.801639954598533, 10.111324771168523, 10.719292500259153, 7.786711728926116, 7.647770627861253, 18.00915989435234, 22.509560834814007, 6.204859101244663, 20.24905244537873, 12.8436680633021, 15.675510383558686, 7.825344424895108, 7.961194469186542, 6.802043590943189, 17.768083213889454, 9.016038816259261, 5.227979923141526, 8.124483177245267, 16.173211780453187, 24.78800066452596, 19.34919899470749, 9.576578009940095, 21.203764425929556, 10.017649288926316, 21.701536340319475, 5.47000131499528, 8.409051309912545, 9.449572798687147, 17.989029094239008, 5.437930310614304, 13.066133304159502, 7.5142831820500895, 14.234069372597926, 5.376532096416656, 17.9599338995787, ...])
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);
([3170662.778920304, 3205002.984061642, 3314839.8119114935, 3324948.2119158, 3331775.261740507, 3366779.551484165, 3425693.556915628, 3432736.7742413757, 3446643.662523684, 3450689.3509218395, 3475690.041482327, 3478682.074535926, 3506761.7348984797, 3527071.051991788, 3532787.2821951313, 3545248.4874090306, 3633634.8890272686, 3665673.048272454, 3681805.387395829, 3685323.8266829406, 3695072.9207246304, 3698220.4254627167, 3771977.6269566035, 3953140.934509467, 4292489.0625, 4329443.047960084, 4605160.93104762, 4618337.5, 4622633.128566535, 4622666.510156012, 4776051.14053092, 6352520.008670687, 6381229.6875, 6419202.938267179, 6433871.929356284, 6552844.5811529355, 6649769.937740729, 6770503.233477557, 6783700.916627535, 6801013.9649035, 6814028.179139443, 6815809.51832191, 6900330.682784515, 6953339.878681957, 6970449.053704422, 7015180.149239343, 7079059.817028945, 7093627.98458546, 7104727.938597363, 7106446.320647336, 7112950.0812923135, 7114469.750735856, 7114470.872660009, 7115006.737047807, 7127012.011785672, 7133018.850359661, 7144152.254009876, 7145016.87678038, 7145234.893622324, 7145898.945505077, 7147918.654474609, 7148142.078903356, 7149568.249750321, 7151365.710881779, 7152124.026688438, 7153212.3765514, 7154127.6368762925, 7155456.6632691985, 7166215.625, 7207576.446686671, 7247587.5, 7270136.836615882, 7273561.383126703, 7282497.464919823, 7284680.00527561, 7286382.223306828, 7287011.48633993, 7290583.841367485, 7292134.603726318, 7316507.1098935595, 7318127.828882741, 7323643.422760534, 7324326.76757137, 7332485.65969385, 7334470.673693894, 7375741.3380641965, 7386710.0873153405, 7387397.2688259585, 7387631.582849457, 7407501.188998979, 7426113.992395118, 7427895.851177876, 7430560.9375, 7430560.946610323, 7431596.875, 7441773.455903717, 7441816.387357855, 7446277.236230395, 7447762.36829888, 7452950.054625879, 7468288.821010372, 7488177.090400975, 7494541.347700473, 7494888.738509626, 7497132.6308089355, 7499621.047457991, 7526707.696145794, 7536632.969486956, 7537943.041790175, 7549669.557254451, 7585340.869869667, 7596953.845175921, 7606892.870066757, 7607901.565802508, 7625091.549279223, 7646841.169813864, 7696888.232952024, 7747385.180958239, 7779335.352337171, 7781149.77840142, 7852435.556667241, 7891110.9375, 7950218.054314734, 8002483.689929875, 8065007.514102424, 8070721.657686096, 8108369.45920465, 8108977.638829696, 8201991.467833956, 8221711.754691131, 8226817.358840493, 8278450.368070567, 8310332.706500282, 8311786.672618344, 8345656.473546236, 8402116.23681655, 8403816.306020025, 8435949.151810132, 8451624.749344457, 8481090.93658454, 8482302.491937317, 8520129.981932271, 8539774.852152703, 8545468.620284373, 8571990.01663024, 8582852.651624458, 8587395.494858438, 8589237.5, 8596049.127064921, 8596218.775608834, 8635000.043312347, 8637194.449647924, 8638682.60187736, 8639062.817461468, 8641962.482160741, 8643543.43853402, 8645058.918615257, 8656470.768385123, 8661081.25, 8663929.147094473, 8666653.739106877, 8682675.48293851, 8704309.754080532, 8705611.998604933, 8706693.07625161, 8708549.541975655, 8711266.686974162, 8722390.625, 8743593.48114523, 8743844.809107594, 8745068.943061076, 8745213.84446005, 8746751.41913508, 8747214.340300974, 8790755.482927425, 8796487.46262275, 8797375.098873993, 8797724.082006957, 8801791.140279071, 8802196.892519942, 8802696.868195094, 8809231.672801951, 8810948.11339481, 8819293.327634284, 8820648.009772643, 8820926.132963764, 8821124.018872377, 8822053.97051397, 8822822.064668588, 8823062.378683673, 8823101.542730195, 8823268.759606263, 8823541.300807495, 8829186.400079362, 8840452.09702926, 8840690.137210108, 8842474.809958464, 8842702.138561916, 8844306.593084443, 8845090.55448559, 8848417.43835474, 8857332.023260474, 8857533.57731856, 8858515.81024289, 8858868.104448006, 8858924.214977417, 8859852.424357401, 8870274.1224116, 8873418.577867188, 8874902.788609006, 8884805.531521913, 8888012.589547774, 8888821.319767728, 8890559.163191078, 8890929.914893515, 8891382.868784865, 8891968.020960998, 8891978.222476581, 8892093.795941511, 8892281.759826066, 8892640.651658615, 8892755.863677278, 8892996.90868275, 8894461.912547724, 8896521.114856133, 8897229.459363136, 8897242.948388772, 8898294.008412309, 8901391.164254611, 8901508.056879308, 8902998.351359375, 8904726.512819529, 8908004.555805251, 8912269.83455445, 8912993.211852444, 8914276.836335083, 8915224.568524085, 8917388.03367622, 8924927.740088334, 8931683.505337553, 8931845.519710703, 8938638.059969002, 8938775.088903233, 8940555.567549655, 8943884.495948268, 8956352.88330919, 8957462.385244923, 8968013.282779796, 8972065.204068882, 8972099.696725234, 8973027.237893643, 8976459.705305733, 8979475.558670588, 8993278.611012153, 8994815.356748166, 9015513.920127697, 9016617.003564889, 9019465.026986761, 9035957.891533965, 9036556.25, 9040674.058669508, 9042500.747409927, 9043452.568278922, 9047273.866273459, 9064190.177807603, 9076854.373538697, 9077040.29306828, 9077404.51432058, 9081852.951585252, 9084372.88444449, 9111988.422542104, 9116990.930396456, 9118633.023289522, 9121240.680032, 9121333.687103326, 9131357.571735842, 9145485.011051282, 9146110.935969714, 9153125.0, 9155895.135534316, 9159348.012949757, 9159898.820258435, 9171186.005523356, 9187945.237935934, 9194228.180079846, 9195499.530429726, 9196719.150048202, 9211377.337176243, 9216091.086728364, 9216345.9626374, 9217251.291916402, 9217364.965589192, 9218135.979119552, 9218263.086802239, 9218314.30684086, 9219198.044871286, 9220458.935364086, 9230298.352658905, 9230430.899752425, 9231150.0, 9233699.550693288, 9235341.62897204, 9237711.418812504, 9238350.785821013, 9238495.442441383, 9241022.817932399, 9250520.904627828, 9252149.68828257, 9253292.801619375, 9253357.959146386, 9254301.155227741, 9255247.607072271, 9255859.784726383, 9256630.672733739, 9257504.70979737, 9257558.293702332, 9257681.930039842, 9257903.842853485, 9258713.952580005, 9258770.943221087, 9259158.501426587, 9260215.637426836, 9261473.926449897, 9267425.025711346, 9267600.13036472, 9267870.96839347, 9267908.93857748, 9268232.912806274, 9268285.717452802, 9268564.943032082, 9268834.342882426, 9269295.546769517, 9269441.900644429, 9269491.76837372, 9269807.000755584, 9270107.878741372, 9270316.72052796, 9270368.709890896, 9270538.894721285, 9270982.39027227, 9271112.995198278, 9271144.890179798, 9271281.543205263, 9271477.980569433, 9271529.096781522, 9271713.990933822, 9271774.027155228, 9272060.173394457, 9272174.613833975, 9272461.537001632, 9272805.390682759, 9273613.874953154, 9280566.426965754, 9285191.41590158, 9289856.957944635, 9299279.390470363, 9338077.697526745, 9347784.003310865, 9354914.289896272, 9356570.196596477, 9357234.375, 9358030.518069776, 9360035.06430011, 9361227.811056225, 9362081.454375189, 9362183.020808643, 9375497.22950949, 9380428.796161432, 9382789.930432819, 9383228.423436904, 9384775.069286406, 9387241.883674448, 9392322.054742422, 9397144.72503332, 9424644.256095437, 9445056.223166626, 9451906.531950932, 9473540.32505649, 9473611.330017632, 9474019.611456553, 9475629.235417923, 9481274.464189691, 9510722.333666792, 9512956.305118438, 9527890.09138781, 9530794.403419837, 9532098.855028527, 9535746.382416565, 9545972.100177683, 9545991.820174383, 9545992.503078267, 9545995.887118917, 9546123.704265097, 9546340.392375577, 9546432.064990748, 9546546.744055029, 9546870.4700693, 9547145.722539762, 9547263.724865245, 9547344.995737238, 9547956.316365223, 9548071.572313461, 9548122.909969885, 9548158.168394873, 9548538.697424492, 9548788.924352469, 9548855.468960091, 9549050.106508596, 9549668.75, 9550363.445070205, 9550398.91933625, 9550436.48767869, 9550512.600329675, 9550649.161250204, 9550964.074426282, 9550981.111881612, 9551039.450491482, 9551138.299487986, 9551210.897516157, 9551284.282587137, 9551318.710564727, 9551386.606855879, 9551424.469640335, 9551427.15709313, 9551510.323201912, 9551596.432870202, 9551834.453819675, 9551983.632196302, 9552018.885061793, 9552083.427475711, 9552105.568129785, 9552216.683933022, 9552318.783148786, 9552413.623936072, 9552417.056469519, 9552526.741103359, 9552544.931520922, 9552573.335755287, 9552654.89183959, 9552695.96158759, 9552760.693401255, 9552853.221794127, 9552885.781897454, 9552898.829062888, 9552928.261621267, 9552931.311109934, 9552933.953626323, 9552953.753393654, 9552958.93376762, 9552987.209984515, 9553001.811031485, 9553022.915356837, 9553023.505871128, 9553068.76512943, 9553076.5625, 9553078.196053788, 9553083.310822614, 9553087.478784092, 9553088.304604992, 9553137.748785548, 9553175.817972653, 9553176.198701464, 9553187.251930956, 9553197.350480907, 9553198.447111594, 9553202.314959502, 9553207.31408727, 9553242.028207641, 9553276.329402968, 9553303.356119938, 9553330.260610176, 9553337.002628084, 9553345.361329269, 9553381.323866837, 9553381.999342162, 9553399.477578778, 9553405.91295602, 9553409.919301853, 9553413.470515784, 9553417.297009153, 9553433.392585507, 9553483.237980396, 9553558.888314566, 9553600.862632828, 9553642.416863667, 9553649.664549025, 9553654.7777594, 9553655.739160376, 9553686.061173895, 9553711.639135642, 9553749.487067863, 9553754.718957834, 9553770.883952951, 9553772.441343188, 9553773.383307418, 9553821.198891472, 9553879.341050707, 9553903.816422436, 9553921.340272384, 9553925.440805502, 9553960.970705694, 9553963.75875269, 9553996.994124893, 9554003.108054131, 9554042.239327725, 9554047.144110056, 9554049.739054538, 9554126.245299337, 9554140.730703065, 9554184.295282422, 9554200.0242141, 9554259.841595579, 9554273.399346527, 9554275.699470751, 9554295.61265875, 9554361.512386125, 9554415.984594658, 9554417.32192662, 9554480.580940599, 9554505.74308114, 9554583.696441786, 9554610.312775683, 9554654.6875, 9554695.614559662, 9554704.29535086, 9554738.285719315, 9554742.228168156, 9554766.357899262, 9554766.842085315, 9554767.250486283, 9554776.857217733, 9554816.901520062, 9554875.085299013, 9554892.261598917, 9554919.831745293, 9554922.325292908, 9554984.36515751, 9554994.274600852, 9555002.616561618, 9555044.948761918, 9555062.736751704, 9555086.896118687, 9555120.84457027, 9555195.753896827, 9555206.986159442, 9555216.429532744, 9555218.190785024, 9555230.289573865, 9555256.901330238, 9555310.113283504, 9555377.537286624, 9555465.203877462, 9555561.484284813, 9555628.63757715, 9555655.31060711, 9556394.306717735, 9556449.200402236, 9556937.743238345, 9561401.979523653, 9561514.78280707, 9561565.07512188, 9561949.642365718, 9562029.138250535, 9562116.631979274, 9562173.946632441, 9562240.540118156, 9562275.793724617, 9562548.302285561, 9562570.699342348, 9562728.947926406, 9562746.887984259, 9562786.887451172, 9563139.087129949, 9563201.368027747, 9563295.046804463, 9563455.141606351, 9563519.288433397, 9563522.42021139, 9563560.417803645, 9563579.662799597, 9563604.704191627, 9563803.79040388, 9563857.142553737, 9563870.446388217, 9563935.346395895, 9563960.135039985, 9564106.983954042, 9564109.966622038, 9564168.626700241, 9564270.563236313, 9564359.123628737, 9564410.788893264, 9564411.451938886, 9564546.543450017, 9564635.196868889, 9564848.372742606, 9564921.233279428, 9564922.7112419, 9564940.567734016, 9564985.014492964, 9565219.583463917, 9565370.727318851, 9565488.760336732, 9565621.254830599, 9565708.059808254, 9565790.417807808, 9566104.406528348, 9566231.646719733, 9566395.773703158, 9566514.109968225, 9566661.0779259, 9566673.547068298, 9566715.76087604, 9566723.095677014, 9566944.963314202, 9567202.450388335, 9567215.753587496, 9567246.919926712, 9567261.16261919, 9567273.827100461, 9567310.677309187, 9567321.349615153, 9567417.252259597, 9567423.97848174, 9567439.773757134, 9567554.833718209, 9567629.146662092, 9567659.553133097, 9567704.709314745, 9567724.894898744, 9567725.056834025, 9567829.485377938, 9567889.878523193, 9568023.578322908, 9568029.386460437, 9568037.011228643, 9568050.398796327, 9568123.139703466, 9568154.652663354, 9568154.929032672, 9568287.033636853, 9568299.747211365, 9568384.132057076, 9568389.100856395, 9568441.486859398, 9568455.636392549, 9568494.173634132, 9568569.678019904, 9568626.34361952, 9568650.961438153, 9568676.543322446, 9568681.325441726, 9568748.305975193, 9568794.78372248, 9568797.301289387, 9568800.154232347, 9568837.669617739, 9568839.91205829, 9568874.146145886, 9569047.51974908, 9569058.657648487, 9569088.0213244, 9569120.302216671, 9569209.305663833, 9569246.875, 9569291.445323242, 9569330.395093583, 9569424.541671803, 9569489.3948565, 9569613.473854916, 9569615.459683107, 9569661.102630472, 9569717.89025045, 9569878.582659522, 9569883.765202804, 9569887.879238708, 9569916.885809304, 9569945.146631163, 9569950.538588012, 9570013.999830624, 9570136.999162195, 9570188.592949895, 9570245.235135116, 9570362.797448892, 9570451.606368212, 9570478.892003674, 9570530.207697246, 9570925.150264459, 9571220.174344832, 9571255.159098912, 9571333.734896563, 9571560.93129456, 9571674.356929744, 9571684.186673487, 9571991.105002673, 9572219.249290993, 9572225.492173094, 9572350.373678528, 9572584.252503792, 9573005.713245573, 9573021.689291095, 9573046.05925007, 9573075.904161034, 9573253.223581456, 9573292.645165069, 9573321.913771903, 9573490.324141981, 9573609.37208532, 9573687.384300122, 9573713.097291404, 9574202.133570924, 9574273.811750254, 9575016.671680937, 9575183.973244643, 9575320.092167964, 9575566.294009402, 9575760.077473132, 9575900.287433915, 9576581.626455866, 9576582.396849874, 9577725.18419971, 9578474.407427114, 9579066.532861402, 9582245.832469, 9582260.100094052, 9582315.023876298, 9582350.57581849, 9582527.747374943, 9582877.874705486, 9583030.551883508, 9583309.518947192, 9584230.999478506, 9584337.901531618, 9584570.796200024, 9584961.60093002, 9585457.724660542, 9585713.923823565, 9585978.619338902, 9586046.920251215, 9586256.572067194, 9586270.714788292, 9586319.051454358, 9586321.647695603, 9586371.775357112, 9586381.03371122, 9586384.572414398, 9586418.032976096, 9586425.496027825, 9586428.081636326, 9586482.539912611, 9586508.267712269, 9586533.733233957, 9586548.796337934, 9586569.597963225, 9586574.138484728, 9586619.481684307, 9586717.212183246, 9586732.135620637, 9586738.782884985, 9586868.699414795, 9586879.352233293, 9586887.791956162, 9586902.261122797, 9586915.488080138, 9586951.523713104, 9586967.978237186, 9586972.144573355, 9587005.034533618, 9587017.826160474, 9587048.998558281, 9587072.45749862, 9587073.176939204, 9587106.1217833, 9587109.670989135, 9587110.176057609, 9587112.380768247, 9587139.228180544, 9587174.154144173, 9587207.091574486, 9587285.288653689, 9587337.68902142, 9587353.155149234, 9587404.253485072, 9587430.264186148, 9587449.465071682, 9587484.80382973, 9587596.679033, 9587607.41602509, 9587655.93036833, 9587697.947024003, 9587721.89257817, 9587756.331793334, 9587797.222717853, 9587797.370556207, 9587799.616528377, 9587809.507573301, 9587838.979033355, 9587881.191293107, 9587899.606587294, 9587924.640836539, 9587934.929218689, 9587946.997062989, 9587959.605064692, 9587962.809886426, 9588008.244627569, 9588042.079923451, 9588068.960964927, 9588116.055649886, 9588116.168960605, 9588129.250976417, 9588138.473736592, 9588145.234718945, 9588158.931042872, 9588183.087690877, 9588228.24802559, 9588302.76012569, 9588308.849188754, 9588326.653793983, 9588370.982255684, 9588374.450451983, 9588382.842466818, 9588447.8245524, 9588457.04182146, 9588457.424684726, 9588460.567181276, 9588497.365870718, 9588538.742336798, 9588552.53095595, 9588563.474260869, 9588569.827933459, 9588606.425906409, 9588607.53567962, 9588611.942818332, 9588658.931697216, 9588678.317938175, 9588737.418098645, 9588759.69816009, 9588763.435291152, 9588897.509972816, 9588918.478559956, 9588925.380510243, 9588936.901194222, 9588950.817460377, 9588980.981254607, 9589003.663433397, 9589022.669464126, 9589044.403440123, 9589076.808262445, 9589150.847350257, 9589403.923458917, 9589471.42218983, 9589537.15153738, 9589574.023790793, 9589599.73135522, 9589607.440542586, 9589840.715846479, 9590019.47841295, 9590429.095339023, 9590453.70978268, 9590715.349084424, 9590745.239330243, 9591566.6428318, 9597173.147920746, 9597456.957148725, 9597526.995349191, 9597667.690962773, 9597833.134595532, 9597907.381322604, 9597922.111444723, 9597960.34890295, 9597979.990508271, 9598055.637809757, 9598071.861502202, 9598181.734581072, 9598310.91072285, 9598333.055122217, 9598418.160805158, 9598581.240221152, 9598679.290614119, 9598756.834475743, 9598835.716240956, 9598851.384760741, 9598870.554322409, 9598886.902477391, 9598900.655268662, 9598924.935714932, 9598943.849734118, 9598968.152841149, 9598993.31052823, 9599031.123508025, 9599134.520780936, 9599163.174509956, 9599188.224446604, 9599216.943805778, 9599307.547368916, 9599379.847257758, 9599621.096849341, 9599688.849667221, 9599690.547647748, 9599691.504665148, 9599691.949174315, 9599717.909507014, 9599724.584976427, 9599927.42708308, 9599959.811026372, 9600245.202358946, 9600298.440420952, 9600325.620650264, 9600340.289463932, 9600399.29382251, 9600416.135490283, 9600421.925883567, 9600454.883133762, 9600822.294005914, 9600883.913609276, 9601001.37585488, 9601089.128296057, 9601133.75778658, 9601186.416793821, 9601235.494857697, 9601291.319675181, 9601301.520180257, 9601321.764829919, 9601435.153005477, 9601550.315998077, 9601837.562271742, 9601866.302453035, 9601870.053886553, 9601871.519666536, 9602067.120074045, 9602114.004992059, 9602123.560165647, 9602132.75731864, 9602160.027670627, 9602180.165652862, 9602218.23958907, 9602234.65832272, 9602248.312002266, 9602268.441055492, 9602291.314881118, 9602299.586818848, 9602321.918581301, 9602353.188020699, 9602380.35922101, 9602387.673887093, 9602389.707810016, 9602403.166411286, 9602427.591834038, 9602460.911045266, 9602490.589134121, 9602492.755014285, 9602563.102122772, 9602629.263795933, 9602634.040835839, 9602653.452287927, 9602654.711337926, 9602656.519200772, 9602657.61305911, 9602701.641926784, 9602733.011938527, 9602773.412623918, 9602834.049422095, 9602856.805409776, 9602896.535168698, 9602919.662017986, 9602939.924142115, 9602944.547807325, 9603068.471990371, 9603114.54280376, 9603121.996471165, 9603295.225787245, 9603303.068738699, 9603316.677624159, 9603329.702485695, 9603333.534399644, 9603440.805108132, 9603455.262499413, 9603496.204463366, 9603512.690013442, 9603563.085525325, 9603599.601898948, 9603635.31237939, 9603724.680361442, 9603728.614522543, 9603827.57246635, 9603897.691893037, 9603970.588890495, 9603986.970497923, 9604036.65105825, 9604088.58314393, 9604122.065464702, 9604126.787135355, 9604136.07402387, 9604273.521736953, 9604299.43263323, 9604447.83977303, 9604601.309669498, 9604638.86362863, 9604761.913932635, 9604841.241462044, ...], [11.593584253505801, 8.21342693664493, 15.502419951817346, 6.064950450920723, 8.430016094131116, 9.218982563791279, 14.253319444993398, 13.56193505895359, 5.16332931183568, 6.822487002921894, 24.02411111428714, 31.9239133785872, 5.2242246338757985, 24.04757197463837, 9.153785618459885, 11.206624341323808, 17.344718426422297, 5.234380651985704, 18.505755406590488, 17.338388711961805, 14.073617206540742, 7.151466133793208, 29.502824795373794, 41.59489847845562, 78.44025677161821, 51.15145618440264, 6.087428482965624, 89.5877931389102, 19.54499225593281, 5.88251187061289, 35.03922213104518, 23.70195041750081, 70.11229198650818, 14.274533846276148, 6.093770091022971, 102.02015155997057, 29.14466557197964, 14.791832955546415, 46.89544382761078, 25.24934257258411, 15.151958529859591, 20.601219311473113, 7.41020743862203, 5.760748503234689, 9.913118017078636, 6.561993739005764, 6.135305071092881, 9.21543133093338, 7.073299251123783, 13.179611679463724, 15.260682881524504, 20.898329305286357, 14.881975936198579, 6.1402559447390095, 13.358440532021433, 15.338347273524711, 12.413169102754127, 5.791341911994272, 6.87165917857575, 7.261716164686741, 5.700705368795668, 8.229972523257727, 8.941437014524258, 6.780774180297076, 5.745310435094298, 14.490970674262366, 6.6698180886407705, 5.8452048316300464, 62.12796509507065, 9.235359393631214, 90.12589947435447, 27.985569845958352, 17.233250900090024, 17.795005297837708, 24.658617657134933, 13.088229210460778, 6.576711807071432, 13.234868732190723, 15.891392416859022, 19.684992804872124, 9.092971123939494, 6.226720764810002, 9.511038531717533, 8.144936442527383, 6.5452424410003935, 18.595924121169638, 23.751902409083147, 16.817443347502284, 5.728274029935924, 20.820769485384396, 7.578077226727496, 17.487635542332914, 46.19344172159547, 11.141976745054073, 68.01906925591145, 15.01212283689054, 6.008664668042997, 7.86655549410286, 12.74627066901655, 25.208591178938512, 18.058570793869762, 17.4247696801256, 18.662637853533386, 8.12236803735053, 6.069406566998845, 30.770519303283024, 9.234919509339331, 5.2495603815743, 19.640386911270834, 38.07669712991703, 8.420457204117353, 6.362687270525678, 9.98395028277728, 11.13287276272859, 12.962788611231009, 19.476611340784693, 13.324591090064974, 6.176123371768775, 13.098703600268175, 24.806680710210042, 12.731480191319406, 65.86882035403372, 19.74044925152864, 7.954734440751409, 21.730359072964184, 24.86770838178398, 18.569377705239532, 8.95157790973254, 19.54999149588905, 7.354219941126465, 5.469169037622432, 16.558301348254076, 26.59141535451365, 6.60885143864939, 11.496076760074823, 7.840599185678303, 8.682838773568317, 10.018471856023131, 24.402198976418433, 5.41052071947603, 20.261049589029177, 5.725756241894797, 10.904216873109343, 14.469117304989703, 5.8881200244877725, 7.440551979947001, 11.42523216893648, 50.48241386347404, 18.860534835778562, 15.040025031741527, 15.109206283383202, 8.694797801839607, 10.813711336197025, 16.307363875717947, 14.873947694049965, 13.873861887897467, 29.460616978399464, 17.019623064619744, 58.276603710647905, 17.618733033706945, 14.92666622078582, 27.805870274287244, 16.614292255880013, 10.425076903892485, 19.9188988079021, 6.211014180471884, 21.48785633588569, 42.66640027996709, 14.007055060479953, 21.459325803268104, 8.39137989895918, 14.170836671233385, 9.213052277171943, 16.11780102562457, 19.18701124611577, 7.5897746815987075, 6.2797717296737945, 18.138649549998803, 22.024352369736807, 11.155202469541521, 5.813476932651368, 18.626567519151163, 5.596362008598487, 8.998099652806797, 7.45553064921201, 22.22604263056215, 12.176805198449237, 7.9406285475798954, 15.717322691945663, 31.16208922840179, 6.759566088131759, 7.123979143336317, 7.8674329500259415, 11.936899062932985, 6.337180016273385, 23.825239314778475, 8.188573506275183, 12.165757629206322, 11.709945087157498, 27.203419536648067, 21.67912177463573, 12.598038270271596, 18.089802478511523, 9.493107186623764, 6.023445248505954, 7.342012065272871, 26.941725393152282, 17.2636415370632, 14.323644187081605, 70.85750851484367, 10.164034195906217, 11.270621190971251, 10.358180801123366, 14.191302577370877, 8.410602308215553, 27.79123355129034, 10.151904447047228, 9.415207972637614, 6.27302024712343, 12.030535157638353, 9.354046722396006, 22.707348740850215, 11.180766441730945, 10.318843944918475, 10.116470509554821, 24.714250410154495, 23.374268605168638, 16.02729827296129, 5.644590235424153, 5.8322862616241125, 5.201232855840049, 14.75547249706439, 17.051829813668686, 8.957522613738615, 13.222769135402821, 11.584519139409025, 13.517718798516954, 8.590508185047797, 6.219762311953044, 17.180020483203315, 11.467810253487064, 27.003205196426443, 6.781386157071188, 10.2057973590052, 15.423457550823324, 24.513022663444247, 8.226811075196238, 19.093079833234526, 5.680482483774895, 13.89918019544095, 9.97620739806403, 6.831291195400422, 27.64998941606031, 6.140141744183408, 17.75891054364278, 25.997198585690608, 26.207642638073306, 7.400377416312528, 15.251556831236195, 36.816571335611705, 9.918355982026823, 18.836593234326987, 8.01259359439733, 11.871287361486596, 7.008659164380817, 13.866175691199828, 5.091978746906118, 6.729418222703747, 6.070249370458215, 8.0142732052114, 7.387090212764931, 16.249055021916522, 25.222470595180823, 15.155498059247948, 18.6991570999701, 24.538083371558344, 7.299328840439137, 14.935679894131855, 40.70184094349982, 30.656471615152263, 5.783221105576237, 6.316799426726758, 8.322879795441871, 27.131880215649666, 15.155687863425534, 18.948978921492163, 32.33834322201155, 12.601314444117438, 7.24835655608715, 9.94911318439504, 24.13391148906137, 29.630993001711712, 15.102552590015174, 17.775894882213034, 5.209691998877054, 13.630055279369953, 22.117167608562237, 22.559960023831295, 6.4335535931097, 35.57148012619815, 13.81432690935764, 28.143992378301036, 6.86355792266274, 12.627195103178193, 5.346394102268557, 13.010087962406951, 30.969165253164142, 23.255738264125515, 5.746989635712987, 5.952278934978215, 13.587388448140585, 8.715771811958236, 11.83481662313187, 15.32946346702586, 15.027183118795252, 17.159162183245435, 12.387890767396147, 8.706549449082836, 33.03665415685494, 17.729827725148958, 7.872985112951859, 6.765990028374628, 17.202479538006145, 8.30022087690634, 15.462824184871515, 18.212555357151114, 8.987770062693096, 19.193080730299883, 6.239791615717389, 12.853855930718854, 14.820489232391857, 21.61011143102332, 18.807770196763197, 9.000486647707486, 12.546307255921437, 5.617719313066292, 10.468634225359667, 11.065587143778302, 10.875208186581075, 22.305663909364423, 17.23762860640099, 10.526071799022462, 5.136818371667631, 9.212193556199662, 16.39426012980786, 9.271614257407824, 6.887227342949617, 23.19773785278174, 13.64901102193418, 9.895569181029192, 12.439057968753218, 14.271809904345616, 19.236040541339126, 6.9323907353184975, 18.56073255995093, 22.36783794447289, 5.68008205747489, 32.0270569183523, 5.407238915795789, 14.517406033934881, 34.69797166373205, 10.148592529675025, 31.830531940474074, 13.866229634430358, 6.519613287349818, 7.680357944556075, 15.583097861783575, 25.02491740994945, 6.183259736590793, 11.6285868363243, 5.711181813632125, 9.087068051313661, 13.536849119106057, 10.31882647371797, 19.983440836183856, 5.164737122789393, 16.13735463445619, 6.705066979767375, 7.751654311459823, 16.715133728173793, 8.976316466289385, 21.143159562998445, 5.980369720010956, 16.576144077726266, 13.234923274647473, 18.1964326714106, 8.52044542995104, 7.4342921551169185, 11.498912078328761, 13.101772575182535, 17.482111277794253, 6.883915927693408, 16.066116518131842, 19.783096145854387, 6.013667807704957, 9.223082875217646, 18.76093602520782, 7.758594756965759, 10.638015241951214, 13.857561266346217, 15.200643425003161, 9.087939394697703, 32.53341017170627, 16.496973805666652, 22.9536218351546, 10.918427465411515, 5.5722486120699575, 16.980533557818127, 29.103320097915965, 10.28270363165738, 31.375157427435155, 17.55539383511824, 9.417703278329554, 18.669943058291476, 8.29289422860206, 5.3932200173002425, 5.138881787222564, 19.217422330786082, 19.924090039741678, 7.097369184125251, 6.0840078736878445, 12.364486747858068, 7.422054297733005, 6.152194098303474, 7.395204989259675, 22.090487133084114, 11.253183268423674, 19.37064151199089, 23.376978341983595, 7.841914364992261, 5.030237392150565, 6.410947441009616, 22.466558753677745, 22.12866075956942, 7.556523860451517, 7.669138572366471, 9.028780614667056, 14.567386957479773, 5.4063436218514935, 6.59389424045025, 7.0587305730374315, 18.348125788882975, 10.892899149639534, 5.974246315894263, 6.791091940835596, 11.22458817783925, 16.948382399672646, 7.8475113589696806, 5.679240677206126, 38.232711003294966, 15.981709159156889, 10.399120818992182, 11.236283842601562, 11.151437710678799, 31.746078533213296, 9.392214600240617, 17.255276071876434, 6.759278355452171, 6.93552426045283, 6.299150786136928, 7.928544200049666, 13.715218375860225, 9.130100130657512, 11.962241093944014, 11.142763649727408, 5.6570739687853635, 6.411699488673828, 17.499647500862743, 19.834467609227325, 6.296847088960972, 8.614832196368745, 6.668112790810878, 7.134346817454815, 14.847121255276015, 7.898780724822274, 22.513741653096545, 7.0355846461716895, 5.360925404947899, 13.080990274246519, 6.281133916305246, 7.827443878855669, 7.2379770606095555, 21.62695637809193, 13.53943494609998, 7.183078519399505, 13.800491504450786, 18.440965622485614, 10.413234161082707, 15.434823693946875, 18.51760311645217, 23.717151103087232, 7.129745590920389, 6.58056479025119, 15.783509012684114, 14.738898939416481, 5.3732411098405874, 6.224397294618888, 12.412975795433786, 21.15353030849605, 5.049051406316818, 15.069602674121425, 7.496951725486872, 5.714381609372786, 14.877310703071092, 7.622091067483164, 15.891331959339826, 5.3885911595138785, 8.125669116157852, 9.422409492713188, 5.808105299428677, 11.165767109647398, 8.549760212526818, 7.111458257223494, 6.359810270089845, 5.211137098892597, 9.86990721736086, 16.515543993928954, 15.00071194752953, 12.88571161782068, 6.994282594919901, 10.21034495148871, 12.996960144756645, 31.26206034176911, 11.309060966873325, 5.514346253796891, 10.097694896065535, 9.36602876753112, 8.716309400006809, 23.18746298128922, 19.234442564304317, 11.621890566991777, 6.231730577659109, 13.368383597508114, 5.618156664893087, 5.898604140089939, 16.989209350040447, 8.281379301209643, 7.804676424447531, 8.034841077204165, 9.041681290171482, 11.51909141134504, 6.027474254260745, 5.987120627379089, 8.534654261230502, 5.427382712781664, 7.922676521869154, 10.35329038782912, 9.898264508222008, 5.998207962615489, 6.920428572603049, 7.403657920257368, 18.79801729707347, 14.177236676751061, 5.024283849413802, 9.920402742840222, 15.287290390678505, 5.183518230273074, 9.545907197398332, 11.909138035704313, 10.025041099871668, 21.009562433816374, 7.030510246488065, 18.10179855347171, 8.90205433832146, 9.80250575227338, 10.997573318609513, 5.759206092450481, 10.922736693777004, 9.681420983450087, 10.1398551327636, 8.293455574581671, 7.987200889085737, 9.352316380677419, 12.757660164754899, 9.116412225713576, 11.92034726943765, 12.088360543534094, 14.897515179346057, 8.927503299894367, 14.84819148059698, 5.342493968732946, 7.863042389997638, 10.220432299533922, 7.157097252164607, 13.083271664291606, 19.014430960594048, 12.508106681310647, 5.859091693632687, 7.559242832199348, 9.552812504442873, 9.127529819229176, 25.898518117730678, 7.800538721411888, 19.702085581413872, 5.148464352120202, 6.7506467561924755, 6.962396632991969, 7.9365511589493005, 26.969008484087624, 7.300353163117519, 5.761937738490729, 8.518838433021854, 23.723148189124835, 5.435763222375864, 9.549653140057051, 35.6323889648194, 9.10461258656633, 5.843929092559341, 17.048681565616278, 5.0993916314335435, 5.168644964977403, 16.747166053825882, 10.920137657929178, 5.685343435086607, 29.197215933817006, 7.376199237127107, 16.289963538982455, 15.115559370767777, 12.114055675917339, 7.227775565314192, 14.0345930651162, 13.257056455898105, 15.194224592525382, 7.811367168647585, 6.165324450010245, 12.685206347411846, 6.986186707149694, 5.718189442109809, 8.298147115175011, 17.12288859514746, 15.162651238967356, 6.455866828523841, 10.131986381473, 11.355195242327742, 9.089199892596413, 29.527540299677852, 7.230383319795367, 5.036560966824284, 16.280018587170847, 15.949631877664562, 13.419123281979848, 10.754306637787558, 8.162151743145735, 5.942752806522876, 6.382596001190302, 5.32132625430582, 9.717282163239155, 6.964089838092802, 6.453318593178968, 5.272875055632591, 14.868913928108963, 6.778661969181972, 9.22261367029029, 8.921025405527416, 9.719888881771348, 6.104286231872394, 7.665759614593211, 19.602920023491887, 6.913739182870842, 18.628715323977417, 6.380227532118436, 7.265584063461675, 5.461325339872702, 14.683658013267195, 31.329362794922808, 8.77389381796494, 7.3207681076606, 8.97176369734804, 11.690231011294948, 6.1955856810642205, 10.878777304462359, 22.632991257090666, 6.003034471120446, 12.795770233084557, 7.988444220402211, 5.138690801026059, 6.440816132050492, 8.20076850045098, 17.487108832911293, 5.933966416766295, 8.94101437778144, 24.954334811446355, 27.08266356941405, 18.865766550895188, 5.400153724647714, 18.97756617547512, 12.051398969941616, 11.370993710603255, 9.21725475790752, 6.138553910143046, 8.843073340150928, 9.32616163103155, 5.579431724436455, 14.269202335185877, 17.56920547075211, 6.56831535353136, 9.785386937693243, 29.50464020606615, 10.941487477955855, 5.893986134680099, 8.190753630739593, 12.09713411497346, 6.022212763511816, 7.639286356248503, 11.927290338137011, 11.18885544687336, 12.890961003463207, 11.123154024532575, 5.527491486577428, 17.809670707631927, 8.61356750832635, 5.174170244302033, 6.204156186494939, 10.552888701404894, 24.82468259877329, 5.424680692603298, 18.52331329719213, 6.82228008645232, 8.496218667801966, 6.423850348661355, 9.492167255710074, 20.631956384975087, 20.077754905637736, 5.558859908882645, 15.404228516343021, 20.540355841885226, 7.281516125737094, 13.674181513554267, 14.06624051314346, 10.187563922122813, 8.364194719114991, 13.304570885788944, 5.3036535414457395, 6.139886840145526, 12.351564276505835, 7.571773636802085, 7.085468820614388, 14.259186973711433, 7.619686682654081, 6.308765228860902, 11.820670076371693, 16.230126230752536, 22.791595406157967, 14.574848310246148, 14.176579820627573, 15.751425517591878, 6.62833077456044, 6.866746938442376, 14.778763816690757, 10.726787881613403, 9.748447539801926, 12.95385706754386, 11.739086624105196, 13.145611280808826, 6.164160687510539, 6.608250604374507, 6.49096751920144, 19.893176812328857, 5.196356226587422, 7.585043771917043, 8.116898304851942, 8.447248360494543, 5.081824649149108, 9.218252288719661, 8.266172120511747, 10.103344994994545, 11.576939438813858, 11.717228881726026, 8.655886917289397, 6.340785620943777, 9.877817994075606, 10.74347571835555, 23.27580431669287, 15.521085557267726, 7.921162444031125, 24.514311960261807, 6.288360330607749, 8.70576687692437, 22.609762772493212, 20.126546715183018, 15.714482595483442, 9.357026827556924, 13.510471072714475, 12.157102819598153, 6.406383281836342, 9.722385155307569, 31.401962490461543, 11.210922711708344, 10.66233694584125, 10.438826235143626, 25.023658554406282, 5.465288185875026, 7.734036639148054, 12.002012093991986, 10.576926886338976, 8.357951021999789, 8.242926513063747, 6.477927622400466, 13.627760998422877, 9.04511619232839, 5.8561582618389485, 9.436791947257438, 7.183271056407069, 9.607935850909184, 7.23987491442794, 9.242067973220449, 6.1103159538116785, 8.528244666713684, 5.260629028973688, 8.068481415093663, 13.902433286960562, 6.257421055010638, 8.98225210641117, 16.10553603897583, 7.154171276225542, 13.712012561553975, 6.989767217510926, 15.772303864941971, 5.566493479032674, 8.015881822240186, 9.356871002814879, 6.026596026584583, 8.754954623124322, 10.571199333875589, 5.279783805383361, 11.992692645652559, 5.596574130146499, 10.31085940162445, 19.61831597852859, 5.8982889295631376, 15.5298969362868, 13.98187435490684, 8.012382655170812, 10.498947581727228, 15.236086879320693, 20.635267235145044, 6.538971395374779, 7.980590969967685, 8.653556401555994, 7.051880728693432, 6.841926941333416, 13.063347976145351, 19.353533706734964, 24.15835813813679, 17.511237379451124, 7.91829324772308, 11.136492661172742, 9.548229742617272, 19.585499611451517, 21.01366347920382, 15.659634962574383, 6.695877148121962, 8.623024527639425, 12.943740725852305, 10.592160601993083, 9.409418759989313, 6.167271342873908, 5.5050151061443175, 17.763544169951285, 6.444691731063922, 7.102349476421329, 13.205352804351351, 6.707039323199699, 7.880725979495099, 5.734870813191575, 9.796770815547244, 7.208775511576758, 8.99161906422006, 8.415700387806721, 20.652594793385536, 16.237580476144394, 6.395224221436218, 8.279452339403123, 12.910909864646552, 14.840420333453832, 6.812930554946787, 13.088224876810562, 9.323148270709847, 7.020889506345655, 5.858530356501697, 7.064479174478299, 8.194770304296112, 6.2982421066192975, 15.51992525247756, 5.364888181989489, 6.081439551031664, 15.335781825215568, 7.99416578083492, 8.067090285870636, 14.548647920122944, 11.36348261154645, 26.702111554361906, 10.029584552124387, 5.283618602100957, 5.450500734399079, 6.512429704509238, 16.60590604331772, 8.177145735979895, 8.246091403828794, 7.373626262771625, 14.104792773798932, 8.709239427280146, 7.016467051221337, 12.814823271726956, 16.91227633620176, 14.537688632234518, 11.132275509819651, 6.588993366937876, 8.116767840907967, 6.1819185996540815, 12.031867985424393, 11.208183565774954, 5.8285986992379835, 6.554843223391598, 21.887093015026235, 10.847984640449182, 5.9451559972134564, 11.891744046719136, 15.683510379866526, 12.56996592091303, 7.316873892597674, 22.764622059852858, 7.092789337361676, 19.057930125238123, 11.660372256306083, 7.137917784346677, 12.382211663556872, 24.294195897986423, 13.74052105447825, 8.251240319756418, 8.256398501898968, 5.950159653974032, 9.285176032424511, 18.191556855059538, 9.771315626924109, 8.934145855460468, 24.667596770884792, 15.297608817294355, 23.140547103882177, 5.312883717746062, 9.004873712834645, 22.094560389967924, 9.385265340258151, 18.3166108783297, 6.106370555692919, 9.943964104446252, 16.625200511146794, 5.7755564060041635, 14.84162605420907, 9.301259562339254, 12.148040883970236, 17.870333526803034, 5.155609871565387, 13.804399216623787, 7.726062699771969, 5.204029660933137, 22.047630046110143, 5.390903939493759, 15.253143126794484, 5.5428388523500995, 5.705176654218577, 17.953023333848794, 9.849770165149298, 13.787213766435663, 22.960647392047882, 8.801639954598533, 10.111324771168523, 10.719292500259153, 7.786711728926116, 7.647770627861253, 18.00915989435234, 22.509560834814007, 6.204859101244663, 20.24905244537873, 12.8436680633021, 15.675510383558686, 7.825344424895108, 7.961194469186542, 6.802043590943189, 17.768083213889454, 9.016038816259261, 5.227979923141526, 8.124483177245267, 16.173211780453187, 24.78800066452596, 19.34919899470749, 9.576578009940095, 21.203764425929556, 10.017649288926316, 21.701536340319475, 5.47000131499528, 8.409051309912545, 9.449572798687147, 17.989029094239008, 5.437930310614304, 13.066133304159502, 7.5142831820500895, 14.234069372597926, 5.376532096416656, 17.9599338995787, ...])
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)