script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 44395 #test discharge for which the notebook will definitely work
shot_no = 45385
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([7768065.22783264, 7803576.5625, 8005486.3297968125, 8043797.865091135, 8072570.076466863, 8165841.0157264, 8232867.7858106205, 8318327.521593642, 8325374.515566737, 8335221.25576869, 8350859.375, 8358943.75, 8401742.812919375, 8408636.628915438, 8423789.528058201, 8424398.4375, 8424412.004916199, 8428621.124222884, 8464854.307674287, 8465722.832917865, 8582740.518722964, 8591651.272028795, 8603380.041297918, 8621087.5, 8653268.9236014, 8653535.325758517, 8654208.773894802, 8711537.80644389, 8724146.875, 8727312.82755794, 8796870.3125, 8798266.741389083, 8824542.1875, 8837681.091839585, 8849769.376704734, 8854178.602114294, 8857055.059916137, 8863270.3125, 8883205.898953574, 8884421.749519615, 8888584.32439466, 8888615.682773694, 8892803.125, 8897309.375, 8898634.29597958, 8899867.1875, 8903120.3125, 8903742.07193553, 8921929.6875, 8939699.995083751, 8940966.653276913, 8952916.458275914, 8953654.511794215, 8954752.6283042, 8955260.855007514, 8955441.11503621, 8957190.649408191, 8957408.56024483, 8957558.138508888, 8962928.58704666, 8963471.641356349, 8964576.640464155, 8965212.091380166, 8969950.0, 8991425.0, 8993778.831351032, 9013654.6875, 9023810.603574988, 9025598.24805322, 9027535.508260535, 9027745.831293952, 9027787.284423098, 9031836.488393255, 9032775.0, 9034548.536008913, 9036289.0625, 9037337.5, 9046967.988629488, 9055886.319155902, 9059606.25, 9066564.676418152, 9066602.864486326, 9070039.0625, 9070801.056315018, 9083065.72713405, 9089125.0, 9089615.625, 9093682.926774425, 9094923.069076275, 9095089.749294141, 9113634.375, 9114328.685653187, 9121931.412788706, 9128991.825316483, 9129800.979738137, 9130133.812976757, 9130915.91885765, 9131985.175280888, 9132583.630456699, 9132643.539851114, 9133594.653640322, 9141753.70087579, 9147100.813834904, 9155836.606186923, 9167103.986388497, 9173852.8171207, 9176428.433039956, 9179625.31442743, 9182385.9375, 9188408.524156876, 9213059.375, 9214121.875, 9225890.040601956, 9232924.331752187, 9244751.058366934, 9254906.084358511, 9255219.843378663, 9279659.53977122, 9289516.53459878, 9291840.454123143, 9295209.375, 9313360.9375, 9318735.085870655, 9322650.85983261, 9322683.35647073, 9324226.951622454, 9324989.555777477, 9329148.874704698, 9329983.503464103, 9333009.880956404, 9333017.071073966, 9336264.472117359, 9344653.751743387, 9347242.837077348, 9351710.9375, 9352010.601604331, 9353131.679030107, 9353660.837918915, 9353662.523328241, 9353765.625, 9355095.27319702, 9356547.398916237, 9358232.291818477, 9361369.85200461, 9362903.125, 9365448.4375, 9366377.683587763, 9367011.989725174, 9367449.398684314, 9371661.72396272, 9372227.448372696, 9373705.743420258, 9373720.546040554, 9374398.22421727, 9376004.418294534, 9377269.016351828, 9379171.685280705, 9379682.763572412, 9380256.238072762, 9382018.981536163, 9383396.849433925, 9386822.365522293, 9388609.344242947, 9391608.781129764, 9393442.11485886, 9395293.75, 9402626.5625, 9404787.951928617, 9418829.6875, 9430409.375, 9431006.43943256, 9433313.42994943, 9434073.751678195, 9435296.875, 9435463.689031128, 9436283.990726532, 9436410.224220369, 9436636.957037678, 9436736.987941245, 9437062.39136061, 9437212.5, 9437424.050166799, 9437622.337868381, 9438492.1875, 9438523.383809395, 9443400.0, 9444583.021609858, 9445618.559048979, 9448467.1875, 9448853.05758704, 9449532.8125, 9449776.950188523, 9450380.789676988, 9456810.868156666, 9456835.91072642, 9456989.535579612, 9457256.25, 9457390.731336223, 9457526.5625, 9457799.998918334, 9457811.98747032, 9457891.104698392, 9457943.75, 9458218.75, 9458232.689313566, 9458964.0625, 9459456.254647665, 9459766.46688873, 9459889.28589379, 9461222.093831304, 9461825.0, 9464471.321362767, 9477671.875, 9482918.46695795, 9485767.1875, 9492148.692092273, 9492270.109645246, 9493010.899968894, 9493984.375, 9494552.54983405, 9495985.9375, 9497523.22384429, 9497680.457295137, 9499107.354860468, 9500190.625, 9501600.555501163, 9502810.9375, 9503436.78066352, 9505783.319620201, 9506930.12832493, 9508365.625, 9514335.9375, 9517675.0, 9520986.551586093, 9522506.419407913, 9523585.301088838, 9524102.951438142, 9525028.574188802, 9525623.4375, 9526455.253034422, 9526484.398170326, 9527412.5, 9529184.017439496, 9532212.812909713, 9538317.264546102, 9541926.721133687, 9541967.625250846, 9542446.87890451, 9542946.293291561, 9543898.4375, 9552839.827389922, 9552846.138655819, 9555084.375, 9555523.4375, 9557177.504206972, 9557244.344150333, 9557589.346330207, 9557941.762944372, 9558169.38399877, 9558291.64789293, 9558784.303985486, 9560130.944689708, 9563040.82311876, 9563075.0, 9563193.693342246, 9565157.8125, 9566739.0625, 9566973.4375, 9567774.59435969, 9568589.0625, 9570020.3125, 9570677.602670867, 9572006.044089172, 9574418.75, 9574636.49948738, 9574746.060621403, 9575178.125, 9575216.882796835, 9575364.0625, 9575501.420498181, 9575502.709803382, 9575856.718262354, 9576095.3125, 9576426.5625, 9576615.86995275, 9576631.25, 9577624.84315593, 9577723.925858345, 9577892.432148138, 9580930.755997604, 9581112.5, 9582502.223506572, 9582522.177321587, 9583521.432395846, 9583529.31151404, 9584352.356928933, 9584709.24881216, 9585340.625, 9586407.275604408, 9588317.1875, 9588542.1875, 9588571.422193455, 9592669.607238218, 9597198.411614576, 9599064.918318665, 9600630.124088595, 9602384.375, 9606914.0625, 9611215.625, 9612670.58563081, 9613283.044487113, 9613329.6875, 9615550.580101412, 9615585.463400804, 9615632.27171171, 9616391.170509322, 9618587.948415212, 9618753.111805461, 9619187.5, 9620185.9375, 9623152.88252468, 9624834.62997247, 9625196.959189959, 9625444.962319989, 9626591.178982751, 9626643.75, 9627168.75, 9627462.412819829, 9627835.484670756, 9627836.736104187, 9628075.163925376, 9628183.143333422, 9628892.061647318, 9629020.766528958, 9629029.290457359, 9630000.99670671, 9630423.4375, 9630441.584899789, 9631103.125, 9632064.55770202, 9635372.588127235, 9638048.77962591, 9638991.900897134, 9639335.989101106, 9639353.369302463, 9645909.375, 9646751.249218853, 9646770.569919374, 9647132.914366014, 9647402.558632135, 9647415.625, 9647679.6875, 9647903.125, 9647995.3125, 9648015.625, 9649904.783660974, 9650314.06226746, 9650436.185954282, 9652562.355037974, 9654668.380667996, 9655087.5, 9655821.875, 9658587.48555007, 9659379.880272374, 9660975.77689322, 9663238.40276202, 9664857.670698866, 9664863.852457397, 9666659.815925594, 9667600.0, 9667638.192053327, 9668608.59499672, 9669223.4375, 9669415.666238729, 9669865.726780787, 9672186.251003278, 9672761.780076265, 9672882.8125, 9673329.6875, 9674667.1875, 9675322.93210178, 9676611.799455576, 9676896.888516575, 9677669.909366645, 9677977.830267955, 9686014.938542917, 9690610.449804716, 9690988.565800844, 9691856.203979956, 9691890.133965593, 9692668.087683849, 9692900.613061942, 9692948.92378967, 9693759.68768736, 9693985.56069646, 9694908.800470456, 9694935.26760575, 9694970.267753566, 9695334.302918198, 9696562.5, 9696606.199518116, 9696684.375, 9697515.854988376, 9697970.238775298, 9698312.43821405, 9698449.058425905, 9700171.875, 9700935.82383623, 9703476.5625, 9708139.379774235, 9709435.832383428, 9710081.783232892, 9710698.7993984, 9711518.544842703, 9711798.649557719, 9713545.551168762, 9713567.1875, 9713572.87181235, 9713599.686891962, 9714952.20653301, 9715692.123808362, 9719687.01332897, 9722648.692027975, 9723715.072274122, 9723726.897216983, 9725625.959612258, 9725651.316179188, 9726108.536511108, 9726202.939732853, 9726665.424578447, 9727585.895367775, 9732004.6875, 9732104.583745444, 9732117.686685463, 9732147.119067356, 9732178.125, 9732542.1875, 9732562.416479187, 9732649.149161506, 9732755.942138257, 9732784.375, 9733030.381861495, 9733556.25, 9736487.5, 9736649.087514818, 9737216.721023455, 9737421.809429184, 9743329.376695782, 9743329.6875, 9744192.402021756, 9744214.388651488, 9745540.124036385, 9745623.372383576, 9745706.015644962, 9745800.0, 9745843.334720414, 9748718.75, 9752365.093049966, 9752912.6700136, 9754089.176898677, 9754250.569934823, 9754425.414222872, 9754790.625, 9755623.4375, 9762001.5625, 9762028.125, 9762052.106975336, 9762282.872167628, 9762680.886436086, 9762947.41434412, 9763077.285120472, 9763322.787774945, 9764220.472286997, 9764572.53373356, 9764661.75203998, 9764797.476529332, 9765020.3125, 9765405.037630245, 9765447.62193903, 9767065.280417986, 9767068.75, 9768845.3125, 9775737.5, 9776807.8125, 9778896.86030448, 9781269.112287989, 9781696.180956976, 9781846.68641888, 9782930.34770964, 9789425.0, 9789900.668418078, 9790165.542822821, 9790807.630297294, 9790895.418321803, 9791172.689219425, 9791737.582023963, 9792707.232260695, 9798784.334618472, 9802108.223930214, 9803978.125, 9804046.665315242, 9810379.657467451, 9811092.1875, 9816915.634387858, 9821020.3125, 9823675.0, 9825587.5, 9827328.068517627, 9827607.8125, 9827671.437433032, 9827944.752317414, 9828048.819805061, 9828279.6875, 9828506.233968705, 9828509.265518583, 9829861.320374006, 9832060.04159491, 9832635.9375, 9833399.60398772, 9833401.314145138, 9833436.328807257, 9833742.718483021, 9834271.875, 9834492.162686372, 9834516.684490116, 9834543.75, 9834607.026783029, 9834609.213276034, 9834796.413591664, 9834810.85184191, 9835769.748346813, 9835995.3125, 9836489.039535968, 9836729.6875, 9837370.3125, 9837478.125, 9837971.875, 9838123.202489194, 9838721.15047811, 9838963.794742351, 9842461.469168259, 9842929.168161664, 9842973.89600949, 9843243.75, 9843637.548326865, 9844002.811436327, 9846428.591616675, 9846748.146472892, 9847903.125, 9850239.337173345, 9859053.2299624, 9859339.63948654, 9865956.075250087, 9871481.25, 9871548.4375, 9871845.976080408, 9871932.464855654, 9871965.380146796, 9872009.375, 9872343.75, 9872457.006276863, 9872528.125, 9872609.375, 9872616.2938735, 9872718.75, 9873624.26605241, 9873870.056540104, 9874431.515135448, 9888839.0625, 9889454.6875, 9890381.951529628, 9893655.366696097, 9910679.188370554, 9911921.657449406, 9912529.542364858, 9913282.910926767, 9913370.3125, 9914409.267217426, 9914443.75, 9919064.0625, 9920144.56515875, 9920270.80547166, 9920306.25, 9920797.687571071, 9920923.180567546, 9931123.485513415, 9931346.062526904, 9931397.837836485, 9932054.518401572, 9933476.267391592, 9934454.6875, 9935214.836537637, 9938706.36066511, 9938725.340682762, 9944163.951852012, 9945290.625, 9945407.229713554, 9946451.5625, 9946525.245880235, 9948084.566784428, 9948525.0, 9948557.519488893, 9950365.129971275, 9950374.664777767, 9950476.608446024, 9951057.739214368, 9953601.5625, 9957065.02391591, 9971253.491426136, 9971835.84725787, 9972231.732150856, 9972438.55891259, 9973207.336293137, 9990495.3125, 9991676.71484685, 9991704.352154013, 9992492.15369039, 9992652.476976516, 9993487.694646679, 9997357.8125, 9997818.04256959, 9997935.700142087, 9998000.030973377, 9998343.294923725, 9999488.112695863, 9999571.586862298, 10000355.799543036, 10002476.499988772, 10002729.6875, 10003000.59399016, 10003774.431627708, 10004029.680955598, 10007687.490182066, 10008046.875, 10014669.955253225, 10016158.611211723, 10018289.0625, 10018344.783364864, 10026326.5625, 10027247.83424893, 10029441.935269974, 10029746.04867826, 10030947.734414134, 10032225.843896346, 10036409.326199602, 10037877.974277604, 10043642.695369175, 10044913.432347238, 10046865.625, 10053542.139462238, 10054114.031917011, 10054128.125, 10055141.809739655, 10055254.6875, 10061503.075696312, 10061901.591633843, 10062552.945010806, 10064919.204640206, 10064951.511942782, 10065049.726839658, 10066347.220280731, 10067228.125, 10067399.887524333, 10067696.875, 10067886.601088304, 10068042.1875, 10068076.5625, 10068500.261618394, 10069331.168858536, 10069513.210673183, 10070363.72743713, 10072051.053618003, 10080579.314792974, 10081137.293108325, 10084300.11111109, 10085567.1875, 10085575.0, 10088137.349625764, 10088473.4375, 10088692.467909623, 10091663.129519163, 10091865.625, 10092910.982377233, 10097352.156215698, 10107885.9375, 10108505.92217936, 10110870.3125, 10111393.75, 10112448.4375, 10114621.389986431, 10114629.444838108, 10115742.32086184, 10117928.08433603, 10120615.625, 10121040.173696347, 10122160.935456648, 10124987.94054736, 10128506.25, 10128802.11038941, 10129302.844204476, 10130221.752058886, 10130410.470879378, 10130488.842878455, 10130678.73901389, 10131260.9375, 10132007.190818004, 10133165.23317976, 10136895.3125, 10137399.598270386, 10137486.804498, 10137675.0, 10140331.25, 10140530.551502354, 10141396.875, 10141839.31607322, 10142873.4375, 10144458.973757887, 10149049.89744163, 10150083.405962331, 10150108.39508432, 10150941.695364185, 10152243.205045674, 10153506.25, 10153615.625, 10156359.375, 10157959.099378236, 10161957.345327126, 10162301.061037648, 10163196.959476532, 10163579.165605005, 10163845.3125, 10164096.875, 10165331.418841701, 10169148.427191308, 10170046.875, 10170138.238599433, 10170896.875, 10173331.25, 10174808.90456538, 10175851.170908226, 10176434.325366842, 10176719.006764455, 10177039.59638698, 10177040.809011621, 10177257.8125, 10177664.844086327, 10177831.906213764, 10177875.469815046, 10178126.5625, 10178227.987166964, 10178454.22251837, 10178484.375, 10180862.5, 10182048.094738683, 10182073.81262258, 10182757.209818462, 10182872.165115617, 10182955.720428584, 10183301.5625, 10183574.304025397, 10184500.265339386, 10184568.75, 10184598.4375, 10184972.662964867, 10185028.125, 10190183.590813117, 10190621.224154161, 10190630.852064244, 10192523.4375, 10193690.625, 10194027.72802919, 10194777.030591609, 10194785.80807211, 10195210.137623293, 10199266.899240678, 10199871.818346228, 10202303.24163353, 10203575.65158858, 10209910.136013305, 10213289.0625, 10213289.11256626, 10213331.42025719, 10214573.4375, 10215328.125, 10219766.481614856, 10220673.4375, 10220870.3125, 10225652.065602502, 10228933.156073296, 10230411.622471796, 10231325.368678572, 10231791.635647563, 10231869.882975616, 10236659.785532419, 10236709.193832371, 10237234.375, 10237620.755385486, 10237850.0, 10238078.702044133, 10238131.25, 10238539.367980683, 10238845.187148742, 10238974.91538879, 10243117.1875, 10243635.499816189, 10243642.57941852, 10244380.862271952, 10244693.47203182, 10245791.292687155, 10246156.25, 10246937.673777483, 10247323.4375, 10247408.52658663, 10248421.875, 10249020.350616248, 10249666.789835393, 10249686.506020851, 10249790.375347996, 10250093.980756938, 10250349.776238158, 10250439.243915133, 10250599.144986616, 10251148.28079869, 10253911.300831566, 10256543.144847663, 10261039.886599466, 10268904.6875, 10270251.5625, 10274331.25, 10278676.090932284, 10279365.625, 10282387.193067303, 10282878.225431891, 10283260.56923671, 10285379.66060419, 10288519.743254006, 10289449.756117055, 10291124.87371316, 10291473.280923633, 10292091.498578375, 10293401.876855489, 10295374.591704922, 10297996.875, 10300968.245134046, 10302012.5, 10305895.860318648, 10306923.4375, 10307637.17480651, 10308095.0262245, 10308104.6875, 10309253.086453376, 10309304.6875, 10310816.182026645, 10311500.0, 10314873.07719881, 10314977.931152461, 10315000.0, 10315078.113848198, 10316175.0, 10316260.798730254, 10316377.87443771, 10317130.904596766, 10320067.926192276, 10320089.040205894, 10320631.573203387, 10320657.148567136, 10322385.080302348, 10322781.777503708, 10323323.932819974, 10323368.034181317, 10323940.122351395, 10325694.646945458, 10326703.125, 10326969.560613481, 10327538.66944622, 10327817.104678744, 10327870.744705522, 10328521.54948681, 10328544.823678583, 10328561.47220309, 10329348.4375, 10330476.520257441, 10331443.689349324, 10331997.909466308, 10332197.14204735, 10335543.75, 10338012.5, 10341363.934255078, 10341586.862239193, 10341833.410479302, 10342190.201357137, 10342499.536387607, 10342675.441684937, 10342864.32324665, 10343722.408065096, 10343779.901190229, 10343790.154590063, 10344314.609417379, 10344410.259609768, 10344742.086255072, 10345570.490639562, 10346776.54243351, 10355948.949690104, 10357068.67615444, 10358085.796728369, 10358091.574969934, 10359994.510815298, 10360134.604643267, 10360851.5625, 10360871.226725938, 10362318.97185758, 10362976.5625, 10363120.957921691, 10365204.6875, 10366629.975386003, 10367876.957799602, 10370730.661231546, 10372792.366702897, 10373459.375, 10373543.520432146, 10373948.4375, 10374190.189924788, 10375716.272165008, 10376185.9375, 10376360.309402581, 10376613.793853492, 10376883.724831063, 10376937.313974056, 10377079.6875, 10377751.757387863, 10377941.924649812, 10378571.99243056, 10383264.854340129, 10385600.610926112, 10388705.155919906, 10390480.869866649, 10391004.6875, 10392210.23255344, 10393453.281360716, 10394856.287696663, 10395200.0, 10395326.705538446, 10395414.0625, 10395456.562489275, 10397400.19772738, 10398688.332048718, 10404849.018248359, 10405233.971534181, 10405719.597334761, 10407051.407367703, 10407235.9375, 10408140.625, 10408574.326829644, 10408767.357294926, 10409538.845903717, 10410409.114500294, 10410922.814558761, 10411381.25, 10411635.213106394, 10413612.5, 10413626.5625, 10413895.256665152, 10413905.682435783, 10414338.172936844, 10414442.1875, 10415763.571196815, 10416576.228861185, 10416716.021010254, 10416992.1875, 10417426.587668192, 10417679.6875, 10417806.25, 10417979.6875, 10418159.516888538, 10418231.25, 10418258.52221642, 10418366.534710793, 10418540.625, 10418619.801520143, 10419456.281577459, 10419600.912508346, 10419652.138780842, 10422318.75, 10423104.073238656, 10423108.548334233, 10424448.513423586, 10424840.491390547, 10425955.370817874, 10427175.0, 10427943.370247621, 10428306.995628402, 10428500.000678038, 10432904.6875, 10440392.1875, 10440505.445981033, 10440737.360069387, 10441344.648715483, 10442147.724013112, 10442663.06036463, 10444837.488471895, ...], [57.13307791109892, 70.96501339629867, 5.1745997363929925, 53.09400932036763, 14.112212086810874, 28.369723017630143, 6.152609587303036, 8.868474647082435, 93.39548899668172, 7.98418491561956, 70.71151061552251, 123.98802720497135, 5.649606894534382, 18.448288225651144, 17.07257750174296, 63.774644662443485, 26.61018111424067, 19.3098118338382, 6.42915417557848, 37.72591112034121, 40.49614413095367, 6.442501364509156, 183.0546138648989, 66.89478474830943, 21.60458123707093, 68.11130494123503, 20.540520505147537, 41.51666430353677, 57.079890175330924, 16.35659950622461, 49.4488518633696, 22.048061185177872, 43.44167144701842, 25.749032125468958, 12.272396430461544, 55.36159835641159, 11.764389671908736, 52.6577722256674, 66.01944184451762, 111.21244237226948, 9.288976946819126, 6.496186060523202, 66.96060208070656, 41.75928087221652, 14.648638222225333, 50.6117998145178, 84.88625899927857, 26.432019810821203, 76.88759381960718, 47.009032808677745, 21.15836739027181, 98.8250993948138, 25.47983124227366, 34.260319973265794, 110.61637126756983, 7.790642755532073, 24.71080711616521, 10.055292099691462, 17.567427052493745, 94.30632910707595, 14.11995712195959, 5.401462915487906, 13.58348170074086, 153.5636976525138, 34.7469965632427, 18.549813652034633, 98.90572431037717, 68.59713240335292, 37.12117257051447, 29.975403542164344, 56.33697137961204, 23.942767777981096, 22.354724072747267, 88.29178442003737, 11.285254557069267, 37.331121566225676, 92.62305521990632, 19.22975154562316, 8.499270392287809, 96.12017431019041, 32.98775197424608, 5.52056917683905, 66.42170714207795, 127.53089159188497, 8.341336224037844, 77.17867059567688, 132.31526003429713, 9.429934678104999, 141.87910467415733, 18.41716790064387, 221.38233457277087, 19.110816885195366, 6.28798698626563, 8.103905625079697, 20.705410700342195, 10.349846852554439, 210.5388972736777, 19.223375221049835, 95.90598375324299, 24.97057857615943, 27.01011099664686, 17.709343389073442, 5.76058714692817, 43.74690579944739, 7.9476308483659945, 57.94457167791046, 16.26178211777035, 11.657518131452209, 104.09818276626292, 7.3219950799021225, 77.33567045427722, 85.95007958228304, 13.100694014938115, 42.4924900509693, 84.2655195018868, 25.63341526914814, 21.8067628504494, 26.33823263833052, 20.092358166036032, 35.67360673981373, 36.07273723237494, 67.68809643348382, 32.912670022553854, 10.182288461956773, 50.275568521553495, 55.047073588229374, 17.22680307922516, 16.918595057158317, 52.238301580973385, 17.298598479592307, 20.851868957702955, 92.81048782643616, 17.056370692878637, 42.94479541815418, 62.49659065093165, 23.302803359455833, 22.0814682761913, 9.248597606398139, 30.93209120241047, 161.7612036019649, 27.770225971794684, 15.77514807443194, 8.029174294478219, 8.057200081192269, 68.83782485690116, 56.57340392512496, 13.48942021722307, 13.297993520581603, 101.5807838465446, 40.061639949554376, 8.818073083721588, 66.90919355323733, 23.487384145391793, 24.925458528217423, 29.860300090624165, 5.962941610510798, 34.33698626555258, 7.585636752488738, 85.88863499888825, 34.841620802417324, 14.844950753683161, 95.5532685301957, 78.94196544888132, 10.311069665840964, 23.371086462388245, 77.27854111083778, 93.25054130590719, 16.998090184657237, 31.651740378714198, 68.74154050567492, 7.172154258337531, 129.30946172206868, 11.657065435193848, 48.333978771120464, 86.55644525484838, 9.026323613039438, 90.40869866925604, 57.96505392000982, 21.373645272588107, 75.66204723883976, 43.12687890421802, 6.347837183522163, 38.25417408058654, 30.512607496571228, 7.583933456712861, 34.244372706513005, 126.06137822861157, 10.841803120052978, 59.68666905814974, 26.625003265722093, 56.069817957855754, 107.05795408425554, 61.234489782692336, 32.8571048602612, 28.005746110042686, 35.76338039755764, 156.58637031969272, 5.82189035666406, 51.349997444925144, 14.937388219048241, 10.411119817728311, 90.21671583791546, 58.463063254944494, 77.83160577885212, 7.559282724359356, 45.19601540911502, 37.75428725230982, 19.542580851070294, 15.867313572707783, 95.38725263232922, 47.00352676876094, 20.35305661897565, 77.94390659287741, 67.6736182461044, 46.10567668519543, 16.00963076019277, 41.11698447860664, 51.047888652577925, 44.712490429846106, 119.42350958588037, 46.15760338542847, 9.15705110794603, 164.8897344608058, 13.443578183722362, 84.628934434021, 72.7981557127084, 37.855457888408, 12.762961697388308, 12.025110287834698, 185.3054708500326, 70.8217698962827, 96.41574845184897, 78.5329161713096, 90.78296019927377, 7.166707466794525, 58.69747710660045, 6.070234382495834, 180.52707787688192, 37.241329590521836, 127.95145070871308, 43.65166711682089, 112.16863600418024, 5.594564622393916, 22.054165501868482, 22.367686644547742, 8.37228560834309, 17.00120702657856, 11.13381529428002, 13.10770112981694, 47.52733753382333, 12.578721278396237, 67.1999006838648, 78.12119295569187, 39.64379123161836, 91.57242363189867, 62.24783533183982, 8.442599807915004, 92.87211993511792, 46.921852081562804, 21.10689254465658, 6.258267695530025, 91.4136651830097, 6.803714679456776, 142.5666953745077, 101.41347078101867, 75.06338142270698, 113.2844221055204, 45.67214317504076, 22.48902923180562, 74.35419750412869, 125.78383427666185, 21.273210057368875, 66.35192481035574, 30.07954475406893, 66.50569211842564, 36.32870171608715, 45.09545003009328, 25.353994826912853, 59.505954387392066, 87.71302199808196, 38.661497983405674, 45.87187218148584, 99.25207102609383, 117.48419149440907, 15.965284824099356, 136.87536081220583, 73.17670031115014, 257.11166854092903, 15.96388897438492, 37.35285208250351, 72.90391028591077, 9.96074136118163, 18.760663545649383, 10.499846874039504, 37.26315816155643, 10.107508964661022, 14.481407248395923, 34.68112441763535, 69.22089282387361, 61.48936101896476, 46.02416556550713, 49.54805347541251, 71.83102734056409, 28.02262097124965, 41.688054826100085, 128.21247790531947, 48.71904048805548, 30.9499411141275, 52.239575121423634, 26.514751929327595, 11.88921228646551, 77.04763967097662, 12.174158321506773, 8.05082829768169, 21.09564135050052, 12.102797780883849, 17.322288631454633, 95.50094508677924, 76.28431698093833, 29.527769355852648, 5.389284632803976, 231.0286270920366, 67.40545306059319, 32.5306164837777, 27.804188544259837, 65.95780364588566, 34.05506828031215, 134.3967432411941, 13.45711927384883, 7.348494048727724, 6.796680299169093, 55.53868091793019, 64.94201129272724, 9.747273187746694, 6.686746945864486, 25.850366514284428, 109.82165454439942, 83.09251219708652, 45.17087394156385, 6.141155606999666, 7.88327307260511, 25.282533230316595, 64.72251212314535, 72.15507867528491, 11.532317580484897, 73.93262053710986, 23.5825629945061, 44.19110513103381, 56.39955310842243, 20.8556439723765, 59.574923494585505, 44.9934615957692, 28.90756638029942, 33.08899792981375, 36.72983411652794, 88.8243830218328, 89.52895545504754, 34.124483813474214, 6.734907039627806, 13.698751930262974, 42.33023273317732, 64.44410831671401, 7.117658383982783, 21.985848319340946, 12.606449881259236, 10.23243442752092, 149.572379890969, 24.972112273457313, 61.561094742164386, 35.5802629980033, 16.57066235722677, 19.090991083701482, 105.73311395261499, 15.101056858401613, 9.418973358817345, 112.52682708175232, 93.56444305893437, 35.40277956553445, 62.70677479592434, 47.71049432493445, 37.65510023811984, 320.45639209262083, 30.337176717492955, 84.76735670716954, 7.046072491989125, 116.00626100818693, 8.04448189611156, 21.526091226897282, 8.262390168930974, 13.350667938227176, 35.57610610534435, 54.94131637717361, 5.4173956195802715, 107.9006340874858, 28.383421387825155, 34.971835383984924, 31.840356704134486, 11.058478211308435, 27.175677523273947, 47.630547348858585, 24.757096511097096, 66.1394930135812, 30.167997869930407, 63.19780903551723, 74.34945205128477, 12.260081326219801, 34.362748135200775, 9.237108365781117, 43.231631484002534, 81.74753456475227, 140.4584511038521, 5.1420642911104375, 16.527135751934697, 14.828162959915918, 15.81645789287874, 7.691902964172605, 38.635596384524, 22.66571059758982, 9.079978864886957, 8.659286745310295, 14.70417946213854, 21.627102322888984, 9.556311438191235, 112.78425864623668, 14.735108884872137, 6.396561421057725, 69.66992114453734, 22.086253223600153, 5.695067697642566, 14.228925471723043, 40.67651786470815, 93.53267519708707, 26.629164559893077, 177.8356154451097, 5.350355120235546, 71.80008403973333, 79.71977595784645, 8.24289849847456, 18.586264804642745, 8.130219004900704, 88.9283976105367, 9.99672821722004, 84.87543332229308, 39.150452098599146, 8.663078433017526, 13.41880626120147, 46.04380607424878, 7.0420791024923215, 63.31710604976905, 9.519628683842312, 5.968321102913062, 28.97766634260175, 27.299478933285485, 40.84545202232888, 78.93632662477725, 22.382019243374682, 80.66865513804842, 5.894381257050644, 13.8922630695456, 11.311354652805527, 95.88000373594758, 16.7964907100215, 151.6935314048186, 67.30881634637481, 153.0874020660445, 45.395032951977136, 7.812797463185235, 8.318384633767005, 10.603312460048471, 12.090215712412554, 90.08723154299, 10.244254530369457, 11.386999897893991, 6.354173586739803, 70.13429613861398, 16.55080385702179, 73.42258197195483, 8.480837462447031, 121.81304134797932, 9.056098376107084, 59.43108843230146, 75.76028136747564, 29.841927196435048, 96.8543491404974, 38.0001024289528, 16.529098239776765, 10.192294024035368, 10.845203880679911, 12.344559055173972, 38.97110044153599, 29.03939213064993, 14.637274050687164, 5.524302532693796, 5.948674411383204, 77.99469875793595, 28.365246182103483, 80.6763271997981, 27.750170989387897, 18.06053088888224, 82.27337502839404, 5.921350583944039, 27.944031621946788, 322.32321635103125, 46.456940186119695, 40.29866186955877, 37.62185883891781, 94.40192252324894, 22.430811018623707, 39.17822052165734, 45.8565512085925, 87.26183406249504, 43.70080374490858, 91.01372757184973, 64.8600974291856, 67.82991224787118, 16.633702899600557, 20.38980598062193, 85.24745818245736, 10.560419328690044, 29.703427824639768, 143.30887281154548, 8.588857028115594, 92.8572027984711, 118.25802969361644, 309.9021592024501, 57.938263034437355, 28.541676612379305, 14.358954050043213, 33.23360655682994, 41.71829905794895, 6.4021480932098145, 57.58405334377774, 93.87162090298187, 131.16807763065268, 61.75505519016061, 39.76348392509502, 51.74454902325116, 20.843804213649623, 5.878699219916846, 7.5091825021352845, 58.581356880545115, 71.86479126432917, 5.639923780923214, 79.54347154273378, 79.02690726692185, 38.332527976014134, 17.07839887555957, 83.58322267417128, 44.4992955712205, 6.531028305230474, 32.57679660078987, 12.167678926256468, 25.494322866255995, 46.90516911493399, 32.56745519443693, 107.99138553589825, 7.032969842445352, 83.88202788350058, 179.40641286800715, 56.51058599349811, 46.93196138748225, 37.679058115293564, 30.445678738561778, 93.10831904864679, 98.79375232350418, 27.524632947775544, 40.30509071730175, 16.058522758223617, 87.78274251818529, 53.60658306205103, 5.425987585941104, 6.9071264045908745, 13.328430910449478, 60.52042638866115, 133.28086488720845, 17.236987767774337, 114.75117576569069, 26.561530114419806, 64.1976630433694, 42.969966056827694, 72.64802938610215, 36.658044454379294, 50.559508152941426, 24.61673842888658, 233.47661494968872, 7.620696119512848, 6.1697300669555, 7.993030459524153, 9.192399872654716, 65.26162248323354, 69.5101861587139, 26.350107572107284, 15.380784517784384, 14.952832409004284, 26.51366620551518, 66.73105434296919, 20.705187476353466, 116.10587429353426, 5.252079485350553, 9.499009095525304, 47.42346852767413, 10.698646668409234, 60.29031267565168, 54.45933405634593, 39.326229786377624, 7.576944852024237, 49.59845643602271, 91.67890474267244, 9.661726632261976, 14.608354056764279, 53.92377373066191, 21.457388404655706, 77.96014699286263, 69.79550599535833, 7.162083263013893, 23.309506894018053, 18.63534003892348, 6.023206891071589, 5.624903989561739, 101.73760780072101, 12.791710389551021, 10.77591905538568, 11.176467786051726, 5.033957553215523, 39.33376573196372, 52.08369116139604, 22.001977208559047, 74.18226889090181, 52.82634030649668, 17.820037919166158, 63.48595808955035, 11.117492866000505, 7.118873210455377, 81.49893596261258, 60.93725760822163, 19.211598974939328, 43.05742213323095, 54.83003737886465, 52.66937334906504, 13.051889573546255, 7.05668982735845, 12.513143314548712, 15.71621392583375, 36.522977194476105, 41.99440709580658, 27.7926725223342, 12.026611106042104, 20.286097547687984, 41.433134551505105, 24.85392677251307, 8.27047047429131, 61.948969247726325, 33.768074915402686, 77.26714552302266, 104.77772512736922, 11.17355228187557, 121.67657845294741, 60.60504572343944, 6.260831889503396, 37.748357908472286, 51.74334491812776, 115.20419345668552, 41.01747864327029, 40.91948140153028, 137.8448943429442, 140.92489153362675, 111.60170922533761, 313.67394621823195, 35.882159125573594, 30.55456252357861, 23.31296143088256, 76.5087404290793, 127.19436093923908, 77.65167145852818, 23.77364983307246, 54.344663338967, 34.245775137973496, 78.28209455913834, 69.34973885027435, 84.94168658088037, 5.111051054610151, 53.06091627779736, 8.310452593058395, 96.52756696875358, 67.66244103909325, 10.651250622286964, 48.94963378689252, 121.87479398073343, 62.402016858087634, 16.93400377166803, 6.716009057519891, 11.342760806370686, 136.97548279175172, 92.29953121521056, 28.099844898664173, 28.484785040988175, 108.23121146372264, 54.53647843972307, 144.7811114671038, 23.999191536746956, 45.11371825703625, 13.41840350056182, 197.1355009922618, 20.10476210881912, 44.220734655915415, 28.19689622607305, 5.785546800982217, 29.03769658123515, 5.444784053224029, 7.950111727091535, 74.88420314910243, 58.87697719434088, 23.078139692291636, 125.95216997533868, 66.88938793092667, 88.00910024717966, 138.16902457558908, 40.00803856549281, 17.81678651649939, 5.562039415456082, 120.59566368154302, 85.83263814922287, 69.28554521579565, 58.57700178930075, 63.339719918475936, 32.48617703216388, 21.826940287183795, 21.478524895918202, 59.03443676457785, 21.277431554620403, 136.64334793681186, 39.347004270696274, 11.402287420678155, 28.322537711558788, 118.19104192585321, 12.518633004357097, 155.3891818402286, 49.9232984286266, 114.8180944920172, 67.99820080066083, 189.40428442410632, 185.66089281506672, 46.42466225172055, 11.428048688443685, 96.42186404328619, 12.617342141312577, 76.31965911836156, 45.95990268118666, 80.32896518742558, 140.38671281445153, 13.422987331986885, 78.052656182926, 78.59262864009199, 6.053165884469441, 6.1279971592424385, 13.053355947042991, 7.711649690532264, 54.078537732246645, 55.97273651446531, 19.738122876726813, 16.05947251786616, 63.08979425056189, 85.0596949507627, 12.632192215051607, 65.36005435106264, 30.061718699973717, 5.50230526822693, 31.635860025099497, 72.59125460448192, 51.884658395173176, 22.586363114324946, 84.73138182651009, 29.97156310356911, 18.945812865433787, 23.901880070728865, 27.451710498064784, 39.84506775176925, 16.788106962717052, 88.988859255109, 44.08018248499276, 6.49496829989757, 6.5141158983426495, 79.02541036855928, 45.15556378781005, 118.18939093211277, 72.81675727957938, 29.274199167971986, 57.20508294325242, 16.435534866088314, 35.518676358344315, 81.44979952347146, 20.990982799049952, 7.012941832301471, 93.17737267676031, 88.58484196822286, 67.50182677823165, 187.91998602377365, 54.69575215111068, 59.94116850825008, 64.19230014860861, 11.64130275706549, 22.91487526276587, 45.40198782247482, 86.55088577642465, 108.21700708156246, 25.98979959690312, 209.82248695188503, 10.719349730921063, 38.864463676637854, 89.23964561557538, 8.380662537190027, 161.15968161415273, 59.96252609742474, 65.4925181184682, 14.648832318493309, 10.558250839914061, 12.150123038192739, 18.80272692990712, 25.409247664888944, 68.33037154822247, 5.827526493668772, 101.2972388190615, 30.003929207363548, 16.534358175088606, 10.297452168705444, 27.90823673002653, 108.26112015459893, 53.273820553049966, 36.27674585909871, 170.888099268383, 91.05504161331434, 123.51860474452681, 76.2389053228674, 166.22393976243416, 11.085925558946693, 10.341008296851049, 14.086854607296601, 92.36584454188204, 25.773674121485588, 19.79503197200225, 7.721034397691802, 13.584422898943071, 63.19599087867019, 13.312739062623665, 120.9616784206046, 8.599199772983418, 98.63469146980268, 112.55994064106414, 65.84310729994671, 32.55479765532747, 8.266297874661738, 113.40808733673325, 21.03706673935463, 59.70171336619833, 8.104811315281374, 16.349483782125194, 32.65153436059072, 66.33597677260302, 79.39053846515998, 5.606412918710881, 130.62479069479798, 9.055478504003242, 70.45294939120684, 15.009148548960987, 8.465222201777657, 8.826730803898817, 93.9350465441033, 7.267381995447898, 285.0639671023632, 65.43736611146264, 6.037342752239071, 20.509307754109898, 44.66475643477143, 32.67138376801841, 104.23387298812683, 30.943363140444653, 16.415782368341276, 141.60166391224234, 13.356766164196374, 17.82473844167188, 127.51813450505215, 6.480489665887776, 27.37956086413534, 93.99966201354906, 13.568063007968558, 66.81882683154774, 51.468408324036744, 10.932998810054215, 47.66615777970002, 15.279459264183224, 22.290191706239888, 21.863931729872792, 67.60572458077857, 9.56206018295928, 17.454818842289576, 201.48999987929886, 31.54890145907158, 5.645034821523478, 12.863893178537275, 106.5089779608347, 6.2899704582404885, 16.106485007121318, 17.334191343619967, 12.390745094966224, 26.022680392615992, 126.25940215028947, 52.238099790178154, 15.89554300100554, 72.90522480283953, 51.517658244920284, 19.380973312542757, 40.64536802219703, 18.144557672228682, 51.29768885384199, 6.5331871163860455, 34.54468959670324, 12.41379249061895, 15.671567288571879, 35.45975770196955, 87.9267971577858, 109.10596647492234, 8.069165222125193, 5.997818220874943, 71.43033437704031, 20.30383702138583, 34.38276571672135, 20.115378844648948, 156.28284230902014, 78.17163859104679, 15.74027938837682, 31.79552737694365, 15.408822711805602, 8.754966976324065, 12.238861094399832, 17.088328515496087, 18.72713984842705, 68.37247891417718, 26.147607662609104, 7.163169815379691, 22.26608916710217, 58.989797173950016, 27.69080240197739, 101.13153729120846, 184.46381550880398, 102.61685489450765, 72.6784418878495, 20.93142558463608, 113.37695315865574, 19.585377490603793, 5.802590284148888, 53.995662642578296, 31.390188549873272, 8.820427442885311, 9.479223133499342, 19.390071735697862, 9.120438932214853, 20.348513664600606, 94.63261528576234, 25.615672220462265, 109.57260261938112, 41.10983482473805, 27.466548954958153, 20.84458748434473, 18.32466876053291, 79.50353815812082, 40.7501260674593, 32.122905046035996, 19.617992359692387, 31.42160837691267, 6.090720403500477, 77.26341590194055, 122.89453749490771, 77.7817820085614, 76.07132523223892, 132.99292220820934, 68.83558340364718, 12.926204321188015, 45.56511539456283, 70.2598717673502, 6.7698271801773, 20.116874847180412, 5.857887161163723, 63.08252929208745, 13.023638089811422, 5.870508615431994, 21.163863597297574, 5.526631000495265, 18.39384863800677, 69.16201883095621, 59.068342776836246, 12.534612100974154, 20.02027161700221, 48.706655089645814, 66.08346097266495, 5.4952911830693205, 10.915810558772746, 7.964203588706883, 7.364073722860213, 6.148377429994206, 88.92113741632497, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7768065.22783264, 7803576.5625, 8005486.3297968125, 8043797.865091135, 8072570.076466863, 8165841.0157264, 8232867.7858106205, 8318327.521593642, 8325374.515566737, 8335221.25576869, 8350859.375, 8358943.75, 8401742.812919375, 8408636.628915438, 8423789.528058201, 8424398.4375, 8424412.004916199, 8428621.124222884, 8464854.307674287, 8465722.832917865, 8582740.518722964, 8591651.272028795, 8603380.041297918, 8621087.5, 8653268.9236014, 8653535.325758517, 8654208.773894802, 8711537.80644389, 8724146.875, 8727312.82755794, 8796870.3125, 8798266.741389083, 8824542.1875, 8837681.091839585, 8849769.376704734, 8854178.602114294, 8857055.059916137, 8863270.3125, 8883205.898953574, 8884421.749519615, 8888584.32439466, 8888615.682773694, 8892803.125, 8897309.375, 8898634.29597958, 8899867.1875, 8903120.3125, 8903742.07193553, 8921929.6875, 8939699.995083751, 8940966.653276913, 8952916.458275914, 8953654.511794215, 8954752.6283042, 8955260.855007514, 8955441.11503621, 8957190.649408191, 8957408.56024483, 8957558.138508888, 8962928.58704666, 8963471.641356349, 8964576.640464155, 8965212.091380166, 8969950.0, 8991425.0, 8993778.831351032, 9013654.6875, 9023810.603574988, 9025598.24805322, 9027535.508260535, 9027745.831293952, 9027787.284423098, 9031836.488393255, 9032775.0, 9034548.536008913, 9036289.0625, 9037337.5, 9046967.988629488, 9055886.319155902, 9059606.25, 9066564.676418152, 9066602.864486326, 9070039.0625, 9070801.056315018, 9083065.72713405, 9089125.0, 9089615.625, 9093682.926774425, 9094923.069076275, 9095089.749294141, 9113634.375, 9114328.685653187, 9121931.412788706, 9128991.825316483, 9129800.979738137, 9130133.812976757, 9130915.91885765, 9131985.175280888, 9132583.630456699, 9132643.539851114, 9133594.653640322, 9141753.70087579, 9147100.813834904, 9155836.606186923, 9167103.986388497, 9173852.8171207, 9176428.433039956, 9179625.31442743, 9182385.9375, 9188408.524156876, 9213059.375, 9214121.875, 9225890.040601956, 9232924.331752187, 9244751.058366934, 9254906.084358511, 9255219.843378663, 9279659.53977122, 9289516.53459878, 9291840.454123143, 9295209.375, 9313360.9375, 9318735.085870655, 9322650.85983261, 9322683.35647073, 9324226.951622454, 9324989.555777477, 9329148.874704698, 9329983.503464103, 9333009.880956404, 9333017.071073966, 9336264.472117359, 9344653.751743387, 9347242.837077348, 9351710.9375, 9352010.601604331, 9353131.679030107, 9353660.837918915, 9353662.523328241, 9353765.625, 9355095.27319702, 9356547.398916237, 9358232.291818477, 9361369.85200461, 9362903.125, 9365448.4375, 9366377.683587763, 9367011.989725174, 9367449.398684314, 9371661.72396272, 9372227.448372696, 9373705.743420258, 9373720.546040554, 9374398.22421727, 9376004.418294534, 9377269.016351828, 9379171.685280705, 9379682.763572412, 9380256.238072762, 9382018.981536163, 9383396.849433925, 9386822.365522293, 9388609.344242947, 9391608.781129764, 9393442.11485886, 9395293.75, 9402626.5625, 9404787.951928617, 9418829.6875, 9430409.375, 9431006.43943256, 9433313.42994943, 9434073.751678195, 9435296.875, 9435463.689031128, 9436283.990726532, 9436410.224220369, 9436636.957037678, 9436736.987941245, 9437062.39136061, 9437212.5, 9437424.050166799, 9437622.337868381, 9438492.1875, 9438523.383809395, 9443400.0, 9444583.021609858, 9445618.559048979, 9448467.1875, 9448853.05758704, 9449532.8125, 9449776.950188523, 9450380.789676988, 9456810.868156666, 9456835.91072642, 9456989.535579612, 9457256.25, 9457390.731336223, 9457526.5625, 9457799.998918334, 9457811.98747032, 9457891.104698392, 9457943.75, 9458218.75, 9458232.689313566, 9458964.0625, 9459456.254647665, 9459766.46688873, 9459889.28589379, 9461222.093831304, 9461825.0, 9464471.321362767, 9477671.875, 9482918.46695795, 9485767.1875, 9492148.692092273, 9492270.109645246, 9493010.899968894, 9493984.375, 9494552.54983405, 9495985.9375, 9497523.22384429, 9497680.457295137, 9499107.354860468, 9500190.625, 9501600.555501163, 9502810.9375, 9503436.78066352, 9505783.319620201, 9506930.12832493, 9508365.625, 9514335.9375, 9517675.0, 9520986.551586093, 9522506.419407913, 9523585.301088838, 9524102.951438142, 9525028.574188802, 9525623.4375, 9526455.253034422, 9526484.398170326, 9527412.5, 9529184.017439496, 9532212.812909713, 9538317.264546102, 9541926.721133687, 9541967.625250846, 9542446.87890451, 9542946.293291561, 9543898.4375, 9552839.827389922, 9552846.138655819, 9555084.375, 9555523.4375, 9557177.504206972, 9557244.344150333, 9557589.346330207, 9557941.762944372, 9558169.38399877, 9558291.64789293, 9558784.303985486, 9560130.944689708, 9563040.82311876, 9563075.0, 9563193.693342246, 9565157.8125, 9566739.0625, 9566973.4375, 9567774.59435969, 9568589.0625, 9570020.3125, 9570677.602670867, 9572006.044089172, 9574418.75, 9574636.49948738, 9574746.060621403, 9575178.125, 9575216.882796835, 9575364.0625, 9575501.420498181, 9575502.709803382, 9575856.718262354, 9576095.3125, 9576426.5625, 9576615.86995275, 9576631.25, 9577624.84315593, 9577723.925858345, 9577892.432148138, 9580930.755997604, 9581112.5, 9582502.223506572, 9582522.177321587, 9583521.432395846, 9583529.31151404, 9584352.356928933, 9584709.24881216, 9585340.625, 9586407.275604408, 9588317.1875, 9588542.1875, 9588571.422193455, 9592669.607238218, 9597198.411614576, 9599064.918318665, 9600630.124088595, 9602384.375, 9606914.0625, 9611215.625, 9612670.58563081, 9613283.044487113, 9613329.6875, 9615550.580101412, 9615585.463400804, 9615632.27171171, 9616391.170509322, 9618587.948415212, 9618753.111805461, 9619187.5, 9620185.9375, 9623152.88252468, 9624834.62997247, 9625196.959189959, 9625444.962319989, 9626591.178982751, 9626643.75, 9627168.75, 9627462.412819829, 9627835.484670756, 9627836.736104187, 9628075.163925376, 9628183.143333422, 9628892.061647318, 9629020.766528958, 9629029.290457359, 9630000.99670671, 9630423.4375, 9630441.584899789, 9631103.125, 9632064.55770202, 9635372.588127235, 9638048.77962591, 9638991.900897134, 9639335.989101106, 9639353.369302463, 9645909.375, 9646751.249218853, 9646770.569919374, 9647132.914366014, 9647402.558632135, 9647415.625, 9647679.6875, 9647903.125, 9647995.3125, 9648015.625, 9649904.783660974, 9650314.06226746, 9650436.185954282, 9652562.355037974, 9654668.380667996, 9655087.5, 9655821.875, 9658587.48555007, 9659379.880272374, 9660975.77689322, 9663238.40276202, 9664857.670698866, 9664863.852457397, 9666659.815925594, 9667600.0, 9667638.192053327, 9668608.59499672, 9669223.4375, 9669415.666238729, 9669865.726780787, 9672186.251003278, 9672761.780076265, 9672882.8125, 9673329.6875, 9674667.1875, 9675322.93210178, 9676611.799455576, 9676896.888516575, 9677669.909366645, 9677977.830267955, 9686014.938542917, 9690610.449804716, 9690988.565800844, 9691856.203979956, 9691890.133965593, 9692668.087683849, 9692900.613061942, 9692948.92378967, 9693759.68768736, 9693985.56069646, 9694908.800470456, 9694935.26760575, 9694970.267753566, 9695334.302918198, 9696562.5, 9696606.199518116, 9696684.375, 9697515.854988376, 9697970.238775298, 9698312.43821405, 9698449.058425905, 9700171.875, 9700935.82383623, 9703476.5625, 9708139.379774235, 9709435.832383428, 9710081.783232892, 9710698.7993984, 9711518.544842703, 9711798.649557719, 9713545.551168762, 9713567.1875, 9713572.87181235, 9713599.686891962, 9714952.20653301, 9715692.123808362, 9719687.01332897, 9722648.692027975, 9723715.072274122, 9723726.897216983, 9725625.959612258, 9725651.316179188, 9726108.536511108, 9726202.939732853, 9726665.424578447, 9727585.895367775, 9732004.6875, 9732104.583745444, 9732117.686685463, 9732147.119067356, 9732178.125, 9732542.1875, 9732562.416479187, 9732649.149161506, 9732755.942138257, 9732784.375, 9733030.381861495, 9733556.25, 9736487.5, 9736649.087514818, 9737216.721023455, 9737421.809429184, 9743329.376695782, 9743329.6875, 9744192.402021756, 9744214.388651488, 9745540.124036385, 9745623.372383576, 9745706.015644962, 9745800.0, 9745843.334720414, 9748718.75, 9752365.093049966, 9752912.6700136, 9754089.176898677, 9754250.569934823, 9754425.414222872, 9754790.625, 9755623.4375, 9762001.5625, 9762028.125, 9762052.106975336, 9762282.872167628, 9762680.886436086, 9762947.41434412, 9763077.285120472, 9763322.787774945, 9764220.472286997, 9764572.53373356, 9764661.75203998, 9764797.476529332, 9765020.3125, 9765405.037630245, 9765447.62193903, 9767065.280417986, 9767068.75, 9768845.3125, 9775737.5, 9776807.8125, 9778896.86030448, 9781269.112287989, 9781696.180956976, 9781846.68641888, 9782930.34770964, 9789425.0, 9789900.668418078, 9790165.542822821, 9790807.630297294, 9790895.418321803, 9791172.689219425, 9791737.582023963, 9792707.232260695, 9798784.334618472, 9802108.223930214, 9803978.125, 9804046.665315242, 9810379.657467451, 9811092.1875, 9816915.634387858, 9821020.3125, 9823675.0, 9825587.5, 9827328.068517627, 9827607.8125, 9827671.437433032, 9827944.752317414, 9828048.819805061, 9828279.6875, 9828506.233968705, 9828509.265518583, 9829861.320374006, 9832060.04159491, 9832635.9375, 9833399.60398772, 9833401.314145138, 9833436.328807257, 9833742.718483021, 9834271.875, 9834492.162686372, 9834516.684490116, 9834543.75, 9834607.026783029, 9834609.213276034, 9834796.413591664, 9834810.85184191, 9835769.748346813, 9835995.3125, 9836489.039535968, 9836729.6875, 9837370.3125, 9837478.125, 9837971.875, 9838123.202489194, 9838721.15047811, 9838963.794742351, 9842461.469168259, 9842929.168161664, 9842973.89600949, 9843243.75, 9843637.548326865, 9844002.811436327, 9846428.591616675, 9846748.146472892, 9847903.125, 9850239.337173345, 9859053.2299624, 9859339.63948654, 9865956.075250087, 9871481.25, 9871548.4375, 9871845.976080408, 9871932.464855654, 9871965.380146796, 9872009.375, 9872343.75, 9872457.006276863, 9872528.125, 9872609.375, 9872616.2938735, 9872718.75, 9873624.26605241, 9873870.056540104, 9874431.515135448, 9888839.0625, 9889454.6875, 9890381.951529628, 9893655.366696097, 9910679.188370554, 9911921.657449406, 9912529.542364858, 9913282.910926767, 9913370.3125, 9914409.267217426, 9914443.75, 9919064.0625, 9920144.56515875, 9920270.80547166, 9920306.25, 9920797.687571071, 9920923.180567546, 9931123.485513415, 9931346.062526904, 9931397.837836485, 9932054.518401572, 9933476.267391592, 9934454.6875, 9935214.836537637, 9938706.36066511, 9938725.340682762, 9944163.951852012, 9945290.625, 9945407.229713554, 9946451.5625, 9946525.245880235, 9948084.566784428, 9948525.0, 9948557.519488893, 9950365.129971275, 9950374.664777767, 9950476.608446024, 9951057.739214368, 9953601.5625, 9957065.02391591, 9971253.491426136, 9971835.84725787, 9972231.732150856, 9972438.55891259, 9973207.336293137, 9990495.3125, 9991676.71484685, 9991704.352154013, 9992492.15369039, 9992652.476976516, 9993487.694646679, 9997357.8125, 9997818.04256959, 9997935.700142087, 9998000.030973377, 9998343.294923725, 9999488.112695863, 9999571.586862298, 10000355.799543036, 10002476.499988772, 10002729.6875, 10003000.59399016, 10003774.431627708, 10004029.680955598, 10007687.490182066, 10008046.875, 10014669.955253225, 10016158.611211723, 10018289.0625, 10018344.783364864, 10026326.5625, 10027247.83424893, 10029441.935269974, 10029746.04867826, 10030947.734414134, 10032225.843896346, 10036409.326199602, 10037877.974277604, 10043642.695369175, 10044913.432347238, 10046865.625, 10053542.139462238, 10054114.031917011, 10054128.125, 10055141.809739655, 10055254.6875, 10061503.075696312, 10061901.591633843, 10062552.945010806, 10064919.204640206, 10064951.511942782, 10065049.726839658, 10066347.220280731, 10067228.125, 10067399.887524333, 10067696.875, 10067886.601088304, 10068042.1875, 10068076.5625, 10068500.261618394, 10069331.168858536, 10069513.210673183, 10070363.72743713, 10072051.053618003, 10080579.314792974, 10081137.293108325, 10084300.11111109, 10085567.1875, 10085575.0, 10088137.349625764, 10088473.4375, 10088692.467909623, 10091663.129519163, 10091865.625, 10092910.982377233, 10097352.156215698, 10107885.9375, 10108505.92217936, 10110870.3125, 10111393.75, 10112448.4375, 10114621.389986431, 10114629.444838108, 10115742.32086184, 10117928.08433603, 10120615.625, 10121040.173696347, 10122160.935456648, 10124987.94054736, 10128506.25, 10128802.11038941, 10129302.844204476, 10130221.752058886, 10130410.470879378, 10130488.842878455, 10130678.73901389, 10131260.9375, 10132007.190818004, 10133165.23317976, 10136895.3125, 10137399.598270386, 10137486.804498, 10137675.0, 10140331.25, 10140530.551502354, 10141396.875, 10141839.31607322, 10142873.4375, 10144458.973757887, 10149049.89744163, 10150083.405962331, 10150108.39508432, 10150941.695364185, 10152243.205045674, 10153506.25, 10153615.625, 10156359.375, 10157959.099378236, 10161957.345327126, 10162301.061037648, 10163196.959476532, 10163579.165605005, 10163845.3125, 10164096.875, 10165331.418841701, 10169148.427191308, 10170046.875, 10170138.238599433, 10170896.875, 10173331.25, 10174808.90456538, 10175851.170908226, 10176434.325366842, 10176719.006764455, 10177039.59638698, 10177040.809011621, 10177257.8125, 10177664.844086327, 10177831.906213764, 10177875.469815046, 10178126.5625, 10178227.987166964, 10178454.22251837, 10178484.375, 10180862.5, 10182048.094738683, 10182073.81262258, 10182757.209818462, 10182872.165115617, 10182955.720428584, 10183301.5625, 10183574.304025397, 10184500.265339386, 10184568.75, 10184598.4375, 10184972.662964867, 10185028.125, 10190183.590813117, 10190621.224154161, 10190630.852064244, 10192523.4375, 10193690.625, 10194027.72802919, 10194777.030591609, 10194785.80807211, 10195210.137623293, 10199266.899240678, 10199871.818346228, 10202303.24163353, 10203575.65158858, 10209910.136013305, 10213289.0625, 10213289.11256626, 10213331.42025719, 10214573.4375, 10215328.125, 10219766.481614856, 10220673.4375, 10220870.3125, 10225652.065602502, 10228933.156073296, 10230411.622471796, 10231325.368678572, 10231791.635647563, 10231869.882975616, 10236659.785532419, 10236709.193832371, 10237234.375, 10237620.755385486, 10237850.0, 10238078.702044133, 10238131.25, 10238539.367980683, 10238845.187148742, 10238974.91538879, 10243117.1875, 10243635.499816189, 10243642.57941852, 10244380.862271952, 10244693.47203182, 10245791.292687155, 10246156.25, 10246937.673777483, 10247323.4375, 10247408.52658663, 10248421.875, 10249020.350616248, 10249666.789835393, 10249686.506020851, 10249790.375347996, 10250093.980756938, 10250349.776238158, 10250439.243915133, 10250599.144986616, 10251148.28079869, 10253911.300831566, 10256543.144847663, 10261039.886599466, 10268904.6875, 10270251.5625, 10274331.25, 10278676.090932284, 10279365.625, 10282387.193067303, 10282878.225431891, 10283260.56923671, 10285379.66060419, 10288519.743254006, 10289449.756117055, 10291124.87371316, 10291473.280923633, 10292091.498578375, 10293401.876855489, 10295374.591704922, 10297996.875, 10300968.245134046, 10302012.5, 10305895.860318648, 10306923.4375, 10307637.17480651, 10308095.0262245, 10308104.6875, 10309253.086453376, 10309304.6875, 10310816.182026645, 10311500.0, 10314873.07719881, 10314977.931152461, 10315000.0, 10315078.113848198, 10316175.0, 10316260.798730254, 10316377.87443771, 10317130.904596766, 10320067.926192276, 10320089.040205894, 10320631.573203387, 10320657.148567136, 10322385.080302348, 10322781.777503708, 10323323.932819974, 10323368.034181317, 10323940.122351395, 10325694.646945458, 10326703.125, 10326969.560613481, 10327538.66944622, 10327817.104678744, 10327870.744705522, 10328521.54948681, 10328544.823678583, 10328561.47220309, 10329348.4375, 10330476.520257441, 10331443.689349324, 10331997.909466308, 10332197.14204735, 10335543.75, 10338012.5, 10341363.934255078, 10341586.862239193, 10341833.410479302, 10342190.201357137, 10342499.536387607, 10342675.441684937, 10342864.32324665, 10343722.408065096, 10343779.901190229, 10343790.154590063, 10344314.609417379, 10344410.259609768, 10344742.086255072, 10345570.490639562, 10346776.54243351, 10355948.949690104, 10357068.67615444, 10358085.796728369, 10358091.574969934, 10359994.510815298, 10360134.604643267, 10360851.5625, 10360871.226725938, 10362318.97185758, 10362976.5625, 10363120.957921691, 10365204.6875, 10366629.975386003, 10367876.957799602, 10370730.661231546, 10372792.366702897, 10373459.375, 10373543.520432146, 10373948.4375, 10374190.189924788, 10375716.272165008, 10376185.9375, 10376360.309402581, 10376613.793853492, 10376883.724831063, 10376937.313974056, 10377079.6875, 10377751.757387863, 10377941.924649812, 10378571.99243056, 10383264.854340129, 10385600.610926112, 10388705.155919906, 10390480.869866649, 10391004.6875, 10392210.23255344, 10393453.281360716, 10394856.287696663, 10395200.0, 10395326.705538446, 10395414.0625, 10395456.562489275, 10397400.19772738, 10398688.332048718, 10404849.018248359, 10405233.971534181, 10405719.597334761, 10407051.407367703, 10407235.9375, 10408140.625, 10408574.326829644, 10408767.357294926, 10409538.845903717, 10410409.114500294, 10410922.814558761, 10411381.25, 10411635.213106394, 10413612.5, 10413626.5625, 10413895.256665152, 10413905.682435783, 10414338.172936844, 10414442.1875, 10415763.571196815, 10416576.228861185, 10416716.021010254, 10416992.1875, 10417426.587668192, 10417679.6875, 10417806.25, 10417979.6875, 10418159.516888538, 10418231.25, 10418258.52221642, 10418366.534710793, 10418540.625, 10418619.801520143, 10419456.281577459, 10419600.912508346, 10419652.138780842, 10422318.75, 10423104.073238656, 10423108.548334233, 10424448.513423586, 10424840.491390547, 10425955.370817874, 10427175.0, 10427943.370247621, 10428306.995628402, 10428500.000678038, 10432904.6875, 10440392.1875, 10440505.445981033, 10440737.360069387, 10441344.648715483, 10442147.724013112, 10442663.06036463, 10444837.488471895, ...], [57.13307791109892, 70.96501339629867, 5.1745997363929925, 53.09400932036763, 14.112212086810874, 28.369723017630143, 6.152609587303036, 8.868474647082435, 93.39548899668172, 7.98418491561956, 70.71151061552251, 123.98802720497135, 5.649606894534382, 18.448288225651144, 17.07257750174296, 63.774644662443485, 26.61018111424067, 19.3098118338382, 6.42915417557848, 37.72591112034121, 40.49614413095367, 6.442501364509156, 183.0546138648989, 66.89478474830943, 21.60458123707093, 68.11130494123503, 20.540520505147537, 41.51666430353677, 57.079890175330924, 16.35659950622461, 49.4488518633696, 22.048061185177872, 43.44167144701842, 25.749032125468958, 12.272396430461544, 55.36159835641159, 11.764389671908736, 52.6577722256674, 66.01944184451762, 111.21244237226948, 9.288976946819126, 6.496186060523202, 66.96060208070656, 41.75928087221652, 14.648638222225333, 50.6117998145178, 84.88625899927857, 26.432019810821203, 76.88759381960718, 47.009032808677745, 21.15836739027181, 98.8250993948138, 25.47983124227366, 34.260319973265794, 110.61637126756983, 7.790642755532073, 24.71080711616521, 10.055292099691462, 17.567427052493745, 94.30632910707595, 14.11995712195959, 5.401462915487906, 13.58348170074086, 153.5636976525138, 34.7469965632427, 18.549813652034633, 98.90572431037717, 68.59713240335292, 37.12117257051447, 29.975403542164344, 56.33697137961204, 23.942767777981096, 22.354724072747267, 88.29178442003737, 11.285254557069267, 37.331121566225676, 92.62305521990632, 19.22975154562316, 8.499270392287809, 96.12017431019041, 32.98775197424608, 5.52056917683905, 66.42170714207795, 127.53089159188497, 8.341336224037844, 77.17867059567688, 132.31526003429713, 9.429934678104999, 141.87910467415733, 18.41716790064387, 221.38233457277087, 19.110816885195366, 6.28798698626563, 8.103905625079697, 20.705410700342195, 10.349846852554439, 210.5388972736777, 19.223375221049835, 95.90598375324299, 24.97057857615943, 27.01011099664686, 17.709343389073442, 5.76058714692817, 43.74690579944739, 7.9476308483659945, 57.94457167791046, 16.26178211777035, 11.657518131452209, 104.09818276626292, 7.3219950799021225, 77.33567045427722, 85.95007958228304, 13.100694014938115, 42.4924900509693, 84.2655195018868, 25.63341526914814, 21.8067628504494, 26.33823263833052, 20.092358166036032, 35.67360673981373, 36.07273723237494, 67.68809643348382, 32.912670022553854, 10.182288461956773, 50.275568521553495, 55.047073588229374, 17.22680307922516, 16.918595057158317, 52.238301580973385, 17.298598479592307, 20.851868957702955, 92.81048782643616, 17.056370692878637, 42.94479541815418, 62.49659065093165, 23.302803359455833, 22.0814682761913, 9.248597606398139, 30.93209120241047, 161.7612036019649, 27.770225971794684, 15.77514807443194, 8.029174294478219, 8.057200081192269, 68.83782485690116, 56.57340392512496, 13.48942021722307, 13.297993520581603, 101.5807838465446, 40.061639949554376, 8.818073083721588, 66.90919355323733, 23.487384145391793, 24.925458528217423, 29.860300090624165, 5.962941610510798, 34.33698626555258, 7.585636752488738, 85.88863499888825, 34.841620802417324, 14.844950753683161, 95.5532685301957, 78.94196544888132, 10.311069665840964, 23.371086462388245, 77.27854111083778, 93.25054130590719, 16.998090184657237, 31.651740378714198, 68.74154050567492, 7.172154258337531, 129.30946172206868, 11.657065435193848, 48.333978771120464, 86.55644525484838, 9.026323613039438, 90.40869866925604, 57.96505392000982, 21.373645272588107, 75.66204723883976, 43.12687890421802, 6.347837183522163, 38.25417408058654, 30.512607496571228, 7.583933456712861, 34.244372706513005, 126.06137822861157, 10.841803120052978, 59.68666905814974, 26.625003265722093, 56.069817957855754, 107.05795408425554, 61.234489782692336, 32.8571048602612, 28.005746110042686, 35.76338039755764, 156.58637031969272, 5.82189035666406, 51.349997444925144, 14.937388219048241, 10.411119817728311, 90.21671583791546, 58.463063254944494, 77.83160577885212, 7.559282724359356, 45.19601540911502, 37.75428725230982, 19.542580851070294, 15.867313572707783, 95.38725263232922, 47.00352676876094, 20.35305661897565, 77.94390659287741, 67.6736182461044, 46.10567668519543, 16.00963076019277, 41.11698447860664, 51.047888652577925, 44.712490429846106, 119.42350958588037, 46.15760338542847, 9.15705110794603, 164.8897344608058, 13.443578183722362, 84.628934434021, 72.7981557127084, 37.855457888408, 12.762961697388308, 12.025110287834698, 185.3054708500326, 70.8217698962827, 96.41574845184897, 78.5329161713096, 90.78296019927377, 7.166707466794525, 58.69747710660045, 6.070234382495834, 180.52707787688192, 37.241329590521836, 127.95145070871308, 43.65166711682089, 112.16863600418024, 5.594564622393916, 22.054165501868482, 22.367686644547742, 8.37228560834309, 17.00120702657856, 11.13381529428002, 13.10770112981694, 47.52733753382333, 12.578721278396237, 67.1999006838648, 78.12119295569187, 39.64379123161836, 91.57242363189867, 62.24783533183982, 8.442599807915004, 92.87211993511792, 46.921852081562804, 21.10689254465658, 6.258267695530025, 91.4136651830097, 6.803714679456776, 142.5666953745077, 101.41347078101867, 75.06338142270698, 113.2844221055204, 45.67214317504076, 22.48902923180562, 74.35419750412869, 125.78383427666185, 21.273210057368875, 66.35192481035574, 30.07954475406893, 66.50569211842564, 36.32870171608715, 45.09545003009328, 25.353994826912853, 59.505954387392066, 87.71302199808196, 38.661497983405674, 45.87187218148584, 99.25207102609383, 117.48419149440907, 15.965284824099356, 136.87536081220583, 73.17670031115014, 257.11166854092903, 15.96388897438492, 37.35285208250351, 72.90391028591077, 9.96074136118163, 18.760663545649383, 10.499846874039504, 37.26315816155643, 10.107508964661022, 14.481407248395923, 34.68112441763535, 69.22089282387361, 61.48936101896476, 46.02416556550713, 49.54805347541251, 71.83102734056409, 28.02262097124965, 41.688054826100085, 128.21247790531947, 48.71904048805548, 30.9499411141275, 52.239575121423634, 26.514751929327595, 11.88921228646551, 77.04763967097662, 12.174158321506773, 8.05082829768169, 21.09564135050052, 12.102797780883849, 17.322288631454633, 95.50094508677924, 76.28431698093833, 29.527769355852648, 5.389284632803976, 231.0286270920366, 67.40545306059319, 32.5306164837777, 27.804188544259837, 65.95780364588566, 34.05506828031215, 134.3967432411941, 13.45711927384883, 7.348494048727724, 6.796680299169093, 55.53868091793019, 64.94201129272724, 9.747273187746694, 6.686746945864486, 25.850366514284428, 109.82165454439942, 83.09251219708652, 45.17087394156385, 6.141155606999666, 7.88327307260511, 25.282533230316595, 64.72251212314535, 72.15507867528491, 11.532317580484897, 73.93262053710986, 23.5825629945061, 44.19110513103381, 56.39955310842243, 20.8556439723765, 59.574923494585505, 44.9934615957692, 28.90756638029942, 33.08899792981375, 36.72983411652794, 88.8243830218328, 89.52895545504754, 34.124483813474214, 6.734907039627806, 13.698751930262974, 42.33023273317732, 64.44410831671401, 7.117658383982783, 21.985848319340946, 12.606449881259236, 10.23243442752092, 149.572379890969, 24.972112273457313, 61.561094742164386, 35.5802629980033, 16.57066235722677, 19.090991083701482, 105.73311395261499, 15.101056858401613, 9.418973358817345, 112.52682708175232, 93.56444305893437, 35.40277956553445, 62.70677479592434, 47.71049432493445, 37.65510023811984, 320.45639209262083, 30.337176717492955, 84.76735670716954, 7.046072491989125, 116.00626100818693, 8.04448189611156, 21.526091226897282, 8.262390168930974, 13.350667938227176, 35.57610610534435, 54.94131637717361, 5.4173956195802715, 107.9006340874858, 28.383421387825155, 34.971835383984924, 31.840356704134486, 11.058478211308435, 27.175677523273947, 47.630547348858585, 24.757096511097096, 66.1394930135812, 30.167997869930407, 63.19780903551723, 74.34945205128477, 12.260081326219801, 34.362748135200775, 9.237108365781117, 43.231631484002534, 81.74753456475227, 140.4584511038521, 5.1420642911104375, 16.527135751934697, 14.828162959915918, 15.81645789287874, 7.691902964172605, 38.635596384524, 22.66571059758982, 9.079978864886957, 8.659286745310295, 14.70417946213854, 21.627102322888984, 9.556311438191235, 112.78425864623668, 14.735108884872137, 6.396561421057725, 69.66992114453734, 22.086253223600153, 5.695067697642566, 14.228925471723043, 40.67651786470815, 93.53267519708707, 26.629164559893077, 177.8356154451097, 5.350355120235546, 71.80008403973333, 79.71977595784645, 8.24289849847456, 18.586264804642745, 8.130219004900704, 88.9283976105367, 9.99672821722004, 84.87543332229308, 39.150452098599146, 8.663078433017526, 13.41880626120147, 46.04380607424878, 7.0420791024923215, 63.31710604976905, 9.519628683842312, 5.968321102913062, 28.97766634260175, 27.299478933285485, 40.84545202232888, 78.93632662477725, 22.382019243374682, 80.66865513804842, 5.894381257050644, 13.8922630695456, 11.311354652805527, 95.88000373594758, 16.7964907100215, 151.6935314048186, 67.30881634637481, 153.0874020660445, 45.395032951977136, 7.812797463185235, 8.318384633767005, 10.603312460048471, 12.090215712412554, 90.08723154299, 10.244254530369457, 11.386999897893991, 6.354173586739803, 70.13429613861398, 16.55080385702179, 73.42258197195483, 8.480837462447031, 121.81304134797932, 9.056098376107084, 59.43108843230146, 75.76028136747564, 29.841927196435048, 96.8543491404974, 38.0001024289528, 16.529098239776765, 10.192294024035368, 10.845203880679911, 12.344559055173972, 38.97110044153599, 29.03939213064993, 14.637274050687164, 5.524302532693796, 5.948674411383204, 77.99469875793595, 28.365246182103483, 80.6763271997981, 27.750170989387897, 18.06053088888224, 82.27337502839404, 5.921350583944039, 27.944031621946788, 322.32321635103125, 46.456940186119695, 40.29866186955877, 37.62185883891781, 94.40192252324894, 22.430811018623707, 39.17822052165734, 45.8565512085925, 87.26183406249504, 43.70080374490858, 91.01372757184973, 64.8600974291856, 67.82991224787118, 16.633702899600557, 20.38980598062193, 85.24745818245736, 10.560419328690044, 29.703427824639768, 143.30887281154548, 8.588857028115594, 92.8572027984711, 118.25802969361644, 309.9021592024501, 57.938263034437355, 28.541676612379305, 14.358954050043213, 33.23360655682994, 41.71829905794895, 6.4021480932098145, 57.58405334377774, 93.87162090298187, 131.16807763065268, 61.75505519016061, 39.76348392509502, 51.74454902325116, 20.843804213649623, 5.878699219916846, 7.5091825021352845, 58.581356880545115, 71.86479126432917, 5.639923780923214, 79.54347154273378, 79.02690726692185, 38.332527976014134, 17.07839887555957, 83.58322267417128, 44.4992955712205, 6.531028305230474, 32.57679660078987, 12.167678926256468, 25.494322866255995, 46.90516911493399, 32.56745519443693, 107.99138553589825, 7.032969842445352, 83.88202788350058, 179.40641286800715, 56.51058599349811, 46.93196138748225, 37.679058115293564, 30.445678738561778, 93.10831904864679, 98.79375232350418, 27.524632947775544, 40.30509071730175, 16.058522758223617, 87.78274251818529, 53.60658306205103, 5.425987585941104, 6.9071264045908745, 13.328430910449478, 60.52042638866115, 133.28086488720845, 17.236987767774337, 114.75117576569069, 26.561530114419806, 64.1976630433694, 42.969966056827694, 72.64802938610215, 36.658044454379294, 50.559508152941426, 24.61673842888658, 233.47661494968872, 7.620696119512848, 6.1697300669555, 7.993030459524153, 9.192399872654716, 65.26162248323354, 69.5101861587139, 26.350107572107284, 15.380784517784384, 14.952832409004284, 26.51366620551518, 66.73105434296919, 20.705187476353466, 116.10587429353426, 5.252079485350553, 9.499009095525304, 47.42346852767413, 10.698646668409234, 60.29031267565168, 54.45933405634593, 39.326229786377624, 7.576944852024237, 49.59845643602271, 91.67890474267244, 9.661726632261976, 14.608354056764279, 53.92377373066191, 21.457388404655706, 77.96014699286263, 69.79550599535833, 7.162083263013893, 23.309506894018053, 18.63534003892348, 6.023206891071589, 5.624903989561739, 101.73760780072101, 12.791710389551021, 10.77591905538568, 11.176467786051726, 5.033957553215523, 39.33376573196372, 52.08369116139604, 22.001977208559047, 74.18226889090181, 52.82634030649668, 17.820037919166158, 63.48595808955035, 11.117492866000505, 7.118873210455377, 81.49893596261258, 60.93725760822163, 19.211598974939328, 43.05742213323095, 54.83003737886465, 52.66937334906504, 13.051889573546255, 7.05668982735845, 12.513143314548712, 15.71621392583375, 36.522977194476105, 41.99440709580658, 27.7926725223342, 12.026611106042104, 20.286097547687984, 41.433134551505105, 24.85392677251307, 8.27047047429131, 61.948969247726325, 33.768074915402686, 77.26714552302266, 104.77772512736922, 11.17355228187557, 121.67657845294741, 60.60504572343944, 6.260831889503396, 37.748357908472286, 51.74334491812776, 115.20419345668552, 41.01747864327029, 40.91948140153028, 137.8448943429442, 140.92489153362675, 111.60170922533761, 313.67394621823195, 35.882159125573594, 30.55456252357861, 23.31296143088256, 76.5087404290793, 127.19436093923908, 77.65167145852818, 23.77364983307246, 54.344663338967, 34.245775137973496, 78.28209455913834, 69.34973885027435, 84.94168658088037, 5.111051054610151, 53.06091627779736, 8.310452593058395, 96.52756696875358, 67.66244103909325, 10.651250622286964, 48.94963378689252, 121.87479398073343, 62.402016858087634, 16.93400377166803, 6.716009057519891, 11.342760806370686, 136.97548279175172, 92.29953121521056, 28.099844898664173, 28.484785040988175, 108.23121146372264, 54.53647843972307, 144.7811114671038, 23.999191536746956, 45.11371825703625, 13.41840350056182, 197.1355009922618, 20.10476210881912, 44.220734655915415, 28.19689622607305, 5.785546800982217, 29.03769658123515, 5.444784053224029, 7.950111727091535, 74.88420314910243, 58.87697719434088, 23.078139692291636, 125.95216997533868, 66.88938793092667, 88.00910024717966, 138.16902457558908, 40.00803856549281, 17.81678651649939, 5.562039415456082, 120.59566368154302, 85.83263814922287, 69.28554521579565, 58.57700178930075, 63.339719918475936, 32.48617703216388, 21.826940287183795, 21.478524895918202, 59.03443676457785, 21.277431554620403, 136.64334793681186, 39.347004270696274, 11.402287420678155, 28.322537711558788, 118.19104192585321, 12.518633004357097, 155.3891818402286, 49.9232984286266, 114.8180944920172, 67.99820080066083, 189.40428442410632, 185.66089281506672, 46.42466225172055, 11.428048688443685, 96.42186404328619, 12.617342141312577, 76.31965911836156, 45.95990268118666, 80.32896518742558, 140.38671281445153, 13.422987331986885, 78.052656182926, 78.59262864009199, 6.053165884469441, 6.1279971592424385, 13.053355947042991, 7.711649690532264, 54.078537732246645, 55.97273651446531, 19.738122876726813, 16.05947251786616, 63.08979425056189, 85.0596949507627, 12.632192215051607, 65.36005435106264, 30.061718699973717, 5.50230526822693, 31.635860025099497, 72.59125460448192, 51.884658395173176, 22.586363114324946, 84.73138182651009, 29.97156310356911, 18.945812865433787, 23.901880070728865, 27.451710498064784, 39.84506775176925, 16.788106962717052, 88.988859255109, 44.08018248499276, 6.49496829989757, 6.5141158983426495, 79.02541036855928, 45.15556378781005, 118.18939093211277, 72.81675727957938, 29.274199167971986, 57.20508294325242, 16.435534866088314, 35.518676358344315, 81.44979952347146, 20.990982799049952, 7.012941832301471, 93.17737267676031, 88.58484196822286, 67.50182677823165, 187.91998602377365, 54.69575215111068, 59.94116850825008, 64.19230014860861, 11.64130275706549, 22.91487526276587, 45.40198782247482, 86.55088577642465, 108.21700708156246, 25.98979959690312, 209.82248695188503, 10.719349730921063, 38.864463676637854, 89.23964561557538, 8.380662537190027, 161.15968161415273, 59.96252609742474, 65.4925181184682, 14.648832318493309, 10.558250839914061, 12.150123038192739, 18.80272692990712, 25.409247664888944, 68.33037154822247, 5.827526493668772, 101.2972388190615, 30.003929207363548, 16.534358175088606, 10.297452168705444, 27.90823673002653, 108.26112015459893, 53.273820553049966, 36.27674585909871, 170.888099268383, 91.05504161331434, 123.51860474452681, 76.2389053228674, 166.22393976243416, 11.085925558946693, 10.341008296851049, 14.086854607296601, 92.36584454188204, 25.773674121485588, 19.79503197200225, 7.721034397691802, 13.584422898943071, 63.19599087867019, 13.312739062623665, 120.9616784206046, 8.599199772983418, 98.63469146980268, 112.55994064106414, 65.84310729994671, 32.55479765532747, 8.266297874661738, 113.40808733673325, 21.03706673935463, 59.70171336619833, 8.104811315281374, 16.349483782125194, 32.65153436059072, 66.33597677260302, 79.39053846515998, 5.606412918710881, 130.62479069479798, 9.055478504003242, 70.45294939120684, 15.009148548960987, 8.465222201777657, 8.826730803898817, 93.9350465441033, 7.267381995447898, 285.0639671023632, 65.43736611146264, 6.037342752239071, 20.509307754109898, 44.66475643477143, 32.67138376801841, 104.23387298812683, 30.943363140444653, 16.415782368341276, 141.60166391224234, 13.356766164196374, 17.82473844167188, 127.51813450505215, 6.480489665887776, 27.37956086413534, 93.99966201354906, 13.568063007968558, 66.81882683154774, 51.468408324036744, 10.932998810054215, 47.66615777970002, 15.279459264183224, 22.290191706239888, 21.863931729872792, 67.60572458077857, 9.56206018295928, 17.454818842289576, 201.48999987929886, 31.54890145907158, 5.645034821523478, 12.863893178537275, 106.5089779608347, 6.2899704582404885, 16.106485007121318, 17.334191343619967, 12.390745094966224, 26.022680392615992, 126.25940215028947, 52.238099790178154, 15.89554300100554, 72.90522480283953, 51.517658244920284, 19.380973312542757, 40.64536802219703, 18.144557672228682, 51.29768885384199, 6.5331871163860455, 34.54468959670324, 12.41379249061895, 15.671567288571879, 35.45975770196955, 87.9267971577858, 109.10596647492234, 8.069165222125193, 5.997818220874943, 71.43033437704031, 20.30383702138583, 34.38276571672135, 20.115378844648948, 156.28284230902014, 78.17163859104679, 15.74027938837682, 31.79552737694365, 15.408822711805602, 8.754966976324065, 12.238861094399832, 17.088328515496087, 18.72713984842705, 68.37247891417718, 26.147607662609104, 7.163169815379691, 22.26608916710217, 58.989797173950016, 27.69080240197739, 101.13153729120846, 184.46381550880398, 102.61685489450765, 72.6784418878495, 20.93142558463608, 113.37695315865574, 19.585377490603793, 5.802590284148888, 53.995662642578296, 31.390188549873272, 8.820427442885311, 9.479223133499342, 19.390071735697862, 9.120438932214853, 20.348513664600606, 94.63261528576234, 25.615672220462265, 109.57260261938112, 41.10983482473805, 27.466548954958153, 20.84458748434473, 18.32466876053291, 79.50353815812082, 40.7501260674593, 32.122905046035996, 19.617992359692387, 31.42160837691267, 6.090720403500477, 77.26341590194055, 122.89453749490771, 77.7817820085614, 76.07132523223892, 132.99292220820934, 68.83558340364718, 12.926204321188015, 45.56511539456283, 70.2598717673502, 6.7698271801773, 20.116874847180412, 5.857887161163723, 63.08252929208745, 13.023638089811422, 5.870508615431994, 21.163863597297574, 5.526631000495265, 18.39384863800677, 69.16201883095621, 59.068342776836246, 12.534612100974154, 20.02027161700221, 48.706655089645814, 66.08346097266495, 5.4952911830693205, 10.915810558772746, 7.964203588706883, 7.364073722860213, 6.148377429994206, 88.92113741632497, ...])
caption, T_hit,count1 = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count1, caption);
([7768065.22783264, 7803576.5625, 8005486.3297968125, 8043797.865091135, 8072570.076466863, 8165841.0157264, 8232867.7858106205, 8318327.521593642, 8325374.515566737, 8335221.25576869, 8350859.375, 8358943.75, 8401742.812919375, 8408636.628915438, 8423789.528058201, 8424398.4375, 8424412.004916199, 8428621.124222884, 8464854.307674287, 8465722.832917865, 8582740.518722964, 8591651.272028795, 8603380.041297918, 8621087.5, 8653268.9236014, 8653535.325758517, 8654208.773894802, 8711537.80644389, 8724146.875, 8727312.82755794, 8796870.3125, 8798266.741389083, 8824542.1875, 8837681.091839585, 8849769.376704734, 8854178.602114294, 8857055.059916137, 8863270.3125, 8883205.898953574, 8884421.749519615, 8888584.32439466, 8888615.682773694, 8892803.125, 8897309.375, 8898634.29597958, 8899867.1875, 8903120.3125, 8903742.07193553, 8921929.6875, 8939699.995083751, 8940966.653276913, 8952916.458275914, 8953654.511794215, 8954752.6283042, 8955260.855007514, 8955441.11503621, 8957190.649408191, 8957408.56024483, 8957558.138508888, 8962928.58704666, 8963471.641356349, 8964576.640464155, 8965212.091380166, 8969950.0, 8991425.0, 8993778.831351032, 9013654.6875, 9023810.603574988, 9025598.24805322, 9027535.508260535, 9027745.831293952, 9027787.284423098, 9031836.488393255, 9032775.0, 9034548.536008913, 9036289.0625, 9037337.5, 9046967.988629488, 9055886.319155902, 9059606.25, 9066564.676418152, 9066602.864486326, 9070039.0625, 9070801.056315018, 9083065.72713405, 9089125.0, 9089615.625, 9093682.926774425, 9094923.069076275, 9095089.749294141, 9113634.375, 9114328.685653187, 9121931.412788706, 9128991.825316483, 9129800.979738137, 9130133.812976757, 9130915.91885765, 9131985.175280888, 9132583.630456699, 9132643.539851114, 9133594.653640322, 9141753.70087579, 9147100.813834904, 9155836.606186923, 9167103.986388497, 9173852.8171207, 9176428.433039956, 9179625.31442743, 9182385.9375, 9188408.524156876, 9213059.375, 9214121.875, 9225890.040601956, 9232924.331752187, 9244751.058366934, 9254906.084358511, 9255219.843378663, 9279659.53977122, 9289516.53459878, 9291840.454123143, 9295209.375, 9313360.9375, 9318735.085870655, 9322650.85983261, 9322683.35647073, 9324226.951622454, 9324989.555777477, 9329148.874704698, 9329983.503464103, 9333009.880956404, 9333017.071073966, 9336264.472117359, 9344653.751743387, 9347242.837077348, 9351710.9375, 9352010.601604331, 9353131.679030107, 9353660.837918915, 9353662.523328241, 9353765.625, 9355095.27319702, 9356547.398916237, 9358232.291818477, 9361369.85200461, 9362903.125, 9365448.4375, 9366377.683587763, 9367011.989725174, 9367449.398684314, 9371661.72396272, 9372227.448372696, 9373705.743420258, 9373720.546040554, 9374398.22421727, 9376004.418294534, 9377269.016351828, 9379171.685280705, 9379682.763572412, 9380256.238072762, 9382018.981536163, 9383396.849433925, 9386822.365522293, 9388609.344242947, 9391608.781129764, 9393442.11485886, 9395293.75, 9402626.5625, 9404787.951928617, 9418829.6875, 9430409.375, 9431006.43943256, 9433313.42994943, 9434073.751678195, 9435296.875, 9435463.689031128, 9436283.990726532, 9436410.224220369, 9436636.957037678, 9436736.987941245, 9437062.39136061, 9437212.5, 9437424.050166799, 9437622.337868381, 9438492.1875, 9438523.383809395, 9443400.0, 9444583.021609858, 9445618.559048979, 9448467.1875, 9448853.05758704, 9449532.8125, 9449776.950188523, 9450380.789676988, 9456810.868156666, 9456835.91072642, 9456989.535579612, 9457256.25, 9457390.731336223, 9457526.5625, 9457799.998918334, 9457811.98747032, 9457891.104698392, 9457943.75, 9458218.75, 9458232.689313566, 9458964.0625, 9459456.254647665, 9459766.46688873, 9459889.28589379, 9461222.093831304, 9461825.0, 9464471.321362767, 9477671.875, 9482918.46695795, 9485767.1875, 9492148.692092273, 9492270.109645246, 9493010.899968894, 9493984.375, 9494552.54983405, 9495985.9375, 9497523.22384429, 9497680.457295137, 9499107.354860468, 9500190.625, 9501600.555501163, 9502810.9375, 9503436.78066352, 9505783.319620201, 9506930.12832493, 9508365.625, 9514335.9375, 9517675.0, 9520986.551586093, 9522506.419407913, 9523585.301088838, 9524102.951438142, 9525028.574188802, 9525623.4375, 9526455.253034422, 9526484.398170326, 9527412.5, 9529184.017439496, 9532212.812909713, 9538317.264546102, 9541926.721133687, 9541967.625250846, 9542446.87890451, 9542946.293291561, 9543898.4375, 9552839.827389922, 9552846.138655819, 9555084.375, 9555523.4375, 9557177.504206972, 9557244.344150333, 9557589.346330207, 9557941.762944372, 9558169.38399877, 9558291.64789293, 9558784.303985486, 9560130.944689708, 9563040.82311876, 9563075.0, 9563193.693342246, 9565157.8125, 9566739.0625, 9566973.4375, 9567774.59435969, 9568589.0625, 9570020.3125, 9570677.602670867, 9572006.044089172, 9574418.75, 9574636.49948738, 9574746.060621403, 9575178.125, 9575216.882796835, 9575364.0625, 9575501.420498181, 9575502.709803382, 9575856.718262354, 9576095.3125, 9576426.5625, 9576615.86995275, 9576631.25, 9577624.84315593, 9577723.925858345, 9577892.432148138, 9580930.755997604, 9581112.5, 9582502.223506572, 9582522.177321587, 9583521.432395846, 9583529.31151404, 9584352.356928933, 9584709.24881216, 9585340.625, 9586407.275604408, 9588317.1875, 9588542.1875, 9588571.422193455, 9592669.607238218, 9597198.411614576, 9599064.918318665, 9600630.124088595, 9602384.375, 9606914.0625, 9611215.625, 9612670.58563081, 9613283.044487113, 9613329.6875, 9615550.580101412, 9615585.463400804, 9615632.27171171, 9616391.170509322, 9618587.948415212, 9618753.111805461, 9619187.5, 9620185.9375, 9623152.88252468, 9624834.62997247, 9625196.959189959, 9625444.962319989, 9626591.178982751, 9626643.75, 9627168.75, 9627462.412819829, 9627835.484670756, 9627836.736104187, 9628075.163925376, 9628183.143333422, 9628892.061647318, 9629020.766528958, 9629029.290457359, 9630000.99670671, 9630423.4375, 9630441.584899789, 9631103.125, 9632064.55770202, 9635372.588127235, 9638048.77962591, 9638991.900897134, 9639335.989101106, 9639353.369302463, 9645909.375, 9646751.249218853, 9646770.569919374, 9647132.914366014, 9647402.558632135, 9647415.625, 9647679.6875, 9647903.125, 9647995.3125, 9648015.625, 9649904.783660974, 9650314.06226746, 9650436.185954282, 9652562.355037974, 9654668.380667996, 9655087.5, 9655821.875, 9658587.48555007, 9659379.880272374, 9660975.77689322, 9663238.40276202, 9664857.670698866, 9664863.852457397, 9666659.815925594, 9667600.0, 9667638.192053327, 9668608.59499672, 9669223.4375, 9669415.666238729, 9669865.726780787, 9672186.251003278, 9672761.780076265, 9672882.8125, 9673329.6875, 9674667.1875, 9675322.93210178, 9676611.799455576, 9676896.888516575, 9677669.909366645, 9677977.830267955, 9686014.938542917, 9690610.449804716, 9690988.565800844, 9691856.203979956, 9691890.133965593, 9692668.087683849, 9692900.613061942, 9692948.92378967, 9693759.68768736, 9693985.56069646, 9694908.800470456, 9694935.26760575, 9694970.267753566, 9695334.302918198, 9696562.5, 9696606.199518116, 9696684.375, 9697515.854988376, 9697970.238775298, 9698312.43821405, 9698449.058425905, 9700171.875, 9700935.82383623, 9703476.5625, 9708139.379774235, 9709435.832383428, 9710081.783232892, 9710698.7993984, 9711518.544842703, 9711798.649557719, 9713545.551168762, 9713567.1875, 9713572.87181235, 9713599.686891962, 9714952.20653301, 9715692.123808362, 9719687.01332897, 9722648.692027975, 9723715.072274122, 9723726.897216983, 9725625.959612258, 9725651.316179188, 9726108.536511108, 9726202.939732853, 9726665.424578447, 9727585.895367775, 9732004.6875, 9732104.583745444, 9732117.686685463, 9732147.119067356, 9732178.125, 9732542.1875, 9732562.416479187, 9732649.149161506, 9732755.942138257, 9732784.375, 9733030.381861495, 9733556.25, 9736487.5, 9736649.087514818, 9737216.721023455, 9737421.809429184, 9743329.376695782, 9743329.6875, 9744192.402021756, 9744214.388651488, 9745540.124036385, 9745623.372383576, 9745706.015644962, 9745800.0, 9745843.334720414, 9748718.75, 9752365.093049966, 9752912.6700136, 9754089.176898677, 9754250.569934823, 9754425.414222872, 9754790.625, 9755623.4375, 9762001.5625, 9762028.125, 9762052.106975336, 9762282.872167628, 9762680.886436086, 9762947.41434412, 9763077.285120472, 9763322.787774945, 9764220.472286997, 9764572.53373356, 9764661.75203998, 9764797.476529332, 9765020.3125, 9765405.037630245, 9765447.62193903, 9767065.280417986, 9767068.75, 9768845.3125, 9775737.5, 9776807.8125, 9778896.86030448, 9781269.112287989, 9781696.180956976, 9781846.68641888, 9782930.34770964, 9789425.0, 9789900.668418078, 9790165.542822821, 9790807.630297294, 9790895.418321803, 9791172.689219425, 9791737.582023963, 9792707.232260695, 9798784.334618472, 9802108.223930214, 9803978.125, 9804046.665315242, 9810379.657467451, 9811092.1875, 9816915.634387858, 9821020.3125, 9823675.0, 9825587.5, 9827328.068517627, 9827607.8125, 9827671.437433032, 9827944.752317414, 9828048.819805061, 9828279.6875, 9828506.233968705, 9828509.265518583, 9829861.320374006, 9832060.04159491, 9832635.9375, 9833399.60398772, 9833401.314145138, 9833436.328807257, 9833742.718483021, 9834271.875, 9834492.162686372, 9834516.684490116, 9834543.75, 9834607.026783029, 9834609.213276034, 9834796.413591664, 9834810.85184191, 9835769.748346813, 9835995.3125, 9836489.039535968, 9836729.6875, 9837370.3125, 9837478.125, 9837971.875, 9838123.202489194, 9838721.15047811, 9838963.794742351, 9842461.469168259, 9842929.168161664, 9842973.89600949, 9843243.75, 9843637.548326865, 9844002.811436327, 9846428.591616675, 9846748.146472892, 9847903.125, 9850239.337173345, 9859053.2299624, 9859339.63948654, 9865956.075250087, 9871481.25, 9871548.4375, 9871845.976080408, 9871932.464855654, 9871965.380146796, 9872009.375, 9872343.75, 9872457.006276863, 9872528.125, 9872609.375, 9872616.2938735, 9872718.75, 9873624.26605241, 9873870.056540104, 9874431.515135448, 9888839.0625, 9889454.6875, 9890381.951529628, 9893655.366696097, 9910679.188370554, 9911921.657449406, 9912529.542364858, 9913282.910926767, 9913370.3125, 9914409.267217426, 9914443.75, 9919064.0625, 9920144.56515875, 9920270.80547166, 9920306.25, 9920797.687571071, 9920923.180567546, 9931123.485513415, 9931346.062526904, 9931397.837836485, 9932054.518401572, 9933476.267391592, 9934454.6875, 9935214.836537637, 9938706.36066511, 9938725.340682762, 9944163.951852012, 9945290.625, 9945407.229713554, 9946451.5625, 9946525.245880235, 9948084.566784428, 9948525.0, 9948557.519488893, 9950365.129971275, 9950374.664777767, 9950476.608446024, 9951057.739214368, 9953601.5625, 9957065.02391591, 9971253.491426136, 9971835.84725787, 9972231.732150856, 9972438.55891259, 9973207.336293137, 9990495.3125, 9991676.71484685, 9991704.352154013, 9992492.15369039, 9992652.476976516, 9993487.694646679, 9997357.8125, 9997818.04256959, 9997935.700142087, 9998000.030973377, 9998343.294923725, 9999488.112695863, 9999571.586862298, 10000355.799543036, 10002476.499988772, 10002729.6875, 10003000.59399016, 10003774.431627708, 10004029.680955598, 10007687.490182066, 10008046.875, 10014669.955253225, 10016158.611211723, 10018289.0625, 10018344.783364864, 10026326.5625, 10027247.83424893, 10029441.935269974, 10029746.04867826, 10030947.734414134, 10032225.843896346, 10036409.326199602, 10037877.974277604, 10043642.695369175, 10044913.432347238, 10046865.625, 10053542.139462238, 10054114.031917011, 10054128.125, 10055141.809739655, 10055254.6875, 10061503.075696312, 10061901.591633843, 10062552.945010806, 10064919.204640206, 10064951.511942782, 10065049.726839658, 10066347.220280731, 10067228.125, 10067399.887524333, 10067696.875, 10067886.601088304, 10068042.1875, 10068076.5625, 10068500.261618394, 10069331.168858536, 10069513.210673183, 10070363.72743713, 10072051.053618003, 10080579.314792974, 10081137.293108325, 10084300.11111109, 10085567.1875, 10085575.0, 10088137.349625764, 10088473.4375, 10088692.467909623, 10091663.129519163, 10091865.625, 10092910.982377233, 10097352.156215698, 10107885.9375, 10108505.92217936, 10110870.3125, 10111393.75, 10112448.4375, 10114621.389986431, 10114629.444838108, 10115742.32086184, 10117928.08433603, 10120615.625, 10121040.173696347, 10122160.935456648, 10124987.94054736, 10128506.25, 10128802.11038941, 10129302.844204476, 10130221.752058886, 10130410.470879378, 10130488.842878455, 10130678.73901389, 10131260.9375, 10132007.190818004, 10133165.23317976, 10136895.3125, 10137399.598270386, 10137486.804498, 10137675.0, 10140331.25, 10140530.551502354, 10141396.875, 10141839.31607322, 10142873.4375, 10144458.973757887, 10149049.89744163, 10150083.405962331, 10150108.39508432, 10150941.695364185, 10152243.205045674, 10153506.25, 10153615.625, 10156359.375, 10157959.099378236, 10161957.345327126, 10162301.061037648, 10163196.959476532, 10163579.165605005, 10163845.3125, 10164096.875, 10165331.418841701, 10169148.427191308, 10170046.875, 10170138.238599433, 10170896.875, 10173331.25, 10174808.90456538, 10175851.170908226, 10176434.325366842, 10176719.006764455, 10177039.59638698, 10177040.809011621, 10177257.8125, 10177664.844086327, 10177831.906213764, 10177875.469815046, 10178126.5625, 10178227.987166964, 10178454.22251837, 10178484.375, 10180862.5, 10182048.094738683, 10182073.81262258, 10182757.209818462, 10182872.165115617, 10182955.720428584, 10183301.5625, 10183574.304025397, 10184500.265339386, 10184568.75, 10184598.4375, 10184972.662964867, 10185028.125, 10190183.590813117, 10190621.224154161, 10190630.852064244, 10192523.4375, 10193690.625, 10194027.72802919, 10194777.030591609, 10194785.80807211, 10195210.137623293, 10199266.899240678, 10199871.818346228, 10202303.24163353, 10203575.65158858, 10209910.136013305, 10213289.0625, 10213289.11256626, 10213331.42025719, 10214573.4375, 10215328.125, 10219766.481614856, 10220673.4375, 10220870.3125, 10225652.065602502, 10228933.156073296, 10230411.622471796, 10231325.368678572, 10231791.635647563, 10231869.882975616, 10236659.785532419, 10236709.193832371, 10237234.375, 10237620.755385486, 10237850.0, 10238078.702044133, 10238131.25, 10238539.367980683, 10238845.187148742, 10238974.91538879, 10243117.1875, 10243635.499816189, 10243642.57941852, 10244380.862271952, 10244693.47203182, 10245791.292687155, 10246156.25, 10246937.673777483, 10247323.4375, 10247408.52658663, 10248421.875, 10249020.350616248, 10249666.789835393, 10249686.506020851, 10249790.375347996, 10250093.980756938, 10250349.776238158, 10250439.243915133, 10250599.144986616, 10251148.28079869, 10253911.300831566, 10256543.144847663, 10261039.886599466, 10268904.6875, 10270251.5625, 10274331.25, 10278676.090932284, 10279365.625, 10282387.193067303, 10282878.225431891, 10283260.56923671, 10285379.66060419, 10288519.743254006, 10289449.756117055, 10291124.87371316, 10291473.280923633, 10292091.498578375, 10293401.876855489, 10295374.591704922, 10297996.875, 10300968.245134046, 10302012.5, 10305895.860318648, 10306923.4375, 10307637.17480651, 10308095.0262245, 10308104.6875, 10309253.086453376, 10309304.6875, 10310816.182026645, 10311500.0, 10314873.07719881, 10314977.931152461, 10315000.0, 10315078.113848198, 10316175.0, 10316260.798730254, 10316377.87443771, 10317130.904596766, 10320067.926192276, 10320089.040205894, 10320631.573203387, 10320657.148567136, 10322385.080302348, 10322781.777503708, 10323323.932819974, 10323368.034181317, 10323940.122351395, 10325694.646945458, 10326703.125, 10326969.560613481, 10327538.66944622, 10327817.104678744, 10327870.744705522, 10328521.54948681, 10328544.823678583, 10328561.47220309, 10329348.4375, 10330476.520257441, 10331443.689349324, 10331997.909466308, 10332197.14204735, 10335543.75, 10338012.5, 10341363.934255078, 10341586.862239193, 10341833.410479302, 10342190.201357137, 10342499.536387607, 10342675.441684937, 10342864.32324665, 10343722.408065096, 10343779.901190229, 10343790.154590063, 10344314.609417379, 10344410.259609768, 10344742.086255072, 10345570.490639562, 10346776.54243351, 10355948.949690104, 10357068.67615444, 10358085.796728369, 10358091.574969934, 10359994.510815298, 10360134.604643267, 10360851.5625, 10360871.226725938, 10362318.97185758, 10362976.5625, 10363120.957921691, 10365204.6875, 10366629.975386003, 10367876.957799602, 10370730.661231546, 10372792.366702897, 10373459.375, 10373543.520432146, 10373948.4375, 10374190.189924788, 10375716.272165008, 10376185.9375, 10376360.309402581, 10376613.793853492, 10376883.724831063, 10376937.313974056, 10377079.6875, 10377751.757387863, 10377941.924649812, 10378571.99243056, 10383264.854340129, 10385600.610926112, 10388705.155919906, 10390480.869866649, 10391004.6875, 10392210.23255344, 10393453.281360716, 10394856.287696663, 10395200.0, 10395326.705538446, 10395414.0625, 10395456.562489275, 10397400.19772738, 10398688.332048718, 10404849.018248359, 10405233.971534181, 10405719.597334761, 10407051.407367703, 10407235.9375, 10408140.625, 10408574.326829644, 10408767.357294926, 10409538.845903717, 10410409.114500294, 10410922.814558761, 10411381.25, 10411635.213106394, 10413612.5, 10413626.5625, 10413895.256665152, 10413905.682435783, 10414338.172936844, 10414442.1875, 10415763.571196815, 10416576.228861185, 10416716.021010254, 10416992.1875, 10417426.587668192, 10417679.6875, 10417806.25, 10417979.6875, 10418159.516888538, 10418231.25, 10418258.52221642, 10418366.534710793, 10418540.625, 10418619.801520143, 10419456.281577459, 10419600.912508346, 10419652.138780842, 10422318.75, 10423104.073238656, 10423108.548334233, 10424448.513423586, 10424840.491390547, 10425955.370817874, 10427175.0, 10427943.370247621, 10428306.995628402, 10428500.000678038, 10432904.6875, 10440392.1875, 10440505.445981033, 10440737.360069387, 10441344.648715483, 10442147.724013112, 10442663.06036463, 10444837.488471895, ...], [57.13307791109892, 70.96501339629867, 5.1745997363929925, 53.09400932036763, 14.112212086810874, 28.369723017630143, 6.152609587303036, 8.868474647082435, 93.39548899668172, 7.98418491561956, 70.71151061552251, 123.98802720497135, 5.649606894534382, 18.448288225651144, 17.07257750174296, 63.774644662443485, 26.61018111424067, 19.3098118338382, 6.42915417557848, 37.72591112034121, 40.49614413095367, 6.442501364509156, 183.0546138648989, 66.89478474830943, 21.60458123707093, 68.11130494123503, 20.540520505147537, 41.51666430353677, 57.079890175330924, 16.35659950622461, 49.4488518633696, 22.048061185177872, 43.44167144701842, 25.749032125468958, 12.272396430461544, 55.36159835641159, 11.764389671908736, 52.6577722256674, 66.01944184451762, 111.21244237226948, 9.288976946819126, 6.496186060523202, 66.96060208070656, 41.75928087221652, 14.648638222225333, 50.6117998145178, 84.88625899927857, 26.432019810821203, 76.88759381960718, 47.009032808677745, 21.15836739027181, 98.8250993948138, 25.47983124227366, 34.260319973265794, 110.61637126756983, 7.790642755532073, 24.71080711616521, 10.055292099691462, 17.567427052493745, 94.30632910707595, 14.11995712195959, 5.401462915487906, 13.58348170074086, 153.5636976525138, 34.7469965632427, 18.549813652034633, 98.90572431037717, 68.59713240335292, 37.12117257051447, 29.975403542164344, 56.33697137961204, 23.942767777981096, 22.354724072747267, 88.29178442003737, 11.285254557069267, 37.331121566225676, 92.62305521990632, 19.22975154562316, 8.499270392287809, 96.12017431019041, 32.98775197424608, 5.52056917683905, 66.42170714207795, 127.53089159188497, 8.341336224037844, 77.17867059567688, 132.31526003429713, 9.429934678104999, 141.87910467415733, 18.41716790064387, 221.38233457277087, 19.110816885195366, 6.28798698626563, 8.103905625079697, 20.705410700342195, 10.349846852554439, 210.5388972736777, 19.223375221049835, 95.90598375324299, 24.97057857615943, 27.01011099664686, 17.709343389073442, 5.76058714692817, 43.74690579944739, 7.9476308483659945, 57.94457167791046, 16.26178211777035, 11.657518131452209, 104.09818276626292, 7.3219950799021225, 77.33567045427722, 85.95007958228304, 13.100694014938115, 42.4924900509693, 84.2655195018868, 25.63341526914814, 21.8067628504494, 26.33823263833052, 20.092358166036032, 35.67360673981373, 36.07273723237494, 67.68809643348382, 32.912670022553854, 10.182288461956773, 50.275568521553495, 55.047073588229374, 17.22680307922516, 16.918595057158317, 52.238301580973385, 17.298598479592307, 20.851868957702955, 92.81048782643616, 17.056370692878637, 42.94479541815418, 62.49659065093165, 23.302803359455833, 22.0814682761913, 9.248597606398139, 30.93209120241047, 161.7612036019649, 27.770225971794684, 15.77514807443194, 8.029174294478219, 8.057200081192269, 68.83782485690116, 56.57340392512496, 13.48942021722307, 13.297993520581603, 101.5807838465446, 40.061639949554376, 8.818073083721588, 66.90919355323733, 23.487384145391793, 24.925458528217423, 29.860300090624165, 5.962941610510798, 34.33698626555258, 7.585636752488738, 85.88863499888825, 34.841620802417324, 14.844950753683161, 95.5532685301957, 78.94196544888132, 10.311069665840964, 23.371086462388245, 77.27854111083778, 93.25054130590719, 16.998090184657237, 31.651740378714198, 68.74154050567492, 7.172154258337531, 129.30946172206868, 11.657065435193848, 48.333978771120464, 86.55644525484838, 9.026323613039438, 90.40869866925604, 57.96505392000982, 21.373645272588107, 75.66204723883976, 43.12687890421802, 6.347837183522163, 38.25417408058654, 30.512607496571228, 7.583933456712861, 34.244372706513005, 126.06137822861157, 10.841803120052978, 59.68666905814974, 26.625003265722093, 56.069817957855754, 107.05795408425554, 61.234489782692336, 32.8571048602612, 28.005746110042686, 35.76338039755764, 156.58637031969272, 5.82189035666406, 51.349997444925144, 14.937388219048241, 10.411119817728311, 90.21671583791546, 58.463063254944494, 77.83160577885212, 7.559282724359356, 45.19601540911502, 37.75428725230982, 19.542580851070294, 15.867313572707783, 95.38725263232922, 47.00352676876094, 20.35305661897565, 77.94390659287741, 67.6736182461044, 46.10567668519543, 16.00963076019277, 41.11698447860664, 51.047888652577925, 44.712490429846106, 119.42350958588037, 46.15760338542847, 9.15705110794603, 164.8897344608058, 13.443578183722362, 84.628934434021, 72.7981557127084, 37.855457888408, 12.762961697388308, 12.025110287834698, 185.3054708500326, 70.8217698962827, 96.41574845184897, 78.5329161713096, 90.78296019927377, 7.166707466794525, 58.69747710660045, 6.070234382495834, 180.52707787688192, 37.241329590521836, 127.95145070871308, 43.65166711682089, 112.16863600418024, 5.594564622393916, 22.054165501868482, 22.367686644547742, 8.37228560834309, 17.00120702657856, 11.13381529428002, 13.10770112981694, 47.52733753382333, 12.578721278396237, 67.1999006838648, 78.12119295569187, 39.64379123161836, 91.57242363189867, 62.24783533183982, 8.442599807915004, 92.87211993511792, 46.921852081562804, 21.10689254465658, 6.258267695530025, 91.4136651830097, 6.803714679456776, 142.5666953745077, 101.41347078101867, 75.06338142270698, 113.2844221055204, 45.67214317504076, 22.48902923180562, 74.35419750412869, 125.78383427666185, 21.273210057368875, 66.35192481035574, 30.07954475406893, 66.50569211842564, 36.32870171608715, 45.09545003009328, 25.353994826912853, 59.505954387392066, 87.71302199808196, 38.661497983405674, 45.87187218148584, 99.25207102609383, 117.48419149440907, 15.965284824099356, 136.87536081220583, 73.17670031115014, 257.11166854092903, 15.96388897438492, 37.35285208250351, 72.90391028591077, 9.96074136118163, 18.760663545649383, 10.499846874039504, 37.26315816155643, 10.107508964661022, 14.481407248395923, 34.68112441763535, 69.22089282387361, 61.48936101896476, 46.02416556550713, 49.54805347541251, 71.83102734056409, 28.02262097124965, 41.688054826100085, 128.21247790531947, 48.71904048805548, 30.9499411141275, 52.239575121423634, 26.514751929327595, 11.88921228646551, 77.04763967097662, 12.174158321506773, 8.05082829768169, 21.09564135050052, 12.102797780883849, 17.322288631454633, 95.50094508677924, 76.28431698093833, 29.527769355852648, 5.389284632803976, 231.0286270920366, 67.40545306059319, 32.5306164837777, 27.804188544259837, 65.95780364588566, 34.05506828031215, 134.3967432411941, 13.45711927384883, 7.348494048727724, 6.796680299169093, 55.53868091793019, 64.94201129272724, 9.747273187746694, 6.686746945864486, 25.850366514284428, 109.82165454439942, 83.09251219708652, 45.17087394156385, 6.141155606999666, 7.88327307260511, 25.282533230316595, 64.72251212314535, 72.15507867528491, 11.532317580484897, 73.93262053710986, 23.5825629945061, 44.19110513103381, 56.39955310842243, 20.8556439723765, 59.574923494585505, 44.9934615957692, 28.90756638029942, 33.08899792981375, 36.72983411652794, 88.8243830218328, 89.52895545504754, 34.124483813474214, 6.734907039627806, 13.698751930262974, 42.33023273317732, 64.44410831671401, 7.117658383982783, 21.985848319340946, 12.606449881259236, 10.23243442752092, 149.572379890969, 24.972112273457313, 61.561094742164386, 35.5802629980033, 16.57066235722677, 19.090991083701482, 105.73311395261499, 15.101056858401613, 9.418973358817345, 112.52682708175232, 93.56444305893437, 35.40277956553445, 62.70677479592434, 47.71049432493445, 37.65510023811984, 320.45639209262083, 30.337176717492955, 84.76735670716954, 7.046072491989125, 116.00626100818693, 8.04448189611156, 21.526091226897282, 8.262390168930974, 13.350667938227176, 35.57610610534435, 54.94131637717361, 5.4173956195802715, 107.9006340874858, 28.383421387825155, 34.971835383984924, 31.840356704134486, 11.058478211308435, 27.175677523273947, 47.630547348858585, 24.757096511097096, 66.1394930135812, 30.167997869930407, 63.19780903551723, 74.34945205128477, 12.260081326219801, 34.362748135200775, 9.237108365781117, 43.231631484002534, 81.74753456475227, 140.4584511038521, 5.1420642911104375, 16.527135751934697, 14.828162959915918, 15.81645789287874, 7.691902964172605, 38.635596384524, 22.66571059758982, 9.079978864886957, 8.659286745310295, 14.70417946213854, 21.627102322888984, 9.556311438191235, 112.78425864623668, 14.735108884872137, 6.396561421057725, 69.66992114453734, 22.086253223600153, 5.695067697642566, 14.228925471723043, 40.67651786470815, 93.53267519708707, 26.629164559893077, 177.8356154451097, 5.350355120235546, 71.80008403973333, 79.71977595784645, 8.24289849847456, 18.586264804642745, 8.130219004900704, 88.9283976105367, 9.99672821722004, 84.87543332229308, 39.150452098599146, 8.663078433017526, 13.41880626120147, 46.04380607424878, 7.0420791024923215, 63.31710604976905, 9.519628683842312, 5.968321102913062, 28.97766634260175, 27.299478933285485, 40.84545202232888, 78.93632662477725, 22.382019243374682, 80.66865513804842, 5.894381257050644, 13.8922630695456, 11.311354652805527, 95.88000373594758, 16.7964907100215, 151.6935314048186, 67.30881634637481, 153.0874020660445, 45.395032951977136, 7.812797463185235, 8.318384633767005, 10.603312460048471, 12.090215712412554, 90.08723154299, 10.244254530369457, 11.386999897893991, 6.354173586739803, 70.13429613861398, 16.55080385702179, 73.42258197195483, 8.480837462447031, 121.81304134797932, 9.056098376107084, 59.43108843230146, 75.76028136747564, 29.841927196435048, 96.8543491404974, 38.0001024289528, 16.529098239776765, 10.192294024035368, 10.845203880679911, 12.344559055173972, 38.97110044153599, 29.03939213064993, 14.637274050687164, 5.524302532693796, 5.948674411383204, 77.99469875793595, 28.365246182103483, 80.6763271997981, 27.750170989387897, 18.06053088888224, 82.27337502839404, 5.921350583944039, 27.944031621946788, 322.32321635103125, 46.456940186119695, 40.29866186955877, 37.62185883891781, 94.40192252324894, 22.430811018623707, 39.17822052165734, 45.8565512085925, 87.26183406249504, 43.70080374490858, 91.01372757184973, 64.8600974291856, 67.82991224787118, 16.633702899600557, 20.38980598062193, 85.24745818245736, 10.560419328690044, 29.703427824639768, 143.30887281154548, 8.588857028115594, 92.8572027984711, 118.25802969361644, 309.9021592024501, 57.938263034437355, 28.541676612379305, 14.358954050043213, 33.23360655682994, 41.71829905794895, 6.4021480932098145, 57.58405334377774, 93.87162090298187, 131.16807763065268, 61.75505519016061, 39.76348392509502, 51.74454902325116, 20.843804213649623, 5.878699219916846, 7.5091825021352845, 58.581356880545115, 71.86479126432917, 5.639923780923214, 79.54347154273378, 79.02690726692185, 38.332527976014134, 17.07839887555957, 83.58322267417128, 44.4992955712205, 6.531028305230474, 32.57679660078987, 12.167678926256468, 25.494322866255995, 46.90516911493399, 32.56745519443693, 107.99138553589825, 7.032969842445352, 83.88202788350058, 179.40641286800715, 56.51058599349811, 46.93196138748225, 37.679058115293564, 30.445678738561778, 93.10831904864679, 98.79375232350418, 27.524632947775544, 40.30509071730175, 16.058522758223617, 87.78274251818529, 53.60658306205103, 5.425987585941104, 6.9071264045908745, 13.328430910449478, 60.52042638866115, 133.28086488720845, 17.236987767774337, 114.75117576569069, 26.561530114419806, 64.1976630433694, 42.969966056827694, 72.64802938610215, 36.658044454379294, 50.559508152941426, 24.61673842888658, 233.47661494968872, 7.620696119512848, 6.1697300669555, 7.993030459524153, 9.192399872654716, 65.26162248323354, 69.5101861587139, 26.350107572107284, 15.380784517784384, 14.952832409004284, 26.51366620551518, 66.73105434296919, 20.705187476353466, 116.10587429353426, 5.252079485350553, 9.499009095525304, 47.42346852767413, 10.698646668409234, 60.29031267565168, 54.45933405634593, 39.326229786377624, 7.576944852024237, 49.59845643602271, 91.67890474267244, 9.661726632261976, 14.608354056764279, 53.92377373066191, 21.457388404655706, 77.96014699286263, 69.79550599535833, 7.162083263013893, 23.309506894018053, 18.63534003892348, 6.023206891071589, 5.624903989561739, 101.73760780072101, 12.791710389551021, 10.77591905538568, 11.176467786051726, 5.033957553215523, 39.33376573196372, 52.08369116139604, 22.001977208559047, 74.18226889090181, 52.82634030649668, 17.820037919166158, 63.48595808955035, 11.117492866000505, 7.118873210455377, 81.49893596261258, 60.93725760822163, 19.211598974939328, 43.05742213323095, 54.83003737886465, 52.66937334906504, 13.051889573546255, 7.05668982735845, 12.513143314548712, 15.71621392583375, 36.522977194476105, 41.99440709580658, 27.7926725223342, 12.026611106042104, 20.286097547687984, 41.433134551505105, 24.85392677251307, 8.27047047429131, 61.948969247726325, 33.768074915402686, 77.26714552302266, 104.77772512736922, 11.17355228187557, 121.67657845294741, 60.60504572343944, 6.260831889503396, 37.748357908472286, 51.74334491812776, 115.20419345668552, 41.01747864327029, 40.91948140153028, 137.8448943429442, 140.92489153362675, 111.60170922533761, 313.67394621823195, 35.882159125573594, 30.55456252357861, 23.31296143088256, 76.5087404290793, 127.19436093923908, 77.65167145852818, 23.77364983307246, 54.344663338967, 34.245775137973496, 78.28209455913834, 69.34973885027435, 84.94168658088037, 5.111051054610151, 53.06091627779736, 8.310452593058395, 96.52756696875358, 67.66244103909325, 10.651250622286964, 48.94963378689252, 121.87479398073343, 62.402016858087634, 16.93400377166803, 6.716009057519891, 11.342760806370686, 136.97548279175172, 92.29953121521056, 28.099844898664173, 28.484785040988175, 108.23121146372264, 54.53647843972307, 144.7811114671038, 23.999191536746956, 45.11371825703625, 13.41840350056182, 197.1355009922618, 20.10476210881912, 44.220734655915415, 28.19689622607305, 5.785546800982217, 29.03769658123515, 5.444784053224029, 7.950111727091535, 74.88420314910243, 58.87697719434088, 23.078139692291636, 125.95216997533868, 66.88938793092667, 88.00910024717966, 138.16902457558908, 40.00803856549281, 17.81678651649939, 5.562039415456082, 120.59566368154302, 85.83263814922287, 69.28554521579565, 58.57700178930075, 63.339719918475936, 32.48617703216388, 21.826940287183795, 21.478524895918202, 59.03443676457785, 21.277431554620403, 136.64334793681186, 39.347004270696274, 11.402287420678155, 28.322537711558788, 118.19104192585321, 12.518633004357097, 155.3891818402286, 49.9232984286266, 114.8180944920172, 67.99820080066083, 189.40428442410632, 185.66089281506672, 46.42466225172055, 11.428048688443685, 96.42186404328619, 12.617342141312577, 76.31965911836156, 45.95990268118666, 80.32896518742558, 140.38671281445153, 13.422987331986885, 78.052656182926, 78.59262864009199, 6.053165884469441, 6.1279971592424385, 13.053355947042991, 7.711649690532264, 54.078537732246645, 55.97273651446531, 19.738122876726813, 16.05947251786616, 63.08979425056189, 85.0596949507627, 12.632192215051607, 65.36005435106264, 30.061718699973717, 5.50230526822693, 31.635860025099497, 72.59125460448192, 51.884658395173176, 22.586363114324946, 84.73138182651009, 29.97156310356911, 18.945812865433787, 23.901880070728865, 27.451710498064784, 39.84506775176925, 16.788106962717052, 88.988859255109, 44.08018248499276, 6.49496829989757, 6.5141158983426495, 79.02541036855928, 45.15556378781005, 118.18939093211277, 72.81675727957938, 29.274199167971986, 57.20508294325242, 16.435534866088314, 35.518676358344315, 81.44979952347146, 20.990982799049952, 7.012941832301471, 93.17737267676031, 88.58484196822286, 67.50182677823165, 187.91998602377365, 54.69575215111068, 59.94116850825008, 64.19230014860861, 11.64130275706549, 22.91487526276587, 45.40198782247482, 86.55088577642465, 108.21700708156246, 25.98979959690312, 209.82248695188503, 10.719349730921063, 38.864463676637854, 89.23964561557538, 8.380662537190027, 161.15968161415273, 59.96252609742474, 65.4925181184682, 14.648832318493309, 10.558250839914061, 12.150123038192739, 18.80272692990712, 25.409247664888944, 68.33037154822247, 5.827526493668772, 101.2972388190615, 30.003929207363548, 16.534358175088606, 10.297452168705444, 27.90823673002653, 108.26112015459893, 53.273820553049966, 36.27674585909871, 170.888099268383, 91.05504161331434, 123.51860474452681, 76.2389053228674, 166.22393976243416, 11.085925558946693, 10.341008296851049, 14.086854607296601, 92.36584454188204, 25.773674121485588, 19.79503197200225, 7.721034397691802, 13.584422898943071, 63.19599087867019, 13.312739062623665, 120.9616784206046, 8.599199772983418, 98.63469146980268, 112.55994064106414, 65.84310729994671, 32.55479765532747, 8.266297874661738, 113.40808733673325, 21.03706673935463, 59.70171336619833, 8.104811315281374, 16.349483782125194, 32.65153436059072, 66.33597677260302, 79.39053846515998, 5.606412918710881, 130.62479069479798, 9.055478504003242, 70.45294939120684, 15.009148548960987, 8.465222201777657, 8.826730803898817, 93.9350465441033, 7.267381995447898, 285.0639671023632, 65.43736611146264, 6.037342752239071, 20.509307754109898, 44.66475643477143, 32.67138376801841, 104.23387298812683, 30.943363140444653, 16.415782368341276, 141.60166391224234, 13.356766164196374, 17.82473844167188, 127.51813450505215, 6.480489665887776, 27.37956086413534, 93.99966201354906, 13.568063007968558, 66.81882683154774, 51.468408324036744, 10.932998810054215, 47.66615777970002, 15.279459264183224, 22.290191706239888, 21.863931729872792, 67.60572458077857, 9.56206018295928, 17.454818842289576, 201.48999987929886, 31.54890145907158, 5.645034821523478, 12.863893178537275, 106.5089779608347, 6.2899704582404885, 16.106485007121318, 17.334191343619967, 12.390745094966224, 26.022680392615992, 126.25940215028947, 52.238099790178154, 15.89554300100554, 72.90522480283953, 51.517658244920284, 19.380973312542757, 40.64536802219703, 18.144557672228682, 51.29768885384199, 6.5331871163860455, 34.54468959670324, 12.41379249061895, 15.671567288571879, 35.45975770196955, 87.9267971577858, 109.10596647492234, 8.069165222125193, 5.997818220874943, 71.43033437704031, 20.30383702138583, 34.38276571672135, 20.115378844648948, 156.28284230902014, 78.17163859104679, 15.74027938837682, 31.79552737694365, 15.408822711805602, 8.754966976324065, 12.238861094399832, 17.088328515496087, 18.72713984842705, 68.37247891417718, 26.147607662609104, 7.163169815379691, 22.26608916710217, 58.989797173950016, 27.69080240197739, 101.13153729120846, 184.46381550880398, 102.61685489450765, 72.6784418878495, 20.93142558463608, 113.37695315865574, 19.585377490603793, 5.802590284148888, 53.995662642578296, 31.390188549873272, 8.820427442885311, 9.479223133499342, 19.390071735697862, 9.120438932214853, 20.348513664600606, 94.63261528576234, 25.615672220462265, 109.57260261938112, 41.10983482473805, 27.466548954958153, 20.84458748434473, 18.32466876053291, 79.50353815812082, 40.7501260674593, 32.122905046035996, 19.617992359692387, 31.42160837691267, 6.090720403500477, 77.26341590194055, 122.89453749490771, 77.7817820085614, 76.07132523223892, 132.99292220820934, 68.83558340364718, 12.926204321188015, 45.56511539456283, 70.2598717673502, 6.7698271801773, 20.116874847180412, 5.857887161163723, 63.08252929208745, 13.023638089811422, 5.870508615431994, 21.163863597297574, 5.526631000495265, 18.39384863800677, 69.16201883095621, 59.068342776836246, 12.534612100974154, 20.02027161700221, 48.706655089645814, 66.08346097266495, 5.4952911830693205, 10.915810558772746, 7.964203588706883, 7.364073722860213, 6.148377429994206, 88.92113741632497, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)