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 = 46520
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);
([2994152.10179424, 3008900.741293584, 3188415.625, 3207236.5175601677, 3267211.860766203, 3463865.625, 3585060.9375, 3588218.75, 3620409.135199091, 3624689.0625, 3624717.4307898027, 3695246.875, 3696633.658516367, 3766039.0625, 3766060.6019075094, 3768646.643086974, 3793340.625, 3799431.693360206, 3861096.875, 3866906.160250766, 3866919.908972695, 3915726.2613672405, 4100387.8621413545, 4101413.8576331045, 4178021.42431089, 4178115.3745084726, 4324651.827239647, 6972595.62305612, 9009156.25, 9114925.03342043, 9130889.0625, 9150171.414702749, 9157664.0625, 9259825.090866905, 9260362.143084688, 9268432.019629566, 9286150.257884234, 9330124.271245925, 9347537.462429345, 9352822.600836828, 9364473.4375, 9379459.331036195, 9382408.640231, 9411816.745185519, 9412493.115067005, 9413030.900788175, 9420596.9891505, 9420659.76333925, 9423522.51721086, 9425201.988376983, 9426155.33080762, 9427288.859572409, 9427514.097401636, 9428590.625, 9429845.3125, 9430559.188949546, 9439664.0625, 9440048.4375, 9440139.336817171, 9440828.923535367, 9441128.349171748, 9441373.275087453, 9441748.65030218, 9443068.75, 9444097.211428404, 9446188.973329237, 9448175.780882832, 9449215.45208447, 9458941.200317254, 9459450.705081206, 9460068.358490286, 9460668.61740548, 9462190.413949681, 9462741.866014013, 9463209.328307243, 9476746.435448596, 9493027.031928703, 9530120.088229625, 9531054.129057337, 9531471.875, 9532712.880150458, 9537096.844693488, 9543863.910018517, 9549393.660772376, 9562309.375, 9566280.427727615, 9575654.6875, 9593472.674420524, 9619654.839915257, 9635081.25, 9635085.428422036, 9636121.010197945, 9644855.943405185, 9660485.68997706, 9661012.5, 9664433.866625791, 9673112.123038456, 9676906.93832919, 9703572.982078299, 9704712.625152178, 9706234.634202536, 9706878.125, 9706950.067163624, 9707027.400734216, 9709490.625, 9709630.368774604, 9710090.995649647, 9710125.0, 9710321.307664149, 9712147.924844258, 9715726.5625, 9715945.976857958, 9716763.161644805, 9716792.1875, 9718420.522217928, 9718606.25, 9719221.291300815, 9720395.025771555, 9722384.375, 9722922.518420987, 9722940.625, 9724583.13237277, 9726313.85001391, 9744377.283973336, 9746360.075652339, 9748215.368077345, 9764709.344894907, 9777604.6875, 9790396.875, 9791233.684679285, 9791747.641218765, 9792731.036252975, 9795538.83321476, 9797203.125, 9817525.97162363, 9823945.3125, 9825084.375, 9827124.441652093, 9838459.375, 9840137.5, 9840149.0806123, 9844876.175886957, 9846291.675461905, 9850380.263361666, 9857393.75, 9860295.296157049, 9861422.655564122, 9861452.294718552, 9861823.538476015, 9863540.625, 9863755.992725428, 9865909.255632086, 9881387.325336609, 9883106.25, 9896402.09485256, 9896911.407207357, 9897807.864966244, 9898811.158889908, 9913336.298407774, 9916867.839339597, 9917932.8125, 9920106.385594236, 9920862.979560986, 9920971.048378998, 9921553.125, 9921771.349076668, 9922024.658834355, 9923439.834137207, 9926001.5625, 9927135.521356339, 9940039.273997653, 9940112.5, 9941578.806968696, 9942139.436943758, 9943700.0, 9943715.76358327, 9953362.5, 9954809.621902429, 9955246.875, 9956382.453302179, 9956389.738307582, 9958098.4375, 9958588.13837788, 9960316.842643386, 9960341.659209354, 9963438.31352322, 9967416.416479327, 9970495.047393138, 9970726.08118611, 9975782.8125, 9978298.881695492, 9979312.481872205, 9987518.528582923, 9988772.7091203, 9996019.867523955, 10002526.153437097, 10003526.614559706, 10003549.526082773, 10011986.394377982, 10012022.245119264, 10012472.0517321, 10014608.347373266, 10023730.032812886, 10025158.961067043, 10026407.059599176, 10027047.196290823, 10027350.410148935, 10027550.0, 10028310.9375, 10028468.75, 10029868.75, 10029964.9640396, 10030290.788878793, 10030298.43283009, 10030506.25, 10031260.577392993, 10032771.875, 10034174.807659755, 10034308.73230625, 10042858.126897186, 10043614.796822252, 10044118.505382286, 10044312.88031975, 10044647.055176519, 10045090.580360375, 10045120.646933572, 10045177.441255039, 10045202.722758338, 10045367.547669785, 10045496.875, 10045933.184673855, 10046117.589007296, 10046390.168148689, 10046948.380932622, 10047234.06212699, 10048097.34390869, 10048863.685920296, 10048889.894684132, 10048898.517298726, 10050046.348529158, 10050715.625, 10056669.571739903, 10058801.523676015, 10059861.227555467, 10060103.125, 10074193.61148999, 10074334.218732392, 10075330.238404147, 10075707.8125, 10076085.218420463, 10076568.75, 10078190.625, 10084562.366569597, 10088713.228820102, 10093302.233608687, 10094092.398579942, 10097629.677011596, 10099818.161657354, 10101507.908988046, 10103136.303591285, 10103142.1875, 10105267.349994523, 10117489.0625, 10117531.068116419, 10117971.197633537, 10118155.36487041, 10118638.86213196, 10118957.8125, 10121369.80336921, 10124671.875, 10125524.050796619, 10129647.62995259, 10132212.389511507, 10133478.125, 10133928.125, 10135054.6875, 10138370.35778068, 10142727.927454935, 10148422.72420361, 10152796.875, 10159118.56955039, 10159936.81456419, 10161984.375, 10162957.62238311, 10163527.744894465, 10163738.440498047, 10164014.0625, 10164039.15850287, 10164059.589616638, 10164126.72795977, 10164171.446313268, 10164297.145650288, 10164509.375, 10164518.75, 10165199.726746943, 10166645.075253038, 10175517.56739844, 10176831.397573667, 10177276.9000844, 10189589.694361798, 10189643.203320125, 10191360.9375, 10192265.871198354, 10193136.404149745, 10193496.010431658, 10194810.9375, 10195017.606852999, 10195831.25, 10198917.061497806, 10199929.843204565, 10202466.979801213, 10207733.936151382, 10211271.459763546, 10211823.700863523, 10212363.612186423, 10212660.773121906, 10212901.847783335, 10213017.124958774, 10213818.272816751, 10213918.15194847, 10214313.447245667, 10214830.847830294, 10214920.170748401, 10214962.5, 10214974.845121577, 10215320.92879725, 10215524.700517336, 10215694.75988083, 10215892.1875, 10216850.534636347, 10217693.75, 10218732.998117233, 10218793.551574852, 10218915.513552487, 10219271.313578714, 10219507.119788365, 10219567.264477333, 10219663.63285169, 10219843.625374211, 10220520.439064348, 10220863.049511665, 10221439.268257776, 10222726.068198713, 10222990.625, 10224687.5, 10229083.320905473, 10229590.478868162, 10231996.875, 10232536.882277273, 10232671.875, 10233192.1875, 10233464.6923292, 10233724.311452916, 10234017.1875, 10234127.755668622, 10234501.5625, 10234857.038744932, 10235075.94149907, 10235733.717335952, 10236546.219780877, 10236826.5625, 10237333.007123841, 10237470.195720125, 10237840.625, 10238590.625, 10239246.043089233, 10239342.47043639, 10239474.477431262, 10239746.185498293, 10239780.438494084, 10240225.0, 10240228.125, 10240276.259424943, 10240278.982452031, 10240518.856236883, 10240584.375, 10240662.5, 10241325.784250256, 10241436.807564648, 10241913.684315499, 10241913.921212304, 10243045.3125, 10243248.4375, 10243406.25, 10243980.761150368, 10245161.677365914, 10245506.303747486, 10246748.400705654, 10246840.429888658, 10247206.25, 10247841.61807512, 10248347.396695942, 10251186.491330942, 10258885.88712811, 10259249.691976458, 10259262.060272591, 10260712.5, 10260943.75, 10261278.21099638, 10261712.50359246, 10261735.9375, 10262703.125, 10263067.1875, 10263084.985332884, 10263304.1294639, 10264740.46726533, 10264934.375, 10264939.029903317, 10265700.213128006, 10265783.62183331, 10266012.5, 10266160.050980616, 10266265.625, 10266323.499157205, 10266368.691493424, 10266778.153906373, 10267682.770320863, 10267755.83803924, 10267911.851134755, 10268051.975119105, 10268164.478479864, 10268986.791049125, 10269754.46950462, 10269881.25, 10270475.759180382, 10270580.894001992, 10271695.761425063, 10272540.625, 10274518.75, 10274626.67179694, 10278303.125, 10282312.586796045, 10282488.782901382, 10284624.854990987, 10287244.481954318, 10290729.6875, 10291479.6875, 10293807.8125, 10294265.23524073, 10294408.585753605, 10298505.512845969, 10302004.311771166, 10303219.930140022, 10304611.442040494, 10307241.060791358, 10307375.89914577, 10310383.477585869, 10310975.0, 10311477.725999454, 10311855.760147136, 10312334.20323923, 10312451.169333719, 10313562.361772506, 10313667.1875, 10314734.160843667, 10314842.57530501, 10314951.5625, 10321660.453628168, 10326519.015495831, 10326631.33814561, 10328815.625, 10329115.767697947, 10332051.15780682, 10332111.675031396, 10333062.5, 10333090.938772699, 10335473.255816218, 10336181.25, 10337645.3125, 10338349.584327852, 10339420.694221167, 10340571.206517283, 10344062.5, 10346702.47104615, 10355501.798912488, 10355868.75, 10357045.954194184, 10361102.52489289, 10361179.339437671, 10362088.617349759, 10362543.624664826, 10363566.164766368, 10365951.104284607, 10370014.0625, 10374015.01142959, 10374243.137680663, 10374948.364888553, 10375097.922881033, 10375349.536257498, 10377022.88856711, 10379787.658454558, 10382790.625, 10388357.8125, 10389607.398891898, 10393066.158132793, 10395149.716908328, 10395773.378908591, 10398087.438007656, 10399428.247647824, 10401139.0625, 10404773.4375, 10405116.697079105, 10405843.91250368, 10406792.954215819, 10409854.297278251, 10410495.403049441, 10412024.201039001, 10426050.69600054, 10426798.4375, 10427907.8125, 10429771.604382606, 10430963.70628239, 10431709.092783708, 10432535.670546666, 10435060.9375, 10435861.752037436, 10438535.9375, 10440455.692050282, 10440745.37410167, 10441270.391581843, 10441687.789428905, 10443478.761671094, 10444059.141861785, 10444094.704442453, 10445590.723568747, 10445737.007828783, 10446448.4375, 10447223.620688913, 10447884.556779252, 10448233.359697927, 10448318.784684254, 10451945.3125, 10452627.71271175, 10452654.6875, 10453109.341722552, 10453387.65326734, 10454690.625, 10455086.874935985, 10455097.477002798, 10455946.031895768, 10456383.333002077, 10459088.021807821, 10459094.544343894, 10459715.625, 10461369.196776519, 10461477.739144348, 10462514.634815132, 10464103.125, 10464684.3240911, 10468273.367972894, 10472240.100937769, 10479460.096251274, 10479480.84084223, 10481455.767712262, 10483571.997341478, 10483630.400068166, 10489213.419989876, 10489476.5625, 10490660.381035369, 10492292.132686196, 10496151.564531086, 10497003.196405897, 10499231.529203646, 10499249.242466891, 10499922.862278093, 10502296.875, 10502547.198179847, 10502582.8125, 10505028.332271917, 10505280.02314922, 10506445.3125, 10506577.793270249, 10506883.463659853, 10507375.0, 10508654.6875, 10511414.043342538, 10511713.04827717, 10512958.900554989, 10514324.909409178, 10515289.0625, 10515300.640459638, 10515390.625, 10515495.219126636, 10515763.4488545, 10515867.39592855, 10515897.289052904, 10516230.121449253, 10516648.215430647, 10516671.875, 10517644.042206673, 10517744.07662694, 10517933.60806719, 10517968.75, 10521325.811464362, 10521327.852857685, 10521504.6875, 10521747.782969322, 10522088.135193042, 10524579.6875, 10525744.380209586, 10525792.118072664, 10527798.11466034, 10528239.038004387, 10530286.432188801, 10530546.654051613, 10530618.28719982, 10530982.8125, 10532576.541032657, 10533364.0625, 10534447.045884112, 10534464.0625, 10534619.602235941, 10536696.56699258, 10536936.904227411, 10537468.75, 10537929.041796397, 10538392.479409855, 10539709.375, 10541641.68580409, 10541893.343427466, 10541993.473752087, 10542245.3125, 10542339.350005679, 10543245.3125, 10543971.099145835, 10544454.719080655, 10544572.899177102, 10544629.6875, 10545109.587378236, 10546667.1875, 10547363.30520803, 10547474.137636987, 10547774.782994641, 10547824.719347209, 10547831.620054567, 10547861.49262826, 10548052.362844493, 10548092.506737348, 10548261.330051053, 10548370.3125, 10548447.361270646, 10548448.910622118, 10548464.0625, 10548625.826140877, 10548645.190468144, 10549374.81491079, 10549392.144891024, 10549435.9375, 10549452.744806273, 10549502.954836631, 10549568.807310456, 10550027.30202936, 10550288.915413698, 10550707.8125, 10550900.0, 10553337.5, 10554908.035739291, 10560074.48639902, 10569311.56747129, 10573120.884306712, 10573892.71190468, 10576370.24246466, 10576786.98873725, 10577526.394598868, 10578093.795221208, 10578320.886715468, 10578723.4375, 10579759.109121678, 10580384.723503795, 10580985.9375, 10581016.033779692, 10581085.045640633, 10581532.127480343, 10581741.1312645, 10581751.958076995, 10582272.006970853, 10583049.961838039, 10584300.844908105, 10587573.747128904, 10589100.622727392, 10592257.997000465, 10592261.302598597, 10594942.21117082, 10595092.1875, 10595264.157391679, 10596797.472666476, 10598573.885286372, 10599524.181917584, 10599610.557763379, 10599716.451240981, 10599718.269520734, 10601247.982896326, 10601684.04510476, 10601685.780760072, 10601721.464791333, 10602698.46642007, 10602966.921564288, 10603003.25074059, 10603150.0, 10603715.615948308, 10604313.382443463, 10606644.518809244, 10609596.614790855, 10609601.5625, 10611228.216149753, 10611401.462476714, 10611431.25, 10611561.356047722, 10612149.96755707, 10612250.82958037, 10612523.946524547, 10612555.783699637, 10612605.241563845, 10612882.777436333, 10614645.3125, 10614672.757731505, 10620390.595328173, 10620796.875, 10622195.3125, 10623434.370692844, 10623618.75, 10625189.808412297, 10625465.413901553, 10625649.888907064, 10626018.741906421, 10628536.716330439, 10630311.755629461, 10633385.9375, 10633957.792621119, 10635835.67641323, 10635879.91290038, 10636119.766813302, 10636128.577998376, 10636626.5341889, 10636728.017245347, 10636928.125, 10637073.4375, 10637419.808023667, 10637534.025418693, 10637602.556162778, 10637608.365545971, 10637776.453082154, 10637785.9375, 10637877.498299222, 10638179.650989128, 10638329.6875, 10638433.155319577, 10638496.875, 10638611.278553413, 10638762.244597144, 10638770.767570779, 10638772.532055834, 10638780.688083353, 10638953.280721156, 10639118.311961329, 10639129.6875, 10639270.713528708, 10639467.316478621, 10639562.562494824, 10640195.889804905, 10640996.286931459, 10641196.441323146, 10641840.51727545, 10642004.6875, 10642650.825365096, 10642674.427178105, 10643176.046584753, 10643370.593538124, 10646231.25, 10646908.625178477, 10648537.5, 10649505.043908918, 10649546.875, 10651041.855989922, 10651260.9375, 10652324.06921634, 10652551.1906639, 10652730.639360324, 10652915.625, 10652996.238211, 10653152.35949623, 10654650.654678093, 10654651.624468917, 10655550.994622527, 10655726.5625, 10655795.31989339, 10655879.037472563, 10655923.4375, 10657329.6875, 10658042.30652215, 10658218.269914668, 10658317.1875, 10658330.724752346, 10658521.65284559, 10658975.0, 10658976.73942596, 10659406.275320102, 10659444.280342765, 10660637.216868991, 10661971.875, 10662296.845560659, 10662299.518622674, 10662942.761782361, 10663098.52959151, 10663302.560997935, 10663327.573611945, 10663573.4375, 10663600.000024296, 10663633.401935184, 10663767.1875, 10663857.830113282, 10664132.69891537, 10664376.526719494, 10664809.375, 10664831.039458742, 10664862.26045604, 10665036.912563553, 10665337.88078596, 10665527.246769045, 10666044.269630212, 10666896.565819621, 10667877.84830963, 10668616.760760386, 10672080.811900718, 10672382.615500718, 10672382.8125, 10672654.459925683, 10673239.0625, 10673600.97545003, 10673679.606222542, 10673921.678796485, 10674315.281514298, 10674410.9375, 10675161.12147405, 10675532.8125, 10677509.375, 10678947.406483412, 10680022.0735401, 10680331.25, 10680640.232183052, 10680667.1875, 10680724.402163973, 10680857.234508825, 10680989.253232932, 10681081.25, 10681094.147197412, 10681134.475281386, 10681433.818601698, 10681741.77006811, 10681764.46071782, 10681938.149440201, 10681949.743814861, 10681959.529315406, 10682016.767951531, 10682019.315193418, 10682029.6875, 10682266.646587502, 10682267.53032876, 10682269.987699766, 10682303.125, 10682310.9375, 10682460.736402085, 10682748.632675465, 10682902.915863702, 10683029.29761582, 10683104.6875, 10683187.5, 10683259.117147898, 10683360.878654473, 10683410.9375, 10683512.412832558, 10683849.299202107, 10683922.322663577, 10683950.054448511, 10684084.505945735, 10684279.6875, 10684807.8125, 10684871.875, 10684874.24750001, 10685190.705942465, 10685341.819820119, 10685383.690035813, 10685533.238078045, 10685561.770980336, 10685656.999564817, 10685717.344767857, 10686356.104773514, 10686429.819156326, 10686484.373610262, 10686512.5, 10686816.107371971, 10686843.814122442, 10686864.999771487, 10687048.160092767, 10687099.499407386, 10687173.28819846, 10687223.309110263, 10687560.180698605, 10688148.4375, 10688406.80383191, 10688464.0625, 10688762.5, 10688859.966460343, 10689229.267090982, 10689265.207153214, 10689620.3125, 10690517.1875, 10690578.125, 10690766.052834664, 10691151.959834555, 10691254.447101213, 10691275.0, 10691512.305982864, 10691583.270473594, 10691802.659261813, 10691885.464711199, 10692190.228394128, 10693039.05735874, 10693391.076664068, 10693585.9375, 10694008.946782438, 10694211.075055474, 10694244.624211004, 10694304.145135067, 10694529.543065697, 10694756.889710164, 10695492.60682635, 10695764.973775985, 10696234.375, 10696565.907930288, 10696628.45828438, 10696975.0, 10697392.465892388, 10697438.236477453, 10697513.566448765, 10697757.8125, 10697762.026561609, 10698070.278987264, 10698563.230701884, 10699381.25, 10699645.417959627, 10699735.062846558, 10699856.052457424, 10699876.303653212, 10699903.313898923, 10700115.282692589, 10700169.795059713, 10700199.232396066, 10700292.728683308, 10700296.012318365, 10700317.1875, 10700339.600508764, 10700448.76386735, 10700768.339065801, 10700789.603723941, 10700796.19739989, 10700798.871178553, 10700831.25, 10700846.935920393, 10700897.489256972, 10700935.061437637, 10701028.093776196, 10701046.030133625, 10701141.241200833, 10701255.179449141, 10701304.6875, 10701501.494927485, 10701642.1875, 10702091.998097528, 10702169.886311624, 10702223.4375, 10702235.418635398, 10702309.1421758, 10702318.305866769, 10702431.25, 10702451.349873412, 10702452.601073794, 10702527.955007575, 10702575.290832913, 10702603.983508907, 10702630.236022273, 10702717.1875, 10702846.875, 10702954.6875, 10703325.0, 10703421.8482829, 10703665.625, 10703837.977204148, 10703888.65083645, 10703894.214402555, 10703896.20858281, 10703914.188580547, 10703985.089001408, 10704054.6875, 10704222.73594962, 10704236.718810067, 10704293.26428308, 10704323.4375, 10704332.645692296, 10704442.867256371, ...], [44.152242301635724, 12.52475030481078, 43.01141274326082, 22.180979923795434, 10.256690250190701, 70.22725359475977, 32.46084034009793, 28.745212277786013, 35.17333090730866, 69.41454758119923, 5.1357360139843, 31.089843787785743, 19.574995050401185, 38.37293580161775, 6.435740232766394, 6.06430982589931, 51.59054161491085, 7.243087625942372, 33.936558888510554, 26.867566109182764, 5.061631123901033, 5.518641951432891, 9.657611760634966, 25.047076122607393, 52.808510527148684, 5.283411955438629, 5.723816476725536, 16.273921442442585, 67.63791728100998, 7.615370173199477, 61.25198603742828, 35.45890684024052, 66.6227718036773, 93.94551437789433, 7.4790546116128205, 12.589648001212511, 11.55623088574914, 52.738027414564485, 76.38564717469649, 8.71172269105192, 64.51841776819927, 25.965631018856755, 7.357476534821214, 33.90663299761455, 20.244991853253147, 30.362876093292364, 15.395211336183138, 6.549740072475988, 7.853293605284788, 18.19645084199629, 18.130910885076275, 25.07530504549687, 28.420058288417685, 63.441129317211434, 111.1531626808926, 14.276818375444003, 50.56223444187421, 62.18531254398023, 7.705561128177141, 12.656919334030798, 20.740721371417962, 10.882993003451979, 7.178537466812547, 52.847449610416604, 7.72962565840381, 36.82204474050214, 7.912397708654779, 32.10521336894581, 59.81663592887057, 6.603606752154705, 6.427421392709108, 70.02155402678123, 42.507016514305896, 20.761536604211294, 72.57625108781764, 8.06705272416981, 11.95033195927538, 14.150457563620943, 34.66462646786131, 40.52682775377339, 8.498386438589286, 27.938858273907268, 100.87990251240772, 89.48890846522752, 47.39684080214304, 6.920868583897621, 65.86436174208814, 52.30024441328968, 11.374602576396724, 48.83475129201777, 6.665957856861385, 5.65384484567649, 6.703802947965428, 61.43936824206474, 45.614860362814326, 21.40996782395447, 10.585530828035377, 18.427489856887718, 59.04033268083854, 20.51046257867436, 7.191296874461342, 50.41710426429699, 83.07385870771792, 5.317701525103505, 63.80085705579732, 14.707334476235943, 97.83135969986509, 58.217591068219605, 13.145336136614809, 8.032887094055573, 43.792682442706564, 5.864828696555532, 12.347679424088259, 68.6914741222175, 9.515258569257092, 94.04522748826635, 32.94461245097645, 23.92176073108977, 59.695633470489746, 5.263517385551815, 57.585871141887814, 9.617357506538646, 62.78883488835691, 18.654107489050247, 7.877962394341198, 68.94607777639236, 16.869695202991174, 52.49905505464184, 55.35290526031802, 45.86405925977255, 77.89989422530701, 40.84997727098695, 24.6981021664737, 31.280361978301563, 26.970469420738134, 87.95210023887476, 51.86992550791965, 13.169035882908831, 53.104688484227964, 44.35746209942593, 16.40222103693784, 22.704028780920822, 13.293196999921118, 123.74752653245093, 59.185336501802766, 28.205456363458218, 30.168493978511083, 7.891431330893354, 33.84218914186323, 52.5278585391396, 24.714380151477837, 41.660740422552756, 32.065450378003035, 87.30883486091632, 36.1736255720186, 17.09542745340961, 5.817872545251986, 59.3591262956147, 11.274404140194598, 12.326409024030164, 64.82642069358138, 15.48480780481066, 9.772725598134, 74.54124834225613, 40.18493874706662, 108.51493699723, 50.443795553338646, 77.18074232099997, 63.03856379039605, 13.561729921115738, 9.516876752399549, 95.8897931492441, 8.683446229529876, 16.590649650678174, 69.58021165027311, 15.497412037288242, 79.36327470184865, 52.24280355872108, 74.27818676754593, 54.92636142337181, 7.8674329871284225, 52.50448390903372, 18.09919288867331, 13.772026751027479, 6.0348322054057775, 24.248437535271556, 10.104181582826246, 42.53646127980822, 21.681551632018373, 32.880642041075774, 11.901077924447177, 28.17104413811989, 24.614202248594278, 25.70613880969144, 30.162019545879588, 71.6722857371923, 5.616930714854059, 21.757296457477867, 64.03020488952414, 5.047836786655115, 52.93036476902399, 25.503795557814485, 38.211581953320426, 73.61202430712672, 5.3704507765546685, 22.83607692957833, 9.704082330704518, 36.57057971461708, 32.23465698666361, 57.487284741565546, 31.7091877992053, 7.965463654960794, 15.605231017515191, 14.92373973631959, 34.29110926218447, 32.85561922720555, 44.67089567960781, 111.22362497783355, 29.370916023431302, 5.211506491483689, 18.743932727090957, 13.98412342450866, 16.620626406774004, 90.21573432015532, 27.671328257742434, 6.310396975694611, 30.26605501511897, 27.265702285546553, 37.57688320812937, 53.418156778864514, 87.37210849044374, 11.819187792712823, 21.311783786967958, 8.256888377149403, 9.080158100019831, 7.782120509747074, 22.819464751703297, 19.466911490621378, 23.58510588264377, 21.233042050705993, 37.45812401700893, 7.355624552387534, 78.14365923601233, 52.288864298846754, 107.26903837045086, 80.43433051246068, 65.44547272307727, 46.436192203226746, 39.70343282028142, 19.554593390334443, 30.290163711421474, 79.34862166226938, 26.140320871549374, 12.457078020312245, 12.368317070620842, 55.21251305061802, 14.901682664793544, 62.181809143322994, 7.638512585115278, 6.127015252969463, 34.640752562582726, 9.472687785069978, 44.53473190380114, 14.290791677414676, 32.607980240051724, 12.38203039986865, 21.33128049251872, 34.21446493400388, 70.54969857325347, 31.818615901071396, 7.841215225530964, 98.92130892665188, 22.064126796079037, 62.89169791797126, 31.442340016643236, 153.5118363206161, 7.1334056597667415, 12.279415627842432, 111.25199854483277, 72.08377411166254, 7.539250480118216, 19.823313900739887, 97.30259566524327, 14.263219653240878, 92.78142348192888, 6.645372727990981, 71.55062509562362, 15.32050418447766, 11.480597551552002, 57.14412741286757, 13.525693850026906, 60.33411971244231, 69.32544535745609, 63.707674139377474, 7.051427731116894, 90.54469779454644, 65.59850855208147, 11.366483989708813, 16.920490345180497, 43.57615677628459, 5.1897143620714585, 33.0948427351118, 11.535646142784646, 11.944876157466263, 18.49240364407264, 128.7242602817698, 16.82354159032517, 83.35898241073735, 26.832028447671277, 9.466624280022788, 14.204849063034214, 13.496704675289442, 22.382495268085513, 104.52238551325075, 45.90248026959749, 14.349926772139527, 67.78227332918647, 27.345590545830262, 21.723769671427597, 97.6835377519297, 20.41558438229293, 22.527869381909518, 79.83392701225576, 67.47793362863365, 71.29643895111761, 9.91321585762583, 98.02866650873781, 86.36989264768044, 101.28976337013404, 6.337194544478068, 98.45260414584887, 24.720648845497, 42.19616083827977, 6.741459048414994, 111.51016628855123, 12.82752299576171, 23.865123297787463, 12.58383534565905, 40.76035944343641, 6.101360433163247, 17.551444925602116, 9.511661496997194, 8.04140615822064, 59.24447772805544, 72.85326821062876, 9.801769742960388, 25.937583732716146, 73.95322831442557, 20.393985686038366, 81.39117636494998, 94.6384132271649, 39.34302690882663, 62.974314032342136, 43.36126062009204, 13.698753786636539, 43.506344995758, 32.94685223166392, 5.668343734634237, 21.525189244864848, 90.59166407889288, 54.82584762521676, 23.063179128733125, 26.4119285700829, 79.55858876899543, 30.653824309573377, 13.514228107186849, 16.14200741518092, 122.32020727881724, 5.372753370186003, 42.1634212752904, 48.86131856435543, 114.3296160415849, 29.19673038978553, 28.867370910200382, 5.34557525854932, 73.12065881920333, 38.35127157014418, 133.6565688223092, 27.44723027888745, 22.800903792198554, 121.48989168566916, 55.31824123605584, 33.655480844343884, 30.444898316671484, 8.949644641399052, 10.046572464960175, 26.22276685850583, 11.070677821081174, 54.67244884311319, 51.34203624505628, 5.891304561086093, 17.388845203236983, 12.11984561960312, 14.752929394495096, 13.15028053199324, 13.494206308148414, 61.975010393172525, 99.08678326821112, 74.18943991437543, 8.288477992084154, 41.81901655216198, 86.29834486105798, 33.95594659328173, 79.72737028012546, 8.9002780607686, 35.955750981213555, 72.26225234155568, 8.269414549604312, 5.720457640636714, 19.291677380147892, 45.68926026221199, 18.344882005743447, 37.353102693806456, 15.181843583927376, 5.934326563752107, 74.70755823339245, 11.502988748517765, 53.56804835216407, 12.936027618665518, 16.78805816385157, 141.23845723796063, 23.288204098414255, 129.96977888513044, 46.59241221058052, 22.318682085427852, 17.53267974425883, 28.527570134512203, 59.95318574147341, 71.25941086327447, 5.948980615170184, 54.044523303744434, 15.28298767187006, 24.014886679397456, 25.95535393915927, 6.918997122730683, 33.92117034423361, 119.61266969628491, 44.73074597085137, 7.022631161431265, 166.10102369178347, 40.99972537175333, 22.829320975961142, 22.752784796471904, 18.209861818876394, 11.884814610293308, 6.637925252622005, 6.5966607598474925, 67.70927547111583, 60.42842803640809, 8.948921176625777, 62.58628238582406, 20.67148349489733, 99.34194861322675, 81.51530366558241, 9.15665687092304, 6.317470431826451, 56.20427750472802, 10.447172401033974, 16.060201205956833, 5.1001950465023755, 62.23413807606575, 9.455049117815603, 36.39684526267542, 20.84232145604812, 44.27737933744696, 8.459780999322813, 25.389649488501416, 43.14624425292751, 63.53034060852276, 35.34584098966039, 17.564483016444775, 12.887140321962708, 53.089092908601, 20.083507209921326, 5.073220731618856, 29.7382092152005, 12.304519182622142, 5.504647447698355, 6.052636556632582, 141.45233145467003, 61.829890557306726, 8.594246690587118, 33.553245971237885, 86.50747933640628, 79.11082260622153, 41.9109709623784, 27.166318317907162, 45.70019102554595, 21.86257721677055, 13.193998896365708, 11.384755852984549, 31.622657244868194, 38.20573527795251, 22.400484639005978, 8.590174915702127, 23.969151889705817, 11.037343230527682, 107.10019995711939, 5.043616848578433, 73.94402381114699, 39.43896146277615, 21.589192122454346, 33.77825393501083, 112.45778834465679, 22.662861551083438, 15.29825124555849, 12.575612179477758, 9.998508468469064, 32.40909305335167, 76.87737551800187, 123.41390677527968, 13.737871898186905, 48.98965293019991, 118.66413017907206, 76.54068718983399, 49.57187367065666, 77.25426566485368, 7.41317723949575, 11.225378969195345, 11.253608361996266, 11.612389328837823, 18.088245372264673, 24.644108897496192, 20.478889931151535, 31.041841680595773, 13.347538493094003, 29.02106976805949, 5.95551908062264, 7.670334478215983, 8.598817547817893, 22.16489984222542, 46.975321197374164, 8.079956520985025, 29.481152267072122, 16.37530111078095, 6.794495883794745, 121.44822454129095, 20.33009024548348, 82.79105965687995, 8.707547902700375, 17.38195585371307, 54.08139135121672, 5.147849645000545, 52.01966473334235, 6.5594847956038445, 13.64992332038602, 17.687798059646767, 53.851520638206544, 7.108133251305092, 83.85251573852256, 5.059488861901378, 5.655231776875888, 7.461665384774368, 95.07537092127322, 20.848056411765334, 6.604911759225409, 49.03547026347738, 49.518974289762845, 59.34022717818322, 11.0430967193901, 11.130883005511386, 121.2890579461122, 9.579197236192002, 8.76366952600228, 20.774165437630568, 28.813411510610138, 8.465208601656824, 53.48954172759702, 15.79512232871968, 8.472425063639639, 118.76731644230566, 96.00617628582201, 158.64753974122226, 47.64174349624606, 55.48781829034792, 28.15123703439016, 22.93117682930192, 79.75205656313082, 27.61689779401523, 47.27646925070742, 178.70845225242908, 79.98374621662965, 74.67419772302547, 13.025213460420447, 11.469909875637079, 5.356312817715608, 103.40022679244805, 72.65607580848722, 44.89592310390481, 9.591338000163198, 11.679745277858467, 10.108794034093124, 58.387424517763165, 89.99643283028863, 13.996646632863893, 35.34345217311287, 51.556015123123146, 6.35093064955101, 60.092900963840385, 84.05110799163948, 62.81732972692356, 91.45579305173791, 8.27366597566939, 72.62163221636001, 24.815918196621507, 10.473955480830613, 58.815279775913, 14.860312435347664, 80.35095010396005, 11.40574489348113, 126.35381651916576, 52.142173172366775, 12.439405869693449, 25.89524557755523, 36.19540539520811, 30.017652569336867, 11.616843203302592, 80.87280182175479, 21.476199293405383, 54.41962573280591, 101.73408416953598, 99.00924139985077, 13.110769479621162, 106.52376494895775, 6.9314191217649554, 7.614699943459823, 10.655537361947452, 58.680412914269105, 6.806660087065966, 37.43728486214312, 19.260473819384124, 55.77217797568308, 24.87211711074835, 13.969806085593845, 67.06219916280419, 6.147794960108027, 7.920851905423757, 16.315994729304908, 64.18192603662301, 114.76686340220164, 45.50434015010576, 17.114294597115332, 45.93894317080539, 40.40169919413179, 14.495923984628272, 55.55798852500557, 27.70886130750657, 56.96855119946109, 30.447284348715606, 115.66191949559514, 11.218484115182026, 7.33043887005256, 14.409033842315, 53.290790225658405, 65.06275334398774, 64.79032930158992, 11.495543568180361, 57.3838158358798, 7.848170608775552, 32.771933803258435, 17.404503355530707, 8.249885479783714, 21.38147925322759, 19.375274380472806, 9.369935222566385, 86.61133134493116, 47.30415572419379, 14.016497920552391, 11.71994412995313, 85.78914766315674, 22.180904918103714, 9.971088533794997, 62.33175034625812, 68.16044822570922, 117.65065684098046, 110.37525279990362, 42.78315997401588, 19.267319316027034, 57.90012859309537, 55.43716551098704, 13.452789113342902, 26.841910842248836, 121.97899679335178, 110.71878784900176, 28.874258718091937, 17.842727485378816, 6.559653948281616, 18.815302559261376, 15.829498047909855, 87.69554883880456, 21.69006553365711, 21.95822993228881, 23.37623768343268, 10.891242576661272, 22.438156067892255, 24.68021909269207, 24.195841558347848, 57.203598990339415, 63.26085044192596, 5.041391424445625, 6.020123615177517, 7.9071729261410795, 87.65604274589144, 37.732593029471246, 15.300696426330205, 45.29692357563018, 69.9345901124978, 16.819287636363942, 48.14722913969722, 6.625504446145098, 7.2620118555241735, 7.004042856439609, 9.848383989064098, 27.849387621381986, 61.066235168616046, 7.3745851938632985, 57.66668329753958, 44.73266860002541, 29.82970277163129, 9.327763884375713, 35.396589820071874, 18.825929704601588, 24.956886234424463, 107.82312669823489, 28.365805819591305, 19.06399172596677, 28.517739704365034, 45.94906942313707, 28.13737908713309, 24.260864876471494, 15.876362476130534, 30.817193041328487, 36.74569433524329, 14.83468769465706, 14.546111909164182, 39.6892588301482, 82.45022275679653, 5.89664460230585, 149.31280655224322, 17.00273686015414, 17.57239560564102, 8.229550659710867, 76.76686209971982, 92.86482032844435, 5.4602016304885055, 51.089335308702715, 11.709457085893987, 40.3505922441176, 11.70620468093384, 24.337629176922658, 22.310099404519157, 27.063355082534663, 21.486010417990904, 11.380156827902285, 29.146466310490162, 31.509015368412047, 5.732764906561742, 15.035326141751531, 15.18518356924295, 17.718010431019437, 20.65736443369698, 62.51242499881931, 7.56473475690207, 84.44465327288539, 10.142640028949293, 20.710904189465545, 85.0007776317205, 11.597366255066772, 73.82317537639469, 12.690235181859087, 44.939721566724664, 21.537596891149434, 41.44122944227876, 5.062917151288326, 101.45910744783754, 101.25322844934097, 94.40428683319762, 6.969680449299, 34.732763873118756, 92.68675771895553, 12.653309727047501, 12.332554935426598, 22.905757327016836, 27.95284825928777, 61.02020026830182, 9.337662536261668, 20.11657287267739, 34.45632403832729, 36.29059464370737, 11.318985908887543, 21.69408690858801, 39.82360485925328, 112.26021346743248, 42.36153779214855, 52.84383375114502, 9.485622939766227, 11.167515740302775, 9.82406749701691, 13.962018244374102, 41.3173164825274, 9.306633986784949, 13.377340174513458, 17.699693052276807, 24.871946366557225, 20.877551960754957, 20.995349216484666, 56.814849228037595, 6.763511418920223, 54.29540853549054, 89.43758074238912, 9.346340736804342, 33.734024489594, 44.51624563396204, 32.21194241121398, 46.97008961982215, 24.554973656915106, 10.31886314237255, 29.49422414420411, 51.740971432439224, 9.813156234766698, 13.88091298031414, 10.721114548226646, 8.073105515879762, 22.133647015652677, 14.240288570870137, 79.25486407137693, 24.722170181650604, 29.958233051556448, 100.25975303702424, 8.244059075974894, 16.257959835555155, 34.81835732044658, 64.8296156599969, 24.39202583300049, 37.44287911533103, 57.4945161704616, 16.959967383035877, 82.05823520950732, 41.41556782892178, 5.445155260869538, 40.07900469630564, 5.151668357405953, 13.11740401811988, 11.439522837683755, 42.230409767734336, 14.469756525001358, 7.148064475427277, 110.0496754789296, 22.358297622496444, 6.1305130391077265, 6.900479266559944, 7.513135457635503, 5.540617122586508, 5.061345649299333, 70.22003920589036, 31.26082340797716, 21.094459119584187, 22.87505128923868, 13.832932427319431, 45.62341382966082, 61.97488129205526, 70.52305632857407, 8.392558482211774, 30.06820786155939, 17.539407465383633, 118.9921146758804, 66.88068805558719, 24.304478378430087, 27.412090424910378, 52.03524878818538, 26.912071627292356, 33.23276645750112, 27.460019662071137, 8.315582025904082, 20.952115217678326, 45.08428757555104, 73.29401724344778, 99.02251650615783, 109.70019825455702, 22.574833725176596, 10.597838897601726, 20.085571415361265, 21.78345455665685, 152.44080409457794, 33.03955547198602, 15.57685217704556, 25.95190985090429, 95.96395649118388, 64.29795978643988, 34.457489741837804, 17.16568303999295, 8.320779944210075, 12.9956787085953, 24.043687562973773, 18.6539864819202, 14.40142274202791, 157.43588564523097, 12.673759950998852, 57.6218313591802, 7.275067250515574, 31.62644587074211, 38.942819866361866, 92.12812907430478, 10.528554260831621, 22.353732006189393, 31.898771271038513, 68.86514408056462, 66.74000048461724, 145.10762503938327, 79.97159167765764, 54.73189309887145, 63.33139786690917, 20.625088178571744, 17.031018906078128, 20.418448536885148, 8.96125763477553, 17.904813366111227, 8.283860411346746, 16.996653001300988, 89.52291730099188, 22.240356490969894, 11.349744387959714, 12.838343177012218, 55.67996731189126, 7.551820459526734, 7.852245699147842, 8.52151232690958, 7.383540949193666, 43.78992019992537, 197.76683232523484, 16.384705006461846, 35.93958917208747, 16.299788951430763, 18.75910997502371, 44.60674685794169, 33.94964652236989, 13.399385502625575, 30.16255719067184, 38.447635942246166, 30.054948276638683, 8.34314475644957, 9.989663062251285, 27.346738880088957, 24.29104656317776, 11.436388265037305, 13.779724602979924, 13.27853364188098, 19.18304089694357, 67.29388788604558, 178.84096946613406, 29.05365214536008, 9.831902418781684, 16.35077251378013, 8.080599728559335, 8.595142414239776, 6.185223156178603, 73.2978822549983, 31.88665142799291, 5.94472845691556, 9.911066219635924, 62.4119286661743, 27.921553279269173, 18.62748149045267, 18.223896306604377, 17.21932727453654, 29.178738349497817, 11.023704089463148, 30.776161973805312, 5.239875048475285, 18.91757609305275, 51.9498822776999, 27.025050541061802, 53.74080133000506, 22.069111587075582, 86.16088080862507, 58.26992444901275, 5.230714524970638, 19.64805142678955, 20.47230884592461, 19.67394607600378, 9.84268404850513, 55.68560480379167, 91.69727680709028, 49.162554044514785, 54.32331762612992, 62.68684484921836, 41.87582078683021, 30.050239153099067, 6.216551920234282, 17.066227764200686, 45.343542723664115, 24.339575220568868, 65.49290932137808, 40.72361548463587, 39.44522556874302, 69.79967359753516, 6.670262290483537, 65.86810865528095, 25.6155043000451, 33.62579375334152, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2994152.10179424, 3008900.741293584, 3188415.625, 3207236.5175601677, 3267211.860766203, 3463865.625, 3585060.9375, 3588218.75, 3620409.135199091, 3624689.0625, 3624717.4307898027, 3695246.875, 3696633.658516367, 3766039.0625, 3766060.6019075094, 3768646.643086974, 3793340.625, 3799431.693360206, 3861096.875, 3866906.160250766, 3866919.908972695, 3915726.2613672405, 4100387.8621413545, 4101413.8576331045, 4178021.42431089, 4178115.3745084726, 4324651.827239647, 6972595.62305612, 9009156.25, 9114925.03342043, 9130889.0625, 9150171.414702749, 9157664.0625, 9259825.090866905, 9260362.143084688, 9268432.019629566, 9286150.257884234, 9330124.271245925, 9347537.462429345, 9352822.600836828, 9364473.4375, 9379459.331036195, 9382408.640231, 9411816.745185519, 9412493.115067005, 9413030.900788175, 9420596.9891505, 9420659.76333925, 9423522.51721086, 9425201.988376983, 9426155.33080762, 9427288.859572409, 9427514.097401636, 9428590.625, 9429845.3125, 9430559.188949546, 9439664.0625, 9440048.4375, 9440139.336817171, 9440828.923535367, 9441128.349171748, 9441373.275087453, 9441748.65030218, 9443068.75, 9444097.211428404, 9446188.973329237, 9448175.780882832, 9449215.45208447, 9458941.200317254, 9459450.705081206, 9460068.358490286, 9460668.61740548, 9462190.413949681, 9462741.866014013, 9463209.328307243, 9476746.435448596, 9493027.031928703, 9530120.088229625, 9531054.129057337, 9531471.875, 9532712.880150458, 9537096.844693488, 9543863.910018517, 9549393.660772376, 9562309.375, 9566280.427727615, 9575654.6875, 9593472.674420524, 9619654.839915257, 9635081.25, 9635085.428422036, 9636121.010197945, 9644855.943405185, 9660485.68997706, 9661012.5, 9664433.866625791, 9673112.123038456, 9676906.93832919, 9703572.982078299, 9704712.625152178, 9706234.634202536, 9706878.125, 9706950.067163624, 9707027.400734216, 9709490.625, 9709630.368774604, 9710090.995649647, 9710125.0, 9710321.307664149, 9712147.924844258, 9715726.5625, 9715945.976857958, 9716763.161644805, 9716792.1875, 9718420.522217928, 9718606.25, 9719221.291300815, 9720395.025771555, 9722384.375, 9722922.518420987, 9722940.625, 9724583.13237277, 9726313.85001391, 9744377.283973336, 9746360.075652339, 9748215.368077345, 9764709.344894907, 9777604.6875, 9790396.875, 9791233.684679285, 9791747.641218765, 9792731.036252975, 9795538.83321476, 9797203.125, 9817525.97162363, 9823945.3125, 9825084.375, 9827124.441652093, 9838459.375, 9840137.5, 9840149.0806123, 9844876.175886957, 9846291.675461905, 9850380.263361666, 9857393.75, 9860295.296157049, 9861422.655564122, 9861452.294718552, 9861823.538476015, 9863540.625, 9863755.992725428, 9865909.255632086, 9881387.325336609, 9883106.25, 9896402.09485256, 9896911.407207357, 9897807.864966244, 9898811.158889908, 9913336.298407774, 9916867.839339597, 9917932.8125, 9920106.385594236, 9920862.979560986, 9920971.048378998, 9921553.125, 9921771.349076668, 9922024.658834355, 9923439.834137207, 9926001.5625, 9927135.521356339, 9940039.273997653, 9940112.5, 9941578.806968696, 9942139.436943758, 9943700.0, 9943715.76358327, 9953362.5, 9954809.621902429, 9955246.875, 9956382.453302179, 9956389.738307582, 9958098.4375, 9958588.13837788, 9960316.842643386, 9960341.659209354, 9963438.31352322, 9967416.416479327, 9970495.047393138, 9970726.08118611, 9975782.8125, 9978298.881695492, 9979312.481872205, 9987518.528582923, 9988772.7091203, 9996019.867523955, 10002526.153437097, 10003526.614559706, 10003549.526082773, 10011986.394377982, 10012022.245119264, 10012472.0517321, 10014608.347373266, 10023730.032812886, 10025158.961067043, 10026407.059599176, 10027047.196290823, 10027350.410148935, 10027550.0, 10028310.9375, 10028468.75, 10029868.75, 10029964.9640396, 10030290.788878793, 10030298.43283009, 10030506.25, 10031260.577392993, 10032771.875, 10034174.807659755, 10034308.73230625, 10042858.126897186, 10043614.796822252, 10044118.505382286, 10044312.88031975, 10044647.055176519, 10045090.580360375, 10045120.646933572, 10045177.441255039, 10045202.722758338, 10045367.547669785, 10045496.875, 10045933.184673855, 10046117.589007296, 10046390.168148689, 10046948.380932622, 10047234.06212699, 10048097.34390869, 10048863.685920296, 10048889.894684132, 10048898.517298726, 10050046.348529158, 10050715.625, 10056669.571739903, 10058801.523676015, 10059861.227555467, 10060103.125, 10074193.61148999, 10074334.218732392, 10075330.238404147, 10075707.8125, 10076085.218420463, 10076568.75, 10078190.625, 10084562.366569597, 10088713.228820102, 10093302.233608687, 10094092.398579942, 10097629.677011596, 10099818.161657354, 10101507.908988046, 10103136.303591285, 10103142.1875, 10105267.349994523, 10117489.0625, 10117531.068116419, 10117971.197633537, 10118155.36487041, 10118638.86213196, 10118957.8125, 10121369.80336921, 10124671.875, 10125524.050796619, 10129647.62995259, 10132212.389511507, 10133478.125, 10133928.125, 10135054.6875, 10138370.35778068, 10142727.927454935, 10148422.72420361, 10152796.875, 10159118.56955039, 10159936.81456419, 10161984.375, 10162957.62238311, 10163527.744894465, 10163738.440498047, 10164014.0625, 10164039.15850287, 10164059.589616638, 10164126.72795977, 10164171.446313268, 10164297.145650288, 10164509.375, 10164518.75, 10165199.726746943, 10166645.075253038, 10175517.56739844, 10176831.397573667, 10177276.9000844, 10189589.694361798, 10189643.203320125, 10191360.9375, 10192265.871198354, 10193136.404149745, 10193496.010431658, 10194810.9375, 10195017.606852999, 10195831.25, 10198917.061497806, 10199929.843204565, 10202466.979801213, 10207733.936151382, 10211271.459763546, 10211823.700863523, 10212363.612186423, 10212660.773121906, 10212901.847783335, 10213017.124958774, 10213818.272816751, 10213918.15194847, 10214313.447245667, 10214830.847830294, 10214920.170748401, 10214962.5, 10214974.845121577, 10215320.92879725, 10215524.700517336, 10215694.75988083, 10215892.1875, 10216850.534636347, 10217693.75, 10218732.998117233, 10218793.551574852, 10218915.513552487, 10219271.313578714, 10219507.119788365, 10219567.264477333, 10219663.63285169, 10219843.625374211, 10220520.439064348, 10220863.049511665, 10221439.268257776, 10222726.068198713, 10222990.625, 10224687.5, 10229083.320905473, 10229590.478868162, 10231996.875, 10232536.882277273, 10232671.875, 10233192.1875, 10233464.6923292, 10233724.311452916, 10234017.1875, 10234127.755668622, 10234501.5625, 10234857.038744932, 10235075.94149907, 10235733.717335952, 10236546.219780877, 10236826.5625, 10237333.007123841, 10237470.195720125, 10237840.625, 10238590.625, 10239246.043089233, 10239342.47043639, 10239474.477431262, 10239746.185498293, 10239780.438494084, 10240225.0, 10240228.125, 10240276.259424943, 10240278.982452031, 10240518.856236883, 10240584.375, 10240662.5, 10241325.784250256, 10241436.807564648, 10241913.684315499, 10241913.921212304, 10243045.3125, 10243248.4375, 10243406.25, 10243980.761150368, 10245161.677365914, 10245506.303747486, 10246748.400705654, 10246840.429888658, 10247206.25, 10247841.61807512, 10248347.396695942, 10251186.491330942, 10258885.88712811, 10259249.691976458, 10259262.060272591, 10260712.5, 10260943.75, 10261278.21099638, 10261712.50359246, 10261735.9375, 10262703.125, 10263067.1875, 10263084.985332884, 10263304.1294639, 10264740.46726533, 10264934.375, 10264939.029903317, 10265700.213128006, 10265783.62183331, 10266012.5, 10266160.050980616, 10266265.625, 10266323.499157205, 10266368.691493424, 10266778.153906373, 10267682.770320863, 10267755.83803924, 10267911.851134755, 10268051.975119105, 10268164.478479864, 10268986.791049125, 10269754.46950462, 10269881.25, 10270475.759180382, 10270580.894001992, 10271695.761425063, 10272540.625, 10274518.75, 10274626.67179694, 10278303.125, 10282312.586796045, 10282488.782901382, 10284624.854990987, 10287244.481954318, 10290729.6875, 10291479.6875, 10293807.8125, 10294265.23524073, 10294408.585753605, 10298505.512845969, 10302004.311771166, 10303219.930140022, 10304611.442040494, 10307241.060791358, 10307375.89914577, 10310383.477585869, 10310975.0, 10311477.725999454, 10311855.760147136, 10312334.20323923, 10312451.169333719, 10313562.361772506, 10313667.1875, 10314734.160843667, 10314842.57530501, 10314951.5625, 10321660.453628168, 10326519.015495831, 10326631.33814561, 10328815.625, 10329115.767697947, 10332051.15780682, 10332111.675031396, 10333062.5, 10333090.938772699, 10335473.255816218, 10336181.25, 10337645.3125, 10338349.584327852, 10339420.694221167, 10340571.206517283, 10344062.5, 10346702.47104615, 10355501.798912488, 10355868.75, 10357045.954194184, 10361102.52489289, 10361179.339437671, 10362088.617349759, 10362543.624664826, 10363566.164766368, 10365951.104284607, 10370014.0625, 10374015.01142959, 10374243.137680663, 10374948.364888553, 10375097.922881033, 10375349.536257498, 10377022.88856711, 10379787.658454558, 10382790.625, 10388357.8125, 10389607.398891898, 10393066.158132793, 10395149.716908328, 10395773.378908591, 10398087.438007656, 10399428.247647824, 10401139.0625, 10404773.4375, 10405116.697079105, 10405843.91250368, 10406792.954215819, 10409854.297278251, 10410495.403049441, 10412024.201039001, 10426050.69600054, 10426798.4375, 10427907.8125, 10429771.604382606, 10430963.70628239, 10431709.092783708, 10432535.670546666, 10435060.9375, 10435861.752037436, 10438535.9375, 10440455.692050282, 10440745.37410167, 10441270.391581843, 10441687.789428905, 10443478.761671094, 10444059.141861785, 10444094.704442453, 10445590.723568747, 10445737.007828783, 10446448.4375, 10447223.620688913, 10447884.556779252, 10448233.359697927, 10448318.784684254, 10451945.3125, 10452627.71271175, 10452654.6875, 10453109.341722552, 10453387.65326734, 10454690.625, 10455086.874935985, 10455097.477002798, 10455946.031895768, 10456383.333002077, 10459088.021807821, 10459094.544343894, 10459715.625, 10461369.196776519, 10461477.739144348, 10462514.634815132, 10464103.125, 10464684.3240911, 10468273.367972894, 10472240.100937769, 10479460.096251274, 10479480.84084223, 10481455.767712262, 10483571.997341478, 10483630.400068166, 10489213.419989876, 10489476.5625, 10490660.381035369, 10492292.132686196, 10496151.564531086, 10497003.196405897, 10499231.529203646, 10499249.242466891, 10499922.862278093, 10502296.875, 10502547.198179847, 10502582.8125, 10505028.332271917, 10505280.02314922, 10506445.3125, 10506577.793270249, 10506883.463659853, 10507375.0, 10508654.6875, 10511414.043342538, 10511713.04827717, 10512958.900554989, 10514324.909409178, 10515289.0625, 10515300.640459638, 10515390.625, 10515495.219126636, 10515763.4488545, 10515867.39592855, 10515897.289052904, 10516230.121449253, 10516648.215430647, 10516671.875, 10517644.042206673, 10517744.07662694, 10517933.60806719, 10517968.75, 10521325.811464362, 10521327.852857685, 10521504.6875, 10521747.782969322, 10522088.135193042, 10524579.6875, 10525744.380209586, 10525792.118072664, 10527798.11466034, 10528239.038004387, 10530286.432188801, 10530546.654051613, 10530618.28719982, 10530982.8125, 10532576.541032657, 10533364.0625, 10534447.045884112, 10534464.0625, 10534619.602235941, 10536696.56699258, 10536936.904227411, 10537468.75, 10537929.041796397, 10538392.479409855, 10539709.375, 10541641.68580409, 10541893.343427466, 10541993.473752087, 10542245.3125, 10542339.350005679, 10543245.3125, 10543971.099145835, 10544454.719080655, 10544572.899177102, 10544629.6875, 10545109.587378236, 10546667.1875, 10547363.30520803, 10547474.137636987, 10547774.782994641, 10547824.719347209, 10547831.620054567, 10547861.49262826, 10548052.362844493, 10548092.506737348, 10548261.330051053, 10548370.3125, 10548447.361270646, 10548448.910622118, 10548464.0625, 10548625.826140877, 10548645.190468144, 10549374.81491079, 10549392.144891024, 10549435.9375, 10549452.744806273, 10549502.954836631, 10549568.807310456, 10550027.30202936, 10550288.915413698, 10550707.8125, 10550900.0, 10553337.5, 10554908.035739291, 10560074.48639902, 10569311.56747129, 10573120.884306712, 10573892.71190468, 10576370.24246466, 10576786.98873725, 10577526.394598868, 10578093.795221208, 10578320.886715468, 10578723.4375, 10579759.109121678, 10580384.723503795, 10580985.9375, 10581016.033779692, 10581085.045640633, 10581532.127480343, 10581741.1312645, 10581751.958076995, 10582272.006970853, 10583049.961838039, 10584300.844908105, 10587573.747128904, 10589100.622727392, 10592257.997000465, 10592261.302598597, 10594942.21117082, 10595092.1875, 10595264.157391679, 10596797.472666476, 10598573.885286372, 10599524.181917584, 10599610.557763379, 10599716.451240981, 10599718.269520734, 10601247.982896326, 10601684.04510476, 10601685.780760072, 10601721.464791333, 10602698.46642007, 10602966.921564288, 10603003.25074059, 10603150.0, 10603715.615948308, 10604313.382443463, 10606644.518809244, 10609596.614790855, 10609601.5625, 10611228.216149753, 10611401.462476714, 10611431.25, 10611561.356047722, 10612149.96755707, 10612250.82958037, 10612523.946524547, 10612555.783699637, 10612605.241563845, 10612882.777436333, 10614645.3125, 10614672.757731505, 10620390.595328173, 10620796.875, 10622195.3125, 10623434.370692844, 10623618.75, 10625189.808412297, 10625465.413901553, 10625649.888907064, 10626018.741906421, 10628536.716330439, 10630311.755629461, 10633385.9375, 10633957.792621119, 10635835.67641323, 10635879.91290038, 10636119.766813302, 10636128.577998376, 10636626.5341889, 10636728.017245347, 10636928.125, 10637073.4375, 10637419.808023667, 10637534.025418693, 10637602.556162778, 10637608.365545971, 10637776.453082154, 10637785.9375, 10637877.498299222, 10638179.650989128, 10638329.6875, 10638433.155319577, 10638496.875, 10638611.278553413, 10638762.244597144, 10638770.767570779, 10638772.532055834, 10638780.688083353, 10638953.280721156, 10639118.311961329, 10639129.6875, 10639270.713528708, 10639467.316478621, 10639562.562494824, 10640195.889804905, 10640996.286931459, 10641196.441323146, 10641840.51727545, 10642004.6875, 10642650.825365096, 10642674.427178105, 10643176.046584753, 10643370.593538124, 10646231.25, 10646908.625178477, 10648537.5, 10649505.043908918, 10649546.875, 10651041.855989922, 10651260.9375, 10652324.06921634, 10652551.1906639, 10652730.639360324, 10652915.625, 10652996.238211, 10653152.35949623, 10654650.654678093, 10654651.624468917, 10655550.994622527, 10655726.5625, 10655795.31989339, 10655879.037472563, 10655923.4375, 10657329.6875, 10658042.30652215, 10658218.269914668, 10658317.1875, 10658330.724752346, 10658521.65284559, 10658975.0, 10658976.73942596, 10659406.275320102, 10659444.280342765, 10660637.216868991, 10661971.875, 10662296.845560659, 10662299.518622674, 10662942.761782361, 10663098.52959151, 10663302.560997935, 10663327.573611945, 10663573.4375, 10663600.000024296, 10663633.401935184, 10663767.1875, 10663857.830113282, 10664132.69891537, 10664376.526719494, 10664809.375, 10664831.039458742, 10664862.26045604, 10665036.912563553, 10665337.88078596, 10665527.246769045, 10666044.269630212, 10666896.565819621, 10667877.84830963, 10668616.760760386, 10672080.811900718, 10672382.615500718, 10672382.8125, 10672654.459925683, 10673239.0625, 10673600.97545003, 10673679.606222542, 10673921.678796485, 10674315.281514298, 10674410.9375, 10675161.12147405, 10675532.8125, 10677509.375, 10678947.406483412, 10680022.0735401, 10680331.25, 10680640.232183052, 10680667.1875, 10680724.402163973, 10680857.234508825, 10680989.253232932, 10681081.25, 10681094.147197412, 10681134.475281386, 10681433.818601698, 10681741.77006811, 10681764.46071782, 10681938.149440201, 10681949.743814861, 10681959.529315406, 10682016.767951531, 10682019.315193418, 10682029.6875, 10682266.646587502, 10682267.53032876, 10682269.987699766, 10682303.125, 10682310.9375, 10682460.736402085, 10682748.632675465, 10682902.915863702, 10683029.29761582, 10683104.6875, 10683187.5, 10683259.117147898, 10683360.878654473, 10683410.9375, 10683512.412832558, 10683849.299202107, 10683922.322663577, 10683950.054448511, 10684084.505945735, 10684279.6875, 10684807.8125, 10684871.875, 10684874.24750001, 10685190.705942465, 10685341.819820119, 10685383.690035813, 10685533.238078045, 10685561.770980336, 10685656.999564817, 10685717.344767857, 10686356.104773514, 10686429.819156326, 10686484.373610262, 10686512.5, 10686816.107371971, 10686843.814122442, 10686864.999771487, 10687048.160092767, 10687099.499407386, 10687173.28819846, 10687223.309110263, 10687560.180698605, 10688148.4375, 10688406.80383191, 10688464.0625, 10688762.5, 10688859.966460343, 10689229.267090982, 10689265.207153214, 10689620.3125, 10690517.1875, 10690578.125, 10690766.052834664, 10691151.959834555, 10691254.447101213, 10691275.0, 10691512.305982864, 10691583.270473594, 10691802.659261813, 10691885.464711199, 10692190.228394128, 10693039.05735874, 10693391.076664068, 10693585.9375, 10694008.946782438, 10694211.075055474, 10694244.624211004, 10694304.145135067, 10694529.543065697, 10694756.889710164, 10695492.60682635, 10695764.973775985, 10696234.375, 10696565.907930288, 10696628.45828438, 10696975.0, 10697392.465892388, 10697438.236477453, 10697513.566448765, 10697757.8125, 10697762.026561609, 10698070.278987264, 10698563.230701884, 10699381.25, 10699645.417959627, 10699735.062846558, 10699856.052457424, 10699876.303653212, 10699903.313898923, 10700115.282692589, 10700169.795059713, 10700199.232396066, 10700292.728683308, 10700296.012318365, 10700317.1875, 10700339.600508764, 10700448.76386735, 10700768.339065801, 10700789.603723941, 10700796.19739989, 10700798.871178553, 10700831.25, 10700846.935920393, 10700897.489256972, 10700935.061437637, 10701028.093776196, 10701046.030133625, 10701141.241200833, 10701255.179449141, 10701304.6875, 10701501.494927485, 10701642.1875, 10702091.998097528, 10702169.886311624, 10702223.4375, 10702235.418635398, 10702309.1421758, 10702318.305866769, 10702431.25, 10702451.349873412, 10702452.601073794, 10702527.955007575, 10702575.290832913, 10702603.983508907, 10702630.236022273, 10702717.1875, 10702846.875, 10702954.6875, 10703325.0, 10703421.8482829, 10703665.625, 10703837.977204148, 10703888.65083645, 10703894.214402555, 10703896.20858281, 10703914.188580547, 10703985.089001408, 10704054.6875, 10704222.73594962, 10704236.718810067, 10704293.26428308, 10704323.4375, 10704332.645692296, 10704442.867256371, ...], [44.152242301635724, 12.52475030481078, 43.01141274326082, 22.180979923795434, 10.256690250190701, 70.22725359475977, 32.46084034009793, 28.745212277786013, 35.17333090730866, 69.41454758119923, 5.1357360139843, 31.089843787785743, 19.574995050401185, 38.37293580161775, 6.435740232766394, 6.06430982589931, 51.59054161491085, 7.243087625942372, 33.936558888510554, 26.867566109182764, 5.061631123901033, 5.518641951432891, 9.657611760634966, 25.047076122607393, 52.808510527148684, 5.283411955438629, 5.723816476725536, 16.273921442442585, 67.63791728100998, 7.615370173199477, 61.25198603742828, 35.45890684024052, 66.6227718036773, 93.94551437789433, 7.4790546116128205, 12.589648001212511, 11.55623088574914, 52.738027414564485, 76.38564717469649, 8.71172269105192, 64.51841776819927, 25.965631018856755, 7.357476534821214, 33.90663299761455, 20.244991853253147, 30.362876093292364, 15.395211336183138, 6.549740072475988, 7.853293605284788, 18.19645084199629, 18.130910885076275, 25.07530504549687, 28.420058288417685, 63.441129317211434, 111.1531626808926, 14.276818375444003, 50.56223444187421, 62.18531254398023, 7.705561128177141, 12.656919334030798, 20.740721371417962, 10.882993003451979, 7.178537466812547, 52.847449610416604, 7.72962565840381, 36.82204474050214, 7.912397708654779, 32.10521336894581, 59.81663592887057, 6.603606752154705, 6.427421392709108, 70.02155402678123, 42.507016514305896, 20.761536604211294, 72.57625108781764, 8.06705272416981, 11.95033195927538, 14.150457563620943, 34.66462646786131, 40.52682775377339, 8.498386438589286, 27.938858273907268, 100.87990251240772, 89.48890846522752, 47.39684080214304, 6.920868583897621, 65.86436174208814, 52.30024441328968, 11.374602576396724, 48.83475129201777, 6.665957856861385, 5.65384484567649, 6.703802947965428, 61.43936824206474, 45.614860362814326, 21.40996782395447, 10.585530828035377, 18.427489856887718, 59.04033268083854, 20.51046257867436, 7.191296874461342, 50.41710426429699, 83.07385870771792, 5.317701525103505, 63.80085705579732, 14.707334476235943, 97.83135969986509, 58.217591068219605, 13.145336136614809, 8.032887094055573, 43.792682442706564, 5.864828696555532, 12.347679424088259, 68.6914741222175, 9.515258569257092, 94.04522748826635, 32.94461245097645, 23.92176073108977, 59.695633470489746, 5.263517385551815, 57.585871141887814, 9.617357506538646, 62.78883488835691, 18.654107489050247, 7.877962394341198, 68.94607777639236, 16.869695202991174, 52.49905505464184, 55.35290526031802, 45.86405925977255, 77.89989422530701, 40.84997727098695, 24.6981021664737, 31.280361978301563, 26.970469420738134, 87.95210023887476, 51.86992550791965, 13.169035882908831, 53.104688484227964, 44.35746209942593, 16.40222103693784, 22.704028780920822, 13.293196999921118, 123.74752653245093, 59.185336501802766, 28.205456363458218, 30.168493978511083, 7.891431330893354, 33.84218914186323, 52.5278585391396, 24.714380151477837, 41.660740422552756, 32.065450378003035, 87.30883486091632, 36.1736255720186, 17.09542745340961, 5.817872545251986, 59.3591262956147, 11.274404140194598, 12.326409024030164, 64.82642069358138, 15.48480780481066, 9.772725598134, 74.54124834225613, 40.18493874706662, 108.51493699723, 50.443795553338646, 77.18074232099997, 63.03856379039605, 13.561729921115738, 9.516876752399549, 95.8897931492441, 8.683446229529876, 16.590649650678174, 69.58021165027311, 15.497412037288242, 79.36327470184865, 52.24280355872108, 74.27818676754593, 54.92636142337181, 7.8674329871284225, 52.50448390903372, 18.09919288867331, 13.772026751027479, 6.0348322054057775, 24.248437535271556, 10.104181582826246, 42.53646127980822, 21.681551632018373, 32.880642041075774, 11.901077924447177, 28.17104413811989, 24.614202248594278, 25.70613880969144, 30.162019545879588, 71.6722857371923, 5.616930714854059, 21.757296457477867, 64.03020488952414, 5.047836786655115, 52.93036476902399, 25.503795557814485, 38.211581953320426, 73.61202430712672, 5.3704507765546685, 22.83607692957833, 9.704082330704518, 36.57057971461708, 32.23465698666361, 57.487284741565546, 31.7091877992053, 7.965463654960794, 15.605231017515191, 14.92373973631959, 34.29110926218447, 32.85561922720555, 44.67089567960781, 111.22362497783355, 29.370916023431302, 5.211506491483689, 18.743932727090957, 13.98412342450866, 16.620626406774004, 90.21573432015532, 27.671328257742434, 6.310396975694611, 30.26605501511897, 27.265702285546553, 37.57688320812937, 53.418156778864514, 87.37210849044374, 11.819187792712823, 21.311783786967958, 8.256888377149403, 9.080158100019831, 7.782120509747074, 22.819464751703297, 19.466911490621378, 23.58510588264377, 21.233042050705993, 37.45812401700893, 7.355624552387534, 78.14365923601233, 52.288864298846754, 107.26903837045086, 80.43433051246068, 65.44547272307727, 46.436192203226746, 39.70343282028142, 19.554593390334443, 30.290163711421474, 79.34862166226938, 26.140320871549374, 12.457078020312245, 12.368317070620842, 55.21251305061802, 14.901682664793544, 62.181809143322994, 7.638512585115278, 6.127015252969463, 34.640752562582726, 9.472687785069978, 44.53473190380114, 14.290791677414676, 32.607980240051724, 12.38203039986865, 21.33128049251872, 34.21446493400388, 70.54969857325347, 31.818615901071396, 7.841215225530964, 98.92130892665188, 22.064126796079037, 62.89169791797126, 31.442340016643236, 153.5118363206161, 7.1334056597667415, 12.279415627842432, 111.25199854483277, 72.08377411166254, 7.539250480118216, 19.823313900739887, 97.30259566524327, 14.263219653240878, 92.78142348192888, 6.645372727990981, 71.55062509562362, 15.32050418447766, 11.480597551552002, 57.14412741286757, 13.525693850026906, 60.33411971244231, 69.32544535745609, 63.707674139377474, 7.051427731116894, 90.54469779454644, 65.59850855208147, 11.366483989708813, 16.920490345180497, 43.57615677628459, 5.1897143620714585, 33.0948427351118, 11.535646142784646, 11.944876157466263, 18.49240364407264, 128.7242602817698, 16.82354159032517, 83.35898241073735, 26.832028447671277, 9.466624280022788, 14.204849063034214, 13.496704675289442, 22.382495268085513, 104.52238551325075, 45.90248026959749, 14.349926772139527, 67.78227332918647, 27.345590545830262, 21.723769671427597, 97.6835377519297, 20.41558438229293, 22.527869381909518, 79.83392701225576, 67.47793362863365, 71.29643895111761, 9.91321585762583, 98.02866650873781, 86.36989264768044, 101.28976337013404, 6.337194544478068, 98.45260414584887, 24.720648845497, 42.19616083827977, 6.741459048414994, 111.51016628855123, 12.82752299576171, 23.865123297787463, 12.58383534565905, 40.76035944343641, 6.101360433163247, 17.551444925602116, 9.511661496997194, 8.04140615822064, 59.24447772805544, 72.85326821062876, 9.801769742960388, 25.937583732716146, 73.95322831442557, 20.393985686038366, 81.39117636494998, 94.6384132271649, 39.34302690882663, 62.974314032342136, 43.36126062009204, 13.698753786636539, 43.506344995758, 32.94685223166392, 5.668343734634237, 21.525189244864848, 90.59166407889288, 54.82584762521676, 23.063179128733125, 26.4119285700829, 79.55858876899543, 30.653824309573377, 13.514228107186849, 16.14200741518092, 122.32020727881724, 5.372753370186003, 42.1634212752904, 48.86131856435543, 114.3296160415849, 29.19673038978553, 28.867370910200382, 5.34557525854932, 73.12065881920333, 38.35127157014418, 133.6565688223092, 27.44723027888745, 22.800903792198554, 121.48989168566916, 55.31824123605584, 33.655480844343884, 30.444898316671484, 8.949644641399052, 10.046572464960175, 26.22276685850583, 11.070677821081174, 54.67244884311319, 51.34203624505628, 5.891304561086093, 17.388845203236983, 12.11984561960312, 14.752929394495096, 13.15028053199324, 13.494206308148414, 61.975010393172525, 99.08678326821112, 74.18943991437543, 8.288477992084154, 41.81901655216198, 86.29834486105798, 33.95594659328173, 79.72737028012546, 8.9002780607686, 35.955750981213555, 72.26225234155568, 8.269414549604312, 5.720457640636714, 19.291677380147892, 45.68926026221199, 18.344882005743447, 37.353102693806456, 15.181843583927376, 5.934326563752107, 74.70755823339245, 11.502988748517765, 53.56804835216407, 12.936027618665518, 16.78805816385157, 141.23845723796063, 23.288204098414255, 129.96977888513044, 46.59241221058052, 22.318682085427852, 17.53267974425883, 28.527570134512203, 59.95318574147341, 71.25941086327447, 5.948980615170184, 54.044523303744434, 15.28298767187006, 24.014886679397456, 25.95535393915927, 6.918997122730683, 33.92117034423361, 119.61266969628491, 44.73074597085137, 7.022631161431265, 166.10102369178347, 40.99972537175333, 22.829320975961142, 22.752784796471904, 18.209861818876394, 11.884814610293308, 6.637925252622005, 6.5966607598474925, 67.70927547111583, 60.42842803640809, 8.948921176625777, 62.58628238582406, 20.67148349489733, 99.34194861322675, 81.51530366558241, 9.15665687092304, 6.317470431826451, 56.20427750472802, 10.447172401033974, 16.060201205956833, 5.1001950465023755, 62.23413807606575, 9.455049117815603, 36.39684526267542, 20.84232145604812, 44.27737933744696, 8.459780999322813, 25.389649488501416, 43.14624425292751, 63.53034060852276, 35.34584098966039, 17.564483016444775, 12.887140321962708, 53.089092908601, 20.083507209921326, 5.073220731618856, 29.7382092152005, 12.304519182622142, 5.504647447698355, 6.052636556632582, 141.45233145467003, 61.829890557306726, 8.594246690587118, 33.553245971237885, 86.50747933640628, 79.11082260622153, 41.9109709623784, 27.166318317907162, 45.70019102554595, 21.86257721677055, 13.193998896365708, 11.384755852984549, 31.622657244868194, 38.20573527795251, 22.400484639005978, 8.590174915702127, 23.969151889705817, 11.037343230527682, 107.10019995711939, 5.043616848578433, 73.94402381114699, 39.43896146277615, 21.589192122454346, 33.77825393501083, 112.45778834465679, 22.662861551083438, 15.29825124555849, 12.575612179477758, 9.998508468469064, 32.40909305335167, 76.87737551800187, 123.41390677527968, 13.737871898186905, 48.98965293019991, 118.66413017907206, 76.54068718983399, 49.57187367065666, 77.25426566485368, 7.41317723949575, 11.225378969195345, 11.253608361996266, 11.612389328837823, 18.088245372264673, 24.644108897496192, 20.478889931151535, 31.041841680595773, 13.347538493094003, 29.02106976805949, 5.95551908062264, 7.670334478215983, 8.598817547817893, 22.16489984222542, 46.975321197374164, 8.079956520985025, 29.481152267072122, 16.37530111078095, 6.794495883794745, 121.44822454129095, 20.33009024548348, 82.79105965687995, 8.707547902700375, 17.38195585371307, 54.08139135121672, 5.147849645000545, 52.01966473334235, 6.5594847956038445, 13.64992332038602, 17.687798059646767, 53.851520638206544, 7.108133251305092, 83.85251573852256, 5.059488861901378, 5.655231776875888, 7.461665384774368, 95.07537092127322, 20.848056411765334, 6.604911759225409, 49.03547026347738, 49.518974289762845, 59.34022717818322, 11.0430967193901, 11.130883005511386, 121.2890579461122, 9.579197236192002, 8.76366952600228, 20.774165437630568, 28.813411510610138, 8.465208601656824, 53.48954172759702, 15.79512232871968, 8.472425063639639, 118.76731644230566, 96.00617628582201, 158.64753974122226, 47.64174349624606, 55.48781829034792, 28.15123703439016, 22.93117682930192, 79.75205656313082, 27.61689779401523, 47.27646925070742, 178.70845225242908, 79.98374621662965, 74.67419772302547, 13.025213460420447, 11.469909875637079, 5.356312817715608, 103.40022679244805, 72.65607580848722, 44.89592310390481, 9.591338000163198, 11.679745277858467, 10.108794034093124, 58.387424517763165, 89.99643283028863, 13.996646632863893, 35.34345217311287, 51.556015123123146, 6.35093064955101, 60.092900963840385, 84.05110799163948, 62.81732972692356, 91.45579305173791, 8.27366597566939, 72.62163221636001, 24.815918196621507, 10.473955480830613, 58.815279775913, 14.860312435347664, 80.35095010396005, 11.40574489348113, 126.35381651916576, 52.142173172366775, 12.439405869693449, 25.89524557755523, 36.19540539520811, 30.017652569336867, 11.616843203302592, 80.87280182175479, 21.476199293405383, 54.41962573280591, 101.73408416953598, 99.00924139985077, 13.110769479621162, 106.52376494895775, 6.9314191217649554, 7.614699943459823, 10.655537361947452, 58.680412914269105, 6.806660087065966, 37.43728486214312, 19.260473819384124, 55.77217797568308, 24.87211711074835, 13.969806085593845, 67.06219916280419, 6.147794960108027, 7.920851905423757, 16.315994729304908, 64.18192603662301, 114.76686340220164, 45.50434015010576, 17.114294597115332, 45.93894317080539, 40.40169919413179, 14.495923984628272, 55.55798852500557, 27.70886130750657, 56.96855119946109, 30.447284348715606, 115.66191949559514, 11.218484115182026, 7.33043887005256, 14.409033842315, 53.290790225658405, 65.06275334398774, 64.79032930158992, 11.495543568180361, 57.3838158358798, 7.848170608775552, 32.771933803258435, 17.404503355530707, 8.249885479783714, 21.38147925322759, 19.375274380472806, 9.369935222566385, 86.61133134493116, 47.30415572419379, 14.016497920552391, 11.71994412995313, 85.78914766315674, 22.180904918103714, 9.971088533794997, 62.33175034625812, 68.16044822570922, 117.65065684098046, 110.37525279990362, 42.78315997401588, 19.267319316027034, 57.90012859309537, 55.43716551098704, 13.452789113342902, 26.841910842248836, 121.97899679335178, 110.71878784900176, 28.874258718091937, 17.842727485378816, 6.559653948281616, 18.815302559261376, 15.829498047909855, 87.69554883880456, 21.69006553365711, 21.95822993228881, 23.37623768343268, 10.891242576661272, 22.438156067892255, 24.68021909269207, 24.195841558347848, 57.203598990339415, 63.26085044192596, 5.041391424445625, 6.020123615177517, 7.9071729261410795, 87.65604274589144, 37.732593029471246, 15.300696426330205, 45.29692357563018, 69.9345901124978, 16.819287636363942, 48.14722913969722, 6.625504446145098, 7.2620118555241735, 7.004042856439609, 9.848383989064098, 27.849387621381986, 61.066235168616046, 7.3745851938632985, 57.66668329753958, 44.73266860002541, 29.82970277163129, 9.327763884375713, 35.396589820071874, 18.825929704601588, 24.956886234424463, 107.82312669823489, 28.365805819591305, 19.06399172596677, 28.517739704365034, 45.94906942313707, 28.13737908713309, 24.260864876471494, 15.876362476130534, 30.817193041328487, 36.74569433524329, 14.83468769465706, 14.546111909164182, 39.6892588301482, 82.45022275679653, 5.89664460230585, 149.31280655224322, 17.00273686015414, 17.57239560564102, 8.229550659710867, 76.76686209971982, 92.86482032844435, 5.4602016304885055, 51.089335308702715, 11.709457085893987, 40.3505922441176, 11.70620468093384, 24.337629176922658, 22.310099404519157, 27.063355082534663, 21.486010417990904, 11.380156827902285, 29.146466310490162, 31.509015368412047, 5.732764906561742, 15.035326141751531, 15.18518356924295, 17.718010431019437, 20.65736443369698, 62.51242499881931, 7.56473475690207, 84.44465327288539, 10.142640028949293, 20.710904189465545, 85.0007776317205, 11.597366255066772, 73.82317537639469, 12.690235181859087, 44.939721566724664, 21.537596891149434, 41.44122944227876, 5.062917151288326, 101.45910744783754, 101.25322844934097, 94.40428683319762, 6.969680449299, 34.732763873118756, 92.68675771895553, 12.653309727047501, 12.332554935426598, 22.905757327016836, 27.95284825928777, 61.02020026830182, 9.337662536261668, 20.11657287267739, 34.45632403832729, 36.29059464370737, 11.318985908887543, 21.69408690858801, 39.82360485925328, 112.26021346743248, 42.36153779214855, 52.84383375114502, 9.485622939766227, 11.167515740302775, 9.82406749701691, 13.962018244374102, 41.3173164825274, 9.306633986784949, 13.377340174513458, 17.699693052276807, 24.871946366557225, 20.877551960754957, 20.995349216484666, 56.814849228037595, 6.763511418920223, 54.29540853549054, 89.43758074238912, 9.346340736804342, 33.734024489594, 44.51624563396204, 32.21194241121398, 46.97008961982215, 24.554973656915106, 10.31886314237255, 29.49422414420411, 51.740971432439224, 9.813156234766698, 13.88091298031414, 10.721114548226646, 8.073105515879762, 22.133647015652677, 14.240288570870137, 79.25486407137693, 24.722170181650604, 29.958233051556448, 100.25975303702424, 8.244059075974894, 16.257959835555155, 34.81835732044658, 64.8296156599969, 24.39202583300049, 37.44287911533103, 57.4945161704616, 16.959967383035877, 82.05823520950732, 41.41556782892178, 5.445155260869538, 40.07900469630564, 5.151668357405953, 13.11740401811988, 11.439522837683755, 42.230409767734336, 14.469756525001358, 7.148064475427277, 110.0496754789296, 22.358297622496444, 6.1305130391077265, 6.900479266559944, 7.513135457635503, 5.540617122586508, 5.061345649299333, 70.22003920589036, 31.26082340797716, 21.094459119584187, 22.87505128923868, 13.832932427319431, 45.62341382966082, 61.97488129205526, 70.52305632857407, 8.392558482211774, 30.06820786155939, 17.539407465383633, 118.9921146758804, 66.88068805558719, 24.304478378430087, 27.412090424910378, 52.03524878818538, 26.912071627292356, 33.23276645750112, 27.460019662071137, 8.315582025904082, 20.952115217678326, 45.08428757555104, 73.29401724344778, 99.02251650615783, 109.70019825455702, 22.574833725176596, 10.597838897601726, 20.085571415361265, 21.78345455665685, 152.44080409457794, 33.03955547198602, 15.57685217704556, 25.95190985090429, 95.96395649118388, 64.29795978643988, 34.457489741837804, 17.16568303999295, 8.320779944210075, 12.9956787085953, 24.043687562973773, 18.6539864819202, 14.40142274202791, 157.43588564523097, 12.673759950998852, 57.6218313591802, 7.275067250515574, 31.62644587074211, 38.942819866361866, 92.12812907430478, 10.528554260831621, 22.353732006189393, 31.898771271038513, 68.86514408056462, 66.74000048461724, 145.10762503938327, 79.97159167765764, 54.73189309887145, 63.33139786690917, 20.625088178571744, 17.031018906078128, 20.418448536885148, 8.96125763477553, 17.904813366111227, 8.283860411346746, 16.996653001300988, 89.52291730099188, 22.240356490969894, 11.349744387959714, 12.838343177012218, 55.67996731189126, 7.551820459526734, 7.852245699147842, 8.52151232690958, 7.383540949193666, 43.78992019992537, 197.76683232523484, 16.384705006461846, 35.93958917208747, 16.299788951430763, 18.75910997502371, 44.60674685794169, 33.94964652236989, 13.399385502625575, 30.16255719067184, 38.447635942246166, 30.054948276638683, 8.34314475644957, 9.989663062251285, 27.346738880088957, 24.29104656317776, 11.436388265037305, 13.779724602979924, 13.27853364188098, 19.18304089694357, 67.29388788604558, 178.84096946613406, 29.05365214536008, 9.831902418781684, 16.35077251378013, 8.080599728559335, 8.595142414239776, 6.185223156178603, 73.2978822549983, 31.88665142799291, 5.94472845691556, 9.911066219635924, 62.4119286661743, 27.921553279269173, 18.62748149045267, 18.223896306604377, 17.21932727453654, 29.178738349497817, 11.023704089463148, 30.776161973805312, 5.239875048475285, 18.91757609305275, 51.9498822776999, 27.025050541061802, 53.74080133000506, 22.069111587075582, 86.16088080862507, 58.26992444901275, 5.230714524970638, 19.64805142678955, 20.47230884592461, 19.67394607600378, 9.84268404850513, 55.68560480379167, 91.69727680709028, 49.162554044514785, 54.32331762612992, 62.68684484921836, 41.87582078683021, 30.050239153099067, 6.216551920234282, 17.066227764200686, 45.343542723664115, 24.339575220568868, 65.49290932137808, 40.72361548463587, 39.44522556874302, 69.79967359753516, 6.670262290483537, 65.86810865528095, 25.6155043000451, 33.62579375334152, ...])
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);
([2994152.10179424, 3008900.741293584, 3188415.625, 3207236.5175601677, 3267211.860766203, 3463865.625, 3585060.9375, 3588218.75, 3620409.135199091, 3624689.0625, 3624717.4307898027, 3695246.875, 3696633.658516367, 3766039.0625, 3766060.6019075094, 3768646.643086974, 3793340.625, 3799431.693360206, 3861096.875, 3866906.160250766, 3866919.908972695, 3915726.2613672405, 4100387.8621413545, 4101413.8576331045, 4178021.42431089, 4178115.3745084726, 4324651.827239647, 6972595.62305612, 9009156.25, 9114925.03342043, 9130889.0625, 9150171.414702749, 9157664.0625, 9259825.090866905, 9260362.143084688, 9268432.019629566, 9286150.257884234, 9330124.271245925, 9347537.462429345, 9352822.600836828, 9364473.4375, 9379459.331036195, 9382408.640231, 9411816.745185519, 9412493.115067005, 9413030.900788175, 9420596.9891505, 9420659.76333925, 9423522.51721086, 9425201.988376983, 9426155.33080762, 9427288.859572409, 9427514.097401636, 9428590.625, 9429845.3125, 9430559.188949546, 9439664.0625, 9440048.4375, 9440139.336817171, 9440828.923535367, 9441128.349171748, 9441373.275087453, 9441748.65030218, 9443068.75, 9444097.211428404, 9446188.973329237, 9448175.780882832, 9449215.45208447, 9458941.200317254, 9459450.705081206, 9460068.358490286, 9460668.61740548, 9462190.413949681, 9462741.866014013, 9463209.328307243, 9476746.435448596, 9493027.031928703, 9530120.088229625, 9531054.129057337, 9531471.875, 9532712.880150458, 9537096.844693488, 9543863.910018517, 9549393.660772376, 9562309.375, 9566280.427727615, 9575654.6875, 9593472.674420524, 9619654.839915257, 9635081.25, 9635085.428422036, 9636121.010197945, 9644855.943405185, 9660485.68997706, 9661012.5, 9664433.866625791, 9673112.123038456, 9676906.93832919, 9703572.982078299, 9704712.625152178, 9706234.634202536, 9706878.125, 9706950.067163624, 9707027.400734216, 9709490.625, 9709630.368774604, 9710090.995649647, 9710125.0, 9710321.307664149, 9712147.924844258, 9715726.5625, 9715945.976857958, 9716763.161644805, 9716792.1875, 9718420.522217928, 9718606.25, 9719221.291300815, 9720395.025771555, 9722384.375, 9722922.518420987, 9722940.625, 9724583.13237277, 9726313.85001391, 9744377.283973336, 9746360.075652339, 9748215.368077345, 9764709.344894907, 9777604.6875, 9790396.875, 9791233.684679285, 9791747.641218765, 9792731.036252975, 9795538.83321476, 9797203.125, 9817525.97162363, 9823945.3125, 9825084.375, 9827124.441652093, 9838459.375, 9840137.5, 9840149.0806123, 9844876.175886957, 9846291.675461905, 9850380.263361666, 9857393.75, 9860295.296157049, 9861422.655564122, 9861452.294718552, 9861823.538476015, 9863540.625, 9863755.992725428, 9865909.255632086, 9881387.325336609, 9883106.25, 9896402.09485256, 9896911.407207357, 9897807.864966244, 9898811.158889908, 9913336.298407774, 9916867.839339597, 9917932.8125, 9920106.385594236, 9920862.979560986, 9920971.048378998, 9921553.125, 9921771.349076668, 9922024.658834355, 9923439.834137207, 9926001.5625, 9927135.521356339, 9940039.273997653, 9940112.5, 9941578.806968696, 9942139.436943758, 9943700.0, 9943715.76358327, 9953362.5, 9954809.621902429, 9955246.875, 9956382.453302179, 9956389.738307582, 9958098.4375, 9958588.13837788, 9960316.842643386, 9960341.659209354, 9963438.31352322, 9967416.416479327, 9970495.047393138, 9970726.08118611, 9975782.8125, 9978298.881695492, 9979312.481872205, 9987518.528582923, 9988772.7091203, 9996019.867523955, 10002526.153437097, 10003526.614559706, 10003549.526082773, 10011986.394377982, 10012022.245119264, 10012472.0517321, 10014608.347373266, 10023730.032812886, 10025158.961067043, 10026407.059599176, 10027047.196290823, 10027350.410148935, 10027550.0, 10028310.9375, 10028468.75, 10029868.75, 10029964.9640396, 10030290.788878793, 10030298.43283009, 10030506.25, 10031260.577392993, 10032771.875, 10034174.807659755, 10034308.73230625, 10042858.126897186, 10043614.796822252, 10044118.505382286, 10044312.88031975, 10044647.055176519, 10045090.580360375, 10045120.646933572, 10045177.441255039, 10045202.722758338, 10045367.547669785, 10045496.875, 10045933.184673855, 10046117.589007296, 10046390.168148689, 10046948.380932622, 10047234.06212699, 10048097.34390869, 10048863.685920296, 10048889.894684132, 10048898.517298726, 10050046.348529158, 10050715.625, 10056669.571739903, 10058801.523676015, 10059861.227555467, 10060103.125, 10074193.61148999, 10074334.218732392, 10075330.238404147, 10075707.8125, 10076085.218420463, 10076568.75, 10078190.625, 10084562.366569597, 10088713.228820102, 10093302.233608687, 10094092.398579942, 10097629.677011596, 10099818.161657354, 10101507.908988046, 10103136.303591285, 10103142.1875, 10105267.349994523, 10117489.0625, 10117531.068116419, 10117971.197633537, 10118155.36487041, 10118638.86213196, 10118957.8125, 10121369.80336921, 10124671.875, 10125524.050796619, 10129647.62995259, 10132212.389511507, 10133478.125, 10133928.125, 10135054.6875, 10138370.35778068, 10142727.927454935, 10148422.72420361, 10152796.875, 10159118.56955039, 10159936.81456419, 10161984.375, 10162957.62238311, 10163527.744894465, 10163738.440498047, 10164014.0625, 10164039.15850287, 10164059.589616638, 10164126.72795977, 10164171.446313268, 10164297.145650288, 10164509.375, 10164518.75, 10165199.726746943, 10166645.075253038, 10175517.56739844, 10176831.397573667, 10177276.9000844, 10189589.694361798, 10189643.203320125, 10191360.9375, 10192265.871198354, 10193136.404149745, 10193496.010431658, 10194810.9375, 10195017.606852999, 10195831.25, 10198917.061497806, 10199929.843204565, 10202466.979801213, 10207733.936151382, 10211271.459763546, 10211823.700863523, 10212363.612186423, 10212660.773121906, 10212901.847783335, 10213017.124958774, 10213818.272816751, 10213918.15194847, 10214313.447245667, 10214830.847830294, 10214920.170748401, 10214962.5, 10214974.845121577, 10215320.92879725, 10215524.700517336, 10215694.75988083, 10215892.1875, 10216850.534636347, 10217693.75, 10218732.998117233, 10218793.551574852, 10218915.513552487, 10219271.313578714, 10219507.119788365, 10219567.264477333, 10219663.63285169, 10219843.625374211, 10220520.439064348, 10220863.049511665, 10221439.268257776, 10222726.068198713, 10222990.625, 10224687.5, 10229083.320905473, 10229590.478868162, 10231996.875, 10232536.882277273, 10232671.875, 10233192.1875, 10233464.6923292, 10233724.311452916, 10234017.1875, 10234127.755668622, 10234501.5625, 10234857.038744932, 10235075.94149907, 10235733.717335952, 10236546.219780877, 10236826.5625, 10237333.007123841, 10237470.195720125, 10237840.625, 10238590.625, 10239246.043089233, 10239342.47043639, 10239474.477431262, 10239746.185498293, 10239780.438494084, 10240225.0, 10240228.125, 10240276.259424943, 10240278.982452031, 10240518.856236883, 10240584.375, 10240662.5, 10241325.784250256, 10241436.807564648, 10241913.684315499, 10241913.921212304, 10243045.3125, 10243248.4375, 10243406.25, 10243980.761150368, 10245161.677365914, 10245506.303747486, 10246748.400705654, 10246840.429888658, 10247206.25, 10247841.61807512, 10248347.396695942, 10251186.491330942, 10258885.88712811, 10259249.691976458, 10259262.060272591, 10260712.5, 10260943.75, 10261278.21099638, 10261712.50359246, 10261735.9375, 10262703.125, 10263067.1875, 10263084.985332884, 10263304.1294639, 10264740.46726533, 10264934.375, 10264939.029903317, 10265700.213128006, 10265783.62183331, 10266012.5, 10266160.050980616, 10266265.625, 10266323.499157205, 10266368.691493424, 10266778.153906373, 10267682.770320863, 10267755.83803924, 10267911.851134755, 10268051.975119105, 10268164.478479864, 10268986.791049125, 10269754.46950462, 10269881.25, 10270475.759180382, 10270580.894001992, 10271695.761425063, 10272540.625, 10274518.75, 10274626.67179694, 10278303.125, 10282312.586796045, 10282488.782901382, 10284624.854990987, 10287244.481954318, 10290729.6875, 10291479.6875, 10293807.8125, 10294265.23524073, 10294408.585753605, 10298505.512845969, 10302004.311771166, 10303219.930140022, 10304611.442040494, 10307241.060791358, 10307375.89914577, 10310383.477585869, 10310975.0, 10311477.725999454, 10311855.760147136, 10312334.20323923, 10312451.169333719, 10313562.361772506, 10313667.1875, 10314734.160843667, 10314842.57530501, 10314951.5625, 10321660.453628168, 10326519.015495831, 10326631.33814561, 10328815.625, 10329115.767697947, 10332051.15780682, 10332111.675031396, 10333062.5, 10333090.938772699, 10335473.255816218, 10336181.25, 10337645.3125, 10338349.584327852, 10339420.694221167, 10340571.206517283, 10344062.5, 10346702.47104615, 10355501.798912488, 10355868.75, 10357045.954194184, 10361102.52489289, 10361179.339437671, 10362088.617349759, 10362543.624664826, 10363566.164766368, 10365951.104284607, 10370014.0625, 10374015.01142959, 10374243.137680663, 10374948.364888553, 10375097.922881033, 10375349.536257498, 10377022.88856711, 10379787.658454558, 10382790.625, 10388357.8125, 10389607.398891898, 10393066.158132793, 10395149.716908328, 10395773.378908591, 10398087.438007656, 10399428.247647824, 10401139.0625, 10404773.4375, 10405116.697079105, 10405843.91250368, 10406792.954215819, 10409854.297278251, 10410495.403049441, 10412024.201039001, 10426050.69600054, 10426798.4375, 10427907.8125, 10429771.604382606, 10430963.70628239, 10431709.092783708, 10432535.670546666, 10435060.9375, 10435861.752037436, 10438535.9375, 10440455.692050282, 10440745.37410167, 10441270.391581843, 10441687.789428905, 10443478.761671094, 10444059.141861785, 10444094.704442453, 10445590.723568747, 10445737.007828783, 10446448.4375, 10447223.620688913, 10447884.556779252, 10448233.359697927, 10448318.784684254, 10451945.3125, 10452627.71271175, 10452654.6875, 10453109.341722552, 10453387.65326734, 10454690.625, 10455086.874935985, 10455097.477002798, 10455946.031895768, 10456383.333002077, 10459088.021807821, 10459094.544343894, 10459715.625, 10461369.196776519, 10461477.739144348, 10462514.634815132, 10464103.125, 10464684.3240911, 10468273.367972894, 10472240.100937769, 10479460.096251274, 10479480.84084223, 10481455.767712262, 10483571.997341478, 10483630.400068166, 10489213.419989876, 10489476.5625, 10490660.381035369, 10492292.132686196, 10496151.564531086, 10497003.196405897, 10499231.529203646, 10499249.242466891, 10499922.862278093, 10502296.875, 10502547.198179847, 10502582.8125, 10505028.332271917, 10505280.02314922, 10506445.3125, 10506577.793270249, 10506883.463659853, 10507375.0, 10508654.6875, 10511414.043342538, 10511713.04827717, 10512958.900554989, 10514324.909409178, 10515289.0625, 10515300.640459638, 10515390.625, 10515495.219126636, 10515763.4488545, 10515867.39592855, 10515897.289052904, 10516230.121449253, 10516648.215430647, 10516671.875, 10517644.042206673, 10517744.07662694, 10517933.60806719, 10517968.75, 10521325.811464362, 10521327.852857685, 10521504.6875, 10521747.782969322, 10522088.135193042, 10524579.6875, 10525744.380209586, 10525792.118072664, 10527798.11466034, 10528239.038004387, 10530286.432188801, 10530546.654051613, 10530618.28719982, 10530982.8125, 10532576.541032657, 10533364.0625, 10534447.045884112, 10534464.0625, 10534619.602235941, 10536696.56699258, 10536936.904227411, 10537468.75, 10537929.041796397, 10538392.479409855, 10539709.375, 10541641.68580409, 10541893.343427466, 10541993.473752087, 10542245.3125, 10542339.350005679, 10543245.3125, 10543971.099145835, 10544454.719080655, 10544572.899177102, 10544629.6875, 10545109.587378236, 10546667.1875, 10547363.30520803, 10547474.137636987, 10547774.782994641, 10547824.719347209, 10547831.620054567, 10547861.49262826, 10548052.362844493, 10548092.506737348, 10548261.330051053, 10548370.3125, 10548447.361270646, 10548448.910622118, 10548464.0625, 10548625.826140877, 10548645.190468144, 10549374.81491079, 10549392.144891024, 10549435.9375, 10549452.744806273, 10549502.954836631, 10549568.807310456, 10550027.30202936, 10550288.915413698, 10550707.8125, 10550900.0, 10553337.5, 10554908.035739291, 10560074.48639902, 10569311.56747129, 10573120.884306712, 10573892.71190468, 10576370.24246466, 10576786.98873725, 10577526.394598868, 10578093.795221208, 10578320.886715468, 10578723.4375, 10579759.109121678, 10580384.723503795, 10580985.9375, 10581016.033779692, 10581085.045640633, 10581532.127480343, 10581741.1312645, 10581751.958076995, 10582272.006970853, 10583049.961838039, 10584300.844908105, 10587573.747128904, 10589100.622727392, 10592257.997000465, 10592261.302598597, 10594942.21117082, 10595092.1875, 10595264.157391679, 10596797.472666476, 10598573.885286372, 10599524.181917584, 10599610.557763379, 10599716.451240981, 10599718.269520734, 10601247.982896326, 10601684.04510476, 10601685.780760072, 10601721.464791333, 10602698.46642007, 10602966.921564288, 10603003.25074059, 10603150.0, 10603715.615948308, 10604313.382443463, 10606644.518809244, 10609596.614790855, 10609601.5625, 10611228.216149753, 10611401.462476714, 10611431.25, 10611561.356047722, 10612149.96755707, 10612250.82958037, 10612523.946524547, 10612555.783699637, 10612605.241563845, 10612882.777436333, 10614645.3125, 10614672.757731505, 10620390.595328173, 10620796.875, 10622195.3125, 10623434.370692844, 10623618.75, 10625189.808412297, 10625465.413901553, 10625649.888907064, 10626018.741906421, 10628536.716330439, 10630311.755629461, 10633385.9375, 10633957.792621119, 10635835.67641323, 10635879.91290038, 10636119.766813302, 10636128.577998376, 10636626.5341889, 10636728.017245347, 10636928.125, 10637073.4375, 10637419.808023667, 10637534.025418693, 10637602.556162778, 10637608.365545971, 10637776.453082154, 10637785.9375, 10637877.498299222, 10638179.650989128, 10638329.6875, 10638433.155319577, 10638496.875, 10638611.278553413, 10638762.244597144, 10638770.767570779, 10638772.532055834, 10638780.688083353, 10638953.280721156, 10639118.311961329, 10639129.6875, 10639270.713528708, 10639467.316478621, 10639562.562494824, 10640195.889804905, 10640996.286931459, 10641196.441323146, 10641840.51727545, 10642004.6875, 10642650.825365096, 10642674.427178105, 10643176.046584753, 10643370.593538124, 10646231.25, 10646908.625178477, 10648537.5, 10649505.043908918, 10649546.875, 10651041.855989922, 10651260.9375, 10652324.06921634, 10652551.1906639, 10652730.639360324, 10652915.625, 10652996.238211, 10653152.35949623, 10654650.654678093, 10654651.624468917, 10655550.994622527, 10655726.5625, 10655795.31989339, 10655879.037472563, 10655923.4375, 10657329.6875, 10658042.30652215, 10658218.269914668, 10658317.1875, 10658330.724752346, 10658521.65284559, 10658975.0, 10658976.73942596, 10659406.275320102, 10659444.280342765, 10660637.216868991, 10661971.875, 10662296.845560659, 10662299.518622674, 10662942.761782361, 10663098.52959151, 10663302.560997935, 10663327.573611945, 10663573.4375, 10663600.000024296, 10663633.401935184, 10663767.1875, 10663857.830113282, 10664132.69891537, 10664376.526719494, 10664809.375, 10664831.039458742, 10664862.26045604, 10665036.912563553, 10665337.88078596, 10665527.246769045, 10666044.269630212, 10666896.565819621, 10667877.84830963, 10668616.760760386, 10672080.811900718, 10672382.615500718, 10672382.8125, 10672654.459925683, 10673239.0625, 10673600.97545003, 10673679.606222542, 10673921.678796485, 10674315.281514298, 10674410.9375, 10675161.12147405, 10675532.8125, 10677509.375, 10678947.406483412, 10680022.0735401, 10680331.25, 10680640.232183052, 10680667.1875, 10680724.402163973, 10680857.234508825, 10680989.253232932, 10681081.25, 10681094.147197412, 10681134.475281386, 10681433.818601698, 10681741.77006811, 10681764.46071782, 10681938.149440201, 10681949.743814861, 10681959.529315406, 10682016.767951531, 10682019.315193418, 10682029.6875, 10682266.646587502, 10682267.53032876, 10682269.987699766, 10682303.125, 10682310.9375, 10682460.736402085, 10682748.632675465, 10682902.915863702, 10683029.29761582, 10683104.6875, 10683187.5, 10683259.117147898, 10683360.878654473, 10683410.9375, 10683512.412832558, 10683849.299202107, 10683922.322663577, 10683950.054448511, 10684084.505945735, 10684279.6875, 10684807.8125, 10684871.875, 10684874.24750001, 10685190.705942465, 10685341.819820119, 10685383.690035813, 10685533.238078045, 10685561.770980336, 10685656.999564817, 10685717.344767857, 10686356.104773514, 10686429.819156326, 10686484.373610262, 10686512.5, 10686816.107371971, 10686843.814122442, 10686864.999771487, 10687048.160092767, 10687099.499407386, 10687173.28819846, 10687223.309110263, 10687560.180698605, 10688148.4375, 10688406.80383191, 10688464.0625, 10688762.5, 10688859.966460343, 10689229.267090982, 10689265.207153214, 10689620.3125, 10690517.1875, 10690578.125, 10690766.052834664, 10691151.959834555, 10691254.447101213, 10691275.0, 10691512.305982864, 10691583.270473594, 10691802.659261813, 10691885.464711199, 10692190.228394128, 10693039.05735874, 10693391.076664068, 10693585.9375, 10694008.946782438, 10694211.075055474, 10694244.624211004, 10694304.145135067, 10694529.543065697, 10694756.889710164, 10695492.60682635, 10695764.973775985, 10696234.375, 10696565.907930288, 10696628.45828438, 10696975.0, 10697392.465892388, 10697438.236477453, 10697513.566448765, 10697757.8125, 10697762.026561609, 10698070.278987264, 10698563.230701884, 10699381.25, 10699645.417959627, 10699735.062846558, 10699856.052457424, 10699876.303653212, 10699903.313898923, 10700115.282692589, 10700169.795059713, 10700199.232396066, 10700292.728683308, 10700296.012318365, 10700317.1875, 10700339.600508764, 10700448.76386735, 10700768.339065801, 10700789.603723941, 10700796.19739989, 10700798.871178553, 10700831.25, 10700846.935920393, 10700897.489256972, 10700935.061437637, 10701028.093776196, 10701046.030133625, 10701141.241200833, 10701255.179449141, 10701304.6875, 10701501.494927485, 10701642.1875, 10702091.998097528, 10702169.886311624, 10702223.4375, 10702235.418635398, 10702309.1421758, 10702318.305866769, 10702431.25, 10702451.349873412, 10702452.601073794, 10702527.955007575, 10702575.290832913, 10702603.983508907, 10702630.236022273, 10702717.1875, 10702846.875, 10702954.6875, 10703325.0, 10703421.8482829, 10703665.625, 10703837.977204148, 10703888.65083645, 10703894.214402555, 10703896.20858281, 10703914.188580547, 10703985.089001408, 10704054.6875, 10704222.73594962, 10704236.718810067, 10704293.26428308, 10704323.4375, 10704332.645692296, 10704442.867256371, ...], [44.152242301635724, 12.52475030481078, 43.01141274326082, 22.180979923795434, 10.256690250190701, 70.22725359475977, 32.46084034009793, 28.745212277786013, 35.17333090730866, 69.41454758119923, 5.1357360139843, 31.089843787785743, 19.574995050401185, 38.37293580161775, 6.435740232766394, 6.06430982589931, 51.59054161491085, 7.243087625942372, 33.936558888510554, 26.867566109182764, 5.061631123901033, 5.518641951432891, 9.657611760634966, 25.047076122607393, 52.808510527148684, 5.283411955438629, 5.723816476725536, 16.273921442442585, 67.63791728100998, 7.615370173199477, 61.25198603742828, 35.45890684024052, 66.6227718036773, 93.94551437789433, 7.4790546116128205, 12.589648001212511, 11.55623088574914, 52.738027414564485, 76.38564717469649, 8.71172269105192, 64.51841776819927, 25.965631018856755, 7.357476534821214, 33.90663299761455, 20.244991853253147, 30.362876093292364, 15.395211336183138, 6.549740072475988, 7.853293605284788, 18.19645084199629, 18.130910885076275, 25.07530504549687, 28.420058288417685, 63.441129317211434, 111.1531626808926, 14.276818375444003, 50.56223444187421, 62.18531254398023, 7.705561128177141, 12.656919334030798, 20.740721371417962, 10.882993003451979, 7.178537466812547, 52.847449610416604, 7.72962565840381, 36.82204474050214, 7.912397708654779, 32.10521336894581, 59.81663592887057, 6.603606752154705, 6.427421392709108, 70.02155402678123, 42.507016514305896, 20.761536604211294, 72.57625108781764, 8.06705272416981, 11.95033195927538, 14.150457563620943, 34.66462646786131, 40.52682775377339, 8.498386438589286, 27.938858273907268, 100.87990251240772, 89.48890846522752, 47.39684080214304, 6.920868583897621, 65.86436174208814, 52.30024441328968, 11.374602576396724, 48.83475129201777, 6.665957856861385, 5.65384484567649, 6.703802947965428, 61.43936824206474, 45.614860362814326, 21.40996782395447, 10.585530828035377, 18.427489856887718, 59.04033268083854, 20.51046257867436, 7.191296874461342, 50.41710426429699, 83.07385870771792, 5.317701525103505, 63.80085705579732, 14.707334476235943, 97.83135969986509, 58.217591068219605, 13.145336136614809, 8.032887094055573, 43.792682442706564, 5.864828696555532, 12.347679424088259, 68.6914741222175, 9.515258569257092, 94.04522748826635, 32.94461245097645, 23.92176073108977, 59.695633470489746, 5.263517385551815, 57.585871141887814, 9.617357506538646, 62.78883488835691, 18.654107489050247, 7.877962394341198, 68.94607777639236, 16.869695202991174, 52.49905505464184, 55.35290526031802, 45.86405925977255, 77.89989422530701, 40.84997727098695, 24.6981021664737, 31.280361978301563, 26.970469420738134, 87.95210023887476, 51.86992550791965, 13.169035882908831, 53.104688484227964, 44.35746209942593, 16.40222103693784, 22.704028780920822, 13.293196999921118, 123.74752653245093, 59.185336501802766, 28.205456363458218, 30.168493978511083, 7.891431330893354, 33.84218914186323, 52.5278585391396, 24.714380151477837, 41.660740422552756, 32.065450378003035, 87.30883486091632, 36.1736255720186, 17.09542745340961, 5.817872545251986, 59.3591262956147, 11.274404140194598, 12.326409024030164, 64.82642069358138, 15.48480780481066, 9.772725598134, 74.54124834225613, 40.18493874706662, 108.51493699723, 50.443795553338646, 77.18074232099997, 63.03856379039605, 13.561729921115738, 9.516876752399549, 95.8897931492441, 8.683446229529876, 16.590649650678174, 69.58021165027311, 15.497412037288242, 79.36327470184865, 52.24280355872108, 74.27818676754593, 54.92636142337181, 7.8674329871284225, 52.50448390903372, 18.09919288867331, 13.772026751027479, 6.0348322054057775, 24.248437535271556, 10.104181582826246, 42.53646127980822, 21.681551632018373, 32.880642041075774, 11.901077924447177, 28.17104413811989, 24.614202248594278, 25.70613880969144, 30.162019545879588, 71.6722857371923, 5.616930714854059, 21.757296457477867, 64.03020488952414, 5.047836786655115, 52.93036476902399, 25.503795557814485, 38.211581953320426, 73.61202430712672, 5.3704507765546685, 22.83607692957833, 9.704082330704518, 36.57057971461708, 32.23465698666361, 57.487284741565546, 31.7091877992053, 7.965463654960794, 15.605231017515191, 14.92373973631959, 34.29110926218447, 32.85561922720555, 44.67089567960781, 111.22362497783355, 29.370916023431302, 5.211506491483689, 18.743932727090957, 13.98412342450866, 16.620626406774004, 90.21573432015532, 27.671328257742434, 6.310396975694611, 30.26605501511897, 27.265702285546553, 37.57688320812937, 53.418156778864514, 87.37210849044374, 11.819187792712823, 21.311783786967958, 8.256888377149403, 9.080158100019831, 7.782120509747074, 22.819464751703297, 19.466911490621378, 23.58510588264377, 21.233042050705993, 37.45812401700893, 7.355624552387534, 78.14365923601233, 52.288864298846754, 107.26903837045086, 80.43433051246068, 65.44547272307727, 46.436192203226746, 39.70343282028142, 19.554593390334443, 30.290163711421474, 79.34862166226938, 26.140320871549374, 12.457078020312245, 12.368317070620842, 55.21251305061802, 14.901682664793544, 62.181809143322994, 7.638512585115278, 6.127015252969463, 34.640752562582726, 9.472687785069978, 44.53473190380114, 14.290791677414676, 32.607980240051724, 12.38203039986865, 21.33128049251872, 34.21446493400388, 70.54969857325347, 31.818615901071396, 7.841215225530964, 98.92130892665188, 22.064126796079037, 62.89169791797126, 31.442340016643236, 153.5118363206161, 7.1334056597667415, 12.279415627842432, 111.25199854483277, 72.08377411166254, 7.539250480118216, 19.823313900739887, 97.30259566524327, 14.263219653240878, 92.78142348192888, 6.645372727990981, 71.55062509562362, 15.32050418447766, 11.480597551552002, 57.14412741286757, 13.525693850026906, 60.33411971244231, 69.32544535745609, 63.707674139377474, 7.051427731116894, 90.54469779454644, 65.59850855208147, 11.366483989708813, 16.920490345180497, 43.57615677628459, 5.1897143620714585, 33.0948427351118, 11.535646142784646, 11.944876157466263, 18.49240364407264, 128.7242602817698, 16.82354159032517, 83.35898241073735, 26.832028447671277, 9.466624280022788, 14.204849063034214, 13.496704675289442, 22.382495268085513, 104.52238551325075, 45.90248026959749, 14.349926772139527, 67.78227332918647, 27.345590545830262, 21.723769671427597, 97.6835377519297, 20.41558438229293, 22.527869381909518, 79.83392701225576, 67.47793362863365, 71.29643895111761, 9.91321585762583, 98.02866650873781, 86.36989264768044, 101.28976337013404, 6.337194544478068, 98.45260414584887, 24.720648845497, 42.19616083827977, 6.741459048414994, 111.51016628855123, 12.82752299576171, 23.865123297787463, 12.58383534565905, 40.76035944343641, 6.101360433163247, 17.551444925602116, 9.511661496997194, 8.04140615822064, 59.24447772805544, 72.85326821062876, 9.801769742960388, 25.937583732716146, 73.95322831442557, 20.393985686038366, 81.39117636494998, 94.6384132271649, 39.34302690882663, 62.974314032342136, 43.36126062009204, 13.698753786636539, 43.506344995758, 32.94685223166392, 5.668343734634237, 21.525189244864848, 90.59166407889288, 54.82584762521676, 23.063179128733125, 26.4119285700829, 79.55858876899543, 30.653824309573377, 13.514228107186849, 16.14200741518092, 122.32020727881724, 5.372753370186003, 42.1634212752904, 48.86131856435543, 114.3296160415849, 29.19673038978553, 28.867370910200382, 5.34557525854932, 73.12065881920333, 38.35127157014418, 133.6565688223092, 27.44723027888745, 22.800903792198554, 121.48989168566916, 55.31824123605584, 33.655480844343884, 30.444898316671484, 8.949644641399052, 10.046572464960175, 26.22276685850583, 11.070677821081174, 54.67244884311319, 51.34203624505628, 5.891304561086093, 17.388845203236983, 12.11984561960312, 14.752929394495096, 13.15028053199324, 13.494206308148414, 61.975010393172525, 99.08678326821112, 74.18943991437543, 8.288477992084154, 41.81901655216198, 86.29834486105798, 33.95594659328173, 79.72737028012546, 8.9002780607686, 35.955750981213555, 72.26225234155568, 8.269414549604312, 5.720457640636714, 19.291677380147892, 45.68926026221199, 18.344882005743447, 37.353102693806456, 15.181843583927376, 5.934326563752107, 74.70755823339245, 11.502988748517765, 53.56804835216407, 12.936027618665518, 16.78805816385157, 141.23845723796063, 23.288204098414255, 129.96977888513044, 46.59241221058052, 22.318682085427852, 17.53267974425883, 28.527570134512203, 59.95318574147341, 71.25941086327447, 5.948980615170184, 54.044523303744434, 15.28298767187006, 24.014886679397456, 25.95535393915927, 6.918997122730683, 33.92117034423361, 119.61266969628491, 44.73074597085137, 7.022631161431265, 166.10102369178347, 40.99972537175333, 22.829320975961142, 22.752784796471904, 18.209861818876394, 11.884814610293308, 6.637925252622005, 6.5966607598474925, 67.70927547111583, 60.42842803640809, 8.948921176625777, 62.58628238582406, 20.67148349489733, 99.34194861322675, 81.51530366558241, 9.15665687092304, 6.317470431826451, 56.20427750472802, 10.447172401033974, 16.060201205956833, 5.1001950465023755, 62.23413807606575, 9.455049117815603, 36.39684526267542, 20.84232145604812, 44.27737933744696, 8.459780999322813, 25.389649488501416, 43.14624425292751, 63.53034060852276, 35.34584098966039, 17.564483016444775, 12.887140321962708, 53.089092908601, 20.083507209921326, 5.073220731618856, 29.7382092152005, 12.304519182622142, 5.504647447698355, 6.052636556632582, 141.45233145467003, 61.829890557306726, 8.594246690587118, 33.553245971237885, 86.50747933640628, 79.11082260622153, 41.9109709623784, 27.166318317907162, 45.70019102554595, 21.86257721677055, 13.193998896365708, 11.384755852984549, 31.622657244868194, 38.20573527795251, 22.400484639005978, 8.590174915702127, 23.969151889705817, 11.037343230527682, 107.10019995711939, 5.043616848578433, 73.94402381114699, 39.43896146277615, 21.589192122454346, 33.77825393501083, 112.45778834465679, 22.662861551083438, 15.29825124555849, 12.575612179477758, 9.998508468469064, 32.40909305335167, 76.87737551800187, 123.41390677527968, 13.737871898186905, 48.98965293019991, 118.66413017907206, 76.54068718983399, 49.57187367065666, 77.25426566485368, 7.41317723949575, 11.225378969195345, 11.253608361996266, 11.612389328837823, 18.088245372264673, 24.644108897496192, 20.478889931151535, 31.041841680595773, 13.347538493094003, 29.02106976805949, 5.95551908062264, 7.670334478215983, 8.598817547817893, 22.16489984222542, 46.975321197374164, 8.079956520985025, 29.481152267072122, 16.37530111078095, 6.794495883794745, 121.44822454129095, 20.33009024548348, 82.79105965687995, 8.707547902700375, 17.38195585371307, 54.08139135121672, 5.147849645000545, 52.01966473334235, 6.5594847956038445, 13.64992332038602, 17.687798059646767, 53.851520638206544, 7.108133251305092, 83.85251573852256, 5.059488861901378, 5.655231776875888, 7.461665384774368, 95.07537092127322, 20.848056411765334, 6.604911759225409, 49.03547026347738, 49.518974289762845, 59.34022717818322, 11.0430967193901, 11.130883005511386, 121.2890579461122, 9.579197236192002, 8.76366952600228, 20.774165437630568, 28.813411510610138, 8.465208601656824, 53.48954172759702, 15.79512232871968, 8.472425063639639, 118.76731644230566, 96.00617628582201, 158.64753974122226, 47.64174349624606, 55.48781829034792, 28.15123703439016, 22.93117682930192, 79.75205656313082, 27.61689779401523, 47.27646925070742, 178.70845225242908, 79.98374621662965, 74.67419772302547, 13.025213460420447, 11.469909875637079, 5.356312817715608, 103.40022679244805, 72.65607580848722, 44.89592310390481, 9.591338000163198, 11.679745277858467, 10.108794034093124, 58.387424517763165, 89.99643283028863, 13.996646632863893, 35.34345217311287, 51.556015123123146, 6.35093064955101, 60.092900963840385, 84.05110799163948, 62.81732972692356, 91.45579305173791, 8.27366597566939, 72.62163221636001, 24.815918196621507, 10.473955480830613, 58.815279775913, 14.860312435347664, 80.35095010396005, 11.40574489348113, 126.35381651916576, 52.142173172366775, 12.439405869693449, 25.89524557755523, 36.19540539520811, 30.017652569336867, 11.616843203302592, 80.87280182175479, 21.476199293405383, 54.41962573280591, 101.73408416953598, 99.00924139985077, 13.110769479621162, 106.52376494895775, 6.9314191217649554, 7.614699943459823, 10.655537361947452, 58.680412914269105, 6.806660087065966, 37.43728486214312, 19.260473819384124, 55.77217797568308, 24.87211711074835, 13.969806085593845, 67.06219916280419, 6.147794960108027, 7.920851905423757, 16.315994729304908, 64.18192603662301, 114.76686340220164, 45.50434015010576, 17.114294597115332, 45.93894317080539, 40.40169919413179, 14.495923984628272, 55.55798852500557, 27.70886130750657, 56.96855119946109, 30.447284348715606, 115.66191949559514, 11.218484115182026, 7.33043887005256, 14.409033842315, 53.290790225658405, 65.06275334398774, 64.79032930158992, 11.495543568180361, 57.3838158358798, 7.848170608775552, 32.771933803258435, 17.404503355530707, 8.249885479783714, 21.38147925322759, 19.375274380472806, 9.369935222566385, 86.61133134493116, 47.30415572419379, 14.016497920552391, 11.71994412995313, 85.78914766315674, 22.180904918103714, 9.971088533794997, 62.33175034625812, 68.16044822570922, 117.65065684098046, 110.37525279990362, 42.78315997401588, 19.267319316027034, 57.90012859309537, 55.43716551098704, 13.452789113342902, 26.841910842248836, 121.97899679335178, 110.71878784900176, 28.874258718091937, 17.842727485378816, 6.559653948281616, 18.815302559261376, 15.829498047909855, 87.69554883880456, 21.69006553365711, 21.95822993228881, 23.37623768343268, 10.891242576661272, 22.438156067892255, 24.68021909269207, 24.195841558347848, 57.203598990339415, 63.26085044192596, 5.041391424445625, 6.020123615177517, 7.9071729261410795, 87.65604274589144, 37.732593029471246, 15.300696426330205, 45.29692357563018, 69.9345901124978, 16.819287636363942, 48.14722913969722, 6.625504446145098, 7.2620118555241735, 7.004042856439609, 9.848383989064098, 27.849387621381986, 61.066235168616046, 7.3745851938632985, 57.66668329753958, 44.73266860002541, 29.82970277163129, 9.327763884375713, 35.396589820071874, 18.825929704601588, 24.956886234424463, 107.82312669823489, 28.365805819591305, 19.06399172596677, 28.517739704365034, 45.94906942313707, 28.13737908713309, 24.260864876471494, 15.876362476130534, 30.817193041328487, 36.74569433524329, 14.83468769465706, 14.546111909164182, 39.6892588301482, 82.45022275679653, 5.89664460230585, 149.31280655224322, 17.00273686015414, 17.57239560564102, 8.229550659710867, 76.76686209971982, 92.86482032844435, 5.4602016304885055, 51.089335308702715, 11.709457085893987, 40.3505922441176, 11.70620468093384, 24.337629176922658, 22.310099404519157, 27.063355082534663, 21.486010417990904, 11.380156827902285, 29.146466310490162, 31.509015368412047, 5.732764906561742, 15.035326141751531, 15.18518356924295, 17.718010431019437, 20.65736443369698, 62.51242499881931, 7.56473475690207, 84.44465327288539, 10.142640028949293, 20.710904189465545, 85.0007776317205, 11.597366255066772, 73.82317537639469, 12.690235181859087, 44.939721566724664, 21.537596891149434, 41.44122944227876, 5.062917151288326, 101.45910744783754, 101.25322844934097, 94.40428683319762, 6.969680449299, 34.732763873118756, 92.68675771895553, 12.653309727047501, 12.332554935426598, 22.905757327016836, 27.95284825928777, 61.02020026830182, 9.337662536261668, 20.11657287267739, 34.45632403832729, 36.29059464370737, 11.318985908887543, 21.69408690858801, 39.82360485925328, 112.26021346743248, 42.36153779214855, 52.84383375114502, 9.485622939766227, 11.167515740302775, 9.82406749701691, 13.962018244374102, 41.3173164825274, 9.306633986784949, 13.377340174513458, 17.699693052276807, 24.871946366557225, 20.877551960754957, 20.995349216484666, 56.814849228037595, 6.763511418920223, 54.29540853549054, 89.43758074238912, 9.346340736804342, 33.734024489594, 44.51624563396204, 32.21194241121398, 46.97008961982215, 24.554973656915106, 10.31886314237255, 29.49422414420411, 51.740971432439224, 9.813156234766698, 13.88091298031414, 10.721114548226646, 8.073105515879762, 22.133647015652677, 14.240288570870137, 79.25486407137693, 24.722170181650604, 29.958233051556448, 100.25975303702424, 8.244059075974894, 16.257959835555155, 34.81835732044658, 64.8296156599969, 24.39202583300049, 37.44287911533103, 57.4945161704616, 16.959967383035877, 82.05823520950732, 41.41556782892178, 5.445155260869538, 40.07900469630564, 5.151668357405953, 13.11740401811988, 11.439522837683755, 42.230409767734336, 14.469756525001358, 7.148064475427277, 110.0496754789296, 22.358297622496444, 6.1305130391077265, 6.900479266559944, 7.513135457635503, 5.540617122586508, 5.061345649299333, 70.22003920589036, 31.26082340797716, 21.094459119584187, 22.87505128923868, 13.832932427319431, 45.62341382966082, 61.97488129205526, 70.52305632857407, 8.392558482211774, 30.06820786155939, 17.539407465383633, 118.9921146758804, 66.88068805558719, 24.304478378430087, 27.412090424910378, 52.03524878818538, 26.912071627292356, 33.23276645750112, 27.460019662071137, 8.315582025904082, 20.952115217678326, 45.08428757555104, 73.29401724344778, 99.02251650615783, 109.70019825455702, 22.574833725176596, 10.597838897601726, 20.085571415361265, 21.78345455665685, 152.44080409457794, 33.03955547198602, 15.57685217704556, 25.95190985090429, 95.96395649118388, 64.29795978643988, 34.457489741837804, 17.16568303999295, 8.320779944210075, 12.9956787085953, 24.043687562973773, 18.6539864819202, 14.40142274202791, 157.43588564523097, 12.673759950998852, 57.6218313591802, 7.275067250515574, 31.62644587074211, 38.942819866361866, 92.12812907430478, 10.528554260831621, 22.353732006189393, 31.898771271038513, 68.86514408056462, 66.74000048461724, 145.10762503938327, 79.97159167765764, 54.73189309887145, 63.33139786690917, 20.625088178571744, 17.031018906078128, 20.418448536885148, 8.96125763477553, 17.904813366111227, 8.283860411346746, 16.996653001300988, 89.52291730099188, 22.240356490969894, 11.349744387959714, 12.838343177012218, 55.67996731189126, 7.551820459526734, 7.852245699147842, 8.52151232690958, 7.383540949193666, 43.78992019992537, 197.76683232523484, 16.384705006461846, 35.93958917208747, 16.299788951430763, 18.75910997502371, 44.60674685794169, 33.94964652236989, 13.399385502625575, 30.16255719067184, 38.447635942246166, 30.054948276638683, 8.34314475644957, 9.989663062251285, 27.346738880088957, 24.29104656317776, 11.436388265037305, 13.779724602979924, 13.27853364188098, 19.18304089694357, 67.29388788604558, 178.84096946613406, 29.05365214536008, 9.831902418781684, 16.35077251378013, 8.080599728559335, 8.595142414239776, 6.185223156178603, 73.2978822549983, 31.88665142799291, 5.94472845691556, 9.911066219635924, 62.4119286661743, 27.921553279269173, 18.62748149045267, 18.223896306604377, 17.21932727453654, 29.178738349497817, 11.023704089463148, 30.776161973805312, 5.239875048475285, 18.91757609305275, 51.9498822776999, 27.025050541061802, 53.74080133000506, 22.069111587075582, 86.16088080862507, 58.26992444901275, 5.230714524970638, 19.64805142678955, 20.47230884592461, 19.67394607600378, 9.84268404850513, 55.68560480379167, 91.69727680709028, 49.162554044514785, 54.32331762612992, 62.68684484921836, 41.87582078683021, 30.050239153099067, 6.216551920234282, 17.066227764200686, 45.343542723664115, 24.339575220568868, 65.49290932137808, 40.72361548463587, 39.44522556874302, 69.79967359753516, 6.670262290483537, 65.86810865528095, 25.6155043000451, 33.62579375334152, ...])
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)