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 = 48250
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);
([6855695.25441897, 6950167.59860699, 7045738.984905761, 7046562.5, 7099167.1875, 7103106.125726966, 7126487.5, 7187040.871307944, 7225469.392936244, 7269591.033251073, 7290418.402027662, 7298304.303373615, 7302337.606727391, 7317238.430192858, 7327705.951790117, 7341967.1875, 7368478.125, 7376303.125, 7410626.862271845, 7410643.742430475, 7418197.081177672, 7434417.689738862, 7440417.090759442, 7441457.842525282, 7453212.219576051, 7462533.618172157, 7462643.444079956, 7466393.75, 7471662.798428741, 7575018.551819692, 7579035.9375, 7579112.5, 7584260.9375, 7587350.0, 7587604.658459447, 7587614.424411904, 7598057.390862961, 7623409.7368542645, 7656829.0272050295, 7685227.773861275, 7706786.761523859, 7744528.125, 7745543.930181851, 7772717.1875, 7779218.75, 7783705.894482665, 7831592.1875, 7833484.375, 7833876.5625, 7840990.978731273, 7885459.375, 7895016.572899555, 7917145.3125, 7925107.665970284, 7928535.663110141, 7951654.795491978, 7954990.625, 7955649.772162516, 7961248.8533898685, 7980960.9375, 7999638.610520105, 8001712.796637801, 8001717.065540428, 8004931.358433088, 8007149.526997078, 8011469.885273369, 8024147.650581201, 8025445.3125, 8026942.669107237, 8030038.3062231755, 8033215.322189282, 8033459.821690809, 8037304.58094628, 8070213.155762095, 8072246.875, 8080356.147707959, 8081055.842827667, 8098190.201879674, 8139695.3125, 8152149.274815238, 8159175.0, 8167068.75, 8179385.533575734, 8179883.176306829, 8182900.439407424, 8201006.136753317, 8205504.539501993, 8207567.796843211, 8217667.1875, 8219853.931710939, 8219956.904955074, 8224710.9375, 8225525.0, 8226610.9375, 8230249.797727649, 8235511.087168592, 8236694.742197891, 8262364.021032453, 8263259.303303106, 8316791.90673687, 8332869.849820385, 8334248.409939397, 8341182.194208555, 8342189.105196334, 8343899.549586416, 8351476.8246071935, 8354174.513496344, 8373557.8125, 8379496.993630222, 8381361.1926027555, 8389054.6875, 8400608.693979235, 8409363.90831639, 8415133.363206763, 8417024.577037986, 8422736.20497298, 8424057.85144548, 8436244.859426498, 8437004.155565165, 8437759.303226104, 8442003.125, 8446548.4375, 8453729.6875, 8458891.904413741, 8461134.375, 8461795.672331609, 8464015.586462185, 8466694.560978977, 8473679.629684744, 8479867.256233936, 8483460.867577702, 8484854.027190132, 8484863.743217703, 8485039.059564086, 8486309.160077626, 8486309.36819663, 8489863.089162763, 8500568.21149382, 8513234.375, 8556551.949696587, 8557832.497542862, 8561115.841883438, 8564558.85722567, 8569002.662990363, 8572447.216734773, 8574522.12113796, 8574677.474454902, 8575891.734166961, 8577298.4375, 8579390.36484899, 8580275.02454743, 8585457.394057866, 8585785.180117361, 8585858.827066181, 8587371.732116936, 8610532.8125, 8610550.117533702, 8622223.977755759, 8628894.528580869, 8629041.141598754, 8632999.780212628, 8640006.712191796, 8641501.367891256, 8646673.4375, 8669165.625, 8676220.23331934, 8692058.759506939, 8779062.5, 8780732.47321733, 8782671.875, 8785041.73107341, 8791175.0, 8793818.194016103, 8795456.25, 8796012.5, 8798306.778972164, 8825931.25, 8835855.823090468, 8849739.539927378, 8850889.173657583, 8851986.260854574, 8853368.813596144, 8853420.871675786, 8859329.6875, 8861183.316639476, 8864011.31831833, 8864921.535435049, 8885024.818013525, 8888064.255765527, 8892751.247263584, 8901403.866979355, 8905874.372684905, 8926252.62767492, 8963758.539302723, 8965664.0625, 8968681.16310319, 8972070.790371945, 8973463.324977472, 8974283.799945395, 8976557.301421985, 8976850.096920993, 8985607.588344758, 8986381.25, 9013235.541264622, 9013447.338695785, 9014593.75, 9015280.35381233, 9016185.9375, 9017181.706610788, 9017221.875, 9021104.547528632, 9021690.625, 9022219.05780727, 9027249.73433607, 9033419.337877048, 9042716.42698452, 9042833.860863928, 9044623.074365998, 9047898.4375, 9086790.147906452, 9087732.775283158, 9113835.949388485, 9123035.616965463, 9140984.685911963, 9145053.125, 9146889.692742635, 9151488.063841222, 9158520.3125, 9159411.89858794, 9171134.375, 9171515.625, 9172253.125, 9172988.037455885, 9175780.031704783, 9175852.451325234, 9176638.79729536, 9180971.875, 9187485.19619283, 9200706.247609595, 9206360.326453926, 9240517.1875, 9242840.321361903, 9245364.954864815, 9245554.481998403, 9246141.881243354, 9248290.627312616, 9272687.5, 9318937.11073507, 9322015.061786009, 9334017.565039787, 9342589.236014381, 9346692.568609737, 9375928.904073376, 9378395.3125, 9378423.392332625, 9390821.5892677, 9391403.883291189, 9428089.922928363, 9430008.03623667, 9441684.051347839, 9444793.681308825, 9447312.637101743, 9447473.2483378, 9450735.90069744, 9473521.644237021, 9478641.35783441, 9494743.621897088, 9494796.329767385, 9512663.632259928, 9513846.875, 9520826.102997392, 9538207.606329326, 9538209.536735853, 9539411.679069703, 9540115.625, 9544748.289853174, 9545546.910790399, 9546028.125, 9547360.180044308, 9547368.75, 9570768.24923483, 9571630.536591582, 9572058.178215455, 9573245.3125, 9575306.167505134, 9587741.369616205, 9588053.125, 9601558.582411485, 9604556.09242368, 9623344.657115838, 9623355.509009993, 9626270.608069647, 9638277.754939258, 9645549.01481525, 9647890.429392284, 9647971.874612639, 9649905.89866625, 9652242.346540371, 9696672.867640523, 9708349.07684938, 9708534.519300811, 9712193.043306265, 9717160.794722112, 9719252.383047717, 9723445.3125, 9724038.124981666, 9725245.237983072, 9728138.577064725, 9728341.158305949, 9728793.728462972, 9752440.03763061, 9755244.513381444, 9755254.6875, 9755355.739454169, 9755791.945526535, 9756252.319195595, 9756962.5, 9756962.91878233, 9757178.125, 9757664.872454174, 9758097.101096982, 9758517.455873242, 9758520.747364257, 9759334.66358007, 9760537.5, 9760961.815544566, 9762761.86411296, 9762984.375, 9763113.543536032, 9763449.939506577, 9763585.50782923, 9784371.357136669, 9785409.86438659, 9785450.0, 9785687.642198607, 9785694.559331229, 9787345.247118583, 9788022.30654546, 9791325.214282481, 9791843.75, 9795304.199461473, 9796950.962833496, 9804999.694740223, 9809501.5625, 9814391.8579141, 9817492.692676455, 9818967.137336591, 9829960.17524199, 9845362.657360433, 9861896.691618016, 9862987.895159299, 9864618.975244107, 9864957.00815302, 9865572.779635392, 9866564.0625, 9866624.11858944, 9867495.3125, 9868246.657508945, 9868511.08611343, 9868691.549169304, 9868725.0, 9869959.069457395, 9870398.723299397, 9870876.591401191, 9874782.8125, 9874805.48933288, 9880888.379418809, 9880897.80205953, 9881121.702101769, 9881441.962186659, 9882456.512751995, 9882510.958485039, 9885409.375, 9885413.516228516, 9893426.5625, 9911257.185139252, 9914930.909018548, 9917770.3125, 9917778.957246259, 9918477.27043511, 9918907.042884128, 9926943.734081019, 9943010.9375, 9943310.682476787, 9943744.767200915, 9950764.0625, 9958854.6875, 9970617.457171937, 9973088.450740209, 9980628.403881202, 9981866.671048917, 9982866.52183427, 9983906.25, 9985024.832540084, 9986396.1450795, 9986683.025169555, 9986777.446865592, 9986907.086341517, 9987127.744761163, 9987930.98319568, 9991364.0625, 9996167.51575003, 9996460.687585792, 9996479.437931204, 9997646.875, 9998343.47499413, 10001415.626017561, 10003559.729384484, 10008814.246664148, 10011659.09759298, 10011769.476921573, 10011783.943410788, 10012895.25421298, 10018082.8125, 10038569.529406082, 10055660.9375, 10065705.272198703, 10068600.431459084, 10080243.851223288, 10086033.596615626, 10087509.391470123, 10098408.361201033, 10100994.626639772, 10102158.034756336, 10117238.922741815, 10118154.432201983, 10119063.407390127, 10123444.635815544, 10124316.020801987, 10128837.5, 10131159.394565746, 10132776.5625, 10134898.24665532, 10135293.460149515, 10135327.077461567, 10136676.565810371, 10138389.949026905, 10140028.343479417, 10141048.021795673, 10141243.331785468, 10141254.6875, 10141474.701854926, 10142129.63963158, 10143341.919573717, 10144020.3125, 10147272.271686116, 10149156.169355193, 10149594.098231645, 10150503.793316813, 10151442.281828135, 10151504.754651215, 10151829.759162016, 10152194.243200248, 10152563.368329132, 10153577.778673049, 10156150.152337776, 10170146.875, 10170160.9375, 10170193.75, 10171404.6875, 10171554.6875, 10171562.022799563, 10172365.048522256, 10172390.090188814, 10174487.5, 10175640.132942783, 10180254.643278988, 10180544.347052626, 10180564.528357608, 10180956.096864032, 10181014.36163695, 10181821.875, 10183908.170737797, 10186003.65232993, 10188733.109139057, 10188789.602269713, 10190381.25, 10191160.555205083, 10191806.796562485, 10193552.485446632, 10197901.5625, 10198105.814949853, 10198446.562833754, 10200362.07437057, 10201443.75, 10205503.636480875, 10207653.125, 10208165.565869242, 10208838.1695723, 10213293.888340019, 10213295.131951166, 10220119.726977468, 10233989.5723536, 10249342.371009542, 10250795.3125, 10251621.817465024, 10252156.25, 10253072.952356692, 10253490.505406067, 10253869.573636722, 10254957.8125, 10255667.035987189, 10255872.832463445, 10256931.433800524, 10258373.215012994, 10259943.478188386, 10260476.706897719, 10264728.125, 10266442.296352593, 10274747.067936251, 10275255.190352472, 10289831.25, 10290802.782379352, 10292462.869579831, 10293554.73918289, 10297778.824313262, 10297794.955265004, 10298737.480455937, 10298828.545498893, 10299457.377993971, 10299570.439851023, 10299848.4375, 10300130.62307209, 10300144.787327461, 10300690.817993488, 10300706.25, 10301204.6875, 10301465.625, 10301521.48252762, 10301587.5, 10302040.519170467, 10302301.7900741, 10302314.0625, 10303946.10494962, 10304408.741480289, 10304478.5094052, 10305221.875, 10305223.226203792, 10305226.14652242, 10307031.011761727, 10307269.785360279, 10307462.5, 10309294.968634132, 10309297.902646123, 10309582.8125, 10311078.125, 10312044.95175881, 10312416.71109961, 10316804.261111552, 10320491.109732816, 10320512.462227667, 10325222.986126252, 10325878.594507508, 10326284.375, 10326363.943833243, 10326524.424308639, 10327310.734178305, 10328127.08209521, 10328569.903826961, 10328668.524969477, 10329829.6875, 10330612.991425173, 10331359.091693696, 10333099.740744637, 10336046.875, 10339941.24687057, 10342414.712809332, 10343440.625, 10344381.97865991, 10344999.912996395, 10353260.804763677, 10353535.498282716, 10353742.976438291, 10354287.885626534, 10354297.569882775, 10354792.1875, 10355213.77278935, 10358450.399226, 10361989.01558263, 10362841.976724448, 10363341.188057559, 10363341.571234595, 10363374.726313949, 10363418.75, 10363525.0, 10364009.375, 10364057.262879279, 10364115.751976259, 10364311.917114059, 10364490.253665823, 10364729.224676805, 10364925.0, 10365208.257883418, 10365392.28707096, 10365448.073499309, 10365516.038166454, 10365659.609664822, 10365785.203425363, 10365815.847030034, 10367385.88585649, 10367746.562054759, 10367752.338583201, 10368150.074336467, 10368306.851367163, 10368503.125, 10368736.691915171, 10369471.782445857, 10369486.842599764, 10370155.337667437, 10370973.4375, 10371440.38551264, 10372150.043932198, 10376668.335722974, 10377051.534450302, 10377231.468204005, 10377890.044306083, 10377922.18289732, 10377946.875, 10378440.573246077, 10378671.193722254, 10382542.1875, 10383887.402931124, 10385151.085031869, 10386423.4375, 10387701.319251232, 10388278.125, 10388749.915860837, 10389323.8781204, 10390576.376010567, 10393812.399809647, 10394629.6875, 10398967.491198042, 10401349.215430658, 10403520.3125, 10409402.418210872, 10411874.835677925, 10413323.4375, 10413614.0625, 10414201.546216084, 10414852.56596623, 10414998.4375, 10416168.791619552, 10416262.206166547, 10421764.0625, 10422837.2855543, 10423472.170676788, 10423858.808502499, 10427769.82955107, 10428383.422452597, 10428502.312091388, 10428697.66470055, 10428920.3125, 10429580.92797694, 10429908.654156944, 10431180.889756467, 10431605.72880623, 10431697.123443559, 10432153.125, 10432435.9375, 10432748.4375, 10433192.1875, 10433244.988977913, 10434318.392574364, 10434788.684128245, 10435407.16843467, 10436237.26835697, 10436493.988492467, 10436517.343942374, 10436756.03090487, 10437231.71506257, 10437357.576411514, 10437501.348039078, 10437524.568693679, 10438984.71494017, 10439363.445554588, 10439477.784096839, 10439491.568123683, 10439543.75, 10440869.77320241, 10442062.930352638, 10445585.9375, 10447181.797912754, 10449596.875, 10452599.857733233, 10452696.875, 10453887.5, 10453907.832001084, 10454318.212561103, 10456672.140065683, 10457359.375, 10457370.673099872, 10457904.595550995, 10458037.5, 10459115.275682798, 10459242.725552937, 10460150.0, 10460199.69080388, 10460338.079460843, 10460449.419384276, 10460555.989766747, 10460572.420976454, 10460658.581838144, 10460664.745996961, 10461644.218014805, 10461667.971192122, 10461878.375777684, 10462268.75, 10462417.533134738, 10462660.9375, 10463229.47846847, 10463498.4375, 10463511.11147847, 10464043.75, 10464117.970900068, 10464953.125, 10469475.0, 10469746.746662728, 10469868.801591536, 10469905.800623301, 10470942.160933295, 10482270.072607135, 10492956.55096029, 10502587.76125772, 10519926.5625, 10521393.75, 10522672.442573342, 10527390.020415965, 10529186.935050637, 10531859.375, 10537260.747030757, 10543345.3125, 10547562.840839174, 10549467.640008233, 10549726.5625, 10554391.34395449, 10554585.9375, 10555365.625, 10555523.4375, 10555696.875, 10557324.525233412, 10558450.304655237, 10558893.75, 10559151.77329535, 10559348.4375, 10561346.30067645, 10561663.730014348, 10566376.971411634, 10568444.978105057, 10569450.858857945, 10569500.0, 10569951.5625, 10570385.9375, 10570767.043736523, 10570771.400126448, 10570960.9375, 10571046.875, 10572243.411050232, 10572295.842076033, 10572393.753694152, 10572929.554190615, 10573207.707802901, 10573709.28469749, 10574996.472306, 10576753.999498893, 10581837.295206774, 10582915.54744629, 10591634.375, 10592044.685756184, 10592430.28786543, 10593843.394679941, 10593967.411935793, 10594698.4375, 10594925.844515502, 10595021.875, 10596407.130994251, 10596610.273778908, 10596862.4424424, 10596995.3125, 10597099.756909924, 10597137.5, 10597871.424349181, 10598031.142658582, 10598074.102540128, 10598296.75156169, 10598304.6875, 10598625.331483642, 10598673.000519421, 10598673.4375, 10598725.0, 10598760.843922643, 10598787.5, 10598861.422479855, 10598925.0, 10599008.31793126, 10599015.668898117, 10599043.75495399, 10599179.6875, 10599552.323203158, 10599587.004962988, 10599728.207156781, 10599896.875, 10600073.437041722, 10600296.875, 10600437.405249529, 10600767.1875, 10600797.181285607, 10600860.540549992, 10600877.720670212, 10600908.79228004, 10601467.015580835, 10601475.431334307, 10601850.753082993, 10602521.875, 10602896.875, 10603417.236486807, 10603418.75, 10604528.884995213, 10607984.375, 10608580.681249797, 10609728.033281213, 10609870.48510937, 10609990.625, 10611885.426651808, 10612065.393114312, 10612214.0625, 10612268.17001504, 10612282.750483485, 10612322.638956249, 10613054.924005765, 10613237.5, 10613930.993137473, 10614345.293089649, 10614727.11252578, 10614924.221637921, 10615952.702074887, 10616092.1875, 10616096.62540257, 10616220.3125, 10616353.873571984, 10616375.372907251, 10616471.265033357, 10616639.0625, 10616924.808752082, 10617345.912771937, 10627566.648213118, 10628376.925290331, 10635850.853506945, 10643382.8125, 10646335.349763962, 10647551.5625, 10650015.807476303, 10652585.902042534, 10654420.3125, 10656308.259977514, 10656673.304080138, 10659126.889981536, 10659467.1875, 10660365.61850738, 10664310.4330292, 10664326.873264492, 10667846.714977525, 10667862.934936775, 10667865.911343044, 10668129.253897801, 10671193.656145772, 10674400.396579681, 10675403.125, 10675545.3125, 10676853.019162836, 10677034.512439247, 10677286.61442823, 10677354.981724707, 10679016.544117585, 10687000.598164111, 10687820.3125, 10687822.819369657, 10698636.658041444, 10701952.511938648, 10704786.441249624, 10705027.342756096, 10706271.875, 10706298.4375, 10708179.709175074, 10708229.6875, 10708400.824499976, 10709223.283308364, 10709451.677677115, 10709836.675988918, 10709971.875, 10710309.806841332, 10710555.726266354, 10710717.1875, 10710846.962279571, 10710857.9019352, 10710972.511180345, 10711132.227604575, 10711212.5, 10711232.674084216, 10711289.516458169, 10711935.910756955, 10712214.0625, 10712342.1875, 10712579.47985716, 10712631.25, 10712898.4375, 10713005.114515021, 10713015.255644768, 10713045.3125, 10713807.581422351, 10713942.1875, 10714318.75, 10714549.79931239, 10714793.853181208, 10714971.828168148, 10715047.505989138, 10715177.346954457, 10715199.283612456, 10715485.895041233, 10715495.752377037, 10715669.83586273, 10715851.660928557, 10715859.36079173, 10715882.8125, 10716308.58746681, 10716332.392328769, 10716497.454390245, 10716615.468304818, 10716661.599259248, 10716671.401399476, 10716673.4375, 10716705.731846264, 10716869.694061281, 10716894.361501466, 10717018.540078575, 10717032.8125, 10717165.625, 10717274.658659223, 10717316.589615941, 10717337.201718409, 10717383.577265244, 10717494.59297275, 10717653.424586995, 10717658.98209678, 10717756.713700905, 10717784.562845197, 10717928.125, 10717967.1875, 10718003.929970508, 10718023.027579788, 10718115.137931539, 10718308.064338854, 10718778.30643238, 10718810.224806825, 10719641.715798631, 10719697.713094521, 10719980.178596424, 10720101.5625, 10720470.519435473, 10722322.45164978, 10726084.866871845, 10726382.026493765, 10726518.902847556, 10726522.626664799, 10726920.3125, 10727248.4375, 10727607.10098144, 10728422.416725984, 10728478.83119192, 10729391.199684097, 10729670.418880643, 10729674.122175092, 10729716.51621922, 10729862.112095384, 10729879.331920322, 10729981.25, 10729992.196175667, 10730098.4375, 10731696.875, 10736095.089045044, 10736109.61663985, 10739661.275692835, 10739684.90594825, 10739693.60925422, 10742520.48868449, 10753770.232208656, 10755475.41509208, 10757038.828458782, 10757074.17137014, 10757407.146327224, 10757407.8125, 10757433.781044157, 10757434.453840816, 10757464.392359402, 10757754.6875, 10757853.586923676, 10757915.625, 10758089.332514739, 10759101.5625, 10759444.75789082, 10760314.898098992, ...], [113.04380782627366, 64.2337480410662, 7.101202789796721, 32.680071391064615, 57.84810061648462, 22.694850756731817, 48.322738416184784, 16.654877334751475, 29.051504261682773, 22.660910913194805, 23.238302454396127, 67.77169662413435, 11.29872957037291, 5.187606491060499, 5.792239934023708, 73.22113576042848, 83.3618081431804, 73.36617211910652, 16.222065603348646, 14.912736213528575, 19.53111055878727, 66.66372732629846, 100.72185753669068, 29.539178223398487, 7.5048671884707066, 19.263977974933557, 5.518415225630706, 95.81833745163371, 7.71486233017573, 10.83145116347103, 31.2846125599215, 58.53980832908195, 45.44361408631109, 37.10664219263714, 58.300838395809606, 6.314032430950145, 7.457540019005197, 61.13278579212566, 74.26888076354939, 23.118778661364836, 32.59387038225097, 66.58329581226283, 7.669732857980144, 52.25268874728003, 30.189694097285773, 5.594674244562556, 104.54074682387143, 30.000711901433828, 67.47648297914667, 113.86450491195387, 88.59821179925935, 29.71156907502328, 60.33975540010253, 150.32800287944474, 19.159729273223505, 20.33795869700248, 105.80289766296343, 20.13463289693824, 16.80526782978173, 48.63864687019826, 13.459514392587732, 14.291722101985819, 26.326713738156002, 9.424803889461032, 21.766705290168307, 20.03454222323208, 12.603409929993903, 32.4060410668531, 16.18971443757514, 52.498994885014525, 23.71490489580561, 16.96969615805993, 95.78691018866344, 18.21169814355352, 70.39282828613125, 42.636886229259744, 20.200913829551403, 17.7286154926174, 83.06193129230752, 10.156325382695869, 73.58022803731136, 34.99037458601515, 22.508213035806786, 16.536755141832614, 28.194038389377084, 7.562785474740714, 93.28376307985401, 15.375570583477263, 45.82159106866209, 17.90907078471043, 8.666214931435618, 74.253176855607, 59.56197618068112, 45.845137706813375, 5.198299078291102, 6.793759178851789, 12.697348592503555, 14.785775551828172, 127.50799623435805, 13.969459079912868, 7.444048745052588, 109.06367180003419, 15.593438643294355, 148.84240548360677, 32.34096325392162, 35.603734901351004, 21.628798321603046, 68.35073017254636, 7.152989056210161, 11.551320627415244, 54.364066238689, 19.859283956588307, 25.8110044675155, 31.906718773991923, 35.975082978118806, 89.25083276884521, 16.390704413058316, 26.97118654963426, 21.18034056392777, 11.017342713406391, 97.10875955684199, 30.389407280308873, 61.01392190530597, 23.969222597078325, 57.41486034643814, 25.935135331625535, 14.79662802143192, 21.232117653201698, 27.43069756389335, 22.828937441940077, 7.103191720821657, 6.638471898200852, 18.507470191562216, 23.77141698642577, 24.901930031989767, 11.11708932584914, 12.193068387637643, 217.06142159788453, 28.66337107640689, 7.749552236186457, 13.863111730965018, 14.57674400373813, 21.317605483350196, 93.27276524563577, 33.453625058444715, 8.421174256572963, 8.835897691684137, 32.92835704926482, 69.12458833500766, 67.58861073423705, 16.1509206136407, 55.87753552689688, 10.119598561078437, 64.34608657367356, 12.30262649919803, 41.76311691172089, 29.755795401945072, 12.092073631562869, 6.92957983235505, 29.858190600233225, 24.832433856409907, 36.37306118294259, 21.402577053957554, 43.53736417658229, 29.28241448876923, 27.05086971771068, 46.940288651909114, 49.77735063012471, 18.365971932845024, 70.19872509132075, 58.251925634495976, 38.322402862113215, 22.987758266101714, 55.4408995744079, 97.26950051690298, 128.88998460459615, 70.74047750337336, 85.99471008787123, 24.227932222901043, 7.643942419244525, 49.16994107101831, 111.0427407033941, 72.20203388951157, 43.566748567704536, 7.796355116374916, 142.73083413509647, 9.05988888845159, 34.97428360103445, 65.00401651925802, 123.67465021436836, 18.798000598110644, 12.990379602457473, 10.430194599103867, 202.37358534742543, 74.58327158760068, 26.91674701134112, 11.966956295190345, 57.48118291755471, 14.61525590938993, 163.1115820176106, 93.09688340337212, 14.150833394495912, 84.55047827336615, 22.59466798535871, 30.045401230236884, 107.35677010286233, 40.028923968283834, 38.06943349114344, 17.023580360693465, 41.37036546758914, 7.5533849767809125, 125.5023341445409, 45.18357670220425, 24.199474868982808, 17.782477200372057, 72.48731357602163, 8.032201718143984, 31.68106746262221, 106.97606811324789, 79.95608656412186, 21.646748664318356, 14.9870172074394, 103.70534742571381, 18.1109098213827, 61.8208185098088, 46.09161604315034, 9.858469616874215, 44.588969536035556, 7.9922382915800725, 74.54136979339688, 42.53162091168696, 50.04920537188429, 8.592827601757103, 42.920012710083284, 19.91950467313423, 24.205617881289896, 32.01688342566099, 44.35513360778283, 39.71556946587965, 13.03186926671545, 41.51602901059791, 124.47784445463574, 10.220210639612851, 31.02242224264046, 107.10097261659516, 7.604074331179303, 68.43516369241038, 72.02499675173922, 20.88486265833736, 25.49245995872736, 30.031446002299127, 160.76985060095575, 19.065777708124987, 67.28491678808447, 27.661593410498956, 23.934718848610384, 55.43090289711022, 19.689263716064396, 15.868858818956108, 8.122532336305555, 36.434568212297094, 8.360434589846493, 20.273553197592374, 6.481337541382853, 7.5218538793481375, 17.78017040091679, 14.474731912605835, 5.323579358555554, 22.746226610339104, 84.5869697205082, 36.74526201837658, 14.209895026405498, 9.472009573099859, 10.048455802969105, 31.072698474149895, 7.083173233757421, 27.219838019022433, 54.22244296375246, 15.303293590173844, 29.827812487079196, 21.48547064195102, 68.36272242115064, 16.54639072067272, 69.08635426186021, 80.46663046646444, 56.386760522136754, 41.419627600406294, 10.079967510155697, 131.39641510768226, 12.919720394749893, 8.77468592598174, 11.623423330030905, 30.30497255781312, 31.98311365954067, 51.73992193687784, 45.38893207428632, 13.752524021060688, 61.790402387760444, 8.89194724556589, 12.529623054673621, 6.792661152701092, 27.95625101205763, 25.99075139959106, 105.07940749739933, 335.506194069159, 12.268720444377589, 22.919590444422745, 7.436618778314941, 17.4562236942268, 72.58548951314596, 10.318944479215805, 17.787792030862942, 42.90895623799441, 28.042098858112183, 24.521371660196973, 128.86072742417565, 83.20987113911484, 16.82052666919833, 41.73801949255986, 19.296384882935772, 70.80264375531688, 36.759778403014515, 11.883024806650837, 24.623106212554, 80.76596286444781, 8.812750852260269, 77.91430217060004, 93.14226310571053, 34.35960773939895, 27.382391020307075, 53.89224562167108, 13.277387387140536, 9.782584484115322, 93.62860945614113, 5.540021919981074, 10.124378766354733, 27.294744439411968, 16.888305500988178, 9.519410836468655, 60.62406645433606, 21.61325799129747, 101.54721411729535, 15.505034082169939, 47.64520744159688, 10.648865880770465, 6.333205712744572, 14.753696078286415, 19.223083075200837, 5.404524039801746, 38.27816811226213, 33.808178305234904, 16.738573445868, 18.913549592254356, 12.913531731762314, 70.09891718166266, 68.12012988222409, 46.45258926959609, 33.89263378253897, 9.460307085252504, 23.741526976747913, 79.35928658441142, 49.85683423243142, 166.41013284941283, 32.61860754475847, 68.85368534911939, 8.761588681325808, 16.88665812011989, 8.84628519004598, 44.26961192245514, 29.878025814742095, 16.047434146201972, 5.165850600055897, 41.040862316469216, 10.369212983956336, 98.55932263778234, 6.025201738724117, 58.70695503860736, 31.556971716019724, 85.02374656583771, 12.449645636836374, 5.1143878364039175, 6.484598683183308, 60.56244265635832, 57.27847341296874, 21.052814192196312, 85.0614369576025, 142.90752363843498, 8.434525462430477, 20.446261504064534, 7.196742876940734, 40.16439560088876, 8.825547001897688, 83.00924958401284, 10.153662425679471, 102.07094008476412, 93.92225026172015, 25.310962298420367, 19.499235337657016, 7.471267379705884, 49.746083030350555, 69.47733138186517, 154.7858894267146, 108.86567882852859, 19.372496857046773, 70.9965865119488, 5.388063864529993, 6.487250754206883, 31.204593209115338, 11.428308660132055, 65.76091960807594, 12.492222747181847, 7.012440616626038, 14.723905107693165, 63.498857787246656, 19.068224350116257, 61.1254229119876, 8.622033307956757, 13.548806915096312, 25.630660363276597, 7.344045750901485, 14.909205041673186, 8.599743241804962, 12.84429700142707, 65.09041315695686, 5.199875864416838, 34.28888444381281, 28.948189294230133, 19.894775548743738, 16.70031692153471, 101.06240944245849, 15.016613011095071, 81.02495333408181, 25.252934757190502, 14.121420565811738, 7.80075130379033, 47.72512455481131, 18.121307970293806, 82.66632208873655, 16.131408584934356, 62.78991900403576, 59.699342537313555, 45.13775419651191, 14.762143265582136, 54.024226945151376, 40.26880507910638, 9.690968845386372, 14.612983674621564, 206.72337026643203, 12.362217852838667, 9.412457194662274, 15.203788363663909, 5.132036700318692, 53.264853194327976, 12.823958961186438, 10.626339132774458, 53.6365353437036, 87.02179662253576, 42.49486824177833, 43.88211072097157, 50.08645678547892, 75.04615711061204, 6.039841665982557, 20.762673757853772, 21.26684574890388, 164.05523010904227, 8.947332337761601, 27.679055713196224, 12.20960815425039, 17.074223633899493, 58.9416227453596, 5.211110601992052, 46.964711125478736, 23.0663420797541, 13.829075447746858, 21.412784604312364, 17.494038365899627, 107.44896056818905, 22.753532638078767, 9.84067107550971, 12.959429262763004, 100.08246886464347, 20.94266114197335, 78.30069588417362, 16.409435020018783, 33.39321204088895, 127.81165227716673, 58.446422491112536, 38.77263765926482, 7.864800245732088, 8.361114240958234, 25.40671165731622, 20.680380557264407, 18.82636906106775, 27.421755297221274, 29.2942038177776, 7.582559978258329, 118.92533633576002, 21.64259504324276, 26.365550745300528, 7.931022809746619, 69.19469478786304, 45.32780136702502, 45.72737586616903, 9.49180766936723, 5.4522974968409015, 24.117613416404957, 98.678814159426, 104.37880926720314, 15.37329696589428, 11.443292277372029, 24.569510459928626, 45.644755489363405, 6.696979877473407, 16.565946447607192, 13.88131655736358, 19.180242472382965, 58.59746017692544, 28.14380868692722, 11.855399991277634, 33.13420260757749, 7.649957089919435, 31.0046872885344, 43.17634844542711, 37.10578888108935, 13.100537027385865, 87.72282190436684, 57.33962167687967, 53.3114558641022, 115.09094201199466, 78.31683684472421, 5.287829412822158, 15.88618110508847, 39.63185605113151, 52.788430855653566, 10.263485438849582, 102.00445526486376, 63.19739711321412, 24.95403687165726, 13.56220896558762, 6.716858274722484, 66.1051327469876, 38.81879177251035, 23.206134092029583, 26.439055234723824, 69.9762039862108, 107.56117783192927, 7.477774580462538, 13.39114787829451, 64.48718466654982, 11.980518575123465, 40.34723356565621, 8.976833329449066, 11.95048679026656, 93.42293955605442, 6.740044679877282, 10.333142944682995, 7.531318616722753, 73.27191246743809, 242.38952587811374, 92.88205917382862, 32.88006667741852, 17.216380794837825, 13.961467847409228, 24.285534587143193, 53.38335999097237, 63.33162941234913, 9.949296748487996, 60.094661794724054, 12.496143304187944, 26.914901821849682, 115.9946207700184, 22.121654123713885, 19.138668865801915, 124.26699166519137, 6.601831538429097, 50.92459688496991, 64.74041697722691, 23.181935088190034, 27.629371200101442, 57.979357558692854, 22.241768123970793, 55.88183042377436, 13.991766860480226, 43.34542868165558, 56.98659884691421, 36.447930348319524, 218.34453257559477, 186.5929351421428, 5.087154132389721, 22.880395273449313, 28.97993007078088, 59.78200045335256, 11.903382402665065, 28.327515565986033, 19.54167168764758, 39.26750856561135, 10.843545378297648, 19.437805298868792, 15.861171684018183, 14.74825552037194, 128.00912617879095, 6.172702928879499, 107.51540141270821, 12.218682339352016, 31.42326068559815, 74.31581465342745, 34.37478371947312, 5.057133746844038, 6.158425305561684, 91.49176541858404, 14.101037571846163, 29.520371529252166, 5.51330659757773, 60.20916882584846, 262.2781848370659, 146.250309959336, 20.09148240575968, 37.56011356270227, 14.747849884983552, 7.956417903526664, 94.30530160702484, 43.93950445230173, 21.356389284503443, 31.152641209296906, 24.503777878669553, 60.0588688271051, 106.65228917552406, 6.324520274032265, 25.317709150742054, 32.638923787546204, 40.90931495910501, 16.240892358271257, 72.72421193750093, 76.23404788600689, 19.651671849762728, 5.925221985594377, 61.87248772193754, 81.83555738170946, 11.102349030700635, 15.491291319140611, 65.23362667546782, 15.102552590015174, 15.702717746397887, 43.95317502815942, 51.954670088087354, 11.623616142775107, 48.38428547349051, 39.435780572252455, 46.83853878895812, 6.9229899911212724, 48.14754964237663, 55.74882505152671, 37.19474184555799, 19.540764723378082, 10.607735000394335, 135.82548043568693, 65.87582805572214, 53.55425898938808, 62.25115299101782, 55.36830638952485, 76.63399490787927, 9.072050628175973, 151.41244356236373, 13.671975545711671, 6.641393163600236, 24.563139909637503, 15.935752856098992, 14.850751709546683, 10.801686921813694, 6.562551741404545, 7.520023559203491, 14.182581640140615, 11.386234410745201, 11.704156108476818, 69.84333378722907, 48.563000762696866, 61.17831260828061, 48.722430715267194, 94.98376461764181, 22.40087937396584, 55.401331507459105, 17.54198865711268, 55.914182025306175, 92.28779046506206, 70.84897709843165, 47.082515942605404, 5.708000233389667, 63.540926203897435, 16.05819789502999, 33.53164657894192, 33.43901462645089, 61.17910018535834, 63.27387018275341, 10.62233236439285, 9.831947630476579, 50.248836768436206, 57.3929883243332, 28.911200858944113, 8.001682239108622, 148.27028153639233, 17.530555105681106, 88.4653410676488, 18.395048083863113, 12.138937815301848, 7.91361560848486, 6.114572000887007, 59.84906660858489, 8.478222245971104, 37.21881089939957, 24.98671374678925, 29.084648966142797, 9.482975759873002, 112.12184819132462, 6.617332790435977, 126.5236618403529, 64.50411079554878, 7.557470568284797, 184.43283526044, 5.381568236633017, 9.309040097481459, 74.15987461682445, 11.633137135662635, 24.511261530700878, 58.89352672637908, 43.01519983827124, 27.953819236124716, 40.453406020353036, 6.980461646539937, 97.44837555837358, 79.94786946802009, 86.71073461691446, 16.421985810072087, 17.001240112833976, 81.09984162165796, 106.08026187187313, 69.1238921229895, 42.37558548637553, 73.13172645536113, 36.07249588647387, 93.89576625410923, 168.3494472405962, 44.90393041901482, 9.516238075792163, 34.43897284722856, 34.09846965762681, 175.3688607355339, 16.768608055391216, 23.321116351490033, 19.67672919383776, 92.69172475172974, 43.95724202492478, 69.3766362800401, 25.975100466295835, 41.9290872050245, 118.26596179098645, 43.522396830462206, 5.235756790003892, 5.986890323106621, 11.133485915358813, 7.086844122348625, 6.254060649104405, 98.90323181337062, 13.60068594885834, 12.839048464404652, 25.048147058607785, 8.245987044739385, 88.67022059504745, 20.315541404781886, 17.859433611953634, 81.95560448253781, 19.15598299623905, 69.55275416076967, 28.575770446982958, 107.20643855875572, 87.94198722903778, 6.387848183059754, 34.519258387936155, 61.696992023682114, 24.505965465557907, 43.49168101102219, 6.211892756507299, 15.484495360793813, 14.188477680334536, 79.03300587283289, 29.237596631703443, 16.375852783372853, 7.452482692579775, 73.06002967797448, 84.16069864818004, 111.62821443574302, 53.96122663488911, 7.788599329376861, 85.91295825451041, 17.295608941778017, 101.90141808331417, 27.99385756725033, 65.03363540779, 18.93193720252115, 21.5427519658663, 15.264180259974243, 34.00078155575407, 103.95360368789073, 30.332467553506714, 26.781850903301947, 28.607343943242157, 6.826234440412989, 10.559188482786777, 47.94436806295922, 116.88647344681928, 8.197708904210847, 25.91311907355729, 12.5516271128272, 89.9698970083063, 65.5940337662522, 15.131570417004765, 60.72731758565015, 7.336669341425374, 38.452833296673404, 29.133168607982984, 22.336141741020764, 99.62522285459264, 51.20227121894437, 55.147725146094544, 29.60699882438165, 41.63907024346935, 20.73066550307971, 56.835699004904725, 80.61487026480376, 128.13044798361437, 38.21396614193397, 31.26201444000996, 28.146377350887445, 41.90866516823729, 8.749876610368103, 22.298035815567044, 56.591042044128606, 10.758764361671126, 44.06314862443784, 8.726522503752747, 20.486372704901783, 13.034636135668912, 59.91035568229584, 6.725916732218896, 47.852495230475625, 21.109944978106693, 11.746434131319994, 19.63417262172137, 65.74903404139931, 13.09201323492764, 30.084279540364857, 8.38549011157878, 96.5202400349032, 81.02230448262809, 37.260485690865, 26.140490699681816, 16.35622539673227, 61.80908845697599, 28.397174823655394, 6.205498823981443, 67.00315756374235, 14.36474975913347, 27.43481172339825, 11.606857100268163, 30.70964786284347, 10.984108493112373, 9.690865427620238, 78.47004761829636, 72.68469481950616, 26.594144159094647, 11.349550650767473, 15.956527526004203, 7.2010035762663, 10.25176646921247, 23.3672271383034, 47.4223623577263, 20.39042458322409, 18.647636290479287, 32.83727904793058, 5.73958598496468, 55.996920869850186, 64.77088767976447, 57.06020926703359, 148.0523306109772, 63.33798552586242, 15.362655926559288, 14.384662029615122, 7.645433341438515, 25.04611407244834, 36.48940607298909, 82.81360707272583, 13.261511787812527, 53.02049580832606, 7.1445853748652475, 6.278564374947856, 6.351066450725347, 20.686059629412828, 57.364829049636384, 10.918033637157293, 18.14289457649576, 14.840547855621463, 134.32711669521103, 47.926761579180855, 25.006802346838846, 62.89490873452813, 69.69715841491711, 92.5118606597971, 26.822596627029146, 128.19380255872215, 31.267912834065626, 30.209848233165275, 121.944931455211, 112.24924439849212, 80.89213976396616, 27.630943760556868, 18.051925847394543, 27.46140166131295, 5.762809390280448, 11.06198327952998, 79.01509937104944, 6.2088000560981635, 32.45260689980336, 5.29064857576842, 39.8466043703713, 102.18316526653274, 32.66198191206158, 96.22450574234365, 61.1592372203738, 17.3815472566549, 21.76055440479909, 75.78585282841304, 43.88508925244889, 20.387731548247736, 29.981403236997632, 24.973861178454236, 49.265796784355366, 31.018344016276693, 33.48825118357978, 20.569234776280368, 16.34581995010162, 78.11153566894514, 73.90876342493328, 58.08205396282665, 54.221490519682646, 11.939095379682596, 16.639541090339357, 61.30275974093008, 58.61942562158567, 6.176010081243385, 10.542213828143502, 21.623076500014474, 98.07357495329157, 24.105911843240545, 59.55920576127667, 88.09845278984315, 90.9251406298689, 123.55112963037084, 34.00175821164068, 22.36795472836082, 17.714035940755448, 11.994681984938294, 53.761256351426525, 15.557956697731559, 10.059640275578289, 100.9770180974887, 39.762797646144335, 18.685660474348293, 88.31888352572707, 18.548724381031768, 40.70679538731415, 18.355778707851886, 8.685180132048256, 19.939231068345233, 22.689273600991633, 23.06583426435922, 85.7686124285626, 144.2343808766013, 119.69724498978795, 71.5116823902844, 63.75819254884381, 24.26897660432582, 16.408900640767936, 12.073146656910156, 14.430882333328752, 11.414733391368536, 20.65285034174736, 52.722790056796256, 7.520726934621484, 7.328720583448821, 197.8819186072424, 53.7368768242592, 66.47651857804607, 87.94826772378464, 6.540073398575883, 40.10889534028939, 16.555020988149288, 51.19254262520495, 74.81492536133179, 36.48935918916605, 5.438455180643382, 5.3176155308418585, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6855695.25441897, 6950167.59860699, 7045738.984905761, 7046562.5, 7099167.1875, 7103106.125726966, 7126487.5, 7187040.871307944, 7225469.392936244, 7269591.033251073, 7290418.402027662, 7298304.303373615, 7302337.606727391, 7317238.430192858, 7327705.951790117, 7341967.1875, 7368478.125, 7376303.125, 7410626.862271845, 7410643.742430475, 7418197.081177672, 7434417.689738862, 7440417.090759442, 7441457.842525282, 7453212.219576051, 7462533.618172157, 7462643.444079956, 7466393.75, 7471662.798428741, 7575018.551819692, 7579035.9375, 7579112.5, 7584260.9375, 7587350.0, 7587604.658459447, 7587614.424411904, 7598057.390862961, 7623409.7368542645, 7656829.0272050295, 7685227.773861275, 7706786.761523859, 7744528.125, 7745543.930181851, 7772717.1875, 7779218.75, 7783705.894482665, 7831592.1875, 7833484.375, 7833876.5625, 7840990.978731273, 7885459.375, 7895016.572899555, 7917145.3125, 7925107.665970284, 7928535.663110141, 7951654.795491978, 7954990.625, 7955649.772162516, 7961248.8533898685, 7980960.9375, 7999638.610520105, 8001712.796637801, 8001717.065540428, 8004931.358433088, 8007149.526997078, 8011469.885273369, 8024147.650581201, 8025445.3125, 8026942.669107237, 8030038.3062231755, 8033215.322189282, 8033459.821690809, 8037304.58094628, 8070213.155762095, 8072246.875, 8080356.147707959, 8081055.842827667, 8098190.201879674, 8139695.3125, 8152149.274815238, 8159175.0, 8167068.75, 8179385.533575734, 8179883.176306829, 8182900.439407424, 8201006.136753317, 8205504.539501993, 8207567.796843211, 8217667.1875, 8219853.931710939, 8219956.904955074, 8224710.9375, 8225525.0, 8226610.9375, 8230249.797727649, 8235511.087168592, 8236694.742197891, 8262364.021032453, 8263259.303303106, 8316791.90673687, 8332869.849820385, 8334248.409939397, 8341182.194208555, 8342189.105196334, 8343899.549586416, 8351476.8246071935, 8354174.513496344, 8373557.8125, 8379496.993630222, 8381361.1926027555, 8389054.6875, 8400608.693979235, 8409363.90831639, 8415133.363206763, 8417024.577037986, 8422736.20497298, 8424057.85144548, 8436244.859426498, 8437004.155565165, 8437759.303226104, 8442003.125, 8446548.4375, 8453729.6875, 8458891.904413741, 8461134.375, 8461795.672331609, 8464015.586462185, 8466694.560978977, 8473679.629684744, 8479867.256233936, 8483460.867577702, 8484854.027190132, 8484863.743217703, 8485039.059564086, 8486309.160077626, 8486309.36819663, 8489863.089162763, 8500568.21149382, 8513234.375, 8556551.949696587, 8557832.497542862, 8561115.841883438, 8564558.85722567, 8569002.662990363, 8572447.216734773, 8574522.12113796, 8574677.474454902, 8575891.734166961, 8577298.4375, 8579390.36484899, 8580275.02454743, 8585457.394057866, 8585785.180117361, 8585858.827066181, 8587371.732116936, 8610532.8125, 8610550.117533702, 8622223.977755759, 8628894.528580869, 8629041.141598754, 8632999.780212628, 8640006.712191796, 8641501.367891256, 8646673.4375, 8669165.625, 8676220.23331934, 8692058.759506939, 8779062.5, 8780732.47321733, 8782671.875, 8785041.73107341, 8791175.0, 8793818.194016103, 8795456.25, 8796012.5, 8798306.778972164, 8825931.25, 8835855.823090468, 8849739.539927378, 8850889.173657583, 8851986.260854574, 8853368.813596144, 8853420.871675786, 8859329.6875, 8861183.316639476, 8864011.31831833, 8864921.535435049, 8885024.818013525, 8888064.255765527, 8892751.247263584, 8901403.866979355, 8905874.372684905, 8926252.62767492, 8963758.539302723, 8965664.0625, 8968681.16310319, 8972070.790371945, 8973463.324977472, 8974283.799945395, 8976557.301421985, 8976850.096920993, 8985607.588344758, 8986381.25, 9013235.541264622, 9013447.338695785, 9014593.75, 9015280.35381233, 9016185.9375, 9017181.706610788, 9017221.875, 9021104.547528632, 9021690.625, 9022219.05780727, 9027249.73433607, 9033419.337877048, 9042716.42698452, 9042833.860863928, 9044623.074365998, 9047898.4375, 9086790.147906452, 9087732.775283158, 9113835.949388485, 9123035.616965463, 9140984.685911963, 9145053.125, 9146889.692742635, 9151488.063841222, 9158520.3125, 9159411.89858794, 9171134.375, 9171515.625, 9172253.125, 9172988.037455885, 9175780.031704783, 9175852.451325234, 9176638.79729536, 9180971.875, 9187485.19619283, 9200706.247609595, 9206360.326453926, 9240517.1875, 9242840.321361903, 9245364.954864815, 9245554.481998403, 9246141.881243354, 9248290.627312616, 9272687.5, 9318937.11073507, 9322015.061786009, 9334017.565039787, 9342589.236014381, 9346692.568609737, 9375928.904073376, 9378395.3125, 9378423.392332625, 9390821.5892677, 9391403.883291189, 9428089.922928363, 9430008.03623667, 9441684.051347839, 9444793.681308825, 9447312.637101743, 9447473.2483378, 9450735.90069744, 9473521.644237021, 9478641.35783441, 9494743.621897088, 9494796.329767385, 9512663.632259928, 9513846.875, 9520826.102997392, 9538207.606329326, 9538209.536735853, 9539411.679069703, 9540115.625, 9544748.289853174, 9545546.910790399, 9546028.125, 9547360.180044308, 9547368.75, 9570768.24923483, 9571630.536591582, 9572058.178215455, 9573245.3125, 9575306.167505134, 9587741.369616205, 9588053.125, 9601558.582411485, 9604556.09242368, 9623344.657115838, 9623355.509009993, 9626270.608069647, 9638277.754939258, 9645549.01481525, 9647890.429392284, 9647971.874612639, 9649905.89866625, 9652242.346540371, 9696672.867640523, 9708349.07684938, 9708534.519300811, 9712193.043306265, 9717160.794722112, 9719252.383047717, 9723445.3125, 9724038.124981666, 9725245.237983072, 9728138.577064725, 9728341.158305949, 9728793.728462972, 9752440.03763061, 9755244.513381444, 9755254.6875, 9755355.739454169, 9755791.945526535, 9756252.319195595, 9756962.5, 9756962.91878233, 9757178.125, 9757664.872454174, 9758097.101096982, 9758517.455873242, 9758520.747364257, 9759334.66358007, 9760537.5, 9760961.815544566, 9762761.86411296, 9762984.375, 9763113.543536032, 9763449.939506577, 9763585.50782923, 9784371.357136669, 9785409.86438659, 9785450.0, 9785687.642198607, 9785694.559331229, 9787345.247118583, 9788022.30654546, 9791325.214282481, 9791843.75, 9795304.199461473, 9796950.962833496, 9804999.694740223, 9809501.5625, 9814391.8579141, 9817492.692676455, 9818967.137336591, 9829960.17524199, 9845362.657360433, 9861896.691618016, 9862987.895159299, 9864618.975244107, 9864957.00815302, 9865572.779635392, 9866564.0625, 9866624.11858944, 9867495.3125, 9868246.657508945, 9868511.08611343, 9868691.549169304, 9868725.0, 9869959.069457395, 9870398.723299397, 9870876.591401191, 9874782.8125, 9874805.48933288, 9880888.379418809, 9880897.80205953, 9881121.702101769, 9881441.962186659, 9882456.512751995, 9882510.958485039, 9885409.375, 9885413.516228516, 9893426.5625, 9911257.185139252, 9914930.909018548, 9917770.3125, 9917778.957246259, 9918477.27043511, 9918907.042884128, 9926943.734081019, 9943010.9375, 9943310.682476787, 9943744.767200915, 9950764.0625, 9958854.6875, 9970617.457171937, 9973088.450740209, 9980628.403881202, 9981866.671048917, 9982866.52183427, 9983906.25, 9985024.832540084, 9986396.1450795, 9986683.025169555, 9986777.446865592, 9986907.086341517, 9987127.744761163, 9987930.98319568, 9991364.0625, 9996167.51575003, 9996460.687585792, 9996479.437931204, 9997646.875, 9998343.47499413, 10001415.626017561, 10003559.729384484, 10008814.246664148, 10011659.09759298, 10011769.476921573, 10011783.943410788, 10012895.25421298, 10018082.8125, 10038569.529406082, 10055660.9375, 10065705.272198703, 10068600.431459084, 10080243.851223288, 10086033.596615626, 10087509.391470123, 10098408.361201033, 10100994.626639772, 10102158.034756336, 10117238.922741815, 10118154.432201983, 10119063.407390127, 10123444.635815544, 10124316.020801987, 10128837.5, 10131159.394565746, 10132776.5625, 10134898.24665532, 10135293.460149515, 10135327.077461567, 10136676.565810371, 10138389.949026905, 10140028.343479417, 10141048.021795673, 10141243.331785468, 10141254.6875, 10141474.701854926, 10142129.63963158, 10143341.919573717, 10144020.3125, 10147272.271686116, 10149156.169355193, 10149594.098231645, 10150503.793316813, 10151442.281828135, 10151504.754651215, 10151829.759162016, 10152194.243200248, 10152563.368329132, 10153577.778673049, 10156150.152337776, 10170146.875, 10170160.9375, 10170193.75, 10171404.6875, 10171554.6875, 10171562.022799563, 10172365.048522256, 10172390.090188814, 10174487.5, 10175640.132942783, 10180254.643278988, 10180544.347052626, 10180564.528357608, 10180956.096864032, 10181014.36163695, 10181821.875, 10183908.170737797, 10186003.65232993, 10188733.109139057, 10188789.602269713, 10190381.25, 10191160.555205083, 10191806.796562485, 10193552.485446632, 10197901.5625, 10198105.814949853, 10198446.562833754, 10200362.07437057, 10201443.75, 10205503.636480875, 10207653.125, 10208165.565869242, 10208838.1695723, 10213293.888340019, 10213295.131951166, 10220119.726977468, 10233989.5723536, 10249342.371009542, 10250795.3125, 10251621.817465024, 10252156.25, 10253072.952356692, 10253490.505406067, 10253869.573636722, 10254957.8125, 10255667.035987189, 10255872.832463445, 10256931.433800524, 10258373.215012994, 10259943.478188386, 10260476.706897719, 10264728.125, 10266442.296352593, 10274747.067936251, 10275255.190352472, 10289831.25, 10290802.782379352, 10292462.869579831, 10293554.73918289, 10297778.824313262, 10297794.955265004, 10298737.480455937, 10298828.545498893, 10299457.377993971, 10299570.439851023, 10299848.4375, 10300130.62307209, 10300144.787327461, 10300690.817993488, 10300706.25, 10301204.6875, 10301465.625, 10301521.48252762, 10301587.5, 10302040.519170467, 10302301.7900741, 10302314.0625, 10303946.10494962, 10304408.741480289, 10304478.5094052, 10305221.875, 10305223.226203792, 10305226.14652242, 10307031.011761727, 10307269.785360279, 10307462.5, 10309294.968634132, 10309297.902646123, 10309582.8125, 10311078.125, 10312044.95175881, 10312416.71109961, 10316804.261111552, 10320491.109732816, 10320512.462227667, 10325222.986126252, 10325878.594507508, 10326284.375, 10326363.943833243, 10326524.424308639, 10327310.734178305, 10328127.08209521, 10328569.903826961, 10328668.524969477, 10329829.6875, 10330612.991425173, 10331359.091693696, 10333099.740744637, 10336046.875, 10339941.24687057, 10342414.712809332, 10343440.625, 10344381.97865991, 10344999.912996395, 10353260.804763677, 10353535.498282716, 10353742.976438291, 10354287.885626534, 10354297.569882775, 10354792.1875, 10355213.77278935, 10358450.399226, 10361989.01558263, 10362841.976724448, 10363341.188057559, 10363341.571234595, 10363374.726313949, 10363418.75, 10363525.0, 10364009.375, 10364057.262879279, 10364115.751976259, 10364311.917114059, 10364490.253665823, 10364729.224676805, 10364925.0, 10365208.257883418, 10365392.28707096, 10365448.073499309, 10365516.038166454, 10365659.609664822, 10365785.203425363, 10365815.847030034, 10367385.88585649, 10367746.562054759, 10367752.338583201, 10368150.074336467, 10368306.851367163, 10368503.125, 10368736.691915171, 10369471.782445857, 10369486.842599764, 10370155.337667437, 10370973.4375, 10371440.38551264, 10372150.043932198, 10376668.335722974, 10377051.534450302, 10377231.468204005, 10377890.044306083, 10377922.18289732, 10377946.875, 10378440.573246077, 10378671.193722254, 10382542.1875, 10383887.402931124, 10385151.085031869, 10386423.4375, 10387701.319251232, 10388278.125, 10388749.915860837, 10389323.8781204, 10390576.376010567, 10393812.399809647, 10394629.6875, 10398967.491198042, 10401349.215430658, 10403520.3125, 10409402.418210872, 10411874.835677925, 10413323.4375, 10413614.0625, 10414201.546216084, 10414852.56596623, 10414998.4375, 10416168.791619552, 10416262.206166547, 10421764.0625, 10422837.2855543, 10423472.170676788, 10423858.808502499, 10427769.82955107, 10428383.422452597, 10428502.312091388, 10428697.66470055, 10428920.3125, 10429580.92797694, 10429908.654156944, 10431180.889756467, 10431605.72880623, 10431697.123443559, 10432153.125, 10432435.9375, 10432748.4375, 10433192.1875, 10433244.988977913, 10434318.392574364, 10434788.684128245, 10435407.16843467, 10436237.26835697, 10436493.988492467, 10436517.343942374, 10436756.03090487, 10437231.71506257, 10437357.576411514, 10437501.348039078, 10437524.568693679, 10438984.71494017, 10439363.445554588, 10439477.784096839, 10439491.568123683, 10439543.75, 10440869.77320241, 10442062.930352638, 10445585.9375, 10447181.797912754, 10449596.875, 10452599.857733233, 10452696.875, 10453887.5, 10453907.832001084, 10454318.212561103, 10456672.140065683, 10457359.375, 10457370.673099872, 10457904.595550995, 10458037.5, 10459115.275682798, 10459242.725552937, 10460150.0, 10460199.69080388, 10460338.079460843, 10460449.419384276, 10460555.989766747, 10460572.420976454, 10460658.581838144, 10460664.745996961, 10461644.218014805, 10461667.971192122, 10461878.375777684, 10462268.75, 10462417.533134738, 10462660.9375, 10463229.47846847, 10463498.4375, 10463511.11147847, 10464043.75, 10464117.970900068, 10464953.125, 10469475.0, 10469746.746662728, 10469868.801591536, 10469905.800623301, 10470942.160933295, 10482270.072607135, 10492956.55096029, 10502587.76125772, 10519926.5625, 10521393.75, 10522672.442573342, 10527390.020415965, 10529186.935050637, 10531859.375, 10537260.747030757, 10543345.3125, 10547562.840839174, 10549467.640008233, 10549726.5625, 10554391.34395449, 10554585.9375, 10555365.625, 10555523.4375, 10555696.875, 10557324.525233412, 10558450.304655237, 10558893.75, 10559151.77329535, 10559348.4375, 10561346.30067645, 10561663.730014348, 10566376.971411634, 10568444.978105057, 10569450.858857945, 10569500.0, 10569951.5625, 10570385.9375, 10570767.043736523, 10570771.400126448, 10570960.9375, 10571046.875, 10572243.411050232, 10572295.842076033, 10572393.753694152, 10572929.554190615, 10573207.707802901, 10573709.28469749, 10574996.472306, 10576753.999498893, 10581837.295206774, 10582915.54744629, 10591634.375, 10592044.685756184, 10592430.28786543, 10593843.394679941, 10593967.411935793, 10594698.4375, 10594925.844515502, 10595021.875, 10596407.130994251, 10596610.273778908, 10596862.4424424, 10596995.3125, 10597099.756909924, 10597137.5, 10597871.424349181, 10598031.142658582, 10598074.102540128, 10598296.75156169, 10598304.6875, 10598625.331483642, 10598673.000519421, 10598673.4375, 10598725.0, 10598760.843922643, 10598787.5, 10598861.422479855, 10598925.0, 10599008.31793126, 10599015.668898117, 10599043.75495399, 10599179.6875, 10599552.323203158, 10599587.004962988, 10599728.207156781, 10599896.875, 10600073.437041722, 10600296.875, 10600437.405249529, 10600767.1875, 10600797.181285607, 10600860.540549992, 10600877.720670212, 10600908.79228004, 10601467.015580835, 10601475.431334307, 10601850.753082993, 10602521.875, 10602896.875, 10603417.236486807, 10603418.75, 10604528.884995213, 10607984.375, 10608580.681249797, 10609728.033281213, 10609870.48510937, 10609990.625, 10611885.426651808, 10612065.393114312, 10612214.0625, 10612268.17001504, 10612282.750483485, 10612322.638956249, 10613054.924005765, 10613237.5, 10613930.993137473, 10614345.293089649, 10614727.11252578, 10614924.221637921, 10615952.702074887, 10616092.1875, 10616096.62540257, 10616220.3125, 10616353.873571984, 10616375.372907251, 10616471.265033357, 10616639.0625, 10616924.808752082, 10617345.912771937, 10627566.648213118, 10628376.925290331, 10635850.853506945, 10643382.8125, 10646335.349763962, 10647551.5625, 10650015.807476303, 10652585.902042534, 10654420.3125, 10656308.259977514, 10656673.304080138, 10659126.889981536, 10659467.1875, 10660365.61850738, 10664310.4330292, 10664326.873264492, 10667846.714977525, 10667862.934936775, 10667865.911343044, 10668129.253897801, 10671193.656145772, 10674400.396579681, 10675403.125, 10675545.3125, 10676853.019162836, 10677034.512439247, 10677286.61442823, 10677354.981724707, 10679016.544117585, 10687000.598164111, 10687820.3125, 10687822.819369657, 10698636.658041444, 10701952.511938648, 10704786.441249624, 10705027.342756096, 10706271.875, 10706298.4375, 10708179.709175074, 10708229.6875, 10708400.824499976, 10709223.283308364, 10709451.677677115, 10709836.675988918, 10709971.875, 10710309.806841332, 10710555.726266354, 10710717.1875, 10710846.962279571, 10710857.9019352, 10710972.511180345, 10711132.227604575, 10711212.5, 10711232.674084216, 10711289.516458169, 10711935.910756955, 10712214.0625, 10712342.1875, 10712579.47985716, 10712631.25, 10712898.4375, 10713005.114515021, 10713015.255644768, 10713045.3125, 10713807.581422351, 10713942.1875, 10714318.75, 10714549.79931239, 10714793.853181208, 10714971.828168148, 10715047.505989138, 10715177.346954457, 10715199.283612456, 10715485.895041233, 10715495.752377037, 10715669.83586273, 10715851.660928557, 10715859.36079173, 10715882.8125, 10716308.58746681, 10716332.392328769, 10716497.454390245, 10716615.468304818, 10716661.599259248, 10716671.401399476, 10716673.4375, 10716705.731846264, 10716869.694061281, 10716894.361501466, 10717018.540078575, 10717032.8125, 10717165.625, 10717274.658659223, 10717316.589615941, 10717337.201718409, 10717383.577265244, 10717494.59297275, 10717653.424586995, 10717658.98209678, 10717756.713700905, 10717784.562845197, 10717928.125, 10717967.1875, 10718003.929970508, 10718023.027579788, 10718115.137931539, 10718308.064338854, 10718778.30643238, 10718810.224806825, 10719641.715798631, 10719697.713094521, 10719980.178596424, 10720101.5625, 10720470.519435473, 10722322.45164978, 10726084.866871845, 10726382.026493765, 10726518.902847556, 10726522.626664799, 10726920.3125, 10727248.4375, 10727607.10098144, 10728422.416725984, 10728478.83119192, 10729391.199684097, 10729670.418880643, 10729674.122175092, 10729716.51621922, 10729862.112095384, 10729879.331920322, 10729981.25, 10729992.196175667, 10730098.4375, 10731696.875, 10736095.089045044, 10736109.61663985, 10739661.275692835, 10739684.90594825, 10739693.60925422, 10742520.48868449, 10753770.232208656, 10755475.41509208, 10757038.828458782, 10757074.17137014, 10757407.146327224, 10757407.8125, 10757433.781044157, 10757434.453840816, 10757464.392359402, 10757754.6875, 10757853.586923676, 10757915.625, 10758089.332514739, 10759101.5625, 10759444.75789082, 10760314.898098992, ...], [113.04380782627366, 64.2337480410662, 7.101202789796721, 32.680071391064615, 57.84810061648462, 22.694850756731817, 48.322738416184784, 16.654877334751475, 29.051504261682773, 22.660910913194805, 23.238302454396127, 67.77169662413435, 11.29872957037291, 5.187606491060499, 5.792239934023708, 73.22113576042848, 83.3618081431804, 73.36617211910652, 16.222065603348646, 14.912736213528575, 19.53111055878727, 66.66372732629846, 100.72185753669068, 29.539178223398487, 7.5048671884707066, 19.263977974933557, 5.518415225630706, 95.81833745163371, 7.71486233017573, 10.83145116347103, 31.2846125599215, 58.53980832908195, 45.44361408631109, 37.10664219263714, 58.300838395809606, 6.314032430950145, 7.457540019005197, 61.13278579212566, 74.26888076354939, 23.118778661364836, 32.59387038225097, 66.58329581226283, 7.669732857980144, 52.25268874728003, 30.189694097285773, 5.594674244562556, 104.54074682387143, 30.000711901433828, 67.47648297914667, 113.86450491195387, 88.59821179925935, 29.71156907502328, 60.33975540010253, 150.32800287944474, 19.159729273223505, 20.33795869700248, 105.80289766296343, 20.13463289693824, 16.80526782978173, 48.63864687019826, 13.459514392587732, 14.291722101985819, 26.326713738156002, 9.424803889461032, 21.766705290168307, 20.03454222323208, 12.603409929993903, 32.4060410668531, 16.18971443757514, 52.498994885014525, 23.71490489580561, 16.96969615805993, 95.78691018866344, 18.21169814355352, 70.39282828613125, 42.636886229259744, 20.200913829551403, 17.7286154926174, 83.06193129230752, 10.156325382695869, 73.58022803731136, 34.99037458601515, 22.508213035806786, 16.536755141832614, 28.194038389377084, 7.562785474740714, 93.28376307985401, 15.375570583477263, 45.82159106866209, 17.90907078471043, 8.666214931435618, 74.253176855607, 59.56197618068112, 45.845137706813375, 5.198299078291102, 6.793759178851789, 12.697348592503555, 14.785775551828172, 127.50799623435805, 13.969459079912868, 7.444048745052588, 109.06367180003419, 15.593438643294355, 148.84240548360677, 32.34096325392162, 35.603734901351004, 21.628798321603046, 68.35073017254636, 7.152989056210161, 11.551320627415244, 54.364066238689, 19.859283956588307, 25.8110044675155, 31.906718773991923, 35.975082978118806, 89.25083276884521, 16.390704413058316, 26.97118654963426, 21.18034056392777, 11.017342713406391, 97.10875955684199, 30.389407280308873, 61.01392190530597, 23.969222597078325, 57.41486034643814, 25.935135331625535, 14.79662802143192, 21.232117653201698, 27.43069756389335, 22.828937441940077, 7.103191720821657, 6.638471898200852, 18.507470191562216, 23.77141698642577, 24.901930031989767, 11.11708932584914, 12.193068387637643, 217.06142159788453, 28.66337107640689, 7.749552236186457, 13.863111730965018, 14.57674400373813, 21.317605483350196, 93.27276524563577, 33.453625058444715, 8.421174256572963, 8.835897691684137, 32.92835704926482, 69.12458833500766, 67.58861073423705, 16.1509206136407, 55.87753552689688, 10.119598561078437, 64.34608657367356, 12.30262649919803, 41.76311691172089, 29.755795401945072, 12.092073631562869, 6.92957983235505, 29.858190600233225, 24.832433856409907, 36.37306118294259, 21.402577053957554, 43.53736417658229, 29.28241448876923, 27.05086971771068, 46.940288651909114, 49.77735063012471, 18.365971932845024, 70.19872509132075, 58.251925634495976, 38.322402862113215, 22.987758266101714, 55.4408995744079, 97.26950051690298, 128.88998460459615, 70.74047750337336, 85.99471008787123, 24.227932222901043, 7.643942419244525, 49.16994107101831, 111.0427407033941, 72.20203388951157, 43.566748567704536, 7.796355116374916, 142.73083413509647, 9.05988888845159, 34.97428360103445, 65.00401651925802, 123.67465021436836, 18.798000598110644, 12.990379602457473, 10.430194599103867, 202.37358534742543, 74.58327158760068, 26.91674701134112, 11.966956295190345, 57.48118291755471, 14.61525590938993, 163.1115820176106, 93.09688340337212, 14.150833394495912, 84.55047827336615, 22.59466798535871, 30.045401230236884, 107.35677010286233, 40.028923968283834, 38.06943349114344, 17.023580360693465, 41.37036546758914, 7.5533849767809125, 125.5023341445409, 45.18357670220425, 24.199474868982808, 17.782477200372057, 72.48731357602163, 8.032201718143984, 31.68106746262221, 106.97606811324789, 79.95608656412186, 21.646748664318356, 14.9870172074394, 103.70534742571381, 18.1109098213827, 61.8208185098088, 46.09161604315034, 9.858469616874215, 44.588969536035556, 7.9922382915800725, 74.54136979339688, 42.53162091168696, 50.04920537188429, 8.592827601757103, 42.920012710083284, 19.91950467313423, 24.205617881289896, 32.01688342566099, 44.35513360778283, 39.71556946587965, 13.03186926671545, 41.51602901059791, 124.47784445463574, 10.220210639612851, 31.02242224264046, 107.10097261659516, 7.604074331179303, 68.43516369241038, 72.02499675173922, 20.88486265833736, 25.49245995872736, 30.031446002299127, 160.76985060095575, 19.065777708124987, 67.28491678808447, 27.661593410498956, 23.934718848610384, 55.43090289711022, 19.689263716064396, 15.868858818956108, 8.122532336305555, 36.434568212297094, 8.360434589846493, 20.273553197592374, 6.481337541382853, 7.5218538793481375, 17.78017040091679, 14.474731912605835, 5.323579358555554, 22.746226610339104, 84.5869697205082, 36.74526201837658, 14.209895026405498, 9.472009573099859, 10.048455802969105, 31.072698474149895, 7.083173233757421, 27.219838019022433, 54.22244296375246, 15.303293590173844, 29.827812487079196, 21.48547064195102, 68.36272242115064, 16.54639072067272, 69.08635426186021, 80.46663046646444, 56.386760522136754, 41.419627600406294, 10.079967510155697, 131.39641510768226, 12.919720394749893, 8.77468592598174, 11.623423330030905, 30.30497255781312, 31.98311365954067, 51.73992193687784, 45.38893207428632, 13.752524021060688, 61.790402387760444, 8.89194724556589, 12.529623054673621, 6.792661152701092, 27.95625101205763, 25.99075139959106, 105.07940749739933, 335.506194069159, 12.268720444377589, 22.919590444422745, 7.436618778314941, 17.4562236942268, 72.58548951314596, 10.318944479215805, 17.787792030862942, 42.90895623799441, 28.042098858112183, 24.521371660196973, 128.86072742417565, 83.20987113911484, 16.82052666919833, 41.73801949255986, 19.296384882935772, 70.80264375531688, 36.759778403014515, 11.883024806650837, 24.623106212554, 80.76596286444781, 8.812750852260269, 77.91430217060004, 93.14226310571053, 34.35960773939895, 27.382391020307075, 53.89224562167108, 13.277387387140536, 9.782584484115322, 93.62860945614113, 5.540021919981074, 10.124378766354733, 27.294744439411968, 16.888305500988178, 9.519410836468655, 60.62406645433606, 21.61325799129747, 101.54721411729535, 15.505034082169939, 47.64520744159688, 10.648865880770465, 6.333205712744572, 14.753696078286415, 19.223083075200837, 5.404524039801746, 38.27816811226213, 33.808178305234904, 16.738573445868, 18.913549592254356, 12.913531731762314, 70.09891718166266, 68.12012988222409, 46.45258926959609, 33.89263378253897, 9.460307085252504, 23.741526976747913, 79.35928658441142, 49.85683423243142, 166.41013284941283, 32.61860754475847, 68.85368534911939, 8.761588681325808, 16.88665812011989, 8.84628519004598, 44.26961192245514, 29.878025814742095, 16.047434146201972, 5.165850600055897, 41.040862316469216, 10.369212983956336, 98.55932263778234, 6.025201738724117, 58.70695503860736, 31.556971716019724, 85.02374656583771, 12.449645636836374, 5.1143878364039175, 6.484598683183308, 60.56244265635832, 57.27847341296874, 21.052814192196312, 85.0614369576025, 142.90752363843498, 8.434525462430477, 20.446261504064534, 7.196742876940734, 40.16439560088876, 8.825547001897688, 83.00924958401284, 10.153662425679471, 102.07094008476412, 93.92225026172015, 25.310962298420367, 19.499235337657016, 7.471267379705884, 49.746083030350555, 69.47733138186517, 154.7858894267146, 108.86567882852859, 19.372496857046773, 70.9965865119488, 5.388063864529993, 6.487250754206883, 31.204593209115338, 11.428308660132055, 65.76091960807594, 12.492222747181847, 7.012440616626038, 14.723905107693165, 63.498857787246656, 19.068224350116257, 61.1254229119876, 8.622033307956757, 13.548806915096312, 25.630660363276597, 7.344045750901485, 14.909205041673186, 8.599743241804962, 12.84429700142707, 65.09041315695686, 5.199875864416838, 34.28888444381281, 28.948189294230133, 19.894775548743738, 16.70031692153471, 101.06240944245849, 15.016613011095071, 81.02495333408181, 25.252934757190502, 14.121420565811738, 7.80075130379033, 47.72512455481131, 18.121307970293806, 82.66632208873655, 16.131408584934356, 62.78991900403576, 59.699342537313555, 45.13775419651191, 14.762143265582136, 54.024226945151376, 40.26880507910638, 9.690968845386372, 14.612983674621564, 206.72337026643203, 12.362217852838667, 9.412457194662274, 15.203788363663909, 5.132036700318692, 53.264853194327976, 12.823958961186438, 10.626339132774458, 53.6365353437036, 87.02179662253576, 42.49486824177833, 43.88211072097157, 50.08645678547892, 75.04615711061204, 6.039841665982557, 20.762673757853772, 21.26684574890388, 164.05523010904227, 8.947332337761601, 27.679055713196224, 12.20960815425039, 17.074223633899493, 58.9416227453596, 5.211110601992052, 46.964711125478736, 23.0663420797541, 13.829075447746858, 21.412784604312364, 17.494038365899627, 107.44896056818905, 22.753532638078767, 9.84067107550971, 12.959429262763004, 100.08246886464347, 20.94266114197335, 78.30069588417362, 16.409435020018783, 33.39321204088895, 127.81165227716673, 58.446422491112536, 38.77263765926482, 7.864800245732088, 8.361114240958234, 25.40671165731622, 20.680380557264407, 18.82636906106775, 27.421755297221274, 29.2942038177776, 7.582559978258329, 118.92533633576002, 21.64259504324276, 26.365550745300528, 7.931022809746619, 69.19469478786304, 45.32780136702502, 45.72737586616903, 9.49180766936723, 5.4522974968409015, 24.117613416404957, 98.678814159426, 104.37880926720314, 15.37329696589428, 11.443292277372029, 24.569510459928626, 45.644755489363405, 6.696979877473407, 16.565946447607192, 13.88131655736358, 19.180242472382965, 58.59746017692544, 28.14380868692722, 11.855399991277634, 33.13420260757749, 7.649957089919435, 31.0046872885344, 43.17634844542711, 37.10578888108935, 13.100537027385865, 87.72282190436684, 57.33962167687967, 53.3114558641022, 115.09094201199466, 78.31683684472421, 5.287829412822158, 15.88618110508847, 39.63185605113151, 52.788430855653566, 10.263485438849582, 102.00445526486376, 63.19739711321412, 24.95403687165726, 13.56220896558762, 6.716858274722484, 66.1051327469876, 38.81879177251035, 23.206134092029583, 26.439055234723824, 69.9762039862108, 107.56117783192927, 7.477774580462538, 13.39114787829451, 64.48718466654982, 11.980518575123465, 40.34723356565621, 8.976833329449066, 11.95048679026656, 93.42293955605442, 6.740044679877282, 10.333142944682995, 7.531318616722753, 73.27191246743809, 242.38952587811374, 92.88205917382862, 32.88006667741852, 17.216380794837825, 13.961467847409228, 24.285534587143193, 53.38335999097237, 63.33162941234913, 9.949296748487996, 60.094661794724054, 12.496143304187944, 26.914901821849682, 115.9946207700184, 22.121654123713885, 19.138668865801915, 124.26699166519137, 6.601831538429097, 50.92459688496991, 64.74041697722691, 23.181935088190034, 27.629371200101442, 57.979357558692854, 22.241768123970793, 55.88183042377436, 13.991766860480226, 43.34542868165558, 56.98659884691421, 36.447930348319524, 218.34453257559477, 186.5929351421428, 5.087154132389721, 22.880395273449313, 28.97993007078088, 59.78200045335256, 11.903382402665065, 28.327515565986033, 19.54167168764758, 39.26750856561135, 10.843545378297648, 19.437805298868792, 15.861171684018183, 14.74825552037194, 128.00912617879095, 6.172702928879499, 107.51540141270821, 12.218682339352016, 31.42326068559815, 74.31581465342745, 34.37478371947312, 5.057133746844038, 6.158425305561684, 91.49176541858404, 14.101037571846163, 29.520371529252166, 5.51330659757773, 60.20916882584846, 262.2781848370659, 146.250309959336, 20.09148240575968, 37.56011356270227, 14.747849884983552, 7.956417903526664, 94.30530160702484, 43.93950445230173, 21.356389284503443, 31.152641209296906, 24.503777878669553, 60.0588688271051, 106.65228917552406, 6.324520274032265, 25.317709150742054, 32.638923787546204, 40.90931495910501, 16.240892358271257, 72.72421193750093, 76.23404788600689, 19.651671849762728, 5.925221985594377, 61.87248772193754, 81.83555738170946, 11.102349030700635, 15.491291319140611, 65.23362667546782, 15.102552590015174, 15.702717746397887, 43.95317502815942, 51.954670088087354, 11.623616142775107, 48.38428547349051, 39.435780572252455, 46.83853878895812, 6.9229899911212724, 48.14754964237663, 55.74882505152671, 37.19474184555799, 19.540764723378082, 10.607735000394335, 135.82548043568693, 65.87582805572214, 53.55425898938808, 62.25115299101782, 55.36830638952485, 76.63399490787927, 9.072050628175973, 151.41244356236373, 13.671975545711671, 6.641393163600236, 24.563139909637503, 15.935752856098992, 14.850751709546683, 10.801686921813694, 6.562551741404545, 7.520023559203491, 14.182581640140615, 11.386234410745201, 11.704156108476818, 69.84333378722907, 48.563000762696866, 61.17831260828061, 48.722430715267194, 94.98376461764181, 22.40087937396584, 55.401331507459105, 17.54198865711268, 55.914182025306175, 92.28779046506206, 70.84897709843165, 47.082515942605404, 5.708000233389667, 63.540926203897435, 16.05819789502999, 33.53164657894192, 33.43901462645089, 61.17910018535834, 63.27387018275341, 10.62233236439285, 9.831947630476579, 50.248836768436206, 57.3929883243332, 28.911200858944113, 8.001682239108622, 148.27028153639233, 17.530555105681106, 88.4653410676488, 18.395048083863113, 12.138937815301848, 7.91361560848486, 6.114572000887007, 59.84906660858489, 8.478222245971104, 37.21881089939957, 24.98671374678925, 29.084648966142797, 9.482975759873002, 112.12184819132462, 6.617332790435977, 126.5236618403529, 64.50411079554878, 7.557470568284797, 184.43283526044, 5.381568236633017, 9.309040097481459, 74.15987461682445, 11.633137135662635, 24.511261530700878, 58.89352672637908, 43.01519983827124, 27.953819236124716, 40.453406020353036, 6.980461646539937, 97.44837555837358, 79.94786946802009, 86.71073461691446, 16.421985810072087, 17.001240112833976, 81.09984162165796, 106.08026187187313, 69.1238921229895, 42.37558548637553, 73.13172645536113, 36.07249588647387, 93.89576625410923, 168.3494472405962, 44.90393041901482, 9.516238075792163, 34.43897284722856, 34.09846965762681, 175.3688607355339, 16.768608055391216, 23.321116351490033, 19.67672919383776, 92.69172475172974, 43.95724202492478, 69.3766362800401, 25.975100466295835, 41.9290872050245, 118.26596179098645, 43.522396830462206, 5.235756790003892, 5.986890323106621, 11.133485915358813, 7.086844122348625, 6.254060649104405, 98.90323181337062, 13.60068594885834, 12.839048464404652, 25.048147058607785, 8.245987044739385, 88.67022059504745, 20.315541404781886, 17.859433611953634, 81.95560448253781, 19.15598299623905, 69.55275416076967, 28.575770446982958, 107.20643855875572, 87.94198722903778, 6.387848183059754, 34.519258387936155, 61.696992023682114, 24.505965465557907, 43.49168101102219, 6.211892756507299, 15.484495360793813, 14.188477680334536, 79.03300587283289, 29.237596631703443, 16.375852783372853, 7.452482692579775, 73.06002967797448, 84.16069864818004, 111.62821443574302, 53.96122663488911, 7.788599329376861, 85.91295825451041, 17.295608941778017, 101.90141808331417, 27.99385756725033, 65.03363540779, 18.93193720252115, 21.5427519658663, 15.264180259974243, 34.00078155575407, 103.95360368789073, 30.332467553506714, 26.781850903301947, 28.607343943242157, 6.826234440412989, 10.559188482786777, 47.94436806295922, 116.88647344681928, 8.197708904210847, 25.91311907355729, 12.5516271128272, 89.9698970083063, 65.5940337662522, 15.131570417004765, 60.72731758565015, 7.336669341425374, 38.452833296673404, 29.133168607982984, 22.336141741020764, 99.62522285459264, 51.20227121894437, 55.147725146094544, 29.60699882438165, 41.63907024346935, 20.73066550307971, 56.835699004904725, 80.61487026480376, 128.13044798361437, 38.21396614193397, 31.26201444000996, 28.146377350887445, 41.90866516823729, 8.749876610368103, 22.298035815567044, 56.591042044128606, 10.758764361671126, 44.06314862443784, 8.726522503752747, 20.486372704901783, 13.034636135668912, 59.91035568229584, 6.725916732218896, 47.852495230475625, 21.109944978106693, 11.746434131319994, 19.63417262172137, 65.74903404139931, 13.09201323492764, 30.084279540364857, 8.38549011157878, 96.5202400349032, 81.02230448262809, 37.260485690865, 26.140490699681816, 16.35622539673227, 61.80908845697599, 28.397174823655394, 6.205498823981443, 67.00315756374235, 14.36474975913347, 27.43481172339825, 11.606857100268163, 30.70964786284347, 10.984108493112373, 9.690865427620238, 78.47004761829636, 72.68469481950616, 26.594144159094647, 11.349550650767473, 15.956527526004203, 7.2010035762663, 10.25176646921247, 23.3672271383034, 47.4223623577263, 20.39042458322409, 18.647636290479287, 32.83727904793058, 5.73958598496468, 55.996920869850186, 64.77088767976447, 57.06020926703359, 148.0523306109772, 63.33798552586242, 15.362655926559288, 14.384662029615122, 7.645433341438515, 25.04611407244834, 36.48940607298909, 82.81360707272583, 13.261511787812527, 53.02049580832606, 7.1445853748652475, 6.278564374947856, 6.351066450725347, 20.686059629412828, 57.364829049636384, 10.918033637157293, 18.14289457649576, 14.840547855621463, 134.32711669521103, 47.926761579180855, 25.006802346838846, 62.89490873452813, 69.69715841491711, 92.5118606597971, 26.822596627029146, 128.19380255872215, 31.267912834065626, 30.209848233165275, 121.944931455211, 112.24924439849212, 80.89213976396616, 27.630943760556868, 18.051925847394543, 27.46140166131295, 5.762809390280448, 11.06198327952998, 79.01509937104944, 6.2088000560981635, 32.45260689980336, 5.29064857576842, 39.8466043703713, 102.18316526653274, 32.66198191206158, 96.22450574234365, 61.1592372203738, 17.3815472566549, 21.76055440479909, 75.78585282841304, 43.88508925244889, 20.387731548247736, 29.981403236997632, 24.973861178454236, 49.265796784355366, 31.018344016276693, 33.48825118357978, 20.569234776280368, 16.34581995010162, 78.11153566894514, 73.90876342493328, 58.08205396282665, 54.221490519682646, 11.939095379682596, 16.639541090339357, 61.30275974093008, 58.61942562158567, 6.176010081243385, 10.542213828143502, 21.623076500014474, 98.07357495329157, 24.105911843240545, 59.55920576127667, 88.09845278984315, 90.9251406298689, 123.55112963037084, 34.00175821164068, 22.36795472836082, 17.714035940755448, 11.994681984938294, 53.761256351426525, 15.557956697731559, 10.059640275578289, 100.9770180974887, 39.762797646144335, 18.685660474348293, 88.31888352572707, 18.548724381031768, 40.70679538731415, 18.355778707851886, 8.685180132048256, 19.939231068345233, 22.689273600991633, 23.06583426435922, 85.7686124285626, 144.2343808766013, 119.69724498978795, 71.5116823902844, 63.75819254884381, 24.26897660432582, 16.408900640767936, 12.073146656910156, 14.430882333328752, 11.414733391368536, 20.65285034174736, 52.722790056796256, 7.520726934621484, 7.328720583448821, 197.8819186072424, 53.7368768242592, 66.47651857804607, 87.94826772378464, 6.540073398575883, 40.10889534028939, 16.555020988149288, 51.19254262520495, 74.81492536133179, 36.48935918916605, 5.438455180643382, 5.3176155308418585, ...])
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);
([6855695.25441897, 6950167.59860699, 7045738.984905761, 7046562.5, 7099167.1875, 7103106.125726966, 7126487.5, 7187040.871307944, 7225469.392936244, 7269591.033251073, 7290418.402027662, 7298304.303373615, 7302337.606727391, 7317238.430192858, 7327705.951790117, 7341967.1875, 7368478.125, 7376303.125, 7410626.862271845, 7410643.742430475, 7418197.081177672, 7434417.689738862, 7440417.090759442, 7441457.842525282, 7453212.219576051, 7462533.618172157, 7462643.444079956, 7466393.75, 7471662.798428741, 7575018.551819692, 7579035.9375, 7579112.5, 7584260.9375, 7587350.0, 7587604.658459447, 7587614.424411904, 7598057.390862961, 7623409.7368542645, 7656829.0272050295, 7685227.773861275, 7706786.761523859, 7744528.125, 7745543.930181851, 7772717.1875, 7779218.75, 7783705.894482665, 7831592.1875, 7833484.375, 7833876.5625, 7840990.978731273, 7885459.375, 7895016.572899555, 7917145.3125, 7925107.665970284, 7928535.663110141, 7951654.795491978, 7954990.625, 7955649.772162516, 7961248.8533898685, 7980960.9375, 7999638.610520105, 8001712.796637801, 8001717.065540428, 8004931.358433088, 8007149.526997078, 8011469.885273369, 8024147.650581201, 8025445.3125, 8026942.669107237, 8030038.3062231755, 8033215.322189282, 8033459.821690809, 8037304.58094628, 8070213.155762095, 8072246.875, 8080356.147707959, 8081055.842827667, 8098190.201879674, 8139695.3125, 8152149.274815238, 8159175.0, 8167068.75, 8179385.533575734, 8179883.176306829, 8182900.439407424, 8201006.136753317, 8205504.539501993, 8207567.796843211, 8217667.1875, 8219853.931710939, 8219956.904955074, 8224710.9375, 8225525.0, 8226610.9375, 8230249.797727649, 8235511.087168592, 8236694.742197891, 8262364.021032453, 8263259.303303106, 8316791.90673687, 8332869.849820385, 8334248.409939397, 8341182.194208555, 8342189.105196334, 8343899.549586416, 8351476.8246071935, 8354174.513496344, 8373557.8125, 8379496.993630222, 8381361.1926027555, 8389054.6875, 8400608.693979235, 8409363.90831639, 8415133.363206763, 8417024.577037986, 8422736.20497298, 8424057.85144548, 8436244.859426498, 8437004.155565165, 8437759.303226104, 8442003.125, 8446548.4375, 8453729.6875, 8458891.904413741, 8461134.375, 8461795.672331609, 8464015.586462185, 8466694.560978977, 8473679.629684744, 8479867.256233936, 8483460.867577702, 8484854.027190132, 8484863.743217703, 8485039.059564086, 8486309.160077626, 8486309.36819663, 8489863.089162763, 8500568.21149382, 8513234.375, 8556551.949696587, 8557832.497542862, 8561115.841883438, 8564558.85722567, 8569002.662990363, 8572447.216734773, 8574522.12113796, 8574677.474454902, 8575891.734166961, 8577298.4375, 8579390.36484899, 8580275.02454743, 8585457.394057866, 8585785.180117361, 8585858.827066181, 8587371.732116936, 8610532.8125, 8610550.117533702, 8622223.977755759, 8628894.528580869, 8629041.141598754, 8632999.780212628, 8640006.712191796, 8641501.367891256, 8646673.4375, 8669165.625, 8676220.23331934, 8692058.759506939, 8779062.5, 8780732.47321733, 8782671.875, 8785041.73107341, 8791175.0, 8793818.194016103, 8795456.25, 8796012.5, 8798306.778972164, 8825931.25, 8835855.823090468, 8849739.539927378, 8850889.173657583, 8851986.260854574, 8853368.813596144, 8853420.871675786, 8859329.6875, 8861183.316639476, 8864011.31831833, 8864921.535435049, 8885024.818013525, 8888064.255765527, 8892751.247263584, 8901403.866979355, 8905874.372684905, 8926252.62767492, 8963758.539302723, 8965664.0625, 8968681.16310319, 8972070.790371945, 8973463.324977472, 8974283.799945395, 8976557.301421985, 8976850.096920993, 8985607.588344758, 8986381.25, 9013235.541264622, 9013447.338695785, 9014593.75, 9015280.35381233, 9016185.9375, 9017181.706610788, 9017221.875, 9021104.547528632, 9021690.625, 9022219.05780727, 9027249.73433607, 9033419.337877048, 9042716.42698452, 9042833.860863928, 9044623.074365998, 9047898.4375, 9086790.147906452, 9087732.775283158, 9113835.949388485, 9123035.616965463, 9140984.685911963, 9145053.125, 9146889.692742635, 9151488.063841222, 9158520.3125, 9159411.89858794, 9171134.375, 9171515.625, 9172253.125, 9172988.037455885, 9175780.031704783, 9175852.451325234, 9176638.79729536, 9180971.875, 9187485.19619283, 9200706.247609595, 9206360.326453926, 9240517.1875, 9242840.321361903, 9245364.954864815, 9245554.481998403, 9246141.881243354, 9248290.627312616, 9272687.5, 9318937.11073507, 9322015.061786009, 9334017.565039787, 9342589.236014381, 9346692.568609737, 9375928.904073376, 9378395.3125, 9378423.392332625, 9390821.5892677, 9391403.883291189, 9428089.922928363, 9430008.03623667, 9441684.051347839, 9444793.681308825, 9447312.637101743, 9447473.2483378, 9450735.90069744, 9473521.644237021, 9478641.35783441, 9494743.621897088, 9494796.329767385, 9512663.632259928, 9513846.875, 9520826.102997392, 9538207.606329326, 9538209.536735853, 9539411.679069703, 9540115.625, 9544748.289853174, 9545546.910790399, 9546028.125, 9547360.180044308, 9547368.75, 9570768.24923483, 9571630.536591582, 9572058.178215455, 9573245.3125, 9575306.167505134, 9587741.369616205, 9588053.125, 9601558.582411485, 9604556.09242368, 9623344.657115838, 9623355.509009993, 9626270.608069647, 9638277.754939258, 9645549.01481525, 9647890.429392284, 9647971.874612639, 9649905.89866625, 9652242.346540371, 9696672.867640523, 9708349.07684938, 9708534.519300811, 9712193.043306265, 9717160.794722112, 9719252.383047717, 9723445.3125, 9724038.124981666, 9725245.237983072, 9728138.577064725, 9728341.158305949, 9728793.728462972, 9752440.03763061, 9755244.513381444, 9755254.6875, 9755355.739454169, 9755791.945526535, 9756252.319195595, 9756962.5, 9756962.91878233, 9757178.125, 9757664.872454174, 9758097.101096982, 9758517.455873242, 9758520.747364257, 9759334.66358007, 9760537.5, 9760961.815544566, 9762761.86411296, 9762984.375, 9763113.543536032, 9763449.939506577, 9763585.50782923, 9784371.357136669, 9785409.86438659, 9785450.0, 9785687.642198607, 9785694.559331229, 9787345.247118583, 9788022.30654546, 9791325.214282481, 9791843.75, 9795304.199461473, 9796950.962833496, 9804999.694740223, 9809501.5625, 9814391.8579141, 9817492.692676455, 9818967.137336591, 9829960.17524199, 9845362.657360433, 9861896.691618016, 9862987.895159299, 9864618.975244107, 9864957.00815302, 9865572.779635392, 9866564.0625, 9866624.11858944, 9867495.3125, 9868246.657508945, 9868511.08611343, 9868691.549169304, 9868725.0, 9869959.069457395, 9870398.723299397, 9870876.591401191, 9874782.8125, 9874805.48933288, 9880888.379418809, 9880897.80205953, 9881121.702101769, 9881441.962186659, 9882456.512751995, 9882510.958485039, 9885409.375, 9885413.516228516, 9893426.5625, 9911257.185139252, 9914930.909018548, 9917770.3125, 9917778.957246259, 9918477.27043511, 9918907.042884128, 9926943.734081019, 9943010.9375, 9943310.682476787, 9943744.767200915, 9950764.0625, 9958854.6875, 9970617.457171937, 9973088.450740209, 9980628.403881202, 9981866.671048917, 9982866.52183427, 9983906.25, 9985024.832540084, 9986396.1450795, 9986683.025169555, 9986777.446865592, 9986907.086341517, 9987127.744761163, 9987930.98319568, 9991364.0625, 9996167.51575003, 9996460.687585792, 9996479.437931204, 9997646.875, 9998343.47499413, 10001415.626017561, 10003559.729384484, 10008814.246664148, 10011659.09759298, 10011769.476921573, 10011783.943410788, 10012895.25421298, 10018082.8125, 10038569.529406082, 10055660.9375, 10065705.272198703, 10068600.431459084, 10080243.851223288, 10086033.596615626, 10087509.391470123, 10098408.361201033, 10100994.626639772, 10102158.034756336, 10117238.922741815, 10118154.432201983, 10119063.407390127, 10123444.635815544, 10124316.020801987, 10128837.5, 10131159.394565746, 10132776.5625, 10134898.24665532, 10135293.460149515, 10135327.077461567, 10136676.565810371, 10138389.949026905, 10140028.343479417, 10141048.021795673, 10141243.331785468, 10141254.6875, 10141474.701854926, 10142129.63963158, 10143341.919573717, 10144020.3125, 10147272.271686116, 10149156.169355193, 10149594.098231645, 10150503.793316813, 10151442.281828135, 10151504.754651215, 10151829.759162016, 10152194.243200248, 10152563.368329132, 10153577.778673049, 10156150.152337776, 10170146.875, 10170160.9375, 10170193.75, 10171404.6875, 10171554.6875, 10171562.022799563, 10172365.048522256, 10172390.090188814, 10174487.5, 10175640.132942783, 10180254.643278988, 10180544.347052626, 10180564.528357608, 10180956.096864032, 10181014.36163695, 10181821.875, 10183908.170737797, 10186003.65232993, 10188733.109139057, 10188789.602269713, 10190381.25, 10191160.555205083, 10191806.796562485, 10193552.485446632, 10197901.5625, 10198105.814949853, 10198446.562833754, 10200362.07437057, 10201443.75, 10205503.636480875, 10207653.125, 10208165.565869242, 10208838.1695723, 10213293.888340019, 10213295.131951166, 10220119.726977468, 10233989.5723536, 10249342.371009542, 10250795.3125, 10251621.817465024, 10252156.25, 10253072.952356692, 10253490.505406067, 10253869.573636722, 10254957.8125, 10255667.035987189, 10255872.832463445, 10256931.433800524, 10258373.215012994, 10259943.478188386, 10260476.706897719, 10264728.125, 10266442.296352593, 10274747.067936251, 10275255.190352472, 10289831.25, 10290802.782379352, 10292462.869579831, 10293554.73918289, 10297778.824313262, 10297794.955265004, 10298737.480455937, 10298828.545498893, 10299457.377993971, 10299570.439851023, 10299848.4375, 10300130.62307209, 10300144.787327461, 10300690.817993488, 10300706.25, 10301204.6875, 10301465.625, 10301521.48252762, 10301587.5, 10302040.519170467, 10302301.7900741, 10302314.0625, 10303946.10494962, 10304408.741480289, 10304478.5094052, 10305221.875, 10305223.226203792, 10305226.14652242, 10307031.011761727, 10307269.785360279, 10307462.5, 10309294.968634132, 10309297.902646123, 10309582.8125, 10311078.125, 10312044.95175881, 10312416.71109961, 10316804.261111552, 10320491.109732816, 10320512.462227667, 10325222.986126252, 10325878.594507508, 10326284.375, 10326363.943833243, 10326524.424308639, 10327310.734178305, 10328127.08209521, 10328569.903826961, 10328668.524969477, 10329829.6875, 10330612.991425173, 10331359.091693696, 10333099.740744637, 10336046.875, 10339941.24687057, 10342414.712809332, 10343440.625, 10344381.97865991, 10344999.912996395, 10353260.804763677, 10353535.498282716, 10353742.976438291, 10354287.885626534, 10354297.569882775, 10354792.1875, 10355213.77278935, 10358450.399226, 10361989.01558263, 10362841.976724448, 10363341.188057559, 10363341.571234595, 10363374.726313949, 10363418.75, 10363525.0, 10364009.375, 10364057.262879279, 10364115.751976259, 10364311.917114059, 10364490.253665823, 10364729.224676805, 10364925.0, 10365208.257883418, 10365392.28707096, 10365448.073499309, 10365516.038166454, 10365659.609664822, 10365785.203425363, 10365815.847030034, 10367385.88585649, 10367746.562054759, 10367752.338583201, 10368150.074336467, 10368306.851367163, 10368503.125, 10368736.691915171, 10369471.782445857, 10369486.842599764, 10370155.337667437, 10370973.4375, 10371440.38551264, 10372150.043932198, 10376668.335722974, 10377051.534450302, 10377231.468204005, 10377890.044306083, 10377922.18289732, 10377946.875, 10378440.573246077, 10378671.193722254, 10382542.1875, 10383887.402931124, 10385151.085031869, 10386423.4375, 10387701.319251232, 10388278.125, 10388749.915860837, 10389323.8781204, 10390576.376010567, 10393812.399809647, 10394629.6875, 10398967.491198042, 10401349.215430658, 10403520.3125, 10409402.418210872, 10411874.835677925, 10413323.4375, 10413614.0625, 10414201.546216084, 10414852.56596623, 10414998.4375, 10416168.791619552, 10416262.206166547, 10421764.0625, 10422837.2855543, 10423472.170676788, 10423858.808502499, 10427769.82955107, 10428383.422452597, 10428502.312091388, 10428697.66470055, 10428920.3125, 10429580.92797694, 10429908.654156944, 10431180.889756467, 10431605.72880623, 10431697.123443559, 10432153.125, 10432435.9375, 10432748.4375, 10433192.1875, 10433244.988977913, 10434318.392574364, 10434788.684128245, 10435407.16843467, 10436237.26835697, 10436493.988492467, 10436517.343942374, 10436756.03090487, 10437231.71506257, 10437357.576411514, 10437501.348039078, 10437524.568693679, 10438984.71494017, 10439363.445554588, 10439477.784096839, 10439491.568123683, 10439543.75, 10440869.77320241, 10442062.930352638, 10445585.9375, 10447181.797912754, 10449596.875, 10452599.857733233, 10452696.875, 10453887.5, 10453907.832001084, 10454318.212561103, 10456672.140065683, 10457359.375, 10457370.673099872, 10457904.595550995, 10458037.5, 10459115.275682798, 10459242.725552937, 10460150.0, 10460199.69080388, 10460338.079460843, 10460449.419384276, 10460555.989766747, 10460572.420976454, 10460658.581838144, 10460664.745996961, 10461644.218014805, 10461667.971192122, 10461878.375777684, 10462268.75, 10462417.533134738, 10462660.9375, 10463229.47846847, 10463498.4375, 10463511.11147847, 10464043.75, 10464117.970900068, 10464953.125, 10469475.0, 10469746.746662728, 10469868.801591536, 10469905.800623301, 10470942.160933295, 10482270.072607135, 10492956.55096029, 10502587.76125772, 10519926.5625, 10521393.75, 10522672.442573342, 10527390.020415965, 10529186.935050637, 10531859.375, 10537260.747030757, 10543345.3125, 10547562.840839174, 10549467.640008233, 10549726.5625, 10554391.34395449, 10554585.9375, 10555365.625, 10555523.4375, 10555696.875, 10557324.525233412, 10558450.304655237, 10558893.75, 10559151.77329535, 10559348.4375, 10561346.30067645, 10561663.730014348, 10566376.971411634, 10568444.978105057, 10569450.858857945, 10569500.0, 10569951.5625, 10570385.9375, 10570767.043736523, 10570771.400126448, 10570960.9375, 10571046.875, 10572243.411050232, 10572295.842076033, 10572393.753694152, 10572929.554190615, 10573207.707802901, 10573709.28469749, 10574996.472306, 10576753.999498893, 10581837.295206774, 10582915.54744629, 10591634.375, 10592044.685756184, 10592430.28786543, 10593843.394679941, 10593967.411935793, 10594698.4375, 10594925.844515502, 10595021.875, 10596407.130994251, 10596610.273778908, 10596862.4424424, 10596995.3125, 10597099.756909924, 10597137.5, 10597871.424349181, 10598031.142658582, 10598074.102540128, 10598296.75156169, 10598304.6875, 10598625.331483642, 10598673.000519421, 10598673.4375, 10598725.0, 10598760.843922643, 10598787.5, 10598861.422479855, 10598925.0, 10599008.31793126, 10599015.668898117, 10599043.75495399, 10599179.6875, 10599552.323203158, 10599587.004962988, 10599728.207156781, 10599896.875, 10600073.437041722, 10600296.875, 10600437.405249529, 10600767.1875, 10600797.181285607, 10600860.540549992, 10600877.720670212, 10600908.79228004, 10601467.015580835, 10601475.431334307, 10601850.753082993, 10602521.875, 10602896.875, 10603417.236486807, 10603418.75, 10604528.884995213, 10607984.375, 10608580.681249797, 10609728.033281213, 10609870.48510937, 10609990.625, 10611885.426651808, 10612065.393114312, 10612214.0625, 10612268.17001504, 10612282.750483485, 10612322.638956249, 10613054.924005765, 10613237.5, 10613930.993137473, 10614345.293089649, 10614727.11252578, 10614924.221637921, 10615952.702074887, 10616092.1875, 10616096.62540257, 10616220.3125, 10616353.873571984, 10616375.372907251, 10616471.265033357, 10616639.0625, 10616924.808752082, 10617345.912771937, 10627566.648213118, 10628376.925290331, 10635850.853506945, 10643382.8125, 10646335.349763962, 10647551.5625, 10650015.807476303, 10652585.902042534, 10654420.3125, 10656308.259977514, 10656673.304080138, 10659126.889981536, 10659467.1875, 10660365.61850738, 10664310.4330292, 10664326.873264492, 10667846.714977525, 10667862.934936775, 10667865.911343044, 10668129.253897801, 10671193.656145772, 10674400.396579681, 10675403.125, 10675545.3125, 10676853.019162836, 10677034.512439247, 10677286.61442823, 10677354.981724707, 10679016.544117585, 10687000.598164111, 10687820.3125, 10687822.819369657, 10698636.658041444, 10701952.511938648, 10704786.441249624, 10705027.342756096, 10706271.875, 10706298.4375, 10708179.709175074, 10708229.6875, 10708400.824499976, 10709223.283308364, 10709451.677677115, 10709836.675988918, 10709971.875, 10710309.806841332, 10710555.726266354, 10710717.1875, 10710846.962279571, 10710857.9019352, 10710972.511180345, 10711132.227604575, 10711212.5, 10711232.674084216, 10711289.516458169, 10711935.910756955, 10712214.0625, 10712342.1875, 10712579.47985716, 10712631.25, 10712898.4375, 10713005.114515021, 10713015.255644768, 10713045.3125, 10713807.581422351, 10713942.1875, 10714318.75, 10714549.79931239, 10714793.853181208, 10714971.828168148, 10715047.505989138, 10715177.346954457, 10715199.283612456, 10715485.895041233, 10715495.752377037, 10715669.83586273, 10715851.660928557, 10715859.36079173, 10715882.8125, 10716308.58746681, 10716332.392328769, 10716497.454390245, 10716615.468304818, 10716661.599259248, 10716671.401399476, 10716673.4375, 10716705.731846264, 10716869.694061281, 10716894.361501466, 10717018.540078575, 10717032.8125, 10717165.625, 10717274.658659223, 10717316.589615941, 10717337.201718409, 10717383.577265244, 10717494.59297275, 10717653.424586995, 10717658.98209678, 10717756.713700905, 10717784.562845197, 10717928.125, 10717967.1875, 10718003.929970508, 10718023.027579788, 10718115.137931539, 10718308.064338854, 10718778.30643238, 10718810.224806825, 10719641.715798631, 10719697.713094521, 10719980.178596424, 10720101.5625, 10720470.519435473, 10722322.45164978, 10726084.866871845, 10726382.026493765, 10726518.902847556, 10726522.626664799, 10726920.3125, 10727248.4375, 10727607.10098144, 10728422.416725984, 10728478.83119192, 10729391.199684097, 10729670.418880643, 10729674.122175092, 10729716.51621922, 10729862.112095384, 10729879.331920322, 10729981.25, 10729992.196175667, 10730098.4375, 10731696.875, 10736095.089045044, 10736109.61663985, 10739661.275692835, 10739684.90594825, 10739693.60925422, 10742520.48868449, 10753770.232208656, 10755475.41509208, 10757038.828458782, 10757074.17137014, 10757407.146327224, 10757407.8125, 10757433.781044157, 10757434.453840816, 10757464.392359402, 10757754.6875, 10757853.586923676, 10757915.625, 10758089.332514739, 10759101.5625, 10759444.75789082, 10760314.898098992, ...], [113.04380782627366, 64.2337480410662, 7.101202789796721, 32.680071391064615, 57.84810061648462, 22.694850756731817, 48.322738416184784, 16.654877334751475, 29.051504261682773, 22.660910913194805, 23.238302454396127, 67.77169662413435, 11.29872957037291, 5.187606491060499, 5.792239934023708, 73.22113576042848, 83.3618081431804, 73.36617211910652, 16.222065603348646, 14.912736213528575, 19.53111055878727, 66.66372732629846, 100.72185753669068, 29.539178223398487, 7.5048671884707066, 19.263977974933557, 5.518415225630706, 95.81833745163371, 7.71486233017573, 10.83145116347103, 31.2846125599215, 58.53980832908195, 45.44361408631109, 37.10664219263714, 58.300838395809606, 6.314032430950145, 7.457540019005197, 61.13278579212566, 74.26888076354939, 23.118778661364836, 32.59387038225097, 66.58329581226283, 7.669732857980144, 52.25268874728003, 30.189694097285773, 5.594674244562556, 104.54074682387143, 30.000711901433828, 67.47648297914667, 113.86450491195387, 88.59821179925935, 29.71156907502328, 60.33975540010253, 150.32800287944474, 19.159729273223505, 20.33795869700248, 105.80289766296343, 20.13463289693824, 16.80526782978173, 48.63864687019826, 13.459514392587732, 14.291722101985819, 26.326713738156002, 9.424803889461032, 21.766705290168307, 20.03454222323208, 12.603409929993903, 32.4060410668531, 16.18971443757514, 52.498994885014525, 23.71490489580561, 16.96969615805993, 95.78691018866344, 18.21169814355352, 70.39282828613125, 42.636886229259744, 20.200913829551403, 17.7286154926174, 83.06193129230752, 10.156325382695869, 73.58022803731136, 34.99037458601515, 22.508213035806786, 16.536755141832614, 28.194038389377084, 7.562785474740714, 93.28376307985401, 15.375570583477263, 45.82159106866209, 17.90907078471043, 8.666214931435618, 74.253176855607, 59.56197618068112, 45.845137706813375, 5.198299078291102, 6.793759178851789, 12.697348592503555, 14.785775551828172, 127.50799623435805, 13.969459079912868, 7.444048745052588, 109.06367180003419, 15.593438643294355, 148.84240548360677, 32.34096325392162, 35.603734901351004, 21.628798321603046, 68.35073017254636, 7.152989056210161, 11.551320627415244, 54.364066238689, 19.859283956588307, 25.8110044675155, 31.906718773991923, 35.975082978118806, 89.25083276884521, 16.390704413058316, 26.97118654963426, 21.18034056392777, 11.017342713406391, 97.10875955684199, 30.389407280308873, 61.01392190530597, 23.969222597078325, 57.41486034643814, 25.935135331625535, 14.79662802143192, 21.232117653201698, 27.43069756389335, 22.828937441940077, 7.103191720821657, 6.638471898200852, 18.507470191562216, 23.77141698642577, 24.901930031989767, 11.11708932584914, 12.193068387637643, 217.06142159788453, 28.66337107640689, 7.749552236186457, 13.863111730965018, 14.57674400373813, 21.317605483350196, 93.27276524563577, 33.453625058444715, 8.421174256572963, 8.835897691684137, 32.92835704926482, 69.12458833500766, 67.58861073423705, 16.1509206136407, 55.87753552689688, 10.119598561078437, 64.34608657367356, 12.30262649919803, 41.76311691172089, 29.755795401945072, 12.092073631562869, 6.92957983235505, 29.858190600233225, 24.832433856409907, 36.37306118294259, 21.402577053957554, 43.53736417658229, 29.28241448876923, 27.05086971771068, 46.940288651909114, 49.77735063012471, 18.365971932845024, 70.19872509132075, 58.251925634495976, 38.322402862113215, 22.987758266101714, 55.4408995744079, 97.26950051690298, 128.88998460459615, 70.74047750337336, 85.99471008787123, 24.227932222901043, 7.643942419244525, 49.16994107101831, 111.0427407033941, 72.20203388951157, 43.566748567704536, 7.796355116374916, 142.73083413509647, 9.05988888845159, 34.97428360103445, 65.00401651925802, 123.67465021436836, 18.798000598110644, 12.990379602457473, 10.430194599103867, 202.37358534742543, 74.58327158760068, 26.91674701134112, 11.966956295190345, 57.48118291755471, 14.61525590938993, 163.1115820176106, 93.09688340337212, 14.150833394495912, 84.55047827336615, 22.59466798535871, 30.045401230236884, 107.35677010286233, 40.028923968283834, 38.06943349114344, 17.023580360693465, 41.37036546758914, 7.5533849767809125, 125.5023341445409, 45.18357670220425, 24.199474868982808, 17.782477200372057, 72.48731357602163, 8.032201718143984, 31.68106746262221, 106.97606811324789, 79.95608656412186, 21.646748664318356, 14.9870172074394, 103.70534742571381, 18.1109098213827, 61.8208185098088, 46.09161604315034, 9.858469616874215, 44.588969536035556, 7.9922382915800725, 74.54136979339688, 42.53162091168696, 50.04920537188429, 8.592827601757103, 42.920012710083284, 19.91950467313423, 24.205617881289896, 32.01688342566099, 44.35513360778283, 39.71556946587965, 13.03186926671545, 41.51602901059791, 124.47784445463574, 10.220210639612851, 31.02242224264046, 107.10097261659516, 7.604074331179303, 68.43516369241038, 72.02499675173922, 20.88486265833736, 25.49245995872736, 30.031446002299127, 160.76985060095575, 19.065777708124987, 67.28491678808447, 27.661593410498956, 23.934718848610384, 55.43090289711022, 19.689263716064396, 15.868858818956108, 8.122532336305555, 36.434568212297094, 8.360434589846493, 20.273553197592374, 6.481337541382853, 7.5218538793481375, 17.78017040091679, 14.474731912605835, 5.323579358555554, 22.746226610339104, 84.5869697205082, 36.74526201837658, 14.209895026405498, 9.472009573099859, 10.048455802969105, 31.072698474149895, 7.083173233757421, 27.219838019022433, 54.22244296375246, 15.303293590173844, 29.827812487079196, 21.48547064195102, 68.36272242115064, 16.54639072067272, 69.08635426186021, 80.46663046646444, 56.386760522136754, 41.419627600406294, 10.079967510155697, 131.39641510768226, 12.919720394749893, 8.77468592598174, 11.623423330030905, 30.30497255781312, 31.98311365954067, 51.73992193687784, 45.38893207428632, 13.752524021060688, 61.790402387760444, 8.89194724556589, 12.529623054673621, 6.792661152701092, 27.95625101205763, 25.99075139959106, 105.07940749739933, 335.506194069159, 12.268720444377589, 22.919590444422745, 7.436618778314941, 17.4562236942268, 72.58548951314596, 10.318944479215805, 17.787792030862942, 42.90895623799441, 28.042098858112183, 24.521371660196973, 128.86072742417565, 83.20987113911484, 16.82052666919833, 41.73801949255986, 19.296384882935772, 70.80264375531688, 36.759778403014515, 11.883024806650837, 24.623106212554, 80.76596286444781, 8.812750852260269, 77.91430217060004, 93.14226310571053, 34.35960773939895, 27.382391020307075, 53.89224562167108, 13.277387387140536, 9.782584484115322, 93.62860945614113, 5.540021919981074, 10.124378766354733, 27.294744439411968, 16.888305500988178, 9.519410836468655, 60.62406645433606, 21.61325799129747, 101.54721411729535, 15.505034082169939, 47.64520744159688, 10.648865880770465, 6.333205712744572, 14.753696078286415, 19.223083075200837, 5.404524039801746, 38.27816811226213, 33.808178305234904, 16.738573445868, 18.913549592254356, 12.913531731762314, 70.09891718166266, 68.12012988222409, 46.45258926959609, 33.89263378253897, 9.460307085252504, 23.741526976747913, 79.35928658441142, 49.85683423243142, 166.41013284941283, 32.61860754475847, 68.85368534911939, 8.761588681325808, 16.88665812011989, 8.84628519004598, 44.26961192245514, 29.878025814742095, 16.047434146201972, 5.165850600055897, 41.040862316469216, 10.369212983956336, 98.55932263778234, 6.025201738724117, 58.70695503860736, 31.556971716019724, 85.02374656583771, 12.449645636836374, 5.1143878364039175, 6.484598683183308, 60.56244265635832, 57.27847341296874, 21.052814192196312, 85.0614369576025, 142.90752363843498, 8.434525462430477, 20.446261504064534, 7.196742876940734, 40.16439560088876, 8.825547001897688, 83.00924958401284, 10.153662425679471, 102.07094008476412, 93.92225026172015, 25.310962298420367, 19.499235337657016, 7.471267379705884, 49.746083030350555, 69.47733138186517, 154.7858894267146, 108.86567882852859, 19.372496857046773, 70.9965865119488, 5.388063864529993, 6.487250754206883, 31.204593209115338, 11.428308660132055, 65.76091960807594, 12.492222747181847, 7.012440616626038, 14.723905107693165, 63.498857787246656, 19.068224350116257, 61.1254229119876, 8.622033307956757, 13.548806915096312, 25.630660363276597, 7.344045750901485, 14.909205041673186, 8.599743241804962, 12.84429700142707, 65.09041315695686, 5.199875864416838, 34.28888444381281, 28.948189294230133, 19.894775548743738, 16.70031692153471, 101.06240944245849, 15.016613011095071, 81.02495333408181, 25.252934757190502, 14.121420565811738, 7.80075130379033, 47.72512455481131, 18.121307970293806, 82.66632208873655, 16.131408584934356, 62.78991900403576, 59.699342537313555, 45.13775419651191, 14.762143265582136, 54.024226945151376, 40.26880507910638, 9.690968845386372, 14.612983674621564, 206.72337026643203, 12.362217852838667, 9.412457194662274, 15.203788363663909, 5.132036700318692, 53.264853194327976, 12.823958961186438, 10.626339132774458, 53.6365353437036, 87.02179662253576, 42.49486824177833, 43.88211072097157, 50.08645678547892, 75.04615711061204, 6.039841665982557, 20.762673757853772, 21.26684574890388, 164.05523010904227, 8.947332337761601, 27.679055713196224, 12.20960815425039, 17.074223633899493, 58.9416227453596, 5.211110601992052, 46.964711125478736, 23.0663420797541, 13.829075447746858, 21.412784604312364, 17.494038365899627, 107.44896056818905, 22.753532638078767, 9.84067107550971, 12.959429262763004, 100.08246886464347, 20.94266114197335, 78.30069588417362, 16.409435020018783, 33.39321204088895, 127.81165227716673, 58.446422491112536, 38.77263765926482, 7.864800245732088, 8.361114240958234, 25.40671165731622, 20.680380557264407, 18.82636906106775, 27.421755297221274, 29.2942038177776, 7.582559978258329, 118.92533633576002, 21.64259504324276, 26.365550745300528, 7.931022809746619, 69.19469478786304, 45.32780136702502, 45.72737586616903, 9.49180766936723, 5.4522974968409015, 24.117613416404957, 98.678814159426, 104.37880926720314, 15.37329696589428, 11.443292277372029, 24.569510459928626, 45.644755489363405, 6.696979877473407, 16.565946447607192, 13.88131655736358, 19.180242472382965, 58.59746017692544, 28.14380868692722, 11.855399991277634, 33.13420260757749, 7.649957089919435, 31.0046872885344, 43.17634844542711, 37.10578888108935, 13.100537027385865, 87.72282190436684, 57.33962167687967, 53.3114558641022, 115.09094201199466, 78.31683684472421, 5.287829412822158, 15.88618110508847, 39.63185605113151, 52.788430855653566, 10.263485438849582, 102.00445526486376, 63.19739711321412, 24.95403687165726, 13.56220896558762, 6.716858274722484, 66.1051327469876, 38.81879177251035, 23.206134092029583, 26.439055234723824, 69.9762039862108, 107.56117783192927, 7.477774580462538, 13.39114787829451, 64.48718466654982, 11.980518575123465, 40.34723356565621, 8.976833329449066, 11.95048679026656, 93.42293955605442, 6.740044679877282, 10.333142944682995, 7.531318616722753, 73.27191246743809, 242.38952587811374, 92.88205917382862, 32.88006667741852, 17.216380794837825, 13.961467847409228, 24.285534587143193, 53.38335999097237, 63.33162941234913, 9.949296748487996, 60.094661794724054, 12.496143304187944, 26.914901821849682, 115.9946207700184, 22.121654123713885, 19.138668865801915, 124.26699166519137, 6.601831538429097, 50.92459688496991, 64.74041697722691, 23.181935088190034, 27.629371200101442, 57.979357558692854, 22.241768123970793, 55.88183042377436, 13.991766860480226, 43.34542868165558, 56.98659884691421, 36.447930348319524, 218.34453257559477, 186.5929351421428, 5.087154132389721, 22.880395273449313, 28.97993007078088, 59.78200045335256, 11.903382402665065, 28.327515565986033, 19.54167168764758, 39.26750856561135, 10.843545378297648, 19.437805298868792, 15.861171684018183, 14.74825552037194, 128.00912617879095, 6.172702928879499, 107.51540141270821, 12.218682339352016, 31.42326068559815, 74.31581465342745, 34.37478371947312, 5.057133746844038, 6.158425305561684, 91.49176541858404, 14.101037571846163, 29.520371529252166, 5.51330659757773, 60.20916882584846, 262.2781848370659, 146.250309959336, 20.09148240575968, 37.56011356270227, 14.747849884983552, 7.956417903526664, 94.30530160702484, 43.93950445230173, 21.356389284503443, 31.152641209296906, 24.503777878669553, 60.0588688271051, 106.65228917552406, 6.324520274032265, 25.317709150742054, 32.638923787546204, 40.90931495910501, 16.240892358271257, 72.72421193750093, 76.23404788600689, 19.651671849762728, 5.925221985594377, 61.87248772193754, 81.83555738170946, 11.102349030700635, 15.491291319140611, 65.23362667546782, 15.102552590015174, 15.702717746397887, 43.95317502815942, 51.954670088087354, 11.623616142775107, 48.38428547349051, 39.435780572252455, 46.83853878895812, 6.9229899911212724, 48.14754964237663, 55.74882505152671, 37.19474184555799, 19.540764723378082, 10.607735000394335, 135.82548043568693, 65.87582805572214, 53.55425898938808, 62.25115299101782, 55.36830638952485, 76.63399490787927, 9.072050628175973, 151.41244356236373, 13.671975545711671, 6.641393163600236, 24.563139909637503, 15.935752856098992, 14.850751709546683, 10.801686921813694, 6.562551741404545, 7.520023559203491, 14.182581640140615, 11.386234410745201, 11.704156108476818, 69.84333378722907, 48.563000762696866, 61.17831260828061, 48.722430715267194, 94.98376461764181, 22.40087937396584, 55.401331507459105, 17.54198865711268, 55.914182025306175, 92.28779046506206, 70.84897709843165, 47.082515942605404, 5.708000233389667, 63.540926203897435, 16.05819789502999, 33.53164657894192, 33.43901462645089, 61.17910018535834, 63.27387018275341, 10.62233236439285, 9.831947630476579, 50.248836768436206, 57.3929883243332, 28.911200858944113, 8.001682239108622, 148.27028153639233, 17.530555105681106, 88.4653410676488, 18.395048083863113, 12.138937815301848, 7.91361560848486, 6.114572000887007, 59.84906660858489, 8.478222245971104, 37.21881089939957, 24.98671374678925, 29.084648966142797, 9.482975759873002, 112.12184819132462, 6.617332790435977, 126.5236618403529, 64.50411079554878, 7.557470568284797, 184.43283526044, 5.381568236633017, 9.309040097481459, 74.15987461682445, 11.633137135662635, 24.511261530700878, 58.89352672637908, 43.01519983827124, 27.953819236124716, 40.453406020353036, 6.980461646539937, 97.44837555837358, 79.94786946802009, 86.71073461691446, 16.421985810072087, 17.001240112833976, 81.09984162165796, 106.08026187187313, 69.1238921229895, 42.37558548637553, 73.13172645536113, 36.07249588647387, 93.89576625410923, 168.3494472405962, 44.90393041901482, 9.516238075792163, 34.43897284722856, 34.09846965762681, 175.3688607355339, 16.768608055391216, 23.321116351490033, 19.67672919383776, 92.69172475172974, 43.95724202492478, 69.3766362800401, 25.975100466295835, 41.9290872050245, 118.26596179098645, 43.522396830462206, 5.235756790003892, 5.986890323106621, 11.133485915358813, 7.086844122348625, 6.254060649104405, 98.90323181337062, 13.60068594885834, 12.839048464404652, 25.048147058607785, 8.245987044739385, 88.67022059504745, 20.315541404781886, 17.859433611953634, 81.95560448253781, 19.15598299623905, 69.55275416076967, 28.575770446982958, 107.20643855875572, 87.94198722903778, 6.387848183059754, 34.519258387936155, 61.696992023682114, 24.505965465557907, 43.49168101102219, 6.211892756507299, 15.484495360793813, 14.188477680334536, 79.03300587283289, 29.237596631703443, 16.375852783372853, 7.452482692579775, 73.06002967797448, 84.16069864818004, 111.62821443574302, 53.96122663488911, 7.788599329376861, 85.91295825451041, 17.295608941778017, 101.90141808331417, 27.99385756725033, 65.03363540779, 18.93193720252115, 21.5427519658663, 15.264180259974243, 34.00078155575407, 103.95360368789073, 30.332467553506714, 26.781850903301947, 28.607343943242157, 6.826234440412989, 10.559188482786777, 47.94436806295922, 116.88647344681928, 8.197708904210847, 25.91311907355729, 12.5516271128272, 89.9698970083063, 65.5940337662522, 15.131570417004765, 60.72731758565015, 7.336669341425374, 38.452833296673404, 29.133168607982984, 22.336141741020764, 99.62522285459264, 51.20227121894437, 55.147725146094544, 29.60699882438165, 41.63907024346935, 20.73066550307971, 56.835699004904725, 80.61487026480376, 128.13044798361437, 38.21396614193397, 31.26201444000996, 28.146377350887445, 41.90866516823729, 8.749876610368103, 22.298035815567044, 56.591042044128606, 10.758764361671126, 44.06314862443784, 8.726522503752747, 20.486372704901783, 13.034636135668912, 59.91035568229584, 6.725916732218896, 47.852495230475625, 21.109944978106693, 11.746434131319994, 19.63417262172137, 65.74903404139931, 13.09201323492764, 30.084279540364857, 8.38549011157878, 96.5202400349032, 81.02230448262809, 37.260485690865, 26.140490699681816, 16.35622539673227, 61.80908845697599, 28.397174823655394, 6.205498823981443, 67.00315756374235, 14.36474975913347, 27.43481172339825, 11.606857100268163, 30.70964786284347, 10.984108493112373, 9.690865427620238, 78.47004761829636, 72.68469481950616, 26.594144159094647, 11.349550650767473, 15.956527526004203, 7.2010035762663, 10.25176646921247, 23.3672271383034, 47.4223623577263, 20.39042458322409, 18.647636290479287, 32.83727904793058, 5.73958598496468, 55.996920869850186, 64.77088767976447, 57.06020926703359, 148.0523306109772, 63.33798552586242, 15.362655926559288, 14.384662029615122, 7.645433341438515, 25.04611407244834, 36.48940607298909, 82.81360707272583, 13.261511787812527, 53.02049580832606, 7.1445853748652475, 6.278564374947856, 6.351066450725347, 20.686059629412828, 57.364829049636384, 10.918033637157293, 18.14289457649576, 14.840547855621463, 134.32711669521103, 47.926761579180855, 25.006802346838846, 62.89490873452813, 69.69715841491711, 92.5118606597971, 26.822596627029146, 128.19380255872215, 31.267912834065626, 30.209848233165275, 121.944931455211, 112.24924439849212, 80.89213976396616, 27.630943760556868, 18.051925847394543, 27.46140166131295, 5.762809390280448, 11.06198327952998, 79.01509937104944, 6.2088000560981635, 32.45260689980336, 5.29064857576842, 39.8466043703713, 102.18316526653274, 32.66198191206158, 96.22450574234365, 61.1592372203738, 17.3815472566549, 21.76055440479909, 75.78585282841304, 43.88508925244889, 20.387731548247736, 29.981403236997632, 24.973861178454236, 49.265796784355366, 31.018344016276693, 33.48825118357978, 20.569234776280368, 16.34581995010162, 78.11153566894514, 73.90876342493328, 58.08205396282665, 54.221490519682646, 11.939095379682596, 16.639541090339357, 61.30275974093008, 58.61942562158567, 6.176010081243385, 10.542213828143502, 21.623076500014474, 98.07357495329157, 24.105911843240545, 59.55920576127667, 88.09845278984315, 90.9251406298689, 123.55112963037084, 34.00175821164068, 22.36795472836082, 17.714035940755448, 11.994681984938294, 53.761256351426525, 15.557956697731559, 10.059640275578289, 100.9770180974887, 39.762797646144335, 18.685660474348293, 88.31888352572707, 18.548724381031768, 40.70679538731415, 18.355778707851886, 8.685180132048256, 19.939231068345233, 22.689273600991633, 23.06583426435922, 85.7686124285626, 144.2343808766013, 119.69724498978795, 71.5116823902844, 63.75819254884381, 24.26897660432582, 16.408900640767936, 12.073146656910156, 14.430882333328752, 11.414733391368536, 20.65285034174736, 52.722790056796256, 7.520726934621484, 7.328720583448821, 197.8819186072424, 53.7368768242592, 66.47651857804607, 87.94826772378464, 6.540073398575883, 40.10889534028939, 16.555020988149288, 51.19254262520495, 74.81492536133179, 36.48935918916605, 5.438455180643382, 5.3176155308418585, ...])
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)