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
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"
#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 = 36529 #test discharge for which the notebook will definitely work
shot_no = 43731
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
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))
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 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=[]
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))
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')
i=i+1
t3pa_cls.close
return T_first, E_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)
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.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.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)
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].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
#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'
#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'
#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)
#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 = 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);
([8394001.5625, 8394004.6875, 8511548.4375, 8542300.0, 8580204.6875, 8581270.3125, 8598946.875, 8601254.6875, 8602831.25, 8605943.75, 8607598.4375, 8668509.375, 8668718.75, 8669910.9375, 8706395.3125, 8707428.125, 8709312.5, 8711575.0, 8711865.625, 8712325.0, 8732931.25, 8743684.375, 8753943.75, 8793100.0, 8793792.1875, 8798226.5625, 8809703.125, 8819579.6875, 8827626.5625, 8848715.625, 8849268.75, 8850560.9375, 8883960.9375, 8884810.9375, 8885346.875, 8888090.625, 8888135.9375, 8888185.9375, 8889371.875, 8893071.875, 8893971.875, 8893990.625, 8894545.3125, 8894851.5625, 8894917.1875, 8895332.8125, 8895526.5625, 8896276.5625, 8896390.625, 8896529.6875, 8897107.8125, 8897918.75, 8898237.5, 8898289.0625, 8898748.4375, 8898912.5, 8899215.625, 8900126.5625, 8902728.125, 8914487.5, 8915390.625, 8916134.375, 8916360.9375, 8916390.625, 8916884.375, 8917948.4375, 8919350.0, 8920878.125, 8920882.8125, 8923534.375, 8926564.0625, 8926595.3125, 8926896.875, 8929059.375, 8929562.5, 8929807.8125, 8946471.875, 8957195.3125, 8959901.5625, 8960256.25, 8961962.5, 8962078.125, 8962860.9375, 8963015.625, 8963215.625, 8978292.1875, 8981435.9375, 8990971.875, 9007126.5625, 9012273.4375, 9012898.4375, 9016145.3125, 9016176.5625, 9016251.5625, 9016462.5, 9021314.0625, 9022184.375, 9026292.1875, 9029359.375, 9045620.3125, 9045740.625, 9048445.3125, 9055890.625, 9056256.25, 9058339.0625, 9060959.375, 9062714.0625, 9064890.625, 9064940.625, 9065607.8125, 9065928.125, 9066750.0, 9067709.375, 9067829.6875, 9071950.0, 9112848.4375, 9112868.75, 9113643.75, 9114084.375, 9114125.0, 9115834.375, 9116201.5625, 9122735.9375, 9126584.375, 9129940.625, 9132589.0625, 9143618.75, 9143753.125, 9150389.0625, 9151712.5, 9154404.6875, 9154606.25, 9163210.9375, 9163228.125, 9163229.6875, 9174328.125, 9174982.8125, 9175039.0625, 9175614.0625, 9175804.6875, 9176614.0625, 9177681.25, 9181803.125, 9182125.0, 9184026.5625, 9185140.625, 9200870.3125, 9221284.375, 9246254.6875, 9247925.0, 9250231.25, 9257062.5, 9258018.75, 9258253.125, 9258335.9375, 9258364.0625, 9258509.375, 9258562.5, 9260739.0625, 9265175.0, 9265351.5625, 9268523.4375, 9268956.25, 9295142.1875, 9297559.375, 9298467.1875, 9301248.4375, 9302076.5625, 9314679.6875, 9315893.75, 9324176.5625, 9324714.0625, 9328453.125, 9340328.125, 9340332.8125, 9358451.5625, 9362495.3125, 9364479.6875, 9364964.0625, 9365335.9375, 9368543.75, 9368560.9375, 9372073.4375, 9375279.6875, 9377718.75, 9390565.625, 9390660.9375, 9395960.9375, 9398037.5, 9398918.75, 9399059.375, 9399159.375, 9399357.8125, 9399507.8125, 9399575.0, 9399657.8125, 9399909.375, 9400148.4375, 9400306.25, 9400318.75, 9400431.25, 9400748.4375, 9402365.625, 9403387.5, 9403443.75, 9403518.75, 9403587.5, 9405278.125, 9405587.5, 9405773.4375, 9407254.6875, 9409459.375, 9409765.625, 9410310.9375, 9410334.375, 9410460.9375, 9410618.75, 9410956.25, 9410957.8125, 9411137.5, 9411284.375, 9411371.875, 9411543.75, 9411556.25, 9411648.4375, 9411681.25, 9411812.5, 9411934.375, 9411975.0, 9412170.3125, 9412214.0625, 9412285.9375, 9412426.5625, 9412573.4375, 9412735.9375, 9413237.5, 9413279.6875, 9413592.1875, 9413962.5, 9413985.9375, 9414545.3125, 9424934.375, 9427726.5625, 9428368.75, 9428860.9375, 9430125.0, 9433868.75, 9435284.375, 9440321.875, 9441434.375, 9441440.625, 9442140.625, 9444223.4375, 9444667.1875, 9445178.125, 9445503.125, 9445912.5, 9445965.625, 9446412.5, 9448243.75, 9448295.3125, 9469978.125, 9504014.0625, 9507015.625, 9508675.0, 9508687.5, 9508770.3125, 9511543.75, 9517240.625, 9517909.375, 9518250.0, 9520487.5, 9527573.4375, 9531206.25, 9531778.125, 9532057.8125, 9533806.25, 9534356.25, 9534534.375, 9534798.4375, 9536196.875, 9536590.625, 9536971.875, 9537701.5625, 9539642.1875, 9541334.375, 9542451.5625, 9550198.4375, 9551048.4375, 9551160.9375, 9563185.9375, 9575887.5, 9590271.875, 9593742.1875, 9599828.125, 9602275.0, 9602814.0625, 9603048.4375, 9663553.125, 9688184.375, 9689932.8125, 9689945.3125, 9691937.5, 9692343.75, 9692545.3125, 9693028.125, 9716210.9375, 9718014.0625, 9732893.75, 9733142.1875, 9733539.0625, 9736259.375, 9738543.75, 9739031.25, 9743832.8125, 9744906.25, 9746745.3125, 9748534.375, 9749743.75, 9750631.25, 9752000.0, 9755014.0625, 9771712.5, 9780803.125, 9781676.5625, 9787517.1875, 9792054.6875, 9792879.6875, 9793007.8125, 9794439.0625, 9814878.125, 9817603.125, 9824554.6875, 9826164.0625, 9833100.0, 9833232.8125, 9833914.0625, 9837631.25, 9837881.25, 9837953.125, 9838123.4375, 9839384.375, 9839481.25, 9840535.9375, 9840759.375, 9841456.25, 9842170.3125, 9843806.25, 9845260.9375, 9845654.6875, 9853773.4375, 9855910.9375, 9856179.6875, 9856651.5625, 9859307.8125, 9866607.8125, 9867071.875, 9887584.375, 9890221.875, 9903887.5, 9904673.4375, 9915729.6875, 9916654.6875, 9916817.1875, 9917228.125, 9918032.8125, 9918881.25, 9921857.8125, 9923009.375, 9923751.5625, 9924893.75, 9930015.625, 9930178.125, 9932176.5625, 9937420.3125, 9938085.9375, 9949723.4375, 9955298.4375, 9964320.3125, 9966325.0, 9972184.375, 9972879.6875, 9973217.1875, 9973595.3125, 9973998.4375, 9974006.25, 9974034.375, 9974196.875, 9974207.8125, 9974293.75, 9974600.0, 9974842.1875, 9974970.3125, 9975096.875, 9975228.125, 9975770.3125, 9975948.4375, 9975964.0625, 9976057.8125, 9976118.75, 9976660.9375, 9976798.4375, 9986048.4375, 9997851.5625, 10031784.375, 10031918.75, 10032656.25, 10034079.6875, 10034198.4375, 10034339.0625, 10064421.875, 10078046.875, 10079476.5625, 10079498.4375, 10080145.3125, 10081071.875, 10110181.25, 10111835.9375, 10112782.8125, 10114640.625, 10116575.0, 10121496.875, 10125721.875, 10127870.3125, 10130415.625, 10131607.8125, 10131610.9375, 10132679.6875, 10141745.3125, 10141753.125, 10142543.75, 10142589.0625, 10145217.1875, 10147223.4375, 10147367.1875, 10149754.6875, 10151165.625, 10156998.4375, 10161932.8125, 10170139.0625, 10172462.5, 10182379.6875, 10213964.0625, 10216581.25, 10216628.125, 10230017.1875, 10230018.75, 10235518.75, 10245004.6875, 10247976.5625, 10256189.0625, 10256257.8125, 10269356.25, 10270035.9375, 10270335.9375, 10299664.0625, 10299789.0625, 10348139.0625, 10348165.625, 10357190.625, 10391028.125, 10502420.3125, 10548960.9375, 10549750.0, 10553400.0, 10554960.9375, 10571842.1875, 10577317.1875, 10577667.1875, 10586565.625, 10587606.25, 10588248.4375, 10591956.25, 10593723.4375, 10608162.5, 10609089.0625, 10609239.0625, 10613759.375, 10614018.75, 10619792.1875, 10619896.875, 10621462.5, 10621595.3125, 10621904.6875, 10622100.0, 10624393.75, 10626692.1875, 10628826.5625, 10630353.125, 10634265.625, 10635876.5625, 10651793.75, 10652062.5, 10653228.125, 10653460.9375, 10655685.9375, 10657140.625, 10661134.375, 10662206.25, 10664939.0625, 10667565.625, 10673293.75, 10673764.0625, 10676943.75, 10691100.0, 10691212.5, 10692140.625, 10692201.5625, 10692453.125, 10692535.9375, 10692590.625, 10693229.6875, 10711250.0, 10711329.6875, 10720064.0625, 10722745.3125, 10724137.5, 10724851.5625, 10727264.0625, 10727317.1875, 10727375.0, 10734439.0625, 10734459.375, 10740398.4375, 10759760.9375, 10760929.6875, 10761840.625, 10762154.6875, 10763223.4375, 10763504.6875, 10764240.625, 10764700.0, 10765059.375, 10765270.3125, 10765857.8125, 10766657.8125, 10767682.8125, 10771868.75, 10773631.25, 10774845.3125, 10775451.5625, 10777139.0625, 10778328.125, 10780985.9375, 10783904.6875, 10783939.0625, 10786387.5, 10803635.9375, 10806010.9375, 10806931.25, 10807512.5, 10810614.0625, 10810917.1875, 10811973.4375, 10814026.5625, 10816623.4375, 10816682.8125, 10821667.1875, 10829853.125, 10829857.8125, 10829907.8125, 10833392.1875, 10833914.0625, 10834342.1875, 10837364.0625, 10837659.375, 10838187.5, 10850023.4375, 10851790.625, 10851803.125, 10853334.375, 10855146.875, 10879110.9375, 10880348.4375, 10886035.9375, 10902742.1875, 10907998.4375, 10922839.0625, 10929382.8125, 10929395.3125, 10932559.375, 10936593.75, 10951068.75, 10951071.875, 10954787.5, 10955071.875, 10955582.8125, 10957771.875, 10963040.625, 10964534.375, 10966187.5, 10971164.0625, 10973964.0625, 10982465.625, 10982934.375, 10988484.375, 10989734.375, 10990932.8125, 10992723.4375, 10992764.0625, 10994962.5, 10996014.0625, 10997589.0625, 11010603.125, 11014243.75, 11016962.5, 11021076.5625, 11021309.375, 11022507.8125, 11022509.375, 11023792.1875, 11023973.4375, 11024612.5, 11029673.4375, 11031023.4375, 11037959.375, 11038187.5, 11038410.9375, 11038467.1875, 11038509.375, 11038545.3125, 11040546.875, 11041160.9375, 11044423.4375, 11046123.4375, 11052692.1875, 11054085.9375, 11054546.875, 11054865.625, 11054917.1875, 11054940.625, 11055348.4375, 11055493.75, 11055526.5625, 11055801.5625, 11055910.9375, 11056243.75, 11056976.5625, 11057887.5, 11058360.9375, 11058732.8125, 11059139.0625, 11060259.375, 11060939.0625, 11062178.125, 11066789.0625, 11081567.1875, 11082220.3125, 11087092.1875, 11089746.875, 11092340.625, 11092418.75, 11092442.1875, 11095326.5625, 11096101.5625, 11096256.25, 11097237.5, 11135404.6875, 11140450.0, 11143046.875, 11144487.5, 11144953.125, 11153118.75, 11161959.375, 11172489.0625, 11173984.375, 11180160.9375, 11193890.625, 11209114.0625, 11209217.1875, 11210464.0625, 11210498.4375, 11213984.375, 11217146.875, 11217268.75, 11217615.625, 11221190.625, 11247639.0625, 11250285.9375, 11261528.125, 11274525.0, 11275057.8125, 11276657.8125, 11278070.3125, 11278198.4375, 11282654.6875, 11283823.4375, 11285176.5625, 11295154.6875, 11311654.6875, 11313356.25, 11313382.8125, 11328309.375, 11340393.75, 11342706.25, 11370220.3125, 11372962.5, 11375942.1875, 11376106.25, 11376457.8125, 11376471.875, 11376692.1875, 11377389.0625, 11377798.4375, 11381696.875, 11381867.1875, 11383739.0625, 11383754.6875, 11385040.625, 11398423.4375, 11399765.625, 11403062.5, 11403421.875, 11410451.5625, 11412253.125, 11427245.3125, 11428325.0, 11429437.5, 11431870.3125, 11432350.0, 11441075.0, 11448006.25, 11457337.5, 11464268.75, 11478260.9375, 11478550.0, 11518800.0, 11545570.3125, 11546340.625, 11546670.3125, 11547676.5625, 11564445.3125, 11575450.0, 11586529.6875, 11608381.25, 11627071.875, 11630285.9375, 11631070.3125, 11633210.9375, 11648265.625, 11648626.5625, 11669965.625, 11687228.125, 11690992.1875, 11698296.875, 11723846.875, 11727607.8125, 11729189.0625, 11731131.25, 11768221.875, 11774534.375, 11782801.5625, 11785482.8125, 11790621.875, 11801901.5625, 11801945.3125, 11806246.875, 11820065.625, 11830118.75, 11833698.4375, 11857993.75, 11871034.375, 11877803.125, 11900064.0625, 11900959.375, 11901259.375, 11945787.5, 12011739.0625, 12021354.6875, 12024528.125, 12091428.125, 12096204.6875, 12116448.4375, 12125778.125, 12128129.6875, 12201960.9375, 12221340.625, 12229428.125, 12229500.0, 12231250.0, 12246676.5625, 12247756.25, 12306062.5, 12306129.6875, 12368218.75, 12392229.6875, 12417943.75, 12486959.375, 12506739.0625, 12580162.5, 12874335.9375, 12919390.625, 12951609.375, 12958689.0625, 12980568.75, 13042078.125, 13047242.1875, 13075659.375, 13076093.75, 13082134.375, 13089600.0, 13091573.4375, 13095970.3125, 13118481.25, 13124289.0625, 13124437.5, 13162485.9375, 13164454.6875, 13199954.6875, 13202246.875, 13207728.125, 13216812.5, 13216825.0, 13220303.125, 13221162.5, 13225653.125, 13241565.625, 13246251.5625, 13247126.5625, 13248401.5625, 13270706.25, 13275139.0625, 13276554.6875, 13276896.875, 13295610.9375, 13296109.375, 13300303.125, 13319231.25, 13343667.1875, 13349289.0625, 13358156.25, 13431728.125, 13431731.25, 13454612.5, 13458656.25, 13535756.25, 13548509.375, 13563871.875, 13564576.5625, 13570546.875, 13603475.0, 13607520.3125, 13612145.3125, 13622476.5625, 13657795.3125, 13695270.3125, 13696123.4375, 13764425.0, 13773951.5625, 13781950.0, 13831821.875, 13843556.25, 13939207.8125, 13961896.875, 13961951.5625, 13992225.0, 14009065.625, 14012359.375, 14036701.5625, 14078362.5, 14090492.1875, 14119181.25, 14131295.3125, 14131373.4375, 14199678.125, 14269526.5625, 14271901.5625, 14309370.3125, 14385453.125, 14404089.0625, 14440412.5, 14482917.1875, 16376814.0625, 16450620.3125, 16479281.25, 16485167.1875, 16487264.0625, 16490240.625, 16496309.375, 16501162.5, 16504417.1875, 16512504.6875, 16512860.9375, 16514192.1875, 16519545.3125, 16522601.5625, 16524600.0, 16534581.25, 16535800.0, 16542685.9375, 16543007.8125, 16544056.25, 16544190.625, 16546353.125, 16548454.6875, 16549579.6875, 16553003.125, 16553054.6875, 16560584.375, 16561125.0, 16561571.875, 16572376.5625, 16575950.0, 16577345.3125, 16577623.4375, 16579185.9375, 16584085.9375, 16592406.25, 16593785.9375, 16594267.1875, 16595489.0625, 16597889.0625, 16598595.3125, 16599985.9375, 16600268.75, 16601259.375, 16603603.125, 16606356.25, 16606439.0625, 16607496.875, 16608760.9375, 16611040.625, 16611479.6875, 16611943.75, 16612875.0, 16613601.5625, 16613814.0625, 16614276.5625, 16614471.875, 16614645.3125, 16615387.5, 16616432.8125, 16617043.75, 16618423.4375, 16618953.125, 16619037.5, 16620010.9375, 16620618.75, 16621001.5625, 16621301.5625, 16621390.625, 16622545.3125, 16623478.125, 16623656.25, 16627654.6875, 16629901.5625, 16629948.4375, 16629989.0625, 16631237.5, 16631606.25, 16631650.0, 16632110.9375, 16632318.75, 16633273.4375, 16634376.5625, 16636225.0, 16636392.1875, 16636432.8125, 16636770.3125, 16637015.625, 16637307.8125, 16637831.25, 16638582.8125, 16639040.625, 16640132.8125, 16640775.0, 16640887.5, 16640889.0625, 16641151.5625, 16641934.375, 16642368.75, 16642443.75, 16643667.1875, 16644034.375, 16645079.6875, 16646093.75, 16646835.9375, 16648281.25, 16648781.25, 16649765.625, 16652959.375, 16654107.8125, 16654631.25, 16655003.125, 16655096.875, 16655204.6875, 16655300.0, 16655353.125, 16655392.1875, 16655815.625, 16656456.25, 16656507.8125, 16656867.1875, 16657771.875, 16657873.4375, 16658703.125, 16659017.1875, 16659034.375, 16660032.8125, 16660081.25, ...], [6.682810132957332, 50.186707722936596, 103.37294683690209, 54.81334462066924, 28.559242308890845, 23.09259659031479, 50.61992252266889, 25.15898977952719, 93.5952793689849, 84.57911875274124, 17.57038647369158, 14.357600479142768, 20.433963854679433, 83.30349614967737, 72.62095875338923, 10.808277448059341, 15.37120259178871, 122.39516571128868, 5.1991587044325325, 7.49428302793941, 66.25501515138457, 73.71261257370227, 117.52329828417618, 25.19910420038672, 7.910612198841862, 5.336912967324095, 33.16979873637665, 66.36224462364984, 20.69687833492261, 13.231495689478425, 46.39389656336577, 20.019404291949453, 106.56905215878716, 90.00095779237184, 134.13984371760858, 40.39808299868913, 20.0674894572842, 28.05392450985255, 157.833103652448, 19.102864324211783, 8.831271889961545, 77.46656577196957, 110.98539266416032, 10.892573220340322, 5.3229901837787486, 175.24007268783092, 13.431489276024038, 28.227226741840965, 101.99098137497995, 53.31954017070584, 7.988222625769535, 122.52996474222792, 8.430662398399685, 6.234616124015867, 70.26265948356921, 16.04964993697003, 71.83409935174775, 6.317292201601204, 75.63522700236638, 62.18722039193707, 7.886941612414923, 43.50340016181954, 48.98606813778761, 49.593812292038, 9.016397274515388, 5.430632229923034, 60.081985428142644, 42.71204911775584, 52.72564880936051, 139.67486276420183, 66.84084153744635, 34.240788652378164, 32.37759355024815, 102.5283333453991, 45.44281545583649, 29.5995379830287, 31.818535572591898, 79.55519859946612, 190.29704449424779, 118.92625359012169, 82.11631216007311, 5.033671475096316, 13.409463483454815, 94.39643335490733, 20.3522843663816, 43.212915559509284, 17.902365156061595, 36.91519889537228, 50.43874345062904, 83.72161167791589, 54.904900854711755, 20.203982619673038, 23.6980407195462, 5.28801999457999, 13.06339855752468, 59.68550904070481, 9.416459602634426, 12.739985454625792, 26.250284309274466, 48.9897638120081, 15.665219669428607, 21.06323057391394, 33.173736486803016, 71.21909976360652, 41.87318998992714, 146.36314544302633, 10.448589020724071, 20.72555463469658, 33.70449983689158, 8.262977629478314, 60.30951820272921, 13.576653053312182, 8.83896895371378, 10.88773520230747, 63.98188296172942, 27.602478354227596, 10.004848290169566, 87.87178108318524, 18.219069425464607, 21.46714297499537, 58.06743350472689, 25.537244176697172, 33.01948532050863, 77.34832193558523, 55.563957249155514, 5.9691160005656565, 30.609912400671643, 6.750543629292425, 35.54067658659045, 7.365449645444949, 168.3001931018148, 65.7977138237367, 24.265315089912527, 48.827572701011455, 26.945712735671126, 58.38951474354027, 18.86820233985255, 123.62499732452083, 55.17114464019127, 53.29603013555679, 63.12423354384227, 13.136970065486747, 17.816626042519466, 17.166132591268973, 107.98313355886073, 5.793088871112914, 24.324540652390628, 40.42826626978214, 10.755176931067068, 26.895198077363307, 81.35052040973872, 5.882267837332508, 16.04923891050121, 35.5451707288566, 87.26352440891401, 9.93496671205617, 20.637332706266125, 5.470547725941623, 26.469614136979203, 16.416404229237692, 10.26862909154517, 96.52457523626053, 74.10262562203035, 44.385287985118794, 48.36104890114375, 182.7749030148854, 16.29640060072051, 115.69197555141051, 8.949746455339751, 45.18197694950622, 18.80186463041666, 244.73547082182907, 16.981169669572374, 31.99179628403284, 28.701009956409656, 96.70855431952965, 37.552584985727584, 72.34174073313648, 97.79573423790391, 14.887534478899765, 57.271800158672725, 8.254977161568641, 65.50279038492002, 55.91742476238147, 5.698367661036394, 63.47878733983836, 5.126347664958837, 16.28781623224736, 10.416169430893614, 91.79346067240755, 5.221858587636369, 46.402059465016336, 70.91132593239438, 8.393645084926698, 24.106829363944613, 81.51198590039564, 76.19808560921226, 60.253832547858785, 17.313583592672604, 9.92560874429905, 18.61594993298138, 75.37807689499306, 18.064947252612566, 7.091306401239255, 21.77520563608896, 28.912371721404668, 48.81530451160957, 15.291018204822297, 6.20233854634454, 142.369920547543, 8.416445782780716, 17.559465941362063, 16.167721699687686, 11.345774326655746, 16.40572765828897, 86.7174596334024, 8.253663219880986, 24.956712146878584, 22.21870259365289, 46.65191023006704, 15.624970954751637, 37.19738253789212, 35.64980663777734, 139.91593631504787, 19.503017588550385, 12.067469461529855, 63.07888768096945, 156.81289580144113, 19.747457187966056, 29.452728298978577, 53.390565364466276, 155.5107426092718, 17.242407914017633, 10.660424992119601, 108.36918788248451, 18.627507041662575, 19.91189325937808, 82.60950738097311, 78.60960754999594, 72.78472547321441, 6.305967658148055, 5.863781929269014, 50.005364331093276, 43.34280473253328, 37.77649758062045, 74.07340340159288, 49.578591008925244, 15.342525999331013, 8.174275900787562, 153.21159704248836, 61.911219930208, 40.80801002857029, 5.324476797623879, 75.99522670850813, 42.953521805631766, 25.9136631279205, 6.656971838351515, 36.89389028517451, 12.913699233717546, 121.58170207524344, 24.87906206678081, 8.596333251486913, 56.553999050308306, 7.023092465156036, 46.381293636098185, 39.50532014421575, 8.557869226137464, 36.51598983470717, 5.302919374263911, 68.38596681215017, 52.209065335596904, 145.14354063164524, 30.293109354726106, 60.240586662340014, 9.162372478008498, 20.3111739021322, 48.49404586894006, 37.07312070623013, 37.159480711097224, 9.289572033042093, 95.31852553768265, 30.76422889909032, 7.401993094487432, 7.1220229993874336, 28.856499878360534, 56.798200545338375, 11.689121711447461, 11.005519846297005, 31.53678998379549, 5.825166780632397, 38.41290781631337, 82.68821055944505, 29.24855381571178, 11.186115282305977, 61.903481617176205, 5.504259185219403, 10.171953048706337, 115.45757543582293, 35.27799833931624, 89.81097498853063, 72.46832406996558, 22.105242924523886, 19.784154263392686, 104.6619973669067, 37.08537432343746, 37.956454842730864, 38.6646898447496, 58.384431973176284, 15.911193951789055, 60.69435737694624, 8.256398501898968, 5.2797929861581325, 17.05002621570226, 6.9901377130719, 11.840517440126037, 9.664926059944218, 69.67982318302913, 144.18544147108813, 78.16154745769407, 25.82465373734297, 22.2594858456616, 50.23045734043941, 14.228101424687816, 56.182636081542256, 10.345094808293556, 32.20707468923453, 15.11368670381474, 32.87044448254871, 5.86947061988454, 53.11702631844384, 6.8355104231872925, 60.43972692850991, 6.095684190877604, 63.746085913407434, 75.3906439785622, 8.972479901852981, 10.745483672564088, 38.28731571087646, 11.31669434685261, 27.546990404374984, 37.49602254078952, 99.67005513435267, 8.663369328880977, 16.73975436994843, 67.14924744159563, 21.70563815801441, 118.99721240854045, 20.6399413648862, 6.514281738869394, 43.469364376345276, 44.94598354319331, 44.9421653321148, 48.12250577943426, 8.86414496159094, 87.97863625376007, 6.3240694618800575, 49.500504601311576, 66.93156622000154, 19.627338529654494, 25.203547867327284, 88.57467016367907, 64.6511363322523, 37.106151951659385, 72.58475049512064, 14.399039601529438, 91.31325025084902, 70.84614571047065, 12.60571023922724, 67.43858033793002, 36.61782928927578, 134.04847477866943, 37.51596042136073, 68.08184316310233, 5.81937455478984, 14.865586756383028, 117.0835642005986, 151.81290108290438, 5.641088966667447, 13.482637221581577, 39.81293600989747, 12.398345613599663, 26.955724480879894, 14.40153314033839, 21.923545813310415, 92.64613171353984, 139.16300006520288, 55.648763319910685, 21.630670548668096, 5.939502960847521, 21.74730070763605, 22.140325730464227, 150.05236098320614, 144.90239151062826, 5.762116167567895, 13.504094710152463, 26.314760278930866, 77.50776808200266, 23.911130167739543, 47.083429823625316, 72.21300030823272, 43.540078492654445, 96.5918013126324, 73.48553818274821, 16.685187577809977, 5.5669511546172865, 13.814272947084067, 75.38029170434974, 54.68813197955491, 38.28796315516141, 12.807156144528573, 6.487187076649916, 15.56208278500592, 98.64924331939639, 10.438508613565874, 8.932598593104196, 68.93724163310043, 84.79239706760066, 38.48202638812381, 112.20859117024116, 92.83120357526045, 50.031318777435416, 6.5858335347339905, 5.4508136388500095, 66.74720422178542, 99.45021137282222, 39.61020529687089, 12.953493515154083, 18.291597824261657, 42.73788846269994, 31.348818142367076, 61.52538512615237, 5.611888949861803, 10.564022733956845, 19.528080081034762, 72.22704023641383, 77.18085976136786, 21.257098440469246, 105.70224591997761, 25.292184041182168, 8.254527264836852, 140.47737085480978, 66.93769078034845, 216.71036474145333, 108.23276062262475, 9.340838387559806, 74.44531358307856, 82.4909907164047, 6.633499569013349, 19.29525281607495, 48.79720780575686, 69.84531858636208, 6.228807263249651, 81.52263123447469, 49.19779641474322, 33.68803255512549, 7.145247175891777, 8.827572009576587, 91.33261762141052, 128.372910238519, 36.24913704467685, 16.093755115641724, 8.405185781533492, 14.440342339629495, 29.14822618974138, 21.949179131813278, 21.09195459237271, 46.47120656369686, 32.75222158378785, 22.78297719749695, 27.86462287117818, 172.05762415609607, 73.92484712557996, 80.87595103292534, 25.12316392463473, 154.3057896766912, 40.34606242737654, 15.301833948745923, 14.9027806697806, 35.9313084089023, 35.98745388075194, 16.510081193286197, 11.638084888295388, 43.362797034167656, 10.091746444999197, 19.212703903113226, 24.676905215625602, 86.07129862470289, 6.582689490221744, 76.4494571534625, 111.64401509297625, 57.89696306864929, 54.708879108155315, 11.527956722132679, 34.14265026048807, 64.57243245795244, 161.81475581594498, 5.925568280577239, 28.533677299505307, 29.339956073481584, 13.004187228280864, 41.64604244567732, 68.51385656685804, 10.37865838226159, 11.810564546204667, 61.33006689586457, 66.65874504828496, 31.08116329638111, 49.96147297875291, 20.529740374481477, 21.04307813046983, 25.202750653567012, 15.633652396388928, 33.87518939293516, 12.432802686263726, 82.30860860864723, 80.13598094225004, 70.94075174653568, 18.104652114552504, 17.291494836984633, 97.58095439748543, 54.70238459131728, 23.550295082901386, 117.72425040514801, 32.86664554253368, 71.34030916750699, 32.189971246846476, 24.196027564664696, 8.579662361410666, 34.10992648203749, 16.611107135155777, 9.50480151906636, 16.257096970836326, 75.85797631589149, 6.080640162663385, 7.323772080506524, 8.38980018627588, 69.3047518304098, 89.65837938870592, 18.852943942925382, 15.590128214044757, 6.890201424826199, 26.789466821519028, 23.488422414047776, 11.127526557349706, 41.89637412300472, 24.344195873014012, 19.21308996239407, 135.14192298109313, 6.4435166650979205, 5.507436476282665, 49.05222269466578, 202.65710911424432, 50.93558631661318, 21.25095294559731, 77.97249649224405, 10.724957808168647, 5.113299519066735, 19.415948392751975, 16.888350585884318, 11.415119080641448, 5.264544819068254, 11.076382504943616, 24.13107807351913, 95.61182301122159, 30.45079490022475, 11.979648214767561, 56.2175192552542, 6.572643203881592, 50.46005989781677, 8.934128947661918, 79.7902711980043, 70.02174608275453, 20.203588072088507, 99.5806494465559, 13.894470086661906, 55.84244180314184, 12.579072028980645, 25.100214854752515, 76.57556982991952, 57.28992319834932, 94.0379001809403, 46.878613963740165, 26.553753069004024, 26.495483941284544, 58.77756085590163, 22.62735501274259, 5.775208887698104, 12.482098083612065, 50.285323737487126, 15.51025597007748, 36.12556195352068, 100.42360332579868, 196.7166575642744, 271.3707524712404, 36.41665462065059, 27.315800255177226, 58.44173210321345, 26.252013219958, 10.11470629279823, 34.78965604470649, 119.22306597566282, 27.32528432924633, 76.64480274559148, 13.04639179330886, 11.520097539094166, 47.71455620750904, 68.12660203235521, 52.7620306892066, 77.39986767596211, 40.96740311269531, 26.22819457513517, 20.464365157326874, 121.42310603980447, 25.35751711784634, 17.22172393631718, 25.797791672188858, 59.043434758580375, 89.04228462724109, 5.30038289880568, 9.186655148552047, 7.765325285986178, 111.28197613611533, 71.22282816849469, 32.00890037556992, 27.268330191109236, 64.55067687898362, 40.80992130779908, 12.460588598941044, 24.351944110023044, 37.984288908547605, 35.36353723899256, 42.348138681939886, 81.77180682849654, 12.562197801097179, 45.95230458400236, 32.69046385731889, 11.149848547311427, 133.65615606708863, 220.31269257530525, 87.64794393388519, 5.577124588434752, 27.56825445914232, 46.35859040801369, 19.280387732409263, 5.504945298722883, 82.01348507988266, 12.638166068548658, 24.15232809890446, 35.25813846022936, 34.00321711753516, 66.72069155031912, 13.061344904137705, 68.8332446897879, 134.54037423895394, 24.126143815641825, 61.61428242596933, 12.848435496917592, 9.458390123677672, 10.401775215876537, 15.18296385866184, 36.307392987839, 75.52657037805531, 59.04776452549141, 19.701978357127086, 9.062567867052552, 20.533719125324282, 109.49608075784923, 28.360618630965472, 46.52094870438593, 74.33387425869479, 15.257014960516278, 45.39288013279052, 128.44145778667888, 109.5448014695453, 29.399214957656365, 86.88221514217402, 11.874917467359557, 95.16465121779098, 23.567633660297183, 61.03401147835187, 7.915001137739958, 21.639062692500676, 5.287600825389846, 63.42295208387288, 26.399611928109245, 6.525217633934417, 18.366306220011992, 39.60515875897267, 64.27804500791426, 206.78098323491122, 97.76720105716862, 28.258938032255962, 75.14350926537915, 68.98393016812138, 9.782823091936923, 15.181638047665583, 20.017686927957445, 54.33801567794557, 69.84792137874632, 16.646837969454946, 84.63042437766181, 38.31659967207161, 7.059498960755079, 14.84692631034505, 320.4073205307691, 33.52637275252303, 53.21785476079299, 19.44004131969818, 6.883201520559231, 69.59233748521191, 9.121886789474663, 20.25923015678573, 25.506605028600077, 20.910445003947682, 76.77772882527997, 24.967126421543917, 70.50800268466442, 37.281996024698536, 21.09850129464462, 14.083224799046084, 57.81070994937146, 10.891731299895302, 53.94655316256711, 10.294472515711657, 45.67679293009863, 28.58388850194526, 44.368210449023834, 125.508813734538, 26.465485616023628, 58.507789970819296, 32.35970639591447, 33.08300324437216, 97.2542496643349, 46.24469971176733, 74.44983993081635, 12.931835063550015, 81.21389943508258, 119.04130627518188, 105.11875953132805, 14.400364033070964, 56.15362124066834, 109.63914847204607, 26.825350928628524, 34.6916557021589, 64.50642638045593, 6.354924076626135, 106.82078089945949, 62.56257562080654, 30.224849471257258, 58.98002965158444, 54.450448839642284, 27.278390432672634, 19.270317900864757, 9.040061462951055, 102.00146226944034, 32.974682615685595, 21.360694216858377, 145.54278948798054, 62.66511822388223, 125.33956941575079, 65.53774369743746, 22.196527506699308, 11.124788868129954, 15.436844693001207, 85.17838824913636, 5.336127306281732, 18.333898243814645, 28.914297944565707, 75.68663599660056, 31.321208500610297, 15.053078116682213, 11.15926659691567, 14.065156705734308, 11.923211244847938, 147.36604636968227, 17.790165798903114, 15.61615723349038, 33.40144667768452, 44.56785828749041, 34.38446558879032, 40.72587266396132, 8.844961071977783, 86.51105603842134, 5.1159167301270685, 119.89847880069654, 44.42105723890094, 14.02180297291659, 38.08272656566429, 98.03062227107009, 30.9037644182997, 29.32887505743901, 50.63482528444109, 67.71344403350508, 90.6704920168327, 69.80489475173802, 174.87666006001504, 8.68303961778839, 40.588291329680935, 183.3846212945784, 67.48966398675927, 10.280253024878101, 42.25444197285046, 14.794978626267449, 14.792191952133484, 36.62518459469573, 54.334478478189254, 34.5665537135755, 34.9199073567743, 84.02688051047065, 15.059197314762715, 30.711400849915538, 48.87543366023361, 10.55340980154115, 28.427015487189742, 28.55057808859783, 73.27303648803901, 68.36382932520256, 98.31016703100713, 122.1110981741876, 35.344662229903406, 82.96908716293788, 85.25033484651209, 15.212363515931212, 23.689197428477147, 97.56688352032191, 38.69140022358581, 6.635443507255891, 110.96443344959516, 35.3556293009456, 22.16175414404239, 53.74447924369611, 16.050890835274387, 10.996010900036712, 17.00553342901917, 11.083844967780289, 26.252485021956744, 11.93512356665424, 6.006133253920451, 15.967191776944473, 84.34404974915624, 23.601502462911103, 112.37106875532751, 50.17732320269789, 7.799034377077868, 23.62632402987131, 94.10481530064042, 15.628825265632644, 74.68244239810346, 49.047902552216186, 27.370981825261318, 17.28134806207565, 40.966768591367256, 14.4969101334156, 34.31372938360136, 5.632855178017286, 12.678418987263838, 81.38438096021832, 10.023006216480487, 87.2912009054675, 19.284886668540846, 66.75031978493632, 122.10254441701498, 157.36590751411768, 5.0382958988179976, 28.70394428077021, 6.930355186995535, 8.85288442506002, 12.594180314150076, 58.05221028143656, 5.97544090435121, 53.78096282865921, 36.51017629771299, 68.69428858412005, 86.486754305432, 6.062628855101086, 7.789055602689711, 23.628751142081207, 48.93802578502577, 86.2984159552658, 35.251509265989505, 6.679319027383609, 5.592891392459602, 37.10666645146718, 64.40658315799871, 13.214604897422566, 19.173924904682792, 14.211302239927807, 32.711199298430095, 45.55492512777305, 84.78583743620379, 9.619381788141242, 86.82337825144761, 19.51128532995831, 88.1674254740548, 7.531661297536384, 86.58123935036802, 19.35015175141752, 5.46625736169059, 40.77373753404133, 27.233915379583166, 43.20249300465742, 74.0815747062218, 22.253805043627963, 36.558320262480194, 44.27977304313396, 25.756635788198317, 89.3719617566916, 36.16715540741287, 9.457029522233391, 107.90377995611541, 37.694622257424406, 26.618017462663367, 62.225724963638584, 21.051733829439492, 10.002025637857434, 8.172491633851484, 21.483664138515767, 19.913316297484105, 36.871161740308956, 42.111096435562075, 17.784166547801558, 58.99329079312026, 9.957312572074867, 12.30129586005017, 127.75841918344169, 45.86824168179907, 38.08586049612596, 61.09038084920098, 47.030401179274435, 91.33057985773873, 22.542627833294638, 38.0362557142452, 5.401107587570608, 68.38953715722748, 25.494636807644532, 41.23013744473186, 18.292298124440034, 31.367851453489955, 167.35524409735925, 64.25972114166257, 7.3968906358471465, 59.53499938841614, 24.908976250255325, 34.37309466911278, 11.87034894206268, 41.691769472701864, 34.68078978125121, 5.368583690896816, 114.67136844270615, 36.460645425622914, 57.5478349766803, 9.903641627119255, 12.936277807635069, 42.21189992671354, 30.412981694259884, 75.37863971064054, 13.172047528860949, 85.55423282217127, 82.14304817475727, 13.001471015054001, 6.974490685268887, 9.425335920388402, 121.87442890641262, 22.457321749919643, 72.73134254340255, 109.45328931850234, 24.126158384959513, 27.0157851124751, 35.461651832822916, 23.553986283554945, 67.05079397853102, 16.291619718211717, 150.70614097285574, 18.272168698442627, 6.277658217525056, 19.341635959635994, 29.665083191941267, 14.537638297339178, 24.433568468222006, 15.087990887732253, 60.680784541914754, 15.526014657995448, 43.41248242697165, 30.862568046014452, 22.020577870548014, 74.49215001555515, 8.785132775193091, 8.7804651593914, 7.17048215984453, 61.60464463143898, 14.2443965585629, 5.56936812003458, 109.96029701461529, 8.556506691399125, 119.30946271338192, 9.491662033816239, 103.99728287156763, 35.36904824728015, 17.92820107409759, 19.11232536726792, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([8394001.5625, 8394004.6875, 8511548.4375, 8542300.0, 8580204.6875, 8581270.3125, 8598946.875, 8601254.6875, 8602831.25, 8605943.75, 8607598.4375, 8668509.375, 8668718.75, 8669910.9375, 8706395.3125, 8707428.125, 8709312.5, 8711575.0, 8711865.625, 8712325.0, 8732931.25, 8743684.375, 8753943.75, 8793100.0, 8793792.1875, 8798226.5625, 8809703.125, 8819579.6875, 8827626.5625, 8848715.625, 8849268.75, 8850560.9375, 8883960.9375, 8884810.9375, 8885346.875, 8888090.625, 8888135.9375, 8888185.9375, 8889371.875, 8893071.875, 8893971.875, 8893990.625, 8894545.3125, 8894851.5625, 8894917.1875, 8895332.8125, 8895526.5625, 8896276.5625, 8896390.625, 8896529.6875, 8897107.8125, 8897918.75, 8898237.5, 8898289.0625, 8898748.4375, 8898912.5, 8899215.625, 8900126.5625, 8902728.125, 8914487.5, 8915390.625, 8916134.375, 8916360.9375, 8916390.625, 8916884.375, 8917948.4375, 8919350.0, 8920878.125, 8920882.8125, 8923534.375, 8926564.0625, 8926595.3125, 8926896.875, 8929059.375, 8929562.5, 8929807.8125, 8946471.875, 8957195.3125, 8959901.5625, 8960256.25, 8961962.5, 8962078.125, 8962860.9375, 8963015.625, 8963215.625, 8978292.1875, 8981435.9375, 8990971.875, 9007126.5625, 9012273.4375, 9012898.4375, 9016145.3125, 9016176.5625, 9016251.5625, 9016462.5, 9021314.0625, 9022184.375, 9026292.1875, 9029359.375, 9045620.3125, 9045740.625, 9048445.3125, 9055890.625, 9056256.25, 9058339.0625, 9060959.375, 9062714.0625, 9064890.625, 9064940.625, 9065607.8125, 9065928.125, 9066750.0, 9067709.375, 9067829.6875, 9071950.0, 9112848.4375, 9112868.75, 9113643.75, 9114084.375, 9114125.0, 9115834.375, 9116201.5625, 9122735.9375, 9126584.375, 9129940.625, 9132589.0625, 9143618.75, 9143753.125, 9150389.0625, 9151712.5, 9154404.6875, 9154606.25, 9163210.9375, 9163228.125, 9163229.6875, 9174328.125, 9174982.8125, 9175039.0625, 9175614.0625, 9175804.6875, 9176614.0625, 9177681.25, 9181803.125, 9182125.0, 9184026.5625, 9185140.625, 9200870.3125, 9221284.375, 9246254.6875, 9247925.0, 9250231.25, 9257062.5, 9258018.75, 9258253.125, 9258335.9375, 9258364.0625, 9258509.375, 9258562.5, 9260739.0625, 9265175.0, 9265351.5625, 9268523.4375, 9268956.25, 9295142.1875, 9297559.375, 9298467.1875, 9301248.4375, 9302076.5625, 9314679.6875, 9315893.75, 9324176.5625, 9324714.0625, 9328453.125, 9340328.125, 9340332.8125, 9358451.5625, 9362495.3125, 9364479.6875, 9364964.0625, 9365335.9375, 9368543.75, 9368560.9375, 9372073.4375, 9375279.6875, 9377718.75, 9390565.625, 9390660.9375, 9395960.9375, 9398037.5, 9398918.75, 9399059.375, 9399159.375, 9399357.8125, 9399507.8125, 9399575.0, 9399657.8125, 9399909.375, 9400148.4375, 9400306.25, 9400318.75, 9400431.25, 9400748.4375, 9402365.625, 9403387.5, 9403443.75, 9403518.75, 9403587.5, 9405278.125, 9405587.5, 9405773.4375, 9407254.6875, 9409459.375, 9409765.625, 9410310.9375, 9410334.375, 9410460.9375, 9410618.75, 9410956.25, 9410957.8125, 9411137.5, 9411284.375, 9411371.875, 9411543.75, 9411556.25, 9411648.4375, 9411681.25, 9411812.5, 9411934.375, 9411975.0, 9412170.3125, 9412214.0625, 9412285.9375, 9412426.5625, 9412573.4375, 9412735.9375, 9413237.5, 9413279.6875, 9413592.1875, 9413962.5, 9413985.9375, 9414545.3125, 9424934.375, 9427726.5625, 9428368.75, 9428860.9375, 9430125.0, 9433868.75, 9435284.375, 9440321.875, 9441434.375, 9441440.625, 9442140.625, 9444223.4375, 9444667.1875, 9445178.125, 9445503.125, 9445912.5, 9445965.625, 9446412.5, 9448243.75, 9448295.3125, 9469978.125, 9504014.0625, 9507015.625, 9508675.0, 9508687.5, 9508770.3125, 9511543.75, 9517240.625, 9517909.375, 9518250.0, 9520487.5, 9527573.4375, 9531206.25, 9531778.125, 9532057.8125, 9533806.25, 9534356.25, 9534534.375, 9534798.4375, 9536196.875, 9536590.625, 9536971.875, 9537701.5625, 9539642.1875, 9541334.375, 9542451.5625, 9550198.4375, 9551048.4375, 9551160.9375, 9563185.9375, 9575887.5, 9590271.875, 9593742.1875, 9599828.125, 9602275.0, 9602814.0625, 9603048.4375, 9663553.125, 9688184.375, 9689932.8125, 9689945.3125, 9691937.5, 9692343.75, 9692545.3125, 9693028.125, 9716210.9375, 9718014.0625, 9732893.75, 9733142.1875, 9733539.0625, 9736259.375, 9738543.75, 9739031.25, 9743832.8125, 9744906.25, 9746745.3125, 9748534.375, 9749743.75, 9750631.25, 9752000.0, 9755014.0625, 9771712.5, 9780803.125, 9781676.5625, 9787517.1875, 9792054.6875, 9792879.6875, 9793007.8125, 9794439.0625, 9814878.125, 9817603.125, 9824554.6875, 9826164.0625, 9833100.0, 9833232.8125, 9833914.0625, 9837631.25, 9837881.25, 9837953.125, 9838123.4375, 9839384.375, 9839481.25, 9840535.9375, 9840759.375, 9841456.25, 9842170.3125, 9843806.25, 9845260.9375, 9845654.6875, 9853773.4375, 9855910.9375, 9856179.6875, 9856651.5625, 9859307.8125, 9866607.8125, 9867071.875, 9887584.375, 9890221.875, 9903887.5, 9904673.4375, 9915729.6875, 9916654.6875, 9916817.1875, 9917228.125, 9918032.8125, 9918881.25, 9921857.8125, 9923009.375, 9923751.5625, 9924893.75, 9930015.625, 9930178.125, 9932176.5625, 9937420.3125, 9938085.9375, 9949723.4375, 9955298.4375, 9964320.3125, 9966325.0, 9972184.375, 9972879.6875, 9973217.1875, 9973595.3125, 9973998.4375, 9974006.25, 9974034.375, 9974196.875, 9974207.8125, 9974293.75, 9974600.0, 9974842.1875, 9974970.3125, 9975096.875, 9975228.125, 9975770.3125, 9975948.4375, 9975964.0625, 9976057.8125, 9976118.75, 9976660.9375, 9976798.4375, 9986048.4375, 9997851.5625, 10031784.375, 10031918.75, 10032656.25, 10034079.6875, 10034198.4375, 10034339.0625, 10064421.875, 10078046.875, 10079476.5625, 10079498.4375, 10080145.3125, 10081071.875, 10110181.25, 10111835.9375, 10112782.8125, 10114640.625, 10116575.0, 10121496.875, 10125721.875, 10127870.3125, 10130415.625, 10131607.8125, 10131610.9375, 10132679.6875, 10141745.3125, 10141753.125, 10142543.75, 10142589.0625, 10145217.1875, 10147223.4375, 10147367.1875, 10149754.6875, 10151165.625, 10156998.4375, 10161932.8125, 10170139.0625, 10172462.5, 10182379.6875, 10213964.0625, 10216581.25, 10216628.125, 10230017.1875, 10230018.75, 10235518.75, 10245004.6875, 10247976.5625, 10256189.0625, 10256257.8125, 10269356.25, 10270035.9375, 10270335.9375, 10299664.0625, 10299789.0625, 10348139.0625, 10348165.625, 10357190.625, 10391028.125, 10502420.3125, 10548960.9375, 10549750.0, 10553400.0, 10554960.9375, 10571842.1875, 10577317.1875, 10577667.1875, 10586565.625, 10587606.25, 10588248.4375, 10591956.25, 10593723.4375, 10608162.5, 10609089.0625, 10609239.0625, 10613759.375, 10614018.75, 10619792.1875, 10619896.875, 10621462.5, 10621595.3125, 10621904.6875, 10622100.0, 10624393.75, 10626692.1875, 10628826.5625, 10630353.125, 10634265.625, 10635876.5625, 10651793.75, 10652062.5, 10653228.125, 10653460.9375, 10655685.9375, 10657140.625, 10661134.375, 10662206.25, 10664939.0625, 10667565.625, 10673293.75, 10673764.0625, 10676943.75, 10691100.0, 10691212.5, 10692140.625, 10692201.5625, 10692453.125, 10692535.9375, 10692590.625, 10693229.6875, 10711250.0, 10711329.6875, 10720064.0625, 10722745.3125, 10724137.5, 10724851.5625, 10727264.0625, 10727317.1875, 10727375.0, 10734439.0625, 10734459.375, 10740398.4375, 10759760.9375, 10760929.6875, 10761840.625, 10762154.6875, 10763223.4375, 10763504.6875, 10764240.625, 10764700.0, 10765059.375, 10765270.3125, 10765857.8125, 10766657.8125, 10767682.8125, 10771868.75, 10773631.25, 10774845.3125, 10775451.5625, 10777139.0625, 10778328.125, 10780985.9375, 10783904.6875, 10783939.0625, 10786387.5, 10803635.9375, 10806010.9375, 10806931.25, 10807512.5, 10810614.0625, 10810917.1875, 10811973.4375, 10814026.5625, 10816623.4375, 10816682.8125, 10821667.1875, 10829853.125, 10829857.8125, 10829907.8125, 10833392.1875, 10833914.0625, 10834342.1875, 10837364.0625, 10837659.375, 10838187.5, 10850023.4375, 10851790.625, 10851803.125, 10853334.375, 10855146.875, 10879110.9375, 10880348.4375, 10886035.9375, 10902742.1875, 10907998.4375, 10922839.0625, 10929382.8125, 10929395.3125, 10932559.375, 10936593.75, 10951068.75, 10951071.875, 10954787.5, 10955071.875, 10955582.8125, 10957771.875, 10963040.625, 10964534.375, 10966187.5, 10971164.0625, 10973964.0625, 10982465.625, 10982934.375, 10988484.375, 10989734.375, 10990932.8125, 10992723.4375, 10992764.0625, 10994962.5, 10996014.0625, 10997589.0625, 11010603.125, 11014243.75, 11016962.5, 11021076.5625, 11021309.375, 11022507.8125, 11022509.375, 11023792.1875, 11023973.4375, 11024612.5, 11029673.4375, 11031023.4375, 11037959.375, 11038187.5, 11038410.9375, 11038467.1875, 11038509.375, 11038545.3125, 11040546.875, 11041160.9375, 11044423.4375, 11046123.4375, 11052692.1875, 11054085.9375, 11054546.875, 11054865.625, 11054917.1875, 11054940.625, 11055348.4375, 11055493.75, 11055526.5625, 11055801.5625, 11055910.9375, 11056243.75, 11056976.5625, 11057887.5, 11058360.9375, 11058732.8125, 11059139.0625, 11060259.375, 11060939.0625, 11062178.125, 11066789.0625, 11081567.1875, 11082220.3125, 11087092.1875, 11089746.875, 11092340.625, 11092418.75, 11092442.1875, 11095326.5625, 11096101.5625, 11096256.25, 11097237.5, 11135404.6875, 11140450.0, 11143046.875, 11144487.5, 11144953.125, 11153118.75, 11161959.375, 11172489.0625, 11173984.375, 11180160.9375, 11193890.625, 11209114.0625, 11209217.1875, 11210464.0625, 11210498.4375, 11213984.375, 11217146.875, 11217268.75, 11217615.625, 11221190.625, 11247639.0625, 11250285.9375, 11261528.125, 11274525.0, 11275057.8125, 11276657.8125, 11278070.3125, 11278198.4375, 11282654.6875, 11283823.4375, 11285176.5625, 11295154.6875, 11311654.6875, 11313356.25, 11313382.8125, 11328309.375, 11340393.75, 11342706.25, 11370220.3125, 11372962.5, 11375942.1875, 11376106.25, 11376457.8125, 11376471.875, 11376692.1875, 11377389.0625, 11377798.4375, 11381696.875, 11381867.1875, 11383739.0625, 11383754.6875, 11385040.625, 11398423.4375, 11399765.625, 11403062.5, 11403421.875, 11410451.5625, 11412253.125, 11427245.3125, 11428325.0, 11429437.5, 11431870.3125, 11432350.0, 11441075.0, 11448006.25, 11457337.5, 11464268.75, 11478260.9375, 11478550.0, 11518800.0, 11545570.3125, 11546340.625, 11546670.3125, 11547676.5625, 11564445.3125, 11575450.0, 11586529.6875, 11608381.25, 11627071.875, 11630285.9375, 11631070.3125, 11633210.9375, 11648265.625, 11648626.5625, 11669965.625, 11687228.125, 11690992.1875, 11698296.875, 11723846.875, 11727607.8125, 11729189.0625, 11731131.25, 11768221.875, 11774534.375, 11782801.5625, 11785482.8125, 11790621.875, 11801901.5625, 11801945.3125, 11806246.875, 11820065.625, 11830118.75, 11833698.4375, 11857993.75, 11871034.375, 11877803.125, 11900064.0625, 11900959.375, 11901259.375, 11945787.5, 12011739.0625, 12021354.6875, 12024528.125, 12091428.125, 12096204.6875, 12116448.4375, 12125778.125, 12128129.6875, 12201960.9375, 12221340.625, 12229428.125, 12229500.0, 12231250.0, 12246676.5625, 12247756.25, 12306062.5, 12306129.6875, 12368218.75, 12392229.6875, 12417943.75, 12486959.375, 12506739.0625, 12580162.5, 12874335.9375, 12919390.625, 12951609.375, 12958689.0625, 12980568.75, 13042078.125, 13047242.1875, 13075659.375, 13076093.75, 13082134.375, 13089600.0, 13091573.4375, 13095970.3125, 13118481.25, 13124289.0625, 13124437.5, 13162485.9375, 13164454.6875, 13199954.6875, 13202246.875, 13207728.125, 13216812.5, 13216825.0, 13220303.125, 13221162.5, 13225653.125, 13241565.625, 13246251.5625, 13247126.5625, 13248401.5625, 13270706.25, 13275139.0625, 13276554.6875, 13276896.875, 13295610.9375, 13296109.375, 13300303.125, 13319231.25, 13343667.1875, 13349289.0625, 13358156.25, 13431728.125, 13431731.25, 13454612.5, 13458656.25, 13535756.25, 13548509.375, 13563871.875, 13564576.5625, 13570546.875, 13603475.0, 13607520.3125, 13612145.3125, 13622476.5625, 13657795.3125, 13695270.3125, 13696123.4375, 13764425.0, 13773951.5625, 13781950.0, 13831821.875, 13843556.25, 13939207.8125, 13961896.875, 13961951.5625, 13992225.0, 14009065.625, 14012359.375, 14036701.5625, 14078362.5, 14090492.1875, 14119181.25, 14131295.3125, 14131373.4375, 14199678.125, 14269526.5625, 14271901.5625, 14309370.3125, 14385453.125, 14404089.0625, 14440412.5, 14482917.1875, 16376814.0625, 16450620.3125, 16479281.25, 16485167.1875, 16487264.0625, 16490240.625, 16496309.375, 16501162.5, 16504417.1875, 16512504.6875, 16512860.9375, 16514192.1875, 16519545.3125, 16522601.5625, 16524600.0, 16534581.25, 16535800.0, 16542685.9375, 16543007.8125, 16544056.25, 16544190.625, 16546353.125, 16548454.6875, 16549579.6875, 16553003.125, 16553054.6875, 16560584.375, 16561125.0, 16561571.875, 16572376.5625, 16575950.0, 16577345.3125, 16577623.4375, 16579185.9375, 16584085.9375, 16592406.25, 16593785.9375, 16594267.1875, 16595489.0625, 16597889.0625, 16598595.3125, 16599985.9375, 16600268.75, 16601259.375, 16603603.125, 16606356.25, 16606439.0625, 16607496.875, 16608760.9375, 16611040.625, 16611479.6875, 16611943.75, 16612875.0, 16613601.5625, 16613814.0625, 16614276.5625, 16614471.875, 16614645.3125, 16615387.5, 16616432.8125, 16617043.75, 16618423.4375, 16618953.125, 16619037.5, 16620010.9375, 16620618.75, 16621001.5625, 16621301.5625, 16621390.625, 16622545.3125, 16623478.125, 16623656.25, 16627654.6875, 16629901.5625, 16629948.4375, 16629989.0625, 16631237.5, 16631606.25, 16631650.0, 16632110.9375, 16632318.75, 16633273.4375, 16634376.5625, 16636225.0, 16636392.1875, 16636432.8125, 16636770.3125, 16637015.625, 16637307.8125, 16637831.25, 16638582.8125, 16639040.625, 16640132.8125, 16640775.0, 16640887.5, 16640889.0625, 16641151.5625, 16641934.375, 16642368.75, 16642443.75, 16643667.1875, 16644034.375, 16645079.6875, 16646093.75, 16646835.9375, 16648281.25, 16648781.25, 16649765.625, 16652959.375, 16654107.8125, 16654631.25, 16655003.125, 16655096.875, 16655204.6875, 16655300.0, 16655353.125, 16655392.1875, 16655815.625, 16656456.25, 16656507.8125, 16656867.1875, 16657771.875, 16657873.4375, 16658703.125, 16659017.1875, 16659034.375, 16660032.8125, 16660081.25, ...], [6.682810132957332, 50.186707722936596, 103.37294683690209, 54.81334462066924, 28.559242308890845, 23.09259659031479, 50.61992252266889, 25.15898977952719, 93.5952793689849, 84.57911875274124, 17.57038647369158, 14.357600479142768, 20.433963854679433, 83.30349614967737, 72.62095875338923, 10.808277448059341, 15.37120259178871, 122.39516571128868, 5.1991587044325325, 7.49428302793941, 66.25501515138457, 73.71261257370227, 117.52329828417618, 25.19910420038672, 7.910612198841862, 5.336912967324095, 33.16979873637665, 66.36224462364984, 20.69687833492261, 13.231495689478425, 46.39389656336577, 20.019404291949453, 106.56905215878716, 90.00095779237184, 134.13984371760858, 40.39808299868913, 20.0674894572842, 28.05392450985255, 157.833103652448, 19.102864324211783, 8.831271889961545, 77.46656577196957, 110.98539266416032, 10.892573220340322, 5.3229901837787486, 175.24007268783092, 13.431489276024038, 28.227226741840965, 101.99098137497995, 53.31954017070584, 7.988222625769535, 122.52996474222792, 8.430662398399685, 6.234616124015867, 70.26265948356921, 16.04964993697003, 71.83409935174775, 6.317292201601204, 75.63522700236638, 62.18722039193707, 7.886941612414923, 43.50340016181954, 48.98606813778761, 49.593812292038, 9.016397274515388, 5.430632229923034, 60.081985428142644, 42.71204911775584, 52.72564880936051, 139.67486276420183, 66.84084153744635, 34.240788652378164, 32.37759355024815, 102.5283333453991, 45.44281545583649, 29.5995379830287, 31.818535572591898, 79.55519859946612, 190.29704449424779, 118.92625359012169, 82.11631216007311, 5.033671475096316, 13.409463483454815, 94.39643335490733, 20.3522843663816, 43.212915559509284, 17.902365156061595, 36.91519889537228, 50.43874345062904, 83.72161167791589, 54.904900854711755, 20.203982619673038, 23.6980407195462, 5.28801999457999, 13.06339855752468, 59.68550904070481, 9.416459602634426, 12.739985454625792, 26.250284309274466, 48.9897638120081, 15.665219669428607, 21.06323057391394, 33.173736486803016, 71.21909976360652, 41.87318998992714, 146.36314544302633, 10.448589020724071, 20.72555463469658, 33.70449983689158, 8.262977629478314, 60.30951820272921, 13.576653053312182, 8.83896895371378, 10.88773520230747, 63.98188296172942, 27.602478354227596, 10.004848290169566, 87.87178108318524, 18.219069425464607, 21.46714297499537, 58.06743350472689, 25.537244176697172, 33.01948532050863, 77.34832193558523, 55.563957249155514, 5.9691160005656565, 30.609912400671643, 6.750543629292425, 35.54067658659045, 7.365449645444949, 168.3001931018148, 65.7977138237367, 24.265315089912527, 48.827572701011455, 26.945712735671126, 58.38951474354027, 18.86820233985255, 123.62499732452083, 55.17114464019127, 53.29603013555679, 63.12423354384227, 13.136970065486747, 17.816626042519466, 17.166132591268973, 107.98313355886073, 5.793088871112914, 24.324540652390628, 40.42826626978214, 10.755176931067068, 26.895198077363307, 81.35052040973872, 5.882267837332508, 16.04923891050121, 35.5451707288566, 87.26352440891401, 9.93496671205617, 20.637332706266125, 5.470547725941623, 26.469614136979203, 16.416404229237692, 10.26862909154517, 96.52457523626053, 74.10262562203035, 44.385287985118794, 48.36104890114375, 182.7749030148854, 16.29640060072051, 115.69197555141051, 8.949746455339751, 45.18197694950622, 18.80186463041666, 244.73547082182907, 16.981169669572374, 31.99179628403284, 28.701009956409656, 96.70855431952965, 37.552584985727584, 72.34174073313648, 97.79573423790391, 14.887534478899765, 57.271800158672725, 8.254977161568641, 65.50279038492002, 55.91742476238147, 5.698367661036394, 63.47878733983836, 5.126347664958837, 16.28781623224736, 10.416169430893614, 91.79346067240755, 5.221858587636369, 46.402059465016336, 70.91132593239438, 8.393645084926698, 24.106829363944613, 81.51198590039564, 76.19808560921226, 60.253832547858785, 17.313583592672604, 9.92560874429905, 18.61594993298138, 75.37807689499306, 18.064947252612566, 7.091306401239255, 21.77520563608896, 28.912371721404668, 48.81530451160957, 15.291018204822297, 6.20233854634454, 142.369920547543, 8.416445782780716, 17.559465941362063, 16.167721699687686, 11.345774326655746, 16.40572765828897, 86.7174596334024, 8.253663219880986, 24.956712146878584, 22.21870259365289, 46.65191023006704, 15.624970954751637, 37.19738253789212, 35.64980663777734, 139.91593631504787, 19.503017588550385, 12.067469461529855, 63.07888768096945, 156.81289580144113, 19.747457187966056, 29.452728298978577, 53.390565364466276, 155.5107426092718, 17.242407914017633, 10.660424992119601, 108.36918788248451, 18.627507041662575, 19.91189325937808, 82.60950738097311, 78.60960754999594, 72.78472547321441, 6.305967658148055, 5.863781929269014, 50.005364331093276, 43.34280473253328, 37.77649758062045, 74.07340340159288, 49.578591008925244, 15.342525999331013, 8.174275900787562, 153.21159704248836, 61.911219930208, 40.80801002857029, 5.324476797623879, 75.99522670850813, 42.953521805631766, 25.9136631279205, 6.656971838351515, 36.89389028517451, 12.913699233717546, 121.58170207524344, 24.87906206678081, 8.596333251486913, 56.553999050308306, 7.023092465156036, 46.381293636098185, 39.50532014421575, 8.557869226137464, 36.51598983470717, 5.302919374263911, 68.38596681215017, 52.209065335596904, 145.14354063164524, 30.293109354726106, 60.240586662340014, 9.162372478008498, 20.3111739021322, 48.49404586894006, 37.07312070623013, 37.159480711097224, 9.289572033042093, 95.31852553768265, 30.76422889909032, 7.401993094487432, 7.1220229993874336, 28.856499878360534, 56.798200545338375, 11.689121711447461, 11.005519846297005, 31.53678998379549, 5.825166780632397, 38.41290781631337, 82.68821055944505, 29.24855381571178, 11.186115282305977, 61.903481617176205, 5.504259185219403, 10.171953048706337, 115.45757543582293, 35.27799833931624, 89.81097498853063, 72.46832406996558, 22.105242924523886, 19.784154263392686, 104.6619973669067, 37.08537432343746, 37.956454842730864, 38.6646898447496, 58.384431973176284, 15.911193951789055, 60.69435737694624, 8.256398501898968, 5.2797929861581325, 17.05002621570226, 6.9901377130719, 11.840517440126037, 9.664926059944218, 69.67982318302913, 144.18544147108813, 78.16154745769407, 25.82465373734297, 22.2594858456616, 50.23045734043941, 14.228101424687816, 56.182636081542256, 10.345094808293556, 32.20707468923453, 15.11368670381474, 32.87044448254871, 5.86947061988454, 53.11702631844384, 6.8355104231872925, 60.43972692850991, 6.095684190877604, 63.746085913407434, 75.3906439785622, 8.972479901852981, 10.745483672564088, 38.28731571087646, 11.31669434685261, 27.546990404374984, 37.49602254078952, 99.67005513435267, 8.663369328880977, 16.73975436994843, 67.14924744159563, 21.70563815801441, 118.99721240854045, 20.6399413648862, 6.514281738869394, 43.469364376345276, 44.94598354319331, 44.9421653321148, 48.12250577943426, 8.86414496159094, 87.97863625376007, 6.3240694618800575, 49.500504601311576, 66.93156622000154, 19.627338529654494, 25.203547867327284, 88.57467016367907, 64.6511363322523, 37.106151951659385, 72.58475049512064, 14.399039601529438, 91.31325025084902, 70.84614571047065, 12.60571023922724, 67.43858033793002, 36.61782928927578, 134.04847477866943, 37.51596042136073, 68.08184316310233, 5.81937455478984, 14.865586756383028, 117.0835642005986, 151.81290108290438, 5.641088966667447, 13.482637221581577, 39.81293600989747, 12.398345613599663, 26.955724480879894, 14.40153314033839, 21.923545813310415, 92.64613171353984, 139.16300006520288, 55.648763319910685, 21.630670548668096, 5.939502960847521, 21.74730070763605, 22.140325730464227, 150.05236098320614, 144.90239151062826, 5.762116167567895, 13.504094710152463, 26.314760278930866, 77.50776808200266, 23.911130167739543, 47.083429823625316, 72.21300030823272, 43.540078492654445, 96.5918013126324, 73.48553818274821, 16.685187577809977, 5.5669511546172865, 13.814272947084067, 75.38029170434974, 54.68813197955491, 38.28796315516141, 12.807156144528573, 6.487187076649916, 15.56208278500592, 98.64924331939639, 10.438508613565874, 8.932598593104196, 68.93724163310043, 84.79239706760066, 38.48202638812381, 112.20859117024116, 92.83120357526045, 50.031318777435416, 6.5858335347339905, 5.4508136388500095, 66.74720422178542, 99.45021137282222, 39.61020529687089, 12.953493515154083, 18.291597824261657, 42.73788846269994, 31.348818142367076, 61.52538512615237, 5.611888949861803, 10.564022733956845, 19.528080081034762, 72.22704023641383, 77.18085976136786, 21.257098440469246, 105.70224591997761, 25.292184041182168, 8.254527264836852, 140.47737085480978, 66.93769078034845, 216.71036474145333, 108.23276062262475, 9.340838387559806, 74.44531358307856, 82.4909907164047, 6.633499569013349, 19.29525281607495, 48.79720780575686, 69.84531858636208, 6.228807263249651, 81.52263123447469, 49.19779641474322, 33.68803255512549, 7.145247175891777, 8.827572009576587, 91.33261762141052, 128.372910238519, 36.24913704467685, 16.093755115641724, 8.405185781533492, 14.440342339629495, 29.14822618974138, 21.949179131813278, 21.09195459237271, 46.47120656369686, 32.75222158378785, 22.78297719749695, 27.86462287117818, 172.05762415609607, 73.92484712557996, 80.87595103292534, 25.12316392463473, 154.3057896766912, 40.34606242737654, 15.301833948745923, 14.9027806697806, 35.9313084089023, 35.98745388075194, 16.510081193286197, 11.638084888295388, 43.362797034167656, 10.091746444999197, 19.212703903113226, 24.676905215625602, 86.07129862470289, 6.582689490221744, 76.4494571534625, 111.64401509297625, 57.89696306864929, 54.708879108155315, 11.527956722132679, 34.14265026048807, 64.57243245795244, 161.81475581594498, 5.925568280577239, 28.533677299505307, 29.339956073481584, 13.004187228280864, 41.64604244567732, 68.51385656685804, 10.37865838226159, 11.810564546204667, 61.33006689586457, 66.65874504828496, 31.08116329638111, 49.96147297875291, 20.529740374481477, 21.04307813046983, 25.202750653567012, 15.633652396388928, 33.87518939293516, 12.432802686263726, 82.30860860864723, 80.13598094225004, 70.94075174653568, 18.104652114552504, 17.291494836984633, 97.58095439748543, 54.70238459131728, 23.550295082901386, 117.72425040514801, 32.86664554253368, 71.34030916750699, 32.189971246846476, 24.196027564664696, 8.579662361410666, 34.10992648203749, 16.611107135155777, 9.50480151906636, 16.257096970836326, 75.85797631589149, 6.080640162663385, 7.323772080506524, 8.38980018627588, 69.3047518304098, 89.65837938870592, 18.852943942925382, 15.590128214044757, 6.890201424826199, 26.789466821519028, 23.488422414047776, 11.127526557349706, 41.89637412300472, 24.344195873014012, 19.21308996239407, 135.14192298109313, 6.4435166650979205, 5.507436476282665, 49.05222269466578, 202.65710911424432, 50.93558631661318, 21.25095294559731, 77.97249649224405, 10.724957808168647, 5.113299519066735, 19.415948392751975, 16.888350585884318, 11.415119080641448, 5.264544819068254, 11.076382504943616, 24.13107807351913, 95.61182301122159, 30.45079490022475, 11.979648214767561, 56.2175192552542, 6.572643203881592, 50.46005989781677, 8.934128947661918, 79.7902711980043, 70.02174608275453, 20.203588072088507, 99.5806494465559, 13.894470086661906, 55.84244180314184, 12.579072028980645, 25.100214854752515, 76.57556982991952, 57.28992319834932, 94.0379001809403, 46.878613963740165, 26.553753069004024, 26.495483941284544, 58.77756085590163, 22.62735501274259, 5.775208887698104, 12.482098083612065, 50.285323737487126, 15.51025597007748, 36.12556195352068, 100.42360332579868, 196.7166575642744, 271.3707524712404, 36.41665462065059, 27.315800255177226, 58.44173210321345, 26.252013219958, 10.11470629279823, 34.78965604470649, 119.22306597566282, 27.32528432924633, 76.64480274559148, 13.04639179330886, 11.520097539094166, 47.71455620750904, 68.12660203235521, 52.7620306892066, 77.39986767596211, 40.96740311269531, 26.22819457513517, 20.464365157326874, 121.42310603980447, 25.35751711784634, 17.22172393631718, 25.797791672188858, 59.043434758580375, 89.04228462724109, 5.30038289880568, 9.186655148552047, 7.765325285986178, 111.28197613611533, 71.22282816849469, 32.00890037556992, 27.268330191109236, 64.55067687898362, 40.80992130779908, 12.460588598941044, 24.351944110023044, 37.984288908547605, 35.36353723899256, 42.348138681939886, 81.77180682849654, 12.562197801097179, 45.95230458400236, 32.69046385731889, 11.149848547311427, 133.65615606708863, 220.31269257530525, 87.64794393388519, 5.577124588434752, 27.56825445914232, 46.35859040801369, 19.280387732409263, 5.504945298722883, 82.01348507988266, 12.638166068548658, 24.15232809890446, 35.25813846022936, 34.00321711753516, 66.72069155031912, 13.061344904137705, 68.8332446897879, 134.54037423895394, 24.126143815641825, 61.61428242596933, 12.848435496917592, 9.458390123677672, 10.401775215876537, 15.18296385866184, 36.307392987839, 75.52657037805531, 59.04776452549141, 19.701978357127086, 9.062567867052552, 20.533719125324282, 109.49608075784923, 28.360618630965472, 46.52094870438593, 74.33387425869479, 15.257014960516278, 45.39288013279052, 128.44145778667888, 109.5448014695453, 29.399214957656365, 86.88221514217402, 11.874917467359557, 95.16465121779098, 23.567633660297183, 61.03401147835187, 7.915001137739958, 21.639062692500676, 5.287600825389846, 63.42295208387288, 26.399611928109245, 6.525217633934417, 18.366306220011992, 39.60515875897267, 64.27804500791426, 206.78098323491122, 97.76720105716862, 28.258938032255962, 75.14350926537915, 68.98393016812138, 9.782823091936923, 15.181638047665583, 20.017686927957445, 54.33801567794557, 69.84792137874632, 16.646837969454946, 84.63042437766181, 38.31659967207161, 7.059498960755079, 14.84692631034505, 320.4073205307691, 33.52637275252303, 53.21785476079299, 19.44004131969818, 6.883201520559231, 69.59233748521191, 9.121886789474663, 20.25923015678573, 25.506605028600077, 20.910445003947682, 76.77772882527997, 24.967126421543917, 70.50800268466442, 37.281996024698536, 21.09850129464462, 14.083224799046084, 57.81070994937146, 10.891731299895302, 53.94655316256711, 10.294472515711657, 45.67679293009863, 28.58388850194526, 44.368210449023834, 125.508813734538, 26.465485616023628, 58.507789970819296, 32.35970639591447, 33.08300324437216, 97.2542496643349, 46.24469971176733, 74.44983993081635, 12.931835063550015, 81.21389943508258, 119.04130627518188, 105.11875953132805, 14.400364033070964, 56.15362124066834, 109.63914847204607, 26.825350928628524, 34.6916557021589, 64.50642638045593, 6.354924076626135, 106.82078089945949, 62.56257562080654, 30.224849471257258, 58.98002965158444, 54.450448839642284, 27.278390432672634, 19.270317900864757, 9.040061462951055, 102.00146226944034, 32.974682615685595, 21.360694216858377, 145.54278948798054, 62.66511822388223, 125.33956941575079, 65.53774369743746, 22.196527506699308, 11.124788868129954, 15.436844693001207, 85.17838824913636, 5.336127306281732, 18.333898243814645, 28.914297944565707, 75.68663599660056, 31.321208500610297, 15.053078116682213, 11.15926659691567, 14.065156705734308, 11.923211244847938, 147.36604636968227, 17.790165798903114, 15.61615723349038, 33.40144667768452, 44.56785828749041, 34.38446558879032, 40.72587266396132, 8.844961071977783, 86.51105603842134, 5.1159167301270685, 119.89847880069654, 44.42105723890094, 14.02180297291659, 38.08272656566429, 98.03062227107009, 30.9037644182997, 29.32887505743901, 50.63482528444109, 67.71344403350508, 90.6704920168327, 69.80489475173802, 174.87666006001504, 8.68303961778839, 40.588291329680935, 183.3846212945784, 67.48966398675927, 10.280253024878101, 42.25444197285046, 14.794978626267449, 14.792191952133484, 36.62518459469573, 54.334478478189254, 34.5665537135755, 34.9199073567743, 84.02688051047065, 15.059197314762715, 30.711400849915538, 48.87543366023361, 10.55340980154115, 28.427015487189742, 28.55057808859783, 73.27303648803901, 68.36382932520256, 98.31016703100713, 122.1110981741876, 35.344662229903406, 82.96908716293788, 85.25033484651209, 15.212363515931212, 23.689197428477147, 97.56688352032191, 38.69140022358581, 6.635443507255891, 110.96443344959516, 35.3556293009456, 22.16175414404239, 53.74447924369611, 16.050890835274387, 10.996010900036712, 17.00553342901917, 11.083844967780289, 26.252485021956744, 11.93512356665424, 6.006133253920451, 15.967191776944473, 84.34404974915624, 23.601502462911103, 112.37106875532751, 50.17732320269789, 7.799034377077868, 23.62632402987131, 94.10481530064042, 15.628825265632644, 74.68244239810346, 49.047902552216186, 27.370981825261318, 17.28134806207565, 40.966768591367256, 14.4969101334156, 34.31372938360136, 5.632855178017286, 12.678418987263838, 81.38438096021832, 10.023006216480487, 87.2912009054675, 19.284886668540846, 66.75031978493632, 122.10254441701498, 157.36590751411768, 5.0382958988179976, 28.70394428077021, 6.930355186995535, 8.85288442506002, 12.594180314150076, 58.05221028143656, 5.97544090435121, 53.78096282865921, 36.51017629771299, 68.69428858412005, 86.486754305432, 6.062628855101086, 7.789055602689711, 23.628751142081207, 48.93802578502577, 86.2984159552658, 35.251509265989505, 6.679319027383609, 5.592891392459602, 37.10666645146718, 64.40658315799871, 13.214604897422566, 19.173924904682792, 14.211302239927807, 32.711199298430095, 45.55492512777305, 84.78583743620379, 9.619381788141242, 86.82337825144761, 19.51128532995831, 88.1674254740548, 7.531661297536384, 86.58123935036802, 19.35015175141752, 5.46625736169059, 40.77373753404133, 27.233915379583166, 43.20249300465742, 74.0815747062218, 22.253805043627963, 36.558320262480194, 44.27977304313396, 25.756635788198317, 89.3719617566916, 36.16715540741287, 9.457029522233391, 107.90377995611541, 37.694622257424406, 26.618017462663367, 62.225724963638584, 21.051733829439492, 10.002025637857434, 8.172491633851484, 21.483664138515767, 19.913316297484105, 36.871161740308956, 42.111096435562075, 17.784166547801558, 58.99329079312026, 9.957312572074867, 12.30129586005017, 127.75841918344169, 45.86824168179907, 38.08586049612596, 61.09038084920098, 47.030401179274435, 91.33057985773873, 22.542627833294638, 38.0362557142452, 5.401107587570608, 68.38953715722748, 25.494636807644532, 41.23013744473186, 18.292298124440034, 31.367851453489955, 167.35524409735925, 64.25972114166257, 7.3968906358471465, 59.53499938841614, 24.908976250255325, 34.37309466911278, 11.87034894206268, 41.691769472701864, 34.68078978125121, 5.368583690896816, 114.67136844270615, 36.460645425622914, 57.5478349766803, 9.903641627119255, 12.936277807635069, 42.21189992671354, 30.412981694259884, 75.37863971064054, 13.172047528860949, 85.55423282217127, 82.14304817475727, 13.001471015054001, 6.974490685268887, 9.425335920388402, 121.87442890641262, 22.457321749919643, 72.73134254340255, 109.45328931850234, 24.126158384959513, 27.0157851124751, 35.461651832822916, 23.553986283554945, 67.05079397853102, 16.291619718211717, 150.70614097285574, 18.272168698442627, 6.277658217525056, 19.341635959635994, 29.665083191941267, 14.537638297339178, 24.433568468222006, 15.087990887732253, 60.680784541914754, 15.526014657995448, 43.41248242697165, 30.862568046014452, 22.020577870548014, 74.49215001555515, 8.785132775193091, 8.7804651593914, 7.17048215984453, 61.60464463143898, 14.2443965585629, 5.56936812003458, 109.96029701461529, 8.556506691399125, 119.30946271338192, 9.491662033816239, 103.99728287156763, 35.36904824728015, 17.92820107409759, 19.11232536726792, ...])
caption, T_hit,count = 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, count, caption);
([8394001.5625, 8394004.6875, 8511548.4375, 8542300.0, 8580204.6875, 8581270.3125, 8598946.875, 8601254.6875, 8602831.25, 8605943.75, 8607598.4375, 8668509.375, 8668718.75, 8669910.9375, 8706395.3125, 8707428.125, 8709312.5, 8711575.0, 8711865.625, 8712325.0, 8732931.25, 8743684.375, 8753943.75, 8793100.0, 8793792.1875, 8798226.5625, 8809703.125, 8819579.6875, 8827626.5625, 8848715.625, 8849268.75, 8850560.9375, 8883960.9375, 8884810.9375, 8885346.875, 8888090.625, 8888135.9375, 8888185.9375, 8889371.875, 8893071.875, 8893971.875, 8893990.625, 8894545.3125, 8894851.5625, 8894917.1875, 8895332.8125, 8895526.5625, 8896276.5625, 8896390.625, 8896529.6875, 8897107.8125, 8897918.75, 8898237.5, 8898289.0625, 8898748.4375, 8898912.5, 8899215.625, 8900126.5625, 8902728.125, 8914487.5, 8915390.625, 8916134.375, 8916360.9375, 8916390.625, 8916884.375, 8917948.4375, 8919350.0, 8920878.125, 8920882.8125, 8923534.375, 8926564.0625, 8926595.3125, 8926896.875, 8929059.375, 8929562.5, 8929807.8125, 8946471.875, 8957195.3125, 8959901.5625, 8960256.25, 8961962.5, 8962078.125, 8962860.9375, 8963015.625, 8963215.625, 8978292.1875, 8981435.9375, 8990971.875, 9007126.5625, 9012273.4375, 9012898.4375, 9016145.3125, 9016176.5625, 9016251.5625, 9016462.5, 9021314.0625, 9022184.375, 9026292.1875, 9029359.375, 9045620.3125, 9045740.625, 9048445.3125, 9055890.625, 9056256.25, 9058339.0625, 9060959.375, 9062714.0625, 9064890.625, 9064940.625, 9065607.8125, 9065928.125, 9066750.0, 9067709.375, 9067829.6875, 9071950.0, 9112848.4375, 9112868.75, 9113643.75, 9114084.375, 9114125.0, 9115834.375, 9116201.5625, 9122735.9375, 9126584.375, 9129940.625, 9132589.0625, 9143618.75, 9143753.125, 9150389.0625, 9151712.5, 9154404.6875, 9154606.25, 9163210.9375, 9163228.125, 9163229.6875, 9174328.125, 9174982.8125, 9175039.0625, 9175614.0625, 9175804.6875, 9176614.0625, 9177681.25, 9181803.125, 9182125.0, 9184026.5625, 9185140.625, 9200870.3125, 9221284.375, 9246254.6875, 9247925.0, 9250231.25, 9257062.5, 9258018.75, 9258253.125, 9258335.9375, 9258364.0625, 9258509.375, 9258562.5, 9260739.0625, 9265175.0, 9265351.5625, 9268523.4375, 9268956.25, 9295142.1875, 9297559.375, 9298467.1875, 9301248.4375, 9302076.5625, 9314679.6875, 9315893.75, 9324176.5625, 9324714.0625, 9328453.125, 9340328.125, 9340332.8125, 9358451.5625, 9362495.3125, 9364479.6875, 9364964.0625, 9365335.9375, 9368543.75, 9368560.9375, 9372073.4375, 9375279.6875, 9377718.75, 9390565.625, 9390660.9375, 9395960.9375, 9398037.5, 9398918.75, 9399059.375, 9399159.375, 9399357.8125, 9399507.8125, 9399575.0, 9399657.8125, 9399909.375, 9400148.4375, 9400306.25, 9400318.75, 9400431.25, 9400748.4375, 9402365.625, 9403387.5, 9403443.75, 9403518.75, 9403587.5, 9405278.125, 9405587.5, 9405773.4375, 9407254.6875, 9409459.375, 9409765.625, 9410310.9375, 9410334.375, 9410460.9375, 9410618.75, 9410956.25, 9410957.8125, 9411137.5, 9411284.375, 9411371.875, 9411543.75, 9411556.25, 9411648.4375, 9411681.25, 9411812.5, 9411934.375, 9411975.0, 9412170.3125, 9412214.0625, 9412285.9375, 9412426.5625, 9412573.4375, 9412735.9375, 9413237.5, 9413279.6875, 9413592.1875, 9413962.5, 9413985.9375, 9414545.3125, 9424934.375, 9427726.5625, 9428368.75, 9428860.9375, 9430125.0, 9433868.75, 9435284.375, 9440321.875, 9441434.375, 9441440.625, 9442140.625, 9444223.4375, 9444667.1875, 9445178.125, 9445503.125, 9445912.5, 9445965.625, 9446412.5, 9448243.75, 9448295.3125, 9469978.125, 9504014.0625, 9507015.625, 9508675.0, 9508687.5, 9508770.3125, 9511543.75, 9517240.625, 9517909.375, 9518250.0, 9520487.5, 9527573.4375, 9531206.25, 9531778.125, 9532057.8125, 9533806.25, 9534356.25, 9534534.375, 9534798.4375, 9536196.875, 9536590.625, 9536971.875, 9537701.5625, 9539642.1875, 9541334.375, 9542451.5625, 9550198.4375, 9551048.4375, 9551160.9375, 9563185.9375, 9575887.5, 9590271.875, 9593742.1875, 9599828.125, 9602275.0, 9602814.0625, 9603048.4375, 9663553.125, 9688184.375, 9689932.8125, 9689945.3125, 9691937.5, 9692343.75, 9692545.3125, 9693028.125, 9716210.9375, 9718014.0625, 9732893.75, 9733142.1875, 9733539.0625, 9736259.375, 9738543.75, 9739031.25, 9743832.8125, 9744906.25, 9746745.3125, 9748534.375, 9749743.75, 9750631.25, 9752000.0, 9755014.0625, 9771712.5, 9780803.125, 9781676.5625, 9787517.1875, 9792054.6875, 9792879.6875, 9793007.8125, 9794439.0625, 9814878.125, 9817603.125, 9824554.6875, 9826164.0625, 9833100.0, 9833232.8125, 9833914.0625, 9837631.25, 9837881.25, 9837953.125, 9838123.4375, 9839384.375, 9839481.25, 9840535.9375, 9840759.375, 9841456.25, 9842170.3125, 9843806.25, 9845260.9375, 9845654.6875, 9853773.4375, 9855910.9375, 9856179.6875, 9856651.5625, 9859307.8125, 9866607.8125, 9867071.875, 9887584.375, 9890221.875, 9903887.5, 9904673.4375, 9915729.6875, 9916654.6875, 9916817.1875, 9917228.125, 9918032.8125, 9918881.25, 9921857.8125, 9923009.375, 9923751.5625, 9924893.75, 9930015.625, 9930178.125, 9932176.5625, 9937420.3125, 9938085.9375, 9949723.4375, 9955298.4375, 9964320.3125, 9966325.0, 9972184.375, 9972879.6875, 9973217.1875, 9973595.3125, 9973998.4375, 9974006.25, 9974034.375, 9974196.875, 9974207.8125, 9974293.75, 9974600.0, 9974842.1875, 9974970.3125, 9975096.875, 9975228.125, 9975770.3125, 9975948.4375, 9975964.0625, 9976057.8125, 9976118.75, 9976660.9375, 9976798.4375, 9986048.4375, 9997851.5625, 10031784.375, 10031918.75, 10032656.25, 10034079.6875, 10034198.4375, 10034339.0625, 10064421.875, 10078046.875, 10079476.5625, 10079498.4375, 10080145.3125, 10081071.875, 10110181.25, 10111835.9375, 10112782.8125, 10114640.625, 10116575.0, 10121496.875, 10125721.875, 10127870.3125, 10130415.625, 10131607.8125, 10131610.9375, 10132679.6875, 10141745.3125, 10141753.125, 10142543.75, 10142589.0625, 10145217.1875, 10147223.4375, 10147367.1875, 10149754.6875, 10151165.625, 10156998.4375, 10161932.8125, 10170139.0625, 10172462.5, 10182379.6875, 10213964.0625, 10216581.25, 10216628.125, 10230017.1875, 10230018.75, 10235518.75, 10245004.6875, 10247976.5625, 10256189.0625, 10256257.8125, 10269356.25, 10270035.9375, 10270335.9375, 10299664.0625, 10299789.0625, 10348139.0625, 10348165.625, 10357190.625, 10391028.125, 10502420.3125, 10548960.9375, 10549750.0, 10553400.0, 10554960.9375, 10571842.1875, 10577317.1875, 10577667.1875, 10586565.625, 10587606.25, 10588248.4375, 10591956.25, 10593723.4375, 10608162.5, 10609089.0625, 10609239.0625, 10613759.375, 10614018.75, 10619792.1875, 10619896.875, 10621462.5, 10621595.3125, 10621904.6875, 10622100.0, 10624393.75, 10626692.1875, 10628826.5625, 10630353.125, 10634265.625, 10635876.5625, 10651793.75, 10652062.5, 10653228.125, 10653460.9375, 10655685.9375, 10657140.625, 10661134.375, 10662206.25, 10664939.0625, 10667565.625, 10673293.75, 10673764.0625, 10676943.75, 10691100.0, 10691212.5, 10692140.625, 10692201.5625, 10692453.125, 10692535.9375, 10692590.625, 10693229.6875, 10711250.0, 10711329.6875, 10720064.0625, 10722745.3125, 10724137.5, 10724851.5625, 10727264.0625, 10727317.1875, 10727375.0, 10734439.0625, 10734459.375, 10740398.4375, 10759760.9375, 10760929.6875, 10761840.625, 10762154.6875, 10763223.4375, 10763504.6875, 10764240.625, 10764700.0, 10765059.375, 10765270.3125, 10765857.8125, 10766657.8125, 10767682.8125, 10771868.75, 10773631.25, 10774845.3125, 10775451.5625, 10777139.0625, 10778328.125, 10780985.9375, 10783904.6875, 10783939.0625, 10786387.5, 10803635.9375, 10806010.9375, 10806931.25, 10807512.5, 10810614.0625, 10810917.1875, 10811973.4375, 10814026.5625, 10816623.4375, 10816682.8125, 10821667.1875, 10829853.125, 10829857.8125, 10829907.8125, 10833392.1875, 10833914.0625, 10834342.1875, 10837364.0625, 10837659.375, 10838187.5, 10850023.4375, 10851790.625, 10851803.125, 10853334.375, 10855146.875, 10879110.9375, 10880348.4375, 10886035.9375, 10902742.1875, 10907998.4375, 10922839.0625, 10929382.8125, 10929395.3125, 10932559.375, 10936593.75, 10951068.75, 10951071.875, 10954787.5, 10955071.875, 10955582.8125, 10957771.875, 10963040.625, 10964534.375, 10966187.5, 10971164.0625, 10973964.0625, 10982465.625, 10982934.375, 10988484.375, 10989734.375, 10990932.8125, 10992723.4375, 10992764.0625, 10994962.5, 10996014.0625, 10997589.0625, 11010603.125, 11014243.75, 11016962.5, 11021076.5625, 11021309.375, 11022507.8125, 11022509.375, 11023792.1875, 11023973.4375, 11024612.5, 11029673.4375, 11031023.4375, 11037959.375, 11038187.5, 11038410.9375, 11038467.1875, 11038509.375, 11038545.3125, 11040546.875, 11041160.9375, 11044423.4375, 11046123.4375, 11052692.1875, 11054085.9375, 11054546.875, 11054865.625, 11054917.1875, 11054940.625, 11055348.4375, 11055493.75, 11055526.5625, 11055801.5625, 11055910.9375, 11056243.75, 11056976.5625, 11057887.5, 11058360.9375, 11058732.8125, 11059139.0625, 11060259.375, 11060939.0625, 11062178.125, 11066789.0625, 11081567.1875, 11082220.3125, 11087092.1875, 11089746.875, 11092340.625, 11092418.75, 11092442.1875, 11095326.5625, 11096101.5625, 11096256.25, 11097237.5, 11135404.6875, 11140450.0, 11143046.875, 11144487.5, 11144953.125, 11153118.75, 11161959.375, 11172489.0625, 11173984.375, 11180160.9375, 11193890.625, 11209114.0625, 11209217.1875, 11210464.0625, 11210498.4375, 11213984.375, 11217146.875, 11217268.75, 11217615.625, 11221190.625, 11247639.0625, 11250285.9375, 11261528.125, 11274525.0, 11275057.8125, 11276657.8125, 11278070.3125, 11278198.4375, 11282654.6875, 11283823.4375, 11285176.5625, 11295154.6875, 11311654.6875, 11313356.25, 11313382.8125, 11328309.375, 11340393.75, 11342706.25, 11370220.3125, 11372962.5, 11375942.1875, 11376106.25, 11376457.8125, 11376471.875, 11376692.1875, 11377389.0625, 11377798.4375, 11381696.875, 11381867.1875, 11383739.0625, 11383754.6875, 11385040.625, 11398423.4375, 11399765.625, 11403062.5, 11403421.875, 11410451.5625, 11412253.125, 11427245.3125, 11428325.0, 11429437.5, 11431870.3125, 11432350.0, 11441075.0, 11448006.25, 11457337.5, 11464268.75, 11478260.9375, 11478550.0, 11518800.0, 11545570.3125, 11546340.625, 11546670.3125, 11547676.5625, 11564445.3125, 11575450.0, 11586529.6875, 11608381.25, 11627071.875, 11630285.9375, 11631070.3125, 11633210.9375, 11648265.625, 11648626.5625, 11669965.625, 11687228.125, 11690992.1875, 11698296.875, 11723846.875, 11727607.8125, 11729189.0625, 11731131.25, 11768221.875, 11774534.375, 11782801.5625, 11785482.8125, 11790621.875, 11801901.5625, 11801945.3125, 11806246.875, 11820065.625, 11830118.75, 11833698.4375, 11857993.75, 11871034.375, 11877803.125, 11900064.0625, 11900959.375, 11901259.375, 11945787.5, 12011739.0625, 12021354.6875, 12024528.125, 12091428.125, 12096204.6875, 12116448.4375, 12125778.125, 12128129.6875, 12201960.9375, 12221340.625, 12229428.125, 12229500.0, 12231250.0, 12246676.5625, 12247756.25, 12306062.5, 12306129.6875, 12368218.75, 12392229.6875, 12417943.75, 12486959.375, 12506739.0625, 12580162.5, 12874335.9375, 12919390.625, 12951609.375, 12958689.0625, 12980568.75, 13042078.125, 13047242.1875, 13075659.375, 13076093.75, 13082134.375, 13089600.0, 13091573.4375, 13095970.3125, 13118481.25, 13124289.0625, 13124437.5, 13162485.9375, 13164454.6875, 13199954.6875, 13202246.875, 13207728.125, 13216812.5, 13216825.0, 13220303.125, 13221162.5, 13225653.125, 13241565.625, 13246251.5625, 13247126.5625, 13248401.5625, 13270706.25, 13275139.0625, 13276554.6875, 13276896.875, 13295610.9375, 13296109.375, 13300303.125, 13319231.25, 13343667.1875, 13349289.0625, 13358156.25, 13431728.125, 13431731.25, 13454612.5, 13458656.25, 13535756.25, 13548509.375, 13563871.875, 13564576.5625, 13570546.875, 13603475.0, 13607520.3125, 13612145.3125, 13622476.5625, 13657795.3125, 13695270.3125, 13696123.4375, 13764425.0, 13773951.5625, 13781950.0, 13831821.875, 13843556.25, 13939207.8125, 13961896.875, 13961951.5625, 13992225.0, 14009065.625, 14012359.375, 14036701.5625, 14078362.5, 14090492.1875, 14119181.25, 14131295.3125, 14131373.4375, 14199678.125, 14269526.5625, 14271901.5625, 14309370.3125, 14385453.125, 14404089.0625, 14440412.5, 14482917.1875, 16376814.0625, 16450620.3125, 16479281.25, 16485167.1875, 16487264.0625, 16490240.625, 16496309.375, 16501162.5, 16504417.1875, 16512504.6875, 16512860.9375, 16514192.1875, 16519545.3125, 16522601.5625, 16524600.0, 16534581.25, 16535800.0, 16542685.9375, 16543007.8125, 16544056.25, 16544190.625, 16546353.125, 16548454.6875, 16549579.6875, 16553003.125, 16553054.6875, 16560584.375, 16561125.0, 16561571.875, 16572376.5625, 16575950.0, 16577345.3125, 16577623.4375, 16579185.9375, 16584085.9375, 16592406.25, 16593785.9375, 16594267.1875, 16595489.0625, 16597889.0625, 16598595.3125, 16599985.9375, 16600268.75, 16601259.375, 16603603.125, 16606356.25, 16606439.0625, 16607496.875, 16608760.9375, 16611040.625, 16611479.6875, 16611943.75, 16612875.0, 16613601.5625, 16613814.0625, 16614276.5625, 16614471.875, 16614645.3125, 16615387.5, 16616432.8125, 16617043.75, 16618423.4375, 16618953.125, 16619037.5, 16620010.9375, 16620618.75, 16621001.5625, 16621301.5625, 16621390.625, 16622545.3125, 16623478.125, 16623656.25, 16627654.6875, 16629901.5625, 16629948.4375, 16629989.0625, 16631237.5, 16631606.25, 16631650.0, 16632110.9375, 16632318.75, 16633273.4375, 16634376.5625, 16636225.0, 16636392.1875, 16636432.8125, 16636770.3125, 16637015.625, 16637307.8125, 16637831.25, 16638582.8125, 16639040.625, 16640132.8125, 16640775.0, 16640887.5, 16640889.0625, 16641151.5625, 16641934.375, 16642368.75, 16642443.75, 16643667.1875, 16644034.375, 16645079.6875, 16646093.75, 16646835.9375, 16648281.25, 16648781.25, 16649765.625, 16652959.375, 16654107.8125, 16654631.25, 16655003.125, 16655096.875, 16655204.6875, 16655300.0, 16655353.125, 16655392.1875, 16655815.625, 16656456.25, 16656507.8125, 16656867.1875, 16657771.875, 16657873.4375, 16658703.125, 16659017.1875, 16659034.375, 16660032.8125, 16660081.25, ...], [6.682810132957332, 50.186707722936596, 103.37294683690209, 54.81334462066924, 28.559242308890845, 23.09259659031479, 50.61992252266889, 25.15898977952719, 93.5952793689849, 84.57911875274124, 17.57038647369158, 14.357600479142768, 20.433963854679433, 83.30349614967737, 72.62095875338923, 10.808277448059341, 15.37120259178871, 122.39516571128868, 5.1991587044325325, 7.49428302793941, 66.25501515138457, 73.71261257370227, 117.52329828417618, 25.19910420038672, 7.910612198841862, 5.336912967324095, 33.16979873637665, 66.36224462364984, 20.69687833492261, 13.231495689478425, 46.39389656336577, 20.019404291949453, 106.56905215878716, 90.00095779237184, 134.13984371760858, 40.39808299868913, 20.0674894572842, 28.05392450985255, 157.833103652448, 19.102864324211783, 8.831271889961545, 77.46656577196957, 110.98539266416032, 10.892573220340322, 5.3229901837787486, 175.24007268783092, 13.431489276024038, 28.227226741840965, 101.99098137497995, 53.31954017070584, 7.988222625769535, 122.52996474222792, 8.430662398399685, 6.234616124015867, 70.26265948356921, 16.04964993697003, 71.83409935174775, 6.317292201601204, 75.63522700236638, 62.18722039193707, 7.886941612414923, 43.50340016181954, 48.98606813778761, 49.593812292038, 9.016397274515388, 5.430632229923034, 60.081985428142644, 42.71204911775584, 52.72564880936051, 139.67486276420183, 66.84084153744635, 34.240788652378164, 32.37759355024815, 102.5283333453991, 45.44281545583649, 29.5995379830287, 31.818535572591898, 79.55519859946612, 190.29704449424779, 118.92625359012169, 82.11631216007311, 5.033671475096316, 13.409463483454815, 94.39643335490733, 20.3522843663816, 43.212915559509284, 17.902365156061595, 36.91519889537228, 50.43874345062904, 83.72161167791589, 54.904900854711755, 20.203982619673038, 23.6980407195462, 5.28801999457999, 13.06339855752468, 59.68550904070481, 9.416459602634426, 12.739985454625792, 26.250284309274466, 48.9897638120081, 15.665219669428607, 21.06323057391394, 33.173736486803016, 71.21909976360652, 41.87318998992714, 146.36314544302633, 10.448589020724071, 20.72555463469658, 33.70449983689158, 8.262977629478314, 60.30951820272921, 13.576653053312182, 8.83896895371378, 10.88773520230747, 63.98188296172942, 27.602478354227596, 10.004848290169566, 87.87178108318524, 18.219069425464607, 21.46714297499537, 58.06743350472689, 25.537244176697172, 33.01948532050863, 77.34832193558523, 55.563957249155514, 5.9691160005656565, 30.609912400671643, 6.750543629292425, 35.54067658659045, 7.365449645444949, 168.3001931018148, 65.7977138237367, 24.265315089912527, 48.827572701011455, 26.945712735671126, 58.38951474354027, 18.86820233985255, 123.62499732452083, 55.17114464019127, 53.29603013555679, 63.12423354384227, 13.136970065486747, 17.816626042519466, 17.166132591268973, 107.98313355886073, 5.793088871112914, 24.324540652390628, 40.42826626978214, 10.755176931067068, 26.895198077363307, 81.35052040973872, 5.882267837332508, 16.04923891050121, 35.5451707288566, 87.26352440891401, 9.93496671205617, 20.637332706266125, 5.470547725941623, 26.469614136979203, 16.416404229237692, 10.26862909154517, 96.52457523626053, 74.10262562203035, 44.385287985118794, 48.36104890114375, 182.7749030148854, 16.29640060072051, 115.69197555141051, 8.949746455339751, 45.18197694950622, 18.80186463041666, 244.73547082182907, 16.981169669572374, 31.99179628403284, 28.701009956409656, 96.70855431952965, 37.552584985727584, 72.34174073313648, 97.79573423790391, 14.887534478899765, 57.271800158672725, 8.254977161568641, 65.50279038492002, 55.91742476238147, 5.698367661036394, 63.47878733983836, 5.126347664958837, 16.28781623224736, 10.416169430893614, 91.79346067240755, 5.221858587636369, 46.402059465016336, 70.91132593239438, 8.393645084926698, 24.106829363944613, 81.51198590039564, 76.19808560921226, 60.253832547858785, 17.313583592672604, 9.92560874429905, 18.61594993298138, 75.37807689499306, 18.064947252612566, 7.091306401239255, 21.77520563608896, 28.912371721404668, 48.81530451160957, 15.291018204822297, 6.20233854634454, 142.369920547543, 8.416445782780716, 17.559465941362063, 16.167721699687686, 11.345774326655746, 16.40572765828897, 86.7174596334024, 8.253663219880986, 24.956712146878584, 22.21870259365289, 46.65191023006704, 15.624970954751637, 37.19738253789212, 35.64980663777734, 139.91593631504787, 19.503017588550385, 12.067469461529855, 63.07888768096945, 156.81289580144113, 19.747457187966056, 29.452728298978577, 53.390565364466276, 155.5107426092718, 17.242407914017633, 10.660424992119601, 108.36918788248451, 18.627507041662575, 19.91189325937808, 82.60950738097311, 78.60960754999594, 72.78472547321441, 6.305967658148055, 5.863781929269014, 50.005364331093276, 43.34280473253328, 37.77649758062045, 74.07340340159288, 49.578591008925244, 15.342525999331013, 8.174275900787562, 153.21159704248836, 61.911219930208, 40.80801002857029, 5.324476797623879, 75.99522670850813, 42.953521805631766, 25.9136631279205, 6.656971838351515, 36.89389028517451, 12.913699233717546, 121.58170207524344, 24.87906206678081, 8.596333251486913, 56.553999050308306, 7.023092465156036, 46.381293636098185, 39.50532014421575, 8.557869226137464, 36.51598983470717, 5.302919374263911, 68.38596681215017, 52.209065335596904, 145.14354063164524, 30.293109354726106, 60.240586662340014, 9.162372478008498, 20.3111739021322, 48.49404586894006, 37.07312070623013, 37.159480711097224, 9.289572033042093, 95.31852553768265, 30.76422889909032, 7.401993094487432, 7.1220229993874336, 28.856499878360534, 56.798200545338375, 11.689121711447461, 11.005519846297005, 31.53678998379549, 5.825166780632397, 38.41290781631337, 82.68821055944505, 29.24855381571178, 11.186115282305977, 61.903481617176205, 5.504259185219403, 10.171953048706337, 115.45757543582293, 35.27799833931624, 89.81097498853063, 72.46832406996558, 22.105242924523886, 19.784154263392686, 104.6619973669067, 37.08537432343746, 37.956454842730864, 38.6646898447496, 58.384431973176284, 15.911193951789055, 60.69435737694624, 8.256398501898968, 5.2797929861581325, 17.05002621570226, 6.9901377130719, 11.840517440126037, 9.664926059944218, 69.67982318302913, 144.18544147108813, 78.16154745769407, 25.82465373734297, 22.2594858456616, 50.23045734043941, 14.228101424687816, 56.182636081542256, 10.345094808293556, 32.20707468923453, 15.11368670381474, 32.87044448254871, 5.86947061988454, 53.11702631844384, 6.8355104231872925, 60.43972692850991, 6.095684190877604, 63.746085913407434, 75.3906439785622, 8.972479901852981, 10.745483672564088, 38.28731571087646, 11.31669434685261, 27.546990404374984, 37.49602254078952, 99.67005513435267, 8.663369328880977, 16.73975436994843, 67.14924744159563, 21.70563815801441, 118.99721240854045, 20.6399413648862, 6.514281738869394, 43.469364376345276, 44.94598354319331, 44.9421653321148, 48.12250577943426, 8.86414496159094, 87.97863625376007, 6.3240694618800575, 49.500504601311576, 66.93156622000154, 19.627338529654494, 25.203547867327284, 88.57467016367907, 64.6511363322523, 37.106151951659385, 72.58475049512064, 14.399039601529438, 91.31325025084902, 70.84614571047065, 12.60571023922724, 67.43858033793002, 36.61782928927578, 134.04847477866943, 37.51596042136073, 68.08184316310233, 5.81937455478984, 14.865586756383028, 117.0835642005986, 151.81290108290438, 5.641088966667447, 13.482637221581577, 39.81293600989747, 12.398345613599663, 26.955724480879894, 14.40153314033839, 21.923545813310415, 92.64613171353984, 139.16300006520288, 55.648763319910685, 21.630670548668096, 5.939502960847521, 21.74730070763605, 22.140325730464227, 150.05236098320614, 144.90239151062826, 5.762116167567895, 13.504094710152463, 26.314760278930866, 77.50776808200266, 23.911130167739543, 47.083429823625316, 72.21300030823272, 43.540078492654445, 96.5918013126324, 73.48553818274821, 16.685187577809977, 5.5669511546172865, 13.814272947084067, 75.38029170434974, 54.68813197955491, 38.28796315516141, 12.807156144528573, 6.487187076649916, 15.56208278500592, 98.64924331939639, 10.438508613565874, 8.932598593104196, 68.93724163310043, 84.79239706760066, 38.48202638812381, 112.20859117024116, 92.83120357526045, 50.031318777435416, 6.5858335347339905, 5.4508136388500095, 66.74720422178542, 99.45021137282222, 39.61020529687089, 12.953493515154083, 18.291597824261657, 42.73788846269994, 31.348818142367076, 61.52538512615237, 5.611888949861803, 10.564022733956845, 19.528080081034762, 72.22704023641383, 77.18085976136786, 21.257098440469246, 105.70224591997761, 25.292184041182168, 8.254527264836852, 140.47737085480978, 66.93769078034845, 216.71036474145333, 108.23276062262475, 9.340838387559806, 74.44531358307856, 82.4909907164047, 6.633499569013349, 19.29525281607495, 48.79720780575686, 69.84531858636208, 6.228807263249651, 81.52263123447469, 49.19779641474322, 33.68803255512549, 7.145247175891777, 8.827572009576587, 91.33261762141052, 128.372910238519, 36.24913704467685, 16.093755115641724, 8.405185781533492, 14.440342339629495, 29.14822618974138, 21.949179131813278, 21.09195459237271, 46.47120656369686, 32.75222158378785, 22.78297719749695, 27.86462287117818, 172.05762415609607, 73.92484712557996, 80.87595103292534, 25.12316392463473, 154.3057896766912, 40.34606242737654, 15.301833948745923, 14.9027806697806, 35.9313084089023, 35.98745388075194, 16.510081193286197, 11.638084888295388, 43.362797034167656, 10.091746444999197, 19.212703903113226, 24.676905215625602, 86.07129862470289, 6.582689490221744, 76.4494571534625, 111.64401509297625, 57.89696306864929, 54.708879108155315, 11.527956722132679, 34.14265026048807, 64.57243245795244, 161.81475581594498, 5.925568280577239, 28.533677299505307, 29.339956073481584, 13.004187228280864, 41.64604244567732, 68.51385656685804, 10.37865838226159, 11.810564546204667, 61.33006689586457, 66.65874504828496, 31.08116329638111, 49.96147297875291, 20.529740374481477, 21.04307813046983, 25.202750653567012, 15.633652396388928, 33.87518939293516, 12.432802686263726, 82.30860860864723, 80.13598094225004, 70.94075174653568, 18.104652114552504, 17.291494836984633, 97.58095439748543, 54.70238459131728, 23.550295082901386, 117.72425040514801, 32.86664554253368, 71.34030916750699, 32.189971246846476, 24.196027564664696, 8.579662361410666, 34.10992648203749, 16.611107135155777, 9.50480151906636, 16.257096970836326, 75.85797631589149, 6.080640162663385, 7.323772080506524, 8.38980018627588, 69.3047518304098, 89.65837938870592, 18.852943942925382, 15.590128214044757, 6.890201424826199, 26.789466821519028, 23.488422414047776, 11.127526557349706, 41.89637412300472, 24.344195873014012, 19.21308996239407, 135.14192298109313, 6.4435166650979205, 5.507436476282665, 49.05222269466578, 202.65710911424432, 50.93558631661318, 21.25095294559731, 77.97249649224405, 10.724957808168647, 5.113299519066735, 19.415948392751975, 16.888350585884318, 11.415119080641448, 5.264544819068254, 11.076382504943616, 24.13107807351913, 95.61182301122159, 30.45079490022475, 11.979648214767561, 56.2175192552542, 6.572643203881592, 50.46005989781677, 8.934128947661918, 79.7902711980043, 70.02174608275453, 20.203588072088507, 99.5806494465559, 13.894470086661906, 55.84244180314184, 12.579072028980645, 25.100214854752515, 76.57556982991952, 57.28992319834932, 94.0379001809403, 46.878613963740165, 26.553753069004024, 26.495483941284544, 58.77756085590163, 22.62735501274259, 5.775208887698104, 12.482098083612065, 50.285323737487126, 15.51025597007748, 36.12556195352068, 100.42360332579868, 196.7166575642744, 271.3707524712404, 36.41665462065059, 27.315800255177226, 58.44173210321345, 26.252013219958, 10.11470629279823, 34.78965604470649, 119.22306597566282, 27.32528432924633, 76.64480274559148, 13.04639179330886, 11.520097539094166, 47.71455620750904, 68.12660203235521, 52.7620306892066, 77.39986767596211, 40.96740311269531, 26.22819457513517, 20.464365157326874, 121.42310603980447, 25.35751711784634, 17.22172393631718, 25.797791672188858, 59.043434758580375, 89.04228462724109, 5.30038289880568, 9.186655148552047, 7.765325285986178, 111.28197613611533, 71.22282816849469, 32.00890037556992, 27.268330191109236, 64.55067687898362, 40.80992130779908, 12.460588598941044, 24.351944110023044, 37.984288908547605, 35.36353723899256, 42.348138681939886, 81.77180682849654, 12.562197801097179, 45.95230458400236, 32.69046385731889, 11.149848547311427, 133.65615606708863, 220.31269257530525, 87.64794393388519, 5.577124588434752, 27.56825445914232, 46.35859040801369, 19.280387732409263, 5.504945298722883, 82.01348507988266, 12.638166068548658, 24.15232809890446, 35.25813846022936, 34.00321711753516, 66.72069155031912, 13.061344904137705, 68.8332446897879, 134.54037423895394, 24.126143815641825, 61.61428242596933, 12.848435496917592, 9.458390123677672, 10.401775215876537, 15.18296385866184, 36.307392987839, 75.52657037805531, 59.04776452549141, 19.701978357127086, 9.062567867052552, 20.533719125324282, 109.49608075784923, 28.360618630965472, 46.52094870438593, 74.33387425869479, 15.257014960516278, 45.39288013279052, 128.44145778667888, 109.5448014695453, 29.399214957656365, 86.88221514217402, 11.874917467359557, 95.16465121779098, 23.567633660297183, 61.03401147835187, 7.915001137739958, 21.639062692500676, 5.287600825389846, 63.42295208387288, 26.399611928109245, 6.525217633934417, 18.366306220011992, 39.60515875897267, 64.27804500791426, 206.78098323491122, 97.76720105716862, 28.258938032255962, 75.14350926537915, 68.98393016812138, 9.782823091936923, 15.181638047665583, 20.017686927957445, 54.33801567794557, 69.84792137874632, 16.646837969454946, 84.63042437766181, 38.31659967207161, 7.059498960755079, 14.84692631034505, 320.4073205307691, 33.52637275252303, 53.21785476079299, 19.44004131969818, 6.883201520559231, 69.59233748521191, 9.121886789474663, 20.25923015678573, 25.506605028600077, 20.910445003947682, 76.77772882527997, 24.967126421543917, 70.50800268466442, 37.281996024698536, 21.09850129464462, 14.083224799046084, 57.81070994937146, 10.891731299895302, 53.94655316256711, 10.294472515711657, 45.67679293009863, 28.58388850194526, 44.368210449023834, 125.508813734538, 26.465485616023628, 58.507789970819296, 32.35970639591447, 33.08300324437216, 97.2542496643349, 46.24469971176733, 74.44983993081635, 12.931835063550015, 81.21389943508258, 119.04130627518188, 105.11875953132805, 14.400364033070964, 56.15362124066834, 109.63914847204607, 26.825350928628524, 34.6916557021589, 64.50642638045593, 6.354924076626135, 106.82078089945949, 62.56257562080654, 30.224849471257258, 58.98002965158444, 54.450448839642284, 27.278390432672634, 19.270317900864757, 9.040061462951055, 102.00146226944034, 32.974682615685595, 21.360694216858377, 145.54278948798054, 62.66511822388223, 125.33956941575079, 65.53774369743746, 22.196527506699308, 11.124788868129954, 15.436844693001207, 85.17838824913636, 5.336127306281732, 18.333898243814645, 28.914297944565707, 75.68663599660056, 31.321208500610297, 15.053078116682213, 11.15926659691567, 14.065156705734308, 11.923211244847938, 147.36604636968227, 17.790165798903114, 15.61615723349038, 33.40144667768452, 44.56785828749041, 34.38446558879032, 40.72587266396132, 8.844961071977783, 86.51105603842134, 5.1159167301270685, 119.89847880069654, 44.42105723890094, 14.02180297291659, 38.08272656566429, 98.03062227107009, 30.9037644182997, 29.32887505743901, 50.63482528444109, 67.71344403350508, 90.6704920168327, 69.80489475173802, 174.87666006001504, 8.68303961778839, 40.588291329680935, 183.3846212945784, 67.48966398675927, 10.280253024878101, 42.25444197285046, 14.794978626267449, 14.792191952133484, 36.62518459469573, 54.334478478189254, 34.5665537135755, 34.9199073567743, 84.02688051047065, 15.059197314762715, 30.711400849915538, 48.87543366023361, 10.55340980154115, 28.427015487189742, 28.55057808859783, 73.27303648803901, 68.36382932520256, 98.31016703100713, 122.1110981741876, 35.344662229903406, 82.96908716293788, 85.25033484651209, 15.212363515931212, 23.689197428477147, 97.56688352032191, 38.69140022358581, 6.635443507255891, 110.96443344959516, 35.3556293009456, 22.16175414404239, 53.74447924369611, 16.050890835274387, 10.996010900036712, 17.00553342901917, 11.083844967780289, 26.252485021956744, 11.93512356665424, 6.006133253920451, 15.967191776944473, 84.34404974915624, 23.601502462911103, 112.37106875532751, 50.17732320269789, 7.799034377077868, 23.62632402987131, 94.10481530064042, 15.628825265632644, 74.68244239810346, 49.047902552216186, 27.370981825261318, 17.28134806207565, 40.966768591367256, 14.4969101334156, 34.31372938360136, 5.632855178017286, 12.678418987263838, 81.38438096021832, 10.023006216480487, 87.2912009054675, 19.284886668540846, 66.75031978493632, 122.10254441701498, 157.36590751411768, 5.0382958988179976, 28.70394428077021, 6.930355186995535, 8.85288442506002, 12.594180314150076, 58.05221028143656, 5.97544090435121, 53.78096282865921, 36.51017629771299, 68.69428858412005, 86.486754305432, 6.062628855101086, 7.789055602689711, 23.628751142081207, 48.93802578502577, 86.2984159552658, 35.251509265989505, 6.679319027383609, 5.592891392459602, 37.10666645146718, 64.40658315799871, 13.214604897422566, 19.173924904682792, 14.211302239927807, 32.711199298430095, 45.55492512777305, 84.78583743620379, 9.619381788141242, 86.82337825144761, 19.51128532995831, 88.1674254740548, 7.531661297536384, 86.58123935036802, 19.35015175141752, 5.46625736169059, 40.77373753404133, 27.233915379583166, 43.20249300465742, 74.0815747062218, 22.253805043627963, 36.558320262480194, 44.27977304313396, 25.756635788198317, 89.3719617566916, 36.16715540741287, 9.457029522233391, 107.90377995611541, 37.694622257424406, 26.618017462663367, 62.225724963638584, 21.051733829439492, 10.002025637857434, 8.172491633851484, 21.483664138515767, 19.913316297484105, 36.871161740308956, 42.111096435562075, 17.784166547801558, 58.99329079312026, 9.957312572074867, 12.30129586005017, 127.75841918344169, 45.86824168179907, 38.08586049612596, 61.09038084920098, 47.030401179274435, 91.33057985773873, 22.542627833294638, 38.0362557142452, 5.401107587570608, 68.38953715722748, 25.494636807644532, 41.23013744473186, 18.292298124440034, 31.367851453489955, 167.35524409735925, 64.25972114166257, 7.3968906358471465, 59.53499938841614, 24.908976250255325, 34.37309466911278, 11.87034894206268, 41.691769472701864, 34.68078978125121, 5.368583690896816, 114.67136844270615, 36.460645425622914, 57.5478349766803, 9.903641627119255, 12.936277807635069, 42.21189992671354, 30.412981694259884, 75.37863971064054, 13.172047528860949, 85.55423282217127, 82.14304817475727, 13.001471015054001, 6.974490685268887, 9.425335920388402, 121.87442890641262, 22.457321749919643, 72.73134254340255, 109.45328931850234, 24.126158384959513, 27.0157851124751, 35.461651832822916, 23.553986283554945, 67.05079397853102, 16.291619718211717, 150.70614097285574, 18.272168698442627, 6.277658217525056, 19.341635959635994, 29.665083191941267, 14.537638297339178, 24.433568468222006, 15.087990887732253, 60.680784541914754, 15.526014657995448, 43.41248242697165, 30.862568046014452, 22.020577870548014, 74.49215001555515, 8.785132775193091, 8.7804651593914, 7.17048215984453, 61.60464463143898, 14.2443965585629, 5.56936812003458, 109.96029701461529, 8.556506691399125, 119.30946271338192, 9.491662033816239, 103.99728287156763, 35.36904824728015, 17.92820107409759, 19.11232536726792, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)