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 = 48232
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);
([3652164.1660178234, 3724366.7445090585, 3724893.75, 3731063.708112839, 3736628.7912219316, 3849826.5625, 4110455.2846536506, 4112501.5625, 4117646.875, 4129782.8125, 4171874.6904380023, 4229635.559494683, 4239629.6875, 4240378.710409218, 4258318.75, 4286385.9375, 4288850.0, 4290038.930931541, 4292000.702385836, 4292493.597870343, 4300600.0, 4314074.954179708, 4329221.5409518005, 4331359.574781905, 4336307.601858785, 4343105.385513553, 4349060.9375, 4374687.5, 4375909.258213484, 4392358.503075723, 4401479.761512158, 4409531.7361596245, 4413801.248558855, 4416331.979660258, 4515420.406114475, 4564271.555787775, 4564273.4375, 4564288.832152043, 4609579.258298291, 4635093.567631603, 4683454.491301021, 4784649.782074933, 4799779.500453262, 4823294.470223741, 4994832.8125, 4997514.976916406, 5041247.050323068, 5086541.395908652, 5090023.341352898, 5107471.800351081, 5140251.370928256, 5229702.167588686, 5235537.5, 5236168.592480656, 5256014.0625, 5259050.929456362, 5319824.922242462, 5381202.972358178, 5383223.7300288305, 5404996.875, 5415975.00665762, 5438481.741096879, 5466614.933847816, 5557769.974609845, 5586392.1875, 5646730.137122772, 5648598.351934149, 5654521.60604244, 5658296.504851465, 5705701.389799968, 5714365.625, 5736227.291925048, 5774119.560783633, 5817165.839737018, 5843220.654175912, 5878915.625, 6016310.140354518, 6059525.584449039, 6166880.428194637, 6431077.5009700665, 6496002.5545969745, 6818613.4353757985, 7043491.953484194, 7150618.75, 7170639.0625, 7240651.469649005, 7292022.632472252, 7350397.702149508, 7350420.960027718, 7414529.403819209, 7568220.7184166685, 7625778.125, 7722438.819420892, 7778004.295662959, 7785543.6981283715, 7870946.875, 7909673.044672084, 7923498.182796288, 7992943.75, 8069352.615377969, 8135228.492290175, 8396430.939354422, 8519190.625, 8841550.357182346, 9106464.376741227, 9107390.30462896, 9107542.551774455, 9115740.625, 9148919.345813122, 9161935.1946168, 9191142.1875, 9208860.254599188, 9275852.688473826, 9277387.5, 9486352.464056848, 9583219.291626872, 9654942.1875, 9738981.25, 10113260.05774582, 10208384.497664556, 10226654.6875, 10246075.0, 10246771.341788357, 10250068.75, 10251100.0, 10251174.271537036, 10258879.777271554, 10280034.861973448, 10281097.013193848, 10281100.0, 10288286.12692772, 10289297.659461964, 10290631.771402083, 10291188.59602439, 10291548.4375, 10291723.619375274, 10292664.267051836, 10293503.904335191, 10293874.396768257, 10295526.5625, 10296000.487859935, 10297114.775874328, 10298964.0625, 10299189.693151535, 10299515.915905701, 10299576.960007895, 10299589.146976532, 10299661.380137816, 10299998.4375, 10301199.552031625, 10301271.875, 10301788.483262895, 10301795.3125, 10302956.559663065, 10304171.241430288, 10304709.793919804, 10309340.043709056, 10312121.09907594, 10312271.875, 10313507.444803622, 10316767.380205011, 10328600.577054437, 10328634.780311713, 10329723.4375, 10330468.75, 10333880.649044175, 10335574.965902384, 10335868.75, 10337974.155453037, 10341682.60335377, 10343098.951898325, 10343485.9375, 10343575.0, 10343771.801535705, 10344109.37832614, 10344128.805080429, 10344203.877792956, 10344363.477427209, 10344581.25, 10345904.6875, 10347203.125, 10348156.25, 10349093.411603937, 10350843.75, 10351513.02603007, 10359079.680445895, 10362733.084342824, 10364783.233491564, 10365001.446012417, 10365382.217624303, 10365989.282100383, 10366543.113554018, 10366556.211294446, 10366610.324412562, 10367338.833009042, 10367532.667682143, 10368117.455268586, 10368223.803640032, 10368377.236192139, 10368972.997719998, 10368977.711994557, 10369113.49049988, 10369331.170681372, 10370723.044791857, 10371366.88631566, 10373388.617943583, 10373406.25, 10374204.6875, 10382252.008327005, 10382549.24846863, 10383229.6875, 10383239.495734682, 10385068.039693877, 10388835.572588935, 10389281.069299227, 10390530.601486634, 10390568.75, 10390694.156657089, 10390946.19960047, 10393211.968407532, 10393226.589739628, 10395461.895886743, 10396528.275404993, 10397909.900583802, 10399153.213772044, 10399322.592502175, 10399349.676676095, 10399359.662129613, 10399905.412935665, 10401118.75, 10401948.4375, 10402720.02236281, 10403573.726032445, 10403853.011620462, 10403985.191280201, 10404497.884031229, 10404567.1875, 10405238.085935289, 10405252.847592557, 10405386.634308208, 10405605.32191067, 10405646.330382194, 10405671.490852887, 10405865.759605164, 10405890.294648504, 10405904.61389024, 10405914.860353881, 10406140.76701717, 10406360.9375, 10406432.8125, 10406484.375, 10406786.464226983, 10406832.250823554, 10406879.690553028, 10407173.4375, 10407626.759256115, 10407848.790114649, 10408051.06427629, 10408245.291086849, 10408454.21169699, 10418753.125, 10419489.0625, 10421879.970060846, 10425624.423792494, 10427912.230007138, 10433657.58428888, 10437083.383655362, 10447099.514579797, 10451421.810047736, 10451735.720977884, 10451747.896207383, 10452478.125, 10452720.3125, 10452922.187752858, 10452950.601493225, 10453151.515664775, 10453286.622016145, 10453706.25, 10454060.61586752, 10454278.166314365, 10454328.615584746, 10454340.625, 10454347.727604486, 10454421.875, 10454479.6875, 10454485.55765809, 10454605.571254998, 10454606.25, 10455410.93841303, 10455440.366778191, 10455448.45654459, 10455567.169147467, 10455661.623580135, 10455748.050131332, 10455907.074823845, 10455911.627901128, 10455941.032101344, 10456057.166867834, 10456153.089356381, 10456199.228497935, 10456241.523492264, 10456273.293365039, 10456506.25, 10456582.367388975, 10456592.1875, 10457020.038217086, 10457176.5625, 10457235.9375, 10457821.81896243, 10458017.1875, 10458077.107537527, 10458172.98857761, 10458495.3125, 10458882.8125, 10459002.41401003, 10459075.0, 10459155.076827977, 10459446.454154033, 10459454.592874099, 10459571.875, 10459957.683390085, 10459993.083807854, 10460430.928887859, 10460448.41233817, 10460549.653167663, 10460713.540043997, 10460942.845068946, 10461182.120277757, 10461343.75, 10461503.125, 10461543.75, 10461692.264561426, 10461816.618758906, 10461920.924446665, 10461920.95844214, 10462103.686962146, 10462110.9375, 10462722.55482791, 10463248.234740347, 10464430.261973457, 10464468.583129382, 10464543.341045728, 10464993.825913992, 10465287.336939866, 10466478.125, 10467279.6875, 10467439.729077833, 10467680.895028688, 10468137.201061036, 10468673.81636335, 10468683.591850033, 10474645.124599569, 10474784.344568143, 10475728.125, 10476304.6875, 10476750.0, 10476754.182787195, 10476889.0625, 10478015.625, 10478727.100730967, 10479103.125, 10479162.032768156, 10479231.793967979, 10479494.326109152, 10479497.231418857, 10479861.47795457, 10480687.958008882, 10481088.398818819, 10481145.141934598, 10481187.5, 10481427.521893382, 10481600.963417068, 10481888.713513661, 10482063.673783131, 10482064.637878116, 10482114.630145282, 10482794.04519082, 10483063.174332613, 10483159.32771848, 10483167.1875, 10483687.5, 10483716.74836394, 10483985.747367743, 10484224.401553666, 10485117.313087244, 10485282.8125, 10485810.981834106, 10486023.886897217, 10486449.507969303, 10488007.876232188, 10488513.22570347, 10489319.097684728, 10489647.535331892, 10489853.330028359, 10490984.375, 10491433.76784313, 10491544.76867956, 10492099.081176488, 10492183.651508767, 10492906.099821616, 10493221.61453545, 10493430.191883625, 10493519.639283461, 10493904.6875, 10494235.328189718, 10494374.426099125, 10494504.6875, 10494682.543003306, 10494795.759027518, 10495041.104888957, 10495061.908083335, 10495732.019302024, 10496049.414127586, 10496053.868786793, 10496196.327440418, 10496443.980246222, 10496487.731521334, 10496926.5625, 10497041.432631636, 10497238.891484592, 10497347.284047501, 10497402.90162957, 10498220.3125, 10498285.923447577, 10498418.75, 10499007.851543283, 10499040.575087804, 10499072.821016906, 10499762.5, 10501772.132678652, 10502642.099386767, 10502676.5625, 10503458.822791541, 10503632.095475785, 10503889.58960197, 10504268.586495893, 10504667.1875, 10504670.423911097, 10504696.692113986, 10504813.22707798, 10504851.5625, 10504932.19986394, 10504934.680246068, 10505676.595866704, 10505780.575413492, 10505863.387053851, 10507459.06848338, 10508128.451197445, 10508573.898952149, 10508899.04431433, 10509488.599519545, 10509607.526402373, 10509838.229281075, 10511208.1848638, 10511379.6875, 10511387.661184918, 10512378.731055716, 10512929.6875, 10513856.432881953, 10515496.169996563, 10515507.8125, 10515540.210130313, 10515544.861313118, 10517444.30424702, 10517821.261796234, 10517861.850227175, 10518567.98701774, 10519173.4375, 10519305.904726855, 10519707.715524111, 10519845.3125, 10520108.313684875, 10520140.62518802, 10520893.611087987, 10521206.288651148, 10525802.636939438, 10531386.888041459, 10534410.9375, 10538979.62141344, 10539310.731671028, 10539434.161763344, 10540531.036622394, 10545134.142150324, 10549901.53870674, 10551447.194907982, 10557216.347291188, 10559878.125, 10562104.6875, 10564788.438622223, 10565301.473681439, 10565345.3125, 10565384.339410385, 10566908.576732567, 10568667.607526727, 10569032.8125, 10569335.749741443, 10570805.476721378, 10570978.125, 10571696.606459962, 10571805.306589019, 10571895.552454878, 10572164.0625, 10572201.814149529, 10572358.817198867, 10572633.462027524, 10573623.4375, 10573945.123408498, 10573950.650916606, 10574678.125, 10574835.69763795, 10575052.32991791, 10575080.18340491, 10575879.6875, 10575946.875, 10576125.201570578, 10576281.25, 10576425.188814338, 10576723.043977853, 10576743.142231017, 10577343.75, 10577999.560546024, 10578893.064755447, 10579517.821897497, 10579582.178189907, 10579709.698031418, 10579726.106625376, 10580119.754312027, 10580722.920942212, 10581122.839180754, 10581374.643173225, 10581418.8981566, 10581443.375745602, 10581451.787262468, 10581451.986306889, 10581459.375, 10581459.490012143, 10581694.918707618, 10581706.211114248, 10582035.47513587, 10582495.065467946, 10582653.48691567, 10582702.452964848, 10582714.271511862, 10583579.050850773, 10583654.825125048, 10583668.029981522, 10583784.375, 10584301.554780167, 10585117.929092333, 10585424.230167028, 10585478.646564683, 10585631.83394846, 10585731.25, 10585734.83313192, 10585898.4375, 10585904.426577412, 10586017.1875, 10586074.196481176, 10586086.993879145, 10586483.442951052, 10586735.502785703, 10586773.4375, 10587157.509942535, 10587666.480227893, 10587948.010568475, 10587972.710712653, 10588339.0625, 10588742.992640339, 10588771.875, 10588839.576475928, 10588875.0, 10589098.66880155, 10589612.7840939, 10590069.902422158, 10590525.0, 10591234.375, 10591410.666559884, 10591462.990221376, 10591647.447862642, 10592024.184293015, 10593401.498356799, 10594322.319418095, 10595719.433510428, 10597235.239349626, 10599140.625, 10605416.677087385, 10605819.833051985, 10606449.777043056, 10606743.75, 10606842.616231559, 10607368.75, 10607603.008968476, 10607921.52134144, 10608031.073959999, 10608640.41377798, 10608641.286191666, 10608650.229769794, 10608680.53714697, 10608755.528861428, 10608855.457782373, 10609221.875, 10609357.06716712, 10609488.749703005, 10610026.663890745, 10610346.425463695, 10610429.474386895, 10610442.689631145, 10610572.434886098, 10610785.9375, 10610833.43782564, 10611020.38868741, 10611077.780895688, 10611147.544419104, 10611383.58797712, 10611426.362996222, 10611538.915678276, 10611641.08990929, 10611704.6875, 10611805.785049884, 10611820.871380536, 10611832.425597874, 10611838.442024047, 10611998.375422884, 10611998.983990336, 10612014.34510026, 10612062.04524904, 10612098.272145357, 10612322.169013252, 10612480.711566461, 10612505.371741503, 10612570.3125, 10612582.8125, 10612636.639840268, 10612671.875, 10612734.265252035, 10612745.3125, 10613193.419572692, 10613229.179106573, 10613251.084660217, 10613430.753085034, 10613478.012386238, 10613591.129046913, 10613667.513678765, 10613673.4375, 10613680.035679476, 10613685.2789932, 10613813.938116616, 10613855.40331572, 10613905.702790296, 10614078.125, 10614120.119945195, 10614136.95521564, 10614143.75, 10614179.6875, 10614300.77169167, 10614402.015434077, 10614429.6875, 10614476.74880292, 10614529.715550724, 10614566.71680883, 10614690.625, 10614846.875, 10614847.713074127, 10614873.253738847, 10615724.267260147, 10615771.814420117, 10615959.19356702, 10616456.218571099, 10616471.563194454, 10617039.02746512, 10617156.25, 10617162.298879119, 10617175.41913489, 10619315.435942406, 10620513.265224762, 10620887.5, 10620912.5, 10620926.84838953, 10621257.972775584, 10621476.5625, 10621844.469567599, 10623130.407747211, 10624676.5625, 10624691.875470523, 10624913.809677787, 10625128.878214562, 10625243.613160865, 10625374.118499264, 10625555.837874247, 10625818.75, 10625829.142399944, 10625967.62225678, 10625994.360740516, 10626031.907404546, 10626139.40876648, 10626171.792923193, 10626288.440397715, 10626385.810173292, 10626400.222973887, 10626463.993685778, 10626493.994684765, 10626523.4375, 10626635.820321865, 10626672.9088016, 10626734.50435854, 10626804.369585967, 10626832.430014905, 10627047.913185144, 10627074.659129038, 10627098.465097638, 10627170.871778972, 10627180.37074052, 10627192.984871736, 10627407.8125, 10627427.856641078, 10627683.30474049, 10627736.341201575, 10627760.823010499, 10627862.01184869, 10627863.797675397, 10627889.0625, 10627895.386684552, 10627908.858977908, 10627929.175287405, 10627930.237263931, 10627973.209008548, 10627994.9070346, 10627995.5292694, 10628014.082349814, 10628060.9375, 10628209.375, 10628242.352434758, 10628257.765807243, 10628277.020691048, 10628293.75, 10628399.337016802, 10628425.690731876, 10628617.314072328, 10628619.102017524, 10628628.125, 10628738.261453407, 10628741.089823885, 10628834.106933054, 10628868.75, 10628874.909208957, 10628876.53139977, 10628880.170549586, 10628918.380309984, 10628928.125, 10628939.58876768, 10629033.773150746, 10629098.276528036, 10629198.363851955, 10629274.326565163, 10629293.562183142, 10629342.1875, 10629390.208385542, 10629407.089993417, 10629435.654044434, 10629508.544586057, 10629571.31557116, 10629634.375, 10629679.759067236, 10629706.25, 10629736.790936502, 10629743.247765293, 10629775.03324657, 10629785.9375, 10629890.673392182, 10629957.683458583, 10629965.877176784, 10630022.244926844, 10630052.208374472, 10630107.447398925, 10630107.8125, 10630145.57943362, 10630152.993366783, 10630159.375, 10630264.391867552, 10630274.920549078, 10630287.813564755, 10630301.5625, 10630357.760142911, 10630415.88845295, 10630600.745486872, 10630704.6875, 10630753.092175359, 10630762.5, 10630829.6875, 10630876.5625, 10630994.799111985, 10631076.5625, 10631078.125, 10631080.258523017, 10631118.75, 10631170.3125, 10631184.375, 10631196.875, 10631201.424700249, 10631269.682249641, 10631367.14250333, 10631394.5767872, 10631425.819294406, 10631431.415680544, 10631445.047450572, 10631446.875, 10631596.881175151, 10631653.95377016, 10631675.0, 10631684.633093443, 10631691.46413812, 10631741.579391183, 10631801.299745485, 10631823.415631918, 10631856.365523893, 10631939.439650763, 10631943.930642525, 10631986.719089227, 10631990.327768737, 10632040.569423862, 10632156.11951637, 10632215.012452502, 10632218.70814059, 10632341.390942106, 10632381.25, 10632518.790040795, 10632579.444469951, 10632581.74894059, 10632593.653777758, 10632593.75, 10632595.3125, 10632644.601164622, 10632740.770337023, 10632779.6875, 10632843.444119612, 10632852.42139746, 10632904.05582862, 10632933.51307184, 10632952.604259694, 10633065.7401911, 10633157.642653896, 10633169.52267566, 10633170.087970866, 10633179.653662475, 10633244.145443166, 10633285.9375, 10633443.095370859, 10633520.3125, 10633522.355841577, 10633572.570678445, 10633753.125, 10633764.0625, 10633774.376695724, 10633785.9375, 10633964.0625, 10633971.875, 10634010.14737568, 10634036.47650556, 10634059.317207497, 10634079.860047197, 10634101.511385217, 10634108.297125958, 10634151.432542432, 10634197.511830434, 10634220.1525593, 10634236.285775015, 10634276.244918508, 10634376.5625, 10634400.090129847, 10634454.579531517, 10634485.599831419, 10634530.25388916, 10634592.953716964, 10634613.580493376, 10634713.438081184, 10634738.36627284, 10634798.976982888, 10634922.5558367, 10634950.0, 10634987.5, 10634990.133212516, 10635078.043551981, 10635106.308282156, 10635145.262391362, 10635231.25, 10635316.070691971, 10635329.093580127, 10635373.138211435, 10635380.10327021, 10635385.9375, 10635417.394537011, 10635471.947282622, 10635524.463173052, 10635525.0, 10635676.5625, 10635728.125, 10635893.75, 10635925.0, 10635950.498356571, 10635954.817530962, 10635972.010101495, 10636084.146633383, 10636146.155701201, 10636224.900012383, 10636307.8125, 10636330.640639935, 10636338.49630937, 10636494.735863684, 10636517.1875, 10636525.0, 10636529.667534111, 10636534.375, 10636665.816810884, 10636669.400800625, 10636692.57742442, 10636704.6875, 10636755.442454379, 10636779.742202904, 10636782.267516036, 10636951.5625, 10636965.625, 10636996.875, 10637082.226428838, 10637154.242379755, 10637158.71627464, 10637160.85008602, 10637194.370019231, 10637198.033696573, 10637209.375, 10637239.571709791, 10637243.75, 10637250.65018471, 10637309.282475851, 10637319.986650914, 10637321.340386994, 10637327.453923019, 10637370.101357738, 10637382.098520368, 10637448.113133999, 10637458.80989659, 10637527.456962522, 10637537.556585427, 10637590.841391329, 10637687.451308258, 10637738.501098003, 10637804.726998638, 10637819.099518366, 10637847.6508774, 10637910.930772787, 10637984.151349949, 10637984.352248643, 10638059.375, 10638074.155734878, 10638128.813237714, 10638245.3125, 10638263.649965307, 10638290.938157143, 10638315.405620169, 10638360.96905572, 10638366.11095834, 10638401.898132985, 10638434.190309875, 10638437.5, 10638515.049819706, 10638542.34610782, 10638546.34745791, 10638552.311408529, 10638562.5, 10638598.065557, 10638649.164765086, 10638671.28156106, 10638676.711256674, 10638681.25, 10638820.3125, 10638870.95638957, 10638900.380064325, 10638918.522135502, 10638964.306221984, 10638995.3125, 10639063.38153672, 10639078.54302314, 10639144.393945731, 10639329.133382916, 10639350.836981015, 10639418.75, 10639478.736428315, 10639490.625, 10639495.700736754, 10639540.605499513, 10639582.342879225, 10639634.6725112, 10639635.998389238, 10639715.998887178, 10639818.75, 10639939.089258982, 10640039.0625, 10640068.171824694, 10640097.698330116, 10640152.256670868, 10640201.67122556, ...], [7.148931840533044, 13.484940129746791, 30.292258568995297, 23.080021950747895, 81.39466039751233, 80.0861554618384, 17.839557831889042, 85.35699908308082, 82.83623815937273, 57.91580025129563, 10.67602286488844, 79.91666171574091, 63.98581606633917, 6.151168463640022, 62.928127110843526, 34.12057118070352, 36.85200643143968, 7.556334818974151, 6.360214829326937, 10.897962530096507, 44.82928218878815, 14.769693397432938, 13.804751518506631, 6.804057853487458, 24.96347709783451, 27.032244147435442, 52.37338999351719, 56.324594626616516, 120.60634404921689, 7.315640246227523, 16.31547813646302, 11.98334508894631, 86.99042783230013, 12.49840114985274, 5.619244195806189, 20.034819434078116, 41.3102793310883, 28.77010938898071, 22.229671667040602, 7.538583546876988, 41.52211259737745, 35.80542729411604, 32.05818165124797, 10.024949714247144, 74.17907683152394, 22.228147352493522, 11.413271017257436, 17.77040054854171, 21.577124540602483, 43.37531915387393, 10.84091298329161, 68.15859575354114, 62.43873979483172, 25.75899800904177, 116.53207936626671, 12.975864622213237, 14.653191555227261, 14.389967944867708, 16.187489962901527, 64.77322744660441, 9.337038919550638, 9.78430422050536, 5.270205021618239, 100.98937576496039, 75.34315605841545, 8.539573564234507, 10.996544911411377, 10.731815387153283, 48.02507003442643, 14.321727159886935, 66.14080891324679, 12.497870156473812, 19.30267862500761, 7.6827958231034685, 5.411698618118123, 59.1666858710233, 48.932349884852805, 77.23654392738723, 33.00610765403899, 20.339059667966595, 6.030725131023727, 20.312250536439247, 24.631850887824996, 39.259934493100666, 30.0912052956864, 26.81432872995302, 18.90864879728313, 10.144679454851207, 18.15817940654463, 33.24774097722856, 119.19239806166242, 121.6723775774532, 26.94119810908432, 28.2945434771541, 70.69128889316345, 72.97140953478342, 27.264595831949293, 30.190976388866098, 79.87185731406484, 10.414758341317333, 20.966282762554545, 16.63441297344754, 41.07233772041288, 36.17918948655619, 145.87291720398068, 22.0797331610148, 16.539114515300028, 117.50856927698635, 5.362761138700646, 12.706677004641135, 71.48331942310993, 13.905885326277538, 56.585285147227346, 49.962661524204556, 6.638358164452135, 17.504943566209523, 33.52626618203942, 110.74679646064905, 42.38458816362882, 8.352527372496814, 53.66521178125014, 63.66890653754992, 64.36938683938854, 43.76547845205967, 96.17290652667546, 22.185955722656963, 15.295084388284218, 17.19140125123149, 6.791413113295642, 49.39023671650053, 11.437291769417168, 19.105504393242253, 5.418787978553225, 8.054396360401212, 47.72778314224871, 5.469627355537388, 56.50739483715446, 12.612113888321435, 20.521619386992587, 72.34520585166783, 17.196367781490746, 18.598061539614363, 121.67605529077349, 72.14548217790042, 11.615039859324385, 43.40366370240705, 7.143836449515055, 9.735994291437434, 53.773512465539326, 55.73960835304885, 84.95564971284784, 20.737480245925077, 67.22425489225897, 75.68101156302006, 20.256693246454887, 16.82125283098072, 5.505518425145992, 10.098658668420871, 69.52514695932048, 28.044550654713646, 9.499840748353096, 12.167820047029904, 16.749780220287, 65.17668248054936, 63.73141011772984, 20.541849812192908, 8.268627870376132, 73.1939089592158, 16.85362830258919, 10.815811279185164, 9.807843055988311, 61.110836670390945, 81.60268341139118, 76.44369884048034, 11.1329097570506, 18.372200770092686, 5.146923461604836, 5.582476234203807, 44.031286006183386, 83.24884291532652, 46.521939776445095, 59.52881652731322, 69.8641741778446, 47.434824443605315, 12.063182712779668, 21.810101786591204, 18.217327907720648, 62.242599970326296, 67.14309278950604, 27.932909605378143, 91.00302421577473, 20.23202563686583, 43.18010469818314, 88.9047917167006, 14.133446477639342, 25.605779679948675, 65.1644189795156, 16.5485362426288, 13.783305576172275, 5.27769334378384, 9.005003498541688, 10.337644883589435, 17.5288895413507, 13.629822787720359, 23.73562513492199, 23.696026322427347, 78.1035139597783, 39.835886802040285, 40.39470006297154, 18.116438777994112, 70.82691965183639, 11.879880904966218, 19.23218058122324, 9.040801350665062, 95.52308089164455, 47.49174143263975, 51.23248540271922, 5.975619720827415, 12.870035698662985, 21.813684291057676, 5.291929412787057, 13.0496706428388, 17.30186784894657, 84.44500872550311, 9.407610133637615, 14.030704596985803, 17.59823561357529, 12.599146719587353, 37.61055478721804, 77.92645500787525, 42.645577918465854, 23.390876117088823, 11.610781317664523, 38.336516996919556, 19.34451947227791, 18.923885023540578, 83.12175708610518, 7.829861697043641, 46.3508237330729, 8.692970466308745, 47.41336206728089, 32.1332777406667, 52.617690166687396, 121.50958692724993, 6.699299158705495, 9.269927988395356, 12.326041437234878, 11.35718967303209, 30.432413246373063, 86.51031538922771, 87.46894383340505, 6.873425852829774, 5.152483713969937, 11.132482237982883, 106.07643661615472, 15.748519318397092, 6.836006135695272, 129.6597210617906, 28.107960443385604, 13.392808046720956, 70.01242727334008, 29.951246042706476, 23.17134866324781, 52.19779506707289, 5.450296255983714, 84.59985509145535, 17.862806861595324, 79.00033992185689, 27.302412880477853, 50.472210603093686, 96.83791482548284, 75.60054352917095, 45.56399201303734, 11.654477610504395, 111.40502627779941, 89.57122476397309, 7.871116611930733, 63.20036956428421, 10.6596246343054, 22.758161038876832, 18.809426503825527, 64.2727156419326, 140.1941705610223, 30.066906587844564, 77.93701296434784, 22.781773411734854, 45.798131538080426, 43.36115909048881, 5.533124855411364, 14.040873341531753, 61.029565968705626, 28.16671816377996, 42.92721303861176, 5.682540507859678, 19.410021657919522, 128.9339461473179, 33.45453265952755, 20.153752049653065, 59.43890462702711, 10.103638899454552, 120.89982742509906, 25.969207232013037, 66.91199799169297, 22.05869774469963, 34.975079434008656, 32.495016263254136, 57.14561644149303, 90.10085553947309, 36.50327927308509, 86.32726255494504, 17.52501801982468, 22.07825032689005, 39.39845314118722, 65.19514758684713, 8.794804072644515, 79.77481693900339, 16.666868309841803, 22.320797020805134, 26.78397796722386, 63.38003137954641, 5.393561113904208, 8.82518750731584, 35.31251560250637, 9.310217663168867, 23.292632827115423, 21.271976780379518, 62.33217381161821, 118.88169533101572, 74.42641955532301, 55.01382817746946, 71.06984512373313, 55.04577170150617, 10.736879757664873, 17.8484562022531, 17.441331489369745, 5.308767335118666, 29.61935314842487, 6.161768488335388, 25.077753218234523, 33.723414543388046, 24.323562948196482, 22.452096562293605, 15.238973975671803, 25.67316765711081, 28.625267156733813, 31.333277930819282, 12.358423502792224, 87.2299170036102, 8.134576371361526, 31.705664553600293, 12.61214833537662, 30.950792076952922, 99.19234248631567, 116.38833354424494, 49.31744759059179, 81.5081419941207, 7.430352199148943, 73.24620862695842, 79.73976552495837, 19.58371978982513, 28.68335019036557, 21.826328941668397, 9.83800841931541, 17.710757873118965, 11.734596743066863, 31.47842492790717, 9.751225008334753, 26.116559732976324, 5.695988083317041, 75.763588737817, 20.522730313461143, 20.55853576324594, 28.336400103445893, 85.82816320387852, 5.3091974260752215, 6.882383054912022, 74.91221936310721, 18.33393061811477, 58.112365132692105, 34.21139796676596, 28.666349973384577, 31.80733821776979, 10.842977630623402, 96.06840598375334, 14.1152397157122, 32.556005981686006, 6.092721739539517, 16.984351608295743, 8.042462764125785, 98.34538170976963, 29.619285574195295, 9.643775199663375, 12.344824764730912, 6.109683070035106, 41.87699869244386, 20.48684771232265, 98.57520889442262, 8.65906096699066, 34.69900353407303, 52.563627116024136, 10.743609616099246, 7.7964541722978336, 6.185731099473827, 62.60663938385206, 20.394345764505708, 60.32944678443441, 55.29002848138984, 58.08194064266418, 9.73984037472642, 9.773054103730585, 5.670094714025713, 17.024300515804633, 69.50130830980063, 29.909304861371368, 30.056987405383026, 11.507735116706712, 5.471792219728853, 117.20440083038991, 19.278790157828947, 7.542533674152005, 6.320299878300778, 14.153395979283584, 55.326884530927025, 39.41198874726192, 40.76331033442173, 15.092442065336318, 27.574434303832884, 65.9795577033731, 69.40928011410931, 8.427710591004352, 44.58951638447973, 60.663132936307775, 8.904395468046397, 12.768529642094707, 17.920120576987173, 31.77188617771205, 31.54857369661306, 15.383869160161964, 54.61147820120796, 7.889230928951232, 56.187940975409525, 28.75303897607311, 135.74304198089047, 18.362257023086862, 6.185572325212607, 19.8090502070278, 104.72254621280996, 11.678960458400484, 17.050045347613786, 17.899519196260503, 85.58282598422616, 73.91080840642356, 18.70855644104434, 13.3078905280404, 63.016940962072994, 136.43560051925547, 21.131084139386182, 55.16457848981701, 15.687609917114928, 19.665879672600646, 81.89256214824098, 6.045993438046614, 8.976969702650123, 12.120699968154273, 7.986905078397273, 20.118721840142495, 19.217645629025245, 89.70253872305744, 23.189167733503435, 26.743919230752034, 60.18936030882986, 5.1413598921961325, 8.286676755674469, 10.917305232558162, 7.6172772212934605, 27.66456682585014, 20.444513629301635, 51.66817537161579, 27.282155513595157, 25.03310043330902, 14.186605639814555, 104.43888175596409, 10.782260836711439, 22.836390830094274, 16.319257278089562, 27.496297331882403, 76.46776385172836, 28.70360856619921, 44.26908987306158, 121.6587739225865, 29.40071348717206, 46.33853651271113, 10.07362560428534, 25.975246744752205, 46.751625453572544, 34.06840593283734, 78.25460604801808, 51.88396779191345, 29.41913195679234, 12.256174787537955, 11.524696259399999, 59.173617045772275, 6.527276574056618, 27.80779696731652, 9.948462144400063, 31.152309179859856, 54.61581855842693, 18.180155166377414, 35.77406685712664, 14.09982697304095, 26.483895250398803, 12.002706570122124, 109.51053480439157, 65.80639863362076, 9.507863626472828, 44.13780876418102, 16.665190169273473, 10.56369019610656, 23.414015009127233, 67.75055124449219, 5.4432156031169585, 47.54409560940683, 9.932359122614628, 20.250336245187913, 23.48941417491919, 33.576498644409995, 49.5191884513286, 37.72499203550633, 108.39300023024174, 10.612292432906694, 52.981853630106684, 22.84642535386895, 11.498190255460674, 16.847122131101877, 36.350852512076315, 11.312366246483599, 100.12741654510792, 27.777993302432623, 13.430317402629328, 24.451764517865314, 8.487709218045701, 83.44614482714289, 11.470915969234378, 10.25976188838491, 6.2847443078321925, 12.761320846219006, 37.520062493548764, 7.60044793556076, 79.49643124727919, 8.755514169326293, 6.335422692924832, 8.621566373078053, 61.302496133825144, 9.751347270361132, 65.65026303134839, 5.388592017736858, 103.22855169552273, 63.17702470093596, 82.72036951281824, 27.196395712968364, 10.51002114259277, 40.06515101998835, 54.97023939088687, 102.88458705586343, 96.36165309867562, 19.494337031457988, 35.85995031292562, 34.74588135064281, 58.14773730679318, 12.03886991898858, 81.91355367729757, 21.635318122407348, 26.210686248116808, 8.08100663309806, 58.65399421759888, 65.5955705871386, 80.57296084622148, 8.564022294725318, 27.600279484799056, 5.222874806683447, 8.25294611749242, 16.957415414032486, 7.313516488327974, 16.105667032963662, 76.0741425500324, 58.55024390322587, 21.70059676292083, 24.787408856939688, 32.11561008129946, 12.962699217938924, 90.18487985580117, 71.81697341286213, 46.547641265109405, 28.89402755361548, 24.955105697892325, 18.247214564950482, 15.896115968422604, 30.692712354407007, 6.379691547181434, 6.615022229013541, 77.41802416034595, 6.376273933564227, 28.931012085542473, 9.418631914507712, 68.51094982599571, 5.693327844666928, 5.8520919716367255, 6.57859228523985, 30.581931254076164, 93.30207017540675, 21.14263786413722, 23.203257215277787, 74.7903907597974, 8.74416670330952, 6.4562655115551255, 51.336473248252034, 15.2086528602447, 68.44602956347359, 18.522718835874763, 18.528920503796108, 22.70072420156964, 5.187897117086999, 14.710064255995572, 153.66601268134104, 95.67257150827801, 13.451704760995113, 25.637825331008106, 5.725728830389519, 50.576956143857835, 7.871000324438488, 53.497818953507526, 37.06133691251951, 17.80229212527299, 97.46186413394034, 14.539075166045356, 78.14566886044818, 23.369703176159632, 5.231135756823089, 68.7081467480198, 87.68122474530085, 26.480948953216725, 6.8684881771195005, 6.122688716411148, 58.19301874143853, 11.719344981210538, 5.766811777701954, 26.287063440812602, 7.32325195055917, 12.455326719681558, 71.63952976784431, 25.22760972391958, 54.48308157886448, 64.28886625728012, 95.35148323054561, 19.011702652736904, 8.541557056621695, 91.11866793293768, 9.494062652188601, 5.042016953133065, 21.790540172119567, 65.04133652408233, 55.880513385092435, 7.360679179703694, 10.852131414761125, 10.147665769865371, 27.38083488353445, 25.39341752715417, 27.91768750274773, 23.601104458241178, 27.849927004226238, 49.53733173470062, 5.799247419145112, 8.521398681488979, 7.536260680265318, 5.87285642387011, 50.07275011412632, 83.17207593414477, 5.964695289471022, 7.164230373929272, 40.75193788595857, 48.87272402973431, 10.024975453883638, 39.71054624974631, 10.672663783792194, 20.868669167593936, 12.551928055344996, 61.82425781548572, 29.358127473112425, 9.0056533811865, 78.65212449519426, 77.00491900749329, 8.530691752253551, 8.638304471923675, 12.338467164686582, 114.34925668704764, 19.170202158678265, 96.70867961856607, 8.22037330646447, 5.626499846306533, 104.51226716552975, 6.113919335122491, 30.41959539937168, 69.00188021637564, 21.211516975591177, 93.80887318077329, 30.77399942682155, 53.58346675717357, 8.027495932480429, 23.24234304911757, 13.808002198590788, 40.891503457960646, 6.162153928261576, 19.201557402145404, 40.468751957609456, 37.17246554903838, 8.56524564379221, 34.16445616749496, 22.26023021635092, 5.231685296689563, 6.2343096121135595, 73.97045702526606, 15.232011637954002, 14.617113816298493, 21.372132061356545, 7.814964880251251, 10.788403481529961, 49.73128704378932, 7.6835673174129795, 16.500331448663523, 76.36218856274925, 85.22089299865749, 94.62870000146923, 7.586436562975615, 109.41938209471465, 71.40283779993433, 44.23243396022516, 53.1924496969323, 8.354664581810093, 35.0296191893721, 39.602931400656274, 71.03857629417911, 34.74724875077877, 30.86046645451046, 65.02531703260472, 10.988699280629813, 36.63338764111509, 11.977186776970314, 13.404625965916667, 86.18429207569831, 9.819911701687955, 72.60240512331488, 25.705433867534822, 27.148023038812234, 19.921479435947052, 73.5970206387984, 76.41543467720741, 24.837560967310424, 32.683082628717386, 159.76254839475064, 28.407191267744, 90.33207943493323, 57.3820807410072, 14.340751860567277, 97.82832944320477, 19.63361397053076, 83.8667498692469, 15.069762262675642, 67.15970991390475, 13.506389339340245, 34.07103381921231, 86.76742320801145, 13.642450869735647, 7.3022543197622864, 89.94114352019047, 43.6845858511098, 64.49753140867242, 8.218172895237485, 59.99978917831636, 9.626346681876468, 14.340676622533122, 5.967185863732316, 34.60961672823572, 11.046843729776686, 60.20503043645337, 15.382824201554357, 78.3419637489707, 62.491918046242134, 166.7496679342746, 35.017822156463424, 31.92244510459986, 75.66269481311751, 105.20152283361102, 61.4552616963967, 12.15530375389351, 57.04578063364774, 47.40070585565362, 205.46316214033718, 62.92092383051183, 60.00651385564322, 54.85742527135068, 5.04078646634658, 171.85691864715253, 12.70591159107477, 155.50661636516108, 24.207694718619436, 64.22983494656923, 6.088741613655444, 44.37617142754047, 33.50068855044813, 7.699331484137284, 29.51160399886347, 13.039402363385083, 7.0540529847015705, 28.099251403206257, 75.23156584001103, 18.49861256752688, 11.422311138700424, 58.98765183430253, 31.24626783771896, 14.733827516796936, 16.055482649438673, 10.288559837301621, 47.09902386040163, 10.075533249838506, 31.73134559502421, 5.616263140227422, 16.36036643435742, 9.7922051963328, 26.756750595414136, 52.97754610303141, 42.020451973205795, 76.95592356195925, 8.364958996725935, 37.273720209810406, 39.26045013793952, 6.38217579990838, 20.880494049590204, 28.67024542238594, 62.158047447144924, 19.62081038321707, 74.83490486089849, 74.17405421921615, 14.149613017841608, 6.084587466366262, 118.9009092397917, 51.77604892378065, 128.4293931440629, 70.2285657787167, 33.47036792717982, 8.692243898969197, 88.2234049089431, 78.52740017825948, 20.345359883131753, 59.67591839594161, 95.48506450838042, 76.1047822166184, 19.016696711405917, 12.089525949588536, 24.80927931475304, 7.6668604565051774, 27.790486011422516, 72.01934538990827, 10.93047409826773, 70.00896166114207, 5.392394649550774, 7.734254628241622, 32.116388697089945, 34.781342592911514, 9.408793807837368, 5.242133491203054, 22.032523542690555, 9.861103948487587, 69.50545495910949, 42.591506370437486, 77.51941813043192, 10.189756861394464, 7.8107538925159234, 8.68272140541074, 69.88040776010068, 95.14169214603152, 10.437171525320675, 56.27921914098653, 16.60001302158335, 6.479264847448481, 39.6783221150746, 11.903981197362791, 28.577408171523164, 6.05751916672223, 7.760870689655603, 67.20962397483046, 28.24320483634124, 7.62959197676573, 21.1334331736312, 54.97651220714412, 123.19172938339705, 56.22900201528877, 57.78071805372738, 36.03017232828286, 16.96756411420634, 15.201387432298606, 7.1574244406798835, 5.797274134057586, 34.784664362189844, 19.103109454376213, 36.81879574181499, 25.70976410484425, 5.891569614774729, 20.761223868053733, 87.86878349846242, 105.67921050328974, 32.1038641557816, 41.0353030343911, 94.81413107762401, 23.429338514807128, 14.424503494877264, 32.39662231455878, 54.546143521061104, 15.15419272862624, 21.05579894082639, 50.323907452326175, 85.259881090295, 117.88148911504969, 8.880573722245868, 24.301984438117934, 36.34965124674858, 22.100736606004112, 9.917141611130647, 22.509565439832453, 52.122380601409894, 5.73995042759821, 62.0154539953766, 9.949163694093427, 81.05911236774136, 23.426077061694603, 13.232238372841122, 12.880716923190263, 34.37224348039453, 8.792791015669119, 23.44441069003737, 38.79177988747532, 35.07254027079682, 28.498150625835773, 23.4208990576484, 72.66688134243591, 104.42373427202324, 15.094227720931299, 11.721819092100993, 6.172679410324852, 28.39257311724082, 52.498991565219015, 85.72599358918454, 66.17603570075688, 12.472687527697271, 26.31287241355419, 76.78910141215047, 42.60021151519014, 17.007416066657292, 16.087147090987028, 20.599119951848195, 8.561441710823583, 9.632295253466424, 65.46564376940137, 68.39291650858559, 5.8908331160170215, 15.582592698796054, 7.422963731701056, 18.84727942103277, 46.29500919166993, 6.430324835957666, 40.31293336333714, 20.60902754200349, 29.528777564346687, 64.56105650952239, 55.76787178455645, 76.11557347639675, 49.07077184211889, 24.718084105737162, 15.959647024150446, 82.91609948854351, 113.00323515060393, 17.828981697210775, 34.27918617395646, 66.4276614151897, 12.748110250787397, 69.42207004804996, 37.48079375576374, 32.710546005861275, 16.661248217381154, 11.097362477920528, 21.801598384141702, 6.824392346092994, 11.46553843299462, 5.213053241323683, 41.48731844753239, 15.044492545065625, 60.690048330541785, 29.80000928721019, 19.398528360437655, 18.466909147526984, 9.425060540007236, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3652164.1660178234, 3724366.7445090585, 3724893.75, 3731063.708112839, 3736628.7912219316, 3849826.5625, 4110455.2846536506, 4112501.5625, 4117646.875, 4129782.8125, 4171874.6904380023, 4229635.559494683, 4239629.6875, 4240378.710409218, 4258318.75, 4286385.9375, 4288850.0, 4290038.930931541, 4292000.702385836, 4292493.597870343, 4300600.0, 4314074.954179708, 4329221.5409518005, 4331359.574781905, 4336307.601858785, 4343105.385513553, 4349060.9375, 4374687.5, 4375909.258213484, 4392358.503075723, 4401479.761512158, 4409531.7361596245, 4413801.248558855, 4416331.979660258, 4515420.406114475, 4564271.555787775, 4564273.4375, 4564288.832152043, 4609579.258298291, 4635093.567631603, 4683454.491301021, 4784649.782074933, 4799779.500453262, 4823294.470223741, 4994832.8125, 4997514.976916406, 5041247.050323068, 5086541.395908652, 5090023.341352898, 5107471.800351081, 5140251.370928256, 5229702.167588686, 5235537.5, 5236168.592480656, 5256014.0625, 5259050.929456362, 5319824.922242462, 5381202.972358178, 5383223.7300288305, 5404996.875, 5415975.00665762, 5438481.741096879, 5466614.933847816, 5557769.974609845, 5586392.1875, 5646730.137122772, 5648598.351934149, 5654521.60604244, 5658296.504851465, 5705701.389799968, 5714365.625, 5736227.291925048, 5774119.560783633, 5817165.839737018, 5843220.654175912, 5878915.625, 6016310.140354518, 6059525.584449039, 6166880.428194637, 6431077.5009700665, 6496002.5545969745, 6818613.4353757985, 7043491.953484194, 7150618.75, 7170639.0625, 7240651.469649005, 7292022.632472252, 7350397.702149508, 7350420.960027718, 7414529.403819209, 7568220.7184166685, 7625778.125, 7722438.819420892, 7778004.295662959, 7785543.6981283715, 7870946.875, 7909673.044672084, 7923498.182796288, 7992943.75, 8069352.615377969, 8135228.492290175, 8396430.939354422, 8519190.625, 8841550.357182346, 9106464.376741227, 9107390.30462896, 9107542.551774455, 9115740.625, 9148919.345813122, 9161935.1946168, 9191142.1875, 9208860.254599188, 9275852.688473826, 9277387.5, 9486352.464056848, 9583219.291626872, 9654942.1875, 9738981.25, 10113260.05774582, 10208384.497664556, 10226654.6875, 10246075.0, 10246771.341788357, 10250068.75, 10251100.0, 10251174.271537036, 10258879.777271554, 10280034.861973448, 10281097.013193848, 10281100.0, 10288286.12692772, 10289297.659461964, 10290631.771402083, 10291188.59602439, 10291548.4375, 10291723.619375274, 10292664.267051836, 10293503.904335191, 10293874.396768257, 10295526.5625, 10296000.487859935, 10297114.775874328, 10298964.0625, 10299189.693151535, 10299515.915905701, 10299576.960007895, 10299589.146976532, 10299661.380137816, 10299998.4375, 10301199.552031625, 10301271.875, 10301788.483262895, 10301795.3125, 10302956.559663065, 10304171.241430288, 10304709.793919804, 10309340.043709056, 10312121.09907594, 10312271.875, 10313507.444803622, 10316767.380205011, 10328600.577054437, 10328634.780311713, 10329723.4375, 10330468.75, 10333880.649044175, 10335574.965902384, 10335868.75, 10337974.155453037, 10341682.60335377, 10343098.951898325, 10343485.9375, 10343575.0, 10343771.801535705, 10344109.37832614, 10344128.805080429, 10344203.877792956, 10344363.477427209, 10344581.25, 10345904.6875, 10347203.125, 10348156.25, 10349093.411603937, 10350843.75, 10351513.02603007, 10359079.680445895, 10362733.084342824, 10364783.233491564, 10365001.446012417, 10365382.217624303, 10365989.282100383, 10366543.113554018, 10366556.211294446, 10366610.324412562, 10367338.833009042, 10367532.667682143, 10368117.455268586, 10368223.803640032, 10368377.236192139, 10368972.997719998, 10368977.711994557, 10369113.49049988, 10369331.170681372, 10370723.044791857, 10371366.88631566, 10373388.617943583, 10373406.25, 10374204.6875, 10382252.008327005, 10382549.24846863, 10383229.6875, 10383239.495734682, 10385068.039693877, 10388835.572588935, 10389281.069299227, 10390530.601486634, 10390568.75, 10390694.156657089, 10390946.19960047, 10393211.968407532, 10393226.589739628, 10395461.895886743, 10396528.275404993, 10397909.900583802, 10399153.213772044, 10399322.592502175, 10399349.676676095, 10399359.662129613, 10399905.412935665, 10401118.75, 10401948.4375, 10402720.02236281, 10403573.726032445, 10403853.011620462, 10403985.191280201, 10404497.884031229, 10404567.1875, 10405238.085935289, 10405252.847592557, 10405386.634308208, 10405605.32191067, 10405646.330382194, 10405671.490852887, 10405865.759605164, 10405890.294648504, 10405904.61389024, 10405914.860353881, 10406140.76701717, 10406360.9375, 10406432.8125, 10406484.375, 10406786.464226983, 10406832.250823554, 10406879.690553028, 10407173.4375, 10407626.759256115, 10407848.790114649, 10408051.06427629, 10408245.291086849, 10408454.21169699, 10418753.125, 10419489.0625, 10421879.970060846, 10425624.423792494, 10427912.230007138, 10433657.58428888, 10437083.383655362, 10447099.514579797, 10451421.810047736, 10451735.720977884, 10451747.896207383, 10452478.125, 10452720.3125, 10452922.187752858, 10452950.601493225, 10453151.515664775, 10453286.622016145, 10453706.25, 10454060.61586752, 10454278.166314365, 10454328.615584746, 10454340.625, 10454347.727604486, 10454421.875, 10454479.6875, 10454485.55765809, 10454605.571254998, 10454606.25, 10455410.93841303, 10455440.366778191, 10455448.45654459, 10455567.169147467, 10455661.623580135, 10455748.050131332, 10455907.074823845, 10455911.627901128, 10455941.032101344, 10456057.166867834, 10456153.089356381, 10456199.228497935, 10456241.523492264, 10456273.293365039, 10456506.25, 10456582.367388975, 10456592.1875, 10457020.038217086, 10457176.5625, 10457235.9375, 10457821.81896243, 10458017.1875, 10458077.107537527, 10458172.98857761, 10458495.3125, 10458882.8125, 10459002.41401003, 10459075.0, 10459155.076827977, 10459446.454154033, 10459454.592874099, 10459571.875, 10459957.683390085, 10459993.083807854, 10460430.928887859, 10460448.41233817, 10460549.653167663, 10460713.540043997, 10460942.845068946, 10461182.120277757, 10461343.75, 10461503.125, 10461543.75, 10461692.264561426, 10461816.618758906, 10461920.924446665, 10461920.95844214, 10462103.686962146, 10462110.9375, 10462722.55482791, 10463248.234740347, 10464430.261973457, 10464468.583129382, 10464543.341045728, 10464993.825913992, 10465287.336939866, 10466478.125, 10467279.6875, 10467439.729077833, 10467680.895028688, 10468137.201061036, 10468673.81636335, 10468683.591850033, 10474645.124599569, 10474784.344568143, 10475728.125, 10476304.6875, 10476750.0, 10476754.182787195, 10476889.0625, 10478015.625, 10478727.100730967, 10479103.125, 10479162.032768156, 10479231.793967979, 10479494.326109152, 10479497.231418857, 10479861.47795457, 10480687.958008882, 10481088.398818819, 10481145.141934598, 10481187.5, 10481427.521893382, 10481600.963417068, 10481888.713513661, 10482063.673783131, 10482064.637878116, 10482114.630145282, 10482794.04519082, 10483063.174332613, 10483159.32771848, 10483167.1875, 10483687.5, 10483716.74836394, 10483985.747367743, 10484224.401553666, 10485117.313087244, 10485282.8125, 10485810.981834106, 10486023.886897217, 10486449.507969303, 10488007.876232188, 10488513.22570347, 10489319.097684728, 10489647.535331892, 10489853.330028359, 10490984.375, 10491433.76784313, 10491544.76867956, 10492099.081176488, 10492183.651508767, 10492906.099821616, 10493221.61453545, 10493430.191883625, 10493519.639283461, 10493904.6875, 10494235.328189718, 10494374.426099125, 10494504.6875, 10494682.543003306, 10494795.759027518, 10495041.104888957, 10495061.908083335, 10495732.019302024, 10496049.414127586, 10496053.868786793, 10496196.327440418, 10496443.980246222, 10496487.731521334, 10496926.5625, 10497041.432631636, 10497238.891484592, 10497347.284047501, 10497402.90162957, 10498220.3125, 10498285.923447577, 10498418.75, 10499007.851543283, 10499040.575087804, 10499072.821016906, 10499762.5, 10501772.132678652, 10502642.099386767, 10502676.5625, 10503458.822791541, 10503632.095475785, 10503889.58960197, 10504268.586495893, 10504667.1875, 10504670.423911097, 10504696.692113986, 10504813.22707798, 10504851.5625, 10504932.19986394, 10504934.680246068, 10505676.595866704, 10505780.575413492, 10505863.387053851, 10507459.06848338, 10508128.451197445, 10508573.898952149, 10508899.04431433, 10509488.599519545, 10509607.526402373, 10509838.229281075, 10511208.1848638, 10511379.6875, 10511387.661184918, 10512378.731055716, 10512929.6875, 10513856.432881953, 10515496.169996563, 10515507.8125, 10515540.210130313, 10515544.861313118, 10517444.30424702, 10517821.261796234, 10517861.850227175, 10518567.98701774, 10519173.4375, 10519305.904726855, 10519707.715524111, 10519845.3125, 10520108.313684875, 10520140.62518802, 10520893.611087987, 10521206.288651148, 10525802.636939438, 10531386.888041459, 10534410.9375, 10538979.62141344, 10539310.731671028, 10539434.161763344, 10540531.036622394, 10545134.142150324, 10549901.53870674, 10551447.194907982, 10557216.347291188, 10559878.125, 10562104.6875, 10564788.438622223, 10565301.473681439, 10565345.3125, 10565384.339410385, 10566908.576732567, 10568667.607526727, 10569032.8125, 10569335.749741443, 10570805.476721378, 10570978.125, 10571696.606459962, 10571805.306589019, 10571895.552454878, 10572164.0625, 10572201.814149529, 10572358.817198867, 10572633.462027524, 10573623.4375, 10573945.123408498, 10573950.650916606, 10574678.125, 10574835.69763795, 10575052.32991791, 10575080.18340491, 10575879.6875, 10575946.875, 10576125.201570578, 10576281.25, 10576425.188814338, 10576723.043977853, 10576743.142231017, 10577343.75, 10577999.560546024, 10578893.064755447, 10579517.821897497, 10579582.178189907, 10579709.698031418, 10579726.106625376, 10580119.754312027, 10580722.920942212, 10581122.839180754, 10581374.643173225, 10581418.8981566, 10581443.375745602, 10581451.787262468, 10581451.986306889, 10581459.375, 10581459.490012143, 10581694.918707618, 10581706.211114248, 10582035.47513587, 10582495.065467946, 10582653.48691567, 10582702.452964848, 10582714.271511862, 10583579.050850773, 10583654.825125048, 10583668.029981522, 10583784.375, 10584301.554780167, 10585117.929092333, 10585424.230167028, 10585478.646564683, 10585631.83394846, 10585731.25, 10585734.83313192, 10585898.4375, 10585904.426577412, 10586017.1875, 10586074.196481176, 10586086.993879145, 10586483.442951052, 10586735.502785703, 10586773.4375, 10587157.509942535, 10587666.480227893, 10587948.010568475, 10587972.710712653, 10588339.0625, 10588742.992640339, 10588771.875, 10588839.576475928, 10588875.0, 10589098.66880155, 10589612.7840939, 10590069.902422158, 10590525.0, 10591234.375, 10591410.666559884, 10591462.990221376, 10591647.447862642, 10592024.184293015, 10593401.498356799, 10594322.319418095, 10595719.433510428, 10597235.239349626, 10599140.625, 10605416.677087385, 10605819.833051985, 10606449.777043056, 10606743.75, 10606842.616231559, 10607368.75, 10607603.008968476, 10607921.52134144, 10608031.073959999, 10608640.41377798, 10608641.286191666, 10608650.229769794, 10608680.53714697, 10608755.528861428, 10608855.457782373, 10609221.875, 10609357.06716712, 10609488.749703005, 10610026.663890745, 10610346.425463695, 10610429.474386895, 10610442.689631145, 10610572.434886098, 10610785.9375, 10610833.43782564, 10611020.38868741, 10611077.780895688, 10611147.544419104, 10611383.58797712, 10611426.362996222, 10611538.915678276, 10611641.08990929, 10611704.6875, 10611805.785049884, 10611820.871380536, 10611832.425597874, 10611838.442024047, 10611998.375422884, 10611998.983990336, 10612014.34510026, 10612062.04524904, 10612098.272145357, 10612322.169013252, 10612480.711566461, 10612505.371741503, 10612570.3125, 10612582.8125, 10612636.639840268, 10612671.875, 10612734.265252035, 10612745.3125, 10613193.419572692, 10613229.179106573, 10613251.084660217, 10613430.753085034, 10613478.012386238, 10613591.129046913, 10613667.513678765, 10613673.4375, 10613680.035679476, 10613685.2789932, 10613813.938116616, 10613855.40331572, 10613905.702790296, 10614078.125, 10614120.119945195, 10614136.95521564, 10614143.75, 10614179.6875, 10614300.77169167, 10614402.015434077, 10614429.6875, 10614476.74880292, 10614529.715550724, 10614566.71680883, 10614690.625, 10614846.875, 10614847.713074127, 10614873.253738847, 10615724.267260147, 10615771.814420117, 10615959.19356702, 10616456.218571099, 10616471.563194454, 10617039.02746512, 10617156.25, 10617162.298879119, 10617175.41913489, 10619315.435942406, 10620513.265224762, 10620887.5, 10620912.5, 10620926.84838953, 10621257.972775584, 10621476.5625, 10621844.469567599, 10623130.407747211, 10624676.5625, 10624691.875470523, 10624913.809677787, 10625128.878214562, 10625243.613160865, 10625374.118499264, 10625555.837874247, 10625818.75, 10625829.142399944, 10625967.62225678, 10625994.360740516, 10626031.907404546, 10626139.40876648, 10626171.792923193, 10626288.440397715, 10626385.810173292, 10626400.222973887, 10626463.993685778, 10626493.994684765, 10626523.4375, 10626635.820321865, 10626672.9088016, 10626734.50435854, 10626804.369585967, 10626832.430014905, 10627047.913185144, 10627074.659129038, 10627098.465097638, 10627170.871778972, 10627180.37074052, 10627192.984871736, 10627407.8125, 10627427.856641078, 10627683.30474049, 10627736.341201575, 10627760.823010499, 10627862.01184869, 10627863.797675397, 10627889.0625, 10627895.386684552, 10627908.858977908, 10627929.175287405, 10627930.237263931, 10627973.209008548, 10627994.9070346, 10627995.5292694, 10628014.082349814, 10628060.9375, 10628209.375, 10628242.352434758, 10628257.765807243, 10628277.020691048, 10628293.75, 10628399.337016802, 10628425.690731876, 10628617.314072328, 10628619.102017524, 10628628.125, 10628738.261453407, 10628741.089823885, 10628834.106933054, 10628868.75, 10628874.909208957, 10628876.53139977, 10628880.170549586, 10628918.380309984, 10628928.125, 10628939.58876768, 10629033.773150746, 10629098.276528036, 10629198.363851955, 10629274.326565163, 10629293.562183142, 10629342.1875, 10629390.208385542, 10629407.089993417, 10629435.654044434, 10629508.544586057, 10629571.31557116, 10629634.375, 10629679.759067236, 10629706.25, 10629736.790936502, 10629743.247765293, 10629775.03324657, 10629785.9375, 10629890.673392182, 10629957.683458583, 10629965.877176784, 10630022.244926844, 10630052.208374472, 10630107.447398925, 10630107.8125, 10630145.57943362, 10630152.993366783, 10630159.375, 10630264.391867552, 10630274.920549078, 10630287.813564755, 10630301.5625, 10630357.760142911, 10630415.88845295, 10630600.745486872, 10630704.6875, 10630753.092175359, 10630762.5, 10630829.6875, 10630876.5625, 10630994.799111985, 10631076.5625, 10631078.125, 10631080.258523017, 10631118.75, 10631170.3125, 10631184.375, 10631196.875, 10631201.424700249, 10631269.682249641, 10631367.14250333, 10631394.5767872, 10631425.819294406, 10631431.415680544, 10631445.047450572, 10631446.875, 10631596.881175151, 10631653.95377016, 10631675.0, 10631684.633093443, 10631691.46413812, 10631741.579391183, 10631801.299745485, 10631823.415631918, 10631856.365523893, 10631939.439650763, 10631943.930642525, 10631986.719089227, 10631990.327768737, 10632040.569423862, 10632156.11951637, 10632215.012452502, 10632218.70814059, 10632341.390942106, 10632381.25, 10632518.790040795, 10632579.444469951, 10632581.74894059, 10632593.653777758, 10632593.75, 10632595.3125, 10632644.601164622, 10632740.770337023, 10632779.6875, 10632843.444119612, 10632852.42139746, 10632904.05582862, 10632933.51307184, 10632952.604259694, 10633065.7401911, 10633157.642653896, 10633169.52267566, 10633170.087970866, 10633179.653662475, 10633244.145443166, 10633285.9375, 10633443.095370859, 10633520.3125, 10633522.355841577, 10633572.570678445, 10633753.125, 10633764.0625, 10633774.376695724, 10633785.9375, 10633964.0625, 10633971.875, 10634010.14737568, 10634036.47650556, 10634059.317207497, 10634079.860047197, 10634101.511385217, 10634108.297125958, 10634151.432542432, 10634197.511830434, 10634220.1525593, 10634236.285775015, 10634276.244918508, 10634376.5625, 10634400.090129847, 10634454.579531517, 10634485.599831419, 10634530.25388916, 10634592.953716964, 10634613.580493376, 10634713.438081184, 10634738.36627284, 10634798.976982888, 10634922.5558367, 10634950.0, 10634987.5, 10634990.133212516, 10635078.043551981, 10635106.308282156, 10635145.262391362, 10635231.25, 10635316.070691971, 10635329.093580127, 10635373.138211435, 10635380.10327021, 10635385.9375, 10635417.394537011, 10635471.947282622, 10635524.463173052, 10635525.0, 10635676.5625, 10635728.125, 10635893.75, 10635925.0, 10635950.498356571, 10635954.817530962, 10635972.010101495, 10636084.146633383, 10636146.155701201, 10636224.900012383, 10636307.8125, 10636330.640639935, 10636338.49630937, 10636494.735863684, 10636517.1875, 10636525.0, 10636529.667534111, 10636534.375, 10636665.816810884, 10636669.400800625, 10636692.57742442, 10636704.6875, 10636755.442454379, 10636779.742202904, 10636782.267516036, 10636951.5625, 10636965.625, 10636996.875, 10637082.226428838, 10637154.242379755, 10637158.71627464, 10637160.85008602, 10637194.370019231, 10637198.033696573, 10637209.375, 10637239.571709791, 10637243.75, 10637250.65018471, 10637309.282475851, 10637319.986650914, 10637321.340386994, 10637327.453923019, 10637370.101357738, 10637382.098520368, 10637448.113133999, 10637458.80989659, 10637527.456962522, 10637537.556585427, 10637590.841391329, 10637687.451308258, 10637738.501098003, 10637804.726998638, 10637819.099518366, 10637847.6508774, 10637910.930772787, 10637984.151349949, 10637984.352248643, 10638059.375, 10638074.155734878, 10638128.813237714, 10638245.3125, 10638263.649965307, 10638290.938157143, 10638315.405620169, 10638360.96905572, 10638366.11095834, 10638401.898132985, 10638434.190309875, 10638437.5, 10638515.049819706, 10638542.34610782, 10638546.34745791, 10638552.311408529, 10638562.5, 10638598.065557, 10638649.164765086, 10638671.28156106, 10638676.711256674, 10638681.25, 10638820.3125, 10638870.95638957, 10638900.380064325, 10638918.522135502, 10638964.306221984, 10638995.3125, 10639063.38153672, 10639078.54302314, 10639144.393945731, 10639329.133382916, 10639350.836981015, 10639418.75, 10639478.736428315, 10639490.625, 10639495.700736754, 10639540.605499513, 10639582.342879225, 10639634.6725112, 10639635.998389238, 10639715.998887178, 10639818.75, 10639939.089258982, 10640039.0625, 10640068.171824694, 10640097.698330116, 10640152.256670868, 10640201.67122556, ...], [7.148931840533044, 13.484940129746791, 30.292258568995297, 23.080021950747895, 81.39466039751233, 80.0861554618384, 17.839557831889042, 85.35699908308082, 82.83623815937273, 57.91580025129563, 10.67602286488844, 79.91666171574091, 63.98581606633917, 6.151168463640022, 62.928127110843526, 34.12057118070352, 36.85200643143968, 7.556334818974151, 6.360214829326937, 10.897962530096507, 44.82928218878815, 14.769693397432938, 13.804751518506631, 6.804057853487458, 24.96347709783451, 27.032244147435442, 52.37338999351719, 56.324594626616516, 120.60634404921689, 7.315640246227523, 16.31547813646302, 11.98334508894631, 86.99042783230013, 12.49840114985274, 5.619244195806189, 20.034819434078116, 41.3102793310883, 28.77010938898071, 22.229671667040602, 7.538583546876988, 41.52211259737745, 35.80542729411604, 32.05818165124797, 10.024949714247144, 74.17907683152394, 22.228147352493522, 11.413271017257436, 17.77040054854171, 21.577124540602483, 43.37531915387393, 10.84091298329161, 68.15859575354114, 62.43873979483172, 25.75899800904177, 116.53207936626671, 12.975864622213237, 14.653191555227261, 14.389967944867708, 16.187489962901527, 64.77322744660441, 9.337038919550638, 9.78430422050536, 5.270205021618239, 100.98937576496039, 75.34315605841545, 8.539573564234507, 10.996544911411377, 10.731815387153283, 48.02507003442643, 14.321727159886935, 66.14080891324679, 12.497870156473812, 19.30267862500761, 7.6827958231034685, 5.411698618118123, 59.1666858710233, 48.932349884852805, 77.23654392738723, 33.00610765403899, 20.339059667966595, 6.030725131023727, 20.312250536439247, 24.631850887824996, 39.259934493100666, 30.0912052956864, 26.81432872995302, 18.90864879728313, 10.144679454851207, 18.15817940654463, 33.24774097722856, 119.19239806166242, 121.6723775774532, 26.94119810908432, 28.2945434771541, 70.69128889316345, 72.97140953478342, 27.264595831949293, 30.190976388866098, 79.87185731406484, 10.414758341317333, 20.966282762554545, 16.63441297344754, 41.07233772041288, 36.17918948655619, 145.87291720398068, 22.0797331610148, 16.539114515300028, 117.50856927698635, 5.362761138700646, 12.706677004641135, 71.48331942310993, 13.905885326277538, 56.585285147227346, 49.962661524204556, 6.638358164452135, 17.504943566209523, 33.52626618203942, 110.74679646064905, 42.38458816362882, 8.352527372496814, 53.66521178125014, 63.66890653754992, 64.36938683938854, 43.76547845205967, 96.17290652667546, 22.185955722656963, 15.295084388284218, 17.19140125123149, 6.791413113295642, 49.39023671650053, 11.437291769417168, 19.105504393242253, 5.418787978553225, 8.054396360401212, 47.72778314224871, 5.469627355537388, 56.50739483715446, 12.612113888321435, 20.521619386992587, 72.34520585166783, 17.196367781490746, 18.598061539614363, 121.67605529077349, 72.14548217790042, 11.615039859324385, 43.40366370240705, 7.143836449515055, 9.735994291437434, 53.773512465539326, 55.73960835304885, 84.95564971284784, 20.737480245925077, 67.22425489225897, 75.68101156302006, 20.256693246454887, 16.82125283098072, 5.505518425145992, 10.098658668420871, 69.52514695932048, 28.044550654713646, 9.499840748353096, 12.167820047029904, 16.749780220287, 65.17668248054936, 63.73141011772984, 20.541849812192908, 8.268627870376132, 73.1939089592158, 16.85362830258919, 10.815811279185164, 9.807843055988311, 61.110836670390945, 81.60268341139118, 76.44369884048034, 11.1329097570506, 18.372200770092686, 5.146923461604836, 5.582476234203807, 44.031286006183386, 83.24884291532652, 46.521939776445095, 59.52881652731322, 69.8641741778446, 47.434824443605315, 12.063182712779668, 21.810101786591204, 18.217327907720648, 62.242599970326296, 67.14309278950604, 27.932909605378143, 91.00302421577473, 20.23202563686583, 43.18010469818314, 88.9047917167006, 14.133446477639342, 25.605779679948675, 65.1644189795156, 16.5485362426288, 13.783305576172275, 5.27769334378384, 9.005003498541688, 10.337644883589435, 17.5288895413507, 13.629822787720359, 23.73562513492199, 23.696026322427347, 78.1035139597783, 39.835886802040285, 40.39470006297154, 18.116438777994112, 70.82691965183639, 11.879880904966218, 19.23218058122324, 9.040801350665062, 95.52308089164455, 47.49174143263975, 51.23248540271922, 5.975619720827415, 12.870035698662985, 21.813684291057676, 5.291929412787057, 13.0496706428388, 17.30186784894657, 84.44500872550311, 9.407610133637615, 14.030704596985803, 17.59823561357529, 12.599146719587353, 37.61055478721804, 77.92645500787525, 42.645577918465854, 23.390876117088823, 11.610781317664523, 38.336516996919556, 19.34451947227791, 18.923885023540578, 83.12175708610518, 7.829861697043641, 46.3508237330729, 8.692970466308745, 47.41336206728089, 32.1332777406667, 52.617690166687396, 121.50958692724993, 6.699299158705495, 9.269927988395356, 12.326041437234878, 11.35718967303209, 30.432413246373063, 86.51031538922771, 87.46894383340505, 6.873425852829774, 5.152483713969937, 11.132482237982883, 106.07643661615472, 15.748519318397092, 6.836006135695272, 129.6597210617906, 28.107960443385604, 13.392808046720956, 70.01242727334008, 29.951246042706476, 23.17134866324781, 52.19779506707289, 5.450296255983714, 84.59985509145535, 17.862806861595324, 79.00033992185689, 27.302412880477853, 50.472210603093686, 96.83791482548284, 75.60054352917095, 45.56399201303734, 11.654477610504395, 111.40502627779941, 89.57122476397309, 7.871116611930733, 63.20036956428421, 10.6596246343054, 22.758161038876832, 18.809426503825527, 64.2727156419326, 140.1941705610223, 30.066906587844564, 77.93701296434784, 22.781773411734854, 45.798131538080426, 43.36115909048881, 5.533124855411364, 14.040873341531753, 61.029565968705626, 28.16671816377996, 42.92721303861176, 5.682540507859678, 19.410021657919522, 128.9339461473179, 33.45453265952755, 20.153752049653065, 59.43890462702711, 10.103638899454552, 120.89982742509906, 25.969207232013037, 66.91199799169297, 22.05869774469963, 34.975079434008656, 32.495016263254136, 57.14561644149303, 90.10085553947309, 36.50327927308509, 86.32726255494504, 17.52501801982468, 22.07825032689005, 39.39845314118722, 65.19514758684713, 8.794804072644515, 79.77481693900339, 16.666868309841803, 22.320797020805134, 26.78397796722386, 63.38003137954641, 5.393561113904208, 8.82518750731584, 35.31251560250637, 9.310217663168867, 23.292632827115423, 21.271976780379518, 62.33217381161821, 118.88169533101572, 74.42641955532301, 55.01382817746946, 71.06984512373313, 55.04577170150617, 10.736879757664873, 17.8484562022531, 17.441331489369745, 5.308767335118666, 29.61935314842487, 6.161768488335388, 25.077753218234523, 33.723414543388046, 24.323562948196482, 22.452096562293605, 15.238973975671803, 25.67316765711081, 28.625267156733813, 31.333277930819282, 12.358423502792224, 87.2299170036102, 8.134576371361526, 31.705664553600293, 12.61214833537662, 30.950792076952922, 99.19234248631567, 116.38833354424494, 49.31744759059179, 81.5081419941207, 7.430352199148943, 73.24620862695842, 79.73976552495837, 19.58371978982513, 28.68335019036557, 21.826328941668397, 9.83800841931541, 17.710757873118965, 11.734596743066863, 31.47842492790717, 9.751225008334753, 26.116559732976324, 5.695988083317041, 75.763588737817, 20.522730313461143, 20.55853576324594, 28.336400103445893, 85.82816320387852, 5.3091974260752215, 6.882383054912022, 74.91221936310721, 18.33393061811477, 58.112365132692105, 34.21139796676596, 28.666349973384577, 31.80733821776979, 10.842977630623402, 96.06840598375334, 14.1152397157122, 32.556005981686006, 6.092721739539517, 16.984351608295743, 8.042462764125785, 98.34538170976963, 29.619285574195295, 9.643775199663375, 12.344824764730912, 6.109683070035106, 41.87699869244386, 20.48684771232265, 98.57520889442262, 8.65906096699066, 34.69900353407303, 52.563627116024136, 10.743609616099246, 7.7964541722978336, 6.185731099473827, 62.60663938385206, 20.394345764505708, 60.32944678443441, 55.29002848138984, 58.08194064266418, 9.73984037472642, 9.773054103730585, 5.670094714025713, 17.024300515804633, 69.50130830980063, 29.909304861371368, 30.056987405383026, 11.507735116706712, 5.471792219728853, 117.20440083038991, 19.278790157828947, 7.542533674152005, 6.320299878300778, 14.153395979283584, 55.326884530927025, 39.41198874726192, 40.76331033442173, 15.092442065336318, 27.574434303832884, 65.9795577033731, 69.40928011410931, 8.427710591004352, 44.58951638447973, 60.663132936307775, 8.904395468046397, 12.768529642094707, 17.920120576987173, 31.77188617771205, 31.54857369661306, 15.383869160161964, 54.61147820120796, 7.889230928951232, 56.187940975409525, 28.75303897607311, 135.74304198089047, 18.362257023086862, 6.185572325212607, 19.8090502070278, 104.72254621280996, 11.678960458400484, 17.050045347613786, 17.899519196260503, 85.58282598422616, 73.91080840642356, 18.70855644104434, 13.3078905280404, 63.016940962072994, 136.43560051925547, 21.131084139386182, 55.16457848981701, 15.687609917114928, 19.665879672600646, 81.89256214824098, 6.045993438046614, 8.976969702650123, 12.120699968154273, 7.986905078397273, 20.118721840142495, 19.217645629025245, 89.70253872305744, 23.189167733503435, 26.743919230752034, 60.18936030882986, 5.1413598921961325, 8.286676755674469, 10.917305232558162, 7.6172772212934605, 27.66456682585014, 20.444513629301635, 51.66817537161579, 27.282155513595157, 25.03310043330902, 14.186605639814555, 104.43888175596409, 10.782260836711439, 22.836390830094274, 16.319257278089562, 27.496297331882403, 76.46776385172836, 28.70360856619921, 44.26908987306158, 121.6587739225865, 29.40071348717206, 46.33853651271113, 10.07362560428534, 25.975246744752205, 46.751625453572544, 34.06840593283734, 78.25460604801808, 51.88396779191345, 29.41913195679234, 12.256174787537955, 11.524696259399999, 59.173617045772275, 6.527276574056618, 27.80779696731652, 9.948462144400063, 31.152309179859856, 54.61581855842693, 18.180155166377414, 35.77406685712664, 14.09982697304095, 26.483895250398803, 12.002706570122124, 109.51053480439157, 65.80639863362076, 9.507863626472828, 44.13780876418102, 16.665190169273473, 10.56369019610656, 23.414015009127233, 67.75055124449219, 5.4432156031169585, 47.54409560940683, 9.932359122614628, 20.250336245187913, 23.48941417491919, 33.576498644409995, 49.5191884513286, 37.72499203550633, 108.39300023024174, 10.612292432906694, 52.981853630106684, 22.84642535386895, 11.498190255460674, 16.847122131101877, 36.350852512076315, 11.312366246483599, 100.12741654510792, 27.777993302432623, 13.430317402629328, 24.451764517865314, 8.487709218045701, 83.44614482714289, 11.470915969234378, 10.25976188838491, 6.2847443078321925, 12.761320846219006, 37.520062493548764, 7.60044793556076, 79.49643124727919, 8.755514169326293, 6.335422692924832, 8.621566373078053, 61.302496133825144, 9.751347270361132, 65.65026303134839, 5.388592017736858, 103.22855169552273, 63.17702470093596, 82.72036951281824, 27.196395712968364, 10.51002114259277, 40.06515101998835, 54.97023939088687, 102.88458705586343, 96.36165309867562, 19.494337031457988, 35.85995031292562, 34.74588135064281, 58.14773730679318, 12.03886991898858, 81.91355367729757, 21.635318122407348, 26.210686248116808, 8.08100663309806, 58.65399421759888, 65.5955705871386, 80.57296084622148, 8.564022294725318, 27.600279484799056, 5.222874806683447, 8.25294611749242, 16.957415414032486, 7.313516488327974, 16.105667032963662, 76.0741425500324, 58.55024390322587, 21.70059676292083, 24.787408856939688, 32.11561008129946, 12.962699217938924, 90.18487985580117, 71.81697341286213, 46.547641265109405, 28.89402755361548, 24.955105697892325, 18.247214564950482, 15.896115968422604, 30.692712354407007, 6.379691547181434, 6.615022229013541, 77.41802416034595, 6.376273933564227, 28.931012085542473, 9.418631914507712, 68.51094982599571, 5.693327844666928, 5.8520919716367255, 6.57859228523985, 30.581931254076164, 93.30207017540675, 21.14263786413722, 23.203257215277787, 74.7903907597974, 8.74416670330952, 6.4562655115551255, 51.336473248252034, 15.2086528602447, 68.44602956347359, 18.522718835874763, 18.528920503796108, 22.70072420156964, 5.187897117086999, 14.710064255995572, 153.66601268134104, 95.67257150827801, 13.451704760995113, 25.637825331008106, 5.725728830389519, 50.576956143857835, 7.871000324438488, 53.497818953507526, 37.06133691251951, 17.80229212527299, 97.46186413394034, 14.539075166045356, 78.14566886044818, 23.369703176159632, 5.231135756823089, 68.7081467480198, 87.68122474530085, 26.480948953216725, 6.8684881771195005, 6.122688716411148, 58.19301874143853, 11.719344981210538, 5.766811777701954, 26.287063440812602, 7.32325195055917, 12.455326719681558, 71.63952976784431, 25.22760972391958, 54.48308157886448, 64.28886625728012, 95.35148323054561, 19.011702652736904, 8.541557056621695, 91.11866793293768, 9.494062652188601, 5.042016953133065, 21.790540172119567, 65.04133652408233, 55.880513385092435, 7.360679179703694, 10.852131414761125, 10.147665769865371, 27.38083488353445, 25.39341752715417, 27.91768750274773, 23.601104458241178, 27.849927004226238, 49.53733173470062, 5.799247419145112, 8.521398681488979, 7.536260680265318, 5.87285642387011, 50.07275011412632, 83.17207593414477, 5.964695289471022, 7.164230373929272, 40.75193788595857, 48.87272402973431, 10.024975453883638, 39.71054624974631, 10.672663783792194, 20.868669167593936, 12.551928055344996, 61.82425781548572, 29.358127473112425, 9.0056533811865, 78.65212449519426, 77.00491900749329, 8.530691752253551, 8.638304471923675, 12.338467164686582, 114.34925668704764, 19.170202158678265, 96.70867961856607, 8.22037330646447, 5.626499846306533, 104.51226716552975, 6.113919335122491, 30.41959539937168, 69.00188021637564, 21.211516975591177, 93.80887318077329, 30.77399942682155, 53.58346675717357, 8.027495932480429, 23.24234304911757, 13.808002198590788, 40.891503457960646, 6.162153928261576, 19.201557402145404, 40.468751957609456, 37.17246554903838, 8.56524564379221, 34.16445616749496, 22.26023021635092, 5.231685296689563, 6.2343096121135595, 73.97045702526606, 15.232011637954002, 14.617113816298493, 21.372132061356545, 7.814964880251251, 10.788403481529961, 49.73128704378932, 7.6835673174129795, 16.500331448663523, 76.36218856274925, 85.22089299865749, 94.62870000146923, 7.586436562975615, 109.41938209471465, 71.40283779993433, 44.23243396022516, 53.1924496969323, 8.354664581810093, 35.0296191893721, 39.602931400656274, 71.03857629417911, 34.74724875077877, 30.86046645451046, 65.02531703260472, 10.988699280629813, 36.63338764111509, 11.977186776970314, 13.404625965916667, 86.18429207569831, 9.819911701687955, 72.60240512331488, 25.705433867534822, 27.148023038812234, 19.921479435947052, 73.5970206387984, 76.41543467720741, 24.837560967310424, 32.683082628717386, 159.76254839475064, 28.407191267744, 90.33207943493323, 57.3820807410072, 14.340751860567277, 97.82832944320477, 19.63361397053076, 83.8667498692469, 15.069762262675642, 67.15970991390475, 13.506389339340245, 34.07103381921231, 86.76742320801145, 13.642450869735647, 7.3022543197622864, 89.94114352019047, 43.6845858511098, 64.49753140867242, 8.218172895237485, 59.99978917831636, 9.626346681876468, 14.340676622533122, 5.967185863732316, 34.60961672823572, 11.046843729776686, 60.20503043645337, 15.382824201554357, 78.3419637489707, 62.491918046242134, 166.7496679342746, 35.017822156463424, 31.92244510459986, 75.66269481311751, 105.20152283361102, 61.4552616963967, 12.15530375389351, 57.04578063364774, 47.40070585565362, 205.46316214033718, 62.92092383051183, 60.00651385564322, 54.85742527135068, 5.04078646634658, 171.85691864715253, 12.70591159107477, 155.50661636516108, 24.207694718619436, 64.22983494656923, 6.088741613655444, 44.37617142754047, 33.50068855044813, 7.699331484137284, 29.51160399886347, 13.039402363385083, 7.0540529847015705, 28.099251403206257, 75.23156584001103, 18.49861256752688, 11.422311138700424, 58.98765183430253, 31.24626783771896, 14.733827516796936, 16.055482649438673, 10.288559837301621, 47.09902386040163, 10.075533249838506, 31.73134559502421, 5.616263140227422, 16.36036643435742, 9.7922051963328, 26.756750595414136, 52.97754610303141, 42.020451973205795, 76.95592356195925, 8.364958996725935, 37.273720209810406, 39.26045013793952, 6.38217579990838, 20.880494049590204, 28.67024542238594, 62.158047447144924, 19.62081038321707, 74.83490486089849, 74.17405421921615, 14.149613017841608, 6.084587466366262, 118.9009092397917, 51.77604892378065, 128.4293931440629, 70.2285657787167, 33.47036792717982, 8.692243898969197, 88.2234049089431, 78.52740017825948, 20.345359883131753, 59.67591839594161, 95.48506450838042, 76.1047822166184, 19.016696711405917, 12.089525949588536, 24.80927931475304, 7.6668604565051774, 27.790486011422516, 72.01934538990827, 10.93047409826773, 70.00896166114207, 5.392394649550774, 7.734254628241622, 32.116388697089945, 34.781342592911514, 9.408793807837368, 5.242133491203054, 22.032523542690555, 9.861103948487587, 69.50545495910949, 42.591506370437486, 77.51941813043192, 10.189756861394464, 7.8107538925159234, 8.68272140541074, 69.88040776010068, 95.14169214603152, 10.437171525320675, 56.27921914098653, 16.60001302158335, 6.479264847448481, 39.6783221150746, 11.903981197362791, 28.577408171523164, 6.05751916672223, 7.760870689655603, 67.20962397483046, 28.24320483634124, 7.62959197676573, 21.1334331736312, 54.97651220714412, 123.19172938339705, 56.22900201528877, 57.78071805372738, 36.03017232828286, 16.96756411420634, 15.201387432298606, 7.1574244406798835, 5.797274134057586, 34.784664362189844, 19.103109454376213, 36.81879574181499, 25.70976410484425, 5.891569614774729, 20.761223868053733, 87.86878349846242, 105.67921050328974, 32.1038641557816, 41.0353030343911, 94.81413107762401, 23.429338514807128, 14.424503494877264, 32.39662231455878, 54.546143521061104, 15.15419272862624, 21.05579894082639, 50.323907452326175, 85.259881090295, 117.88148911504969, 8.880573722245868, 24.301984438117934, 36.34965124674858, 22.100736606004112, 9.917141611130647, 22.509565439832453, 52.122380601409894, 5.73995042759821, 62.0154539953766, 9.949163694093427, 81.05911236774136, 23.426077061694603, 13.232238372841122, 12.880716923190263, 34.37224348039453, 8.792791015669119, 23.44441069003737, 38.79177988747532, 35.07254027079682, 28.498150625835773, 23.4208990576484, 72.66688134243591, 104.42373427202324, 15.094227720931299, 11.721819092100993, 6.172679410324852, 28.39257311724082, 52.498991565219015, 85.72599358918454, 66.17603570075688, 12.472687527697271, 26.31287241355419, 76.78910141215047, 42.60021151519014, 17.007416066657292, 16.087147090987028, 20.599119951848195, 8.561441710823583, 9.632295253466424, 65.46564376940137, 68.39291650858559, 5.8908331160170215, 15.582592698796054, 7.422963731701056, 18.84727942103277, 46.29500919166993, 6.430324835957666, 40.31293336333714, 20.60902754200349, 29.528777564346687, 64.56105650952239, 55.76787178455645, 76.11557347639675, 49.07077184211889, 24.718084105737162, 15.959647024150446, 82.91609948854351, 113.00323515060393, 17.828981697210775, 34.27918617395646, 66.4276614151897, 12.748110250787397, 69.42207004804996, 37.48079375576374, 32.710546005861275, 16.661248217381154, 11.097362477920528, 21.801598384141702, 6.824392346092994, 11.46553843299462, 5.213053241323683, 41.48731844753239, 15.044492545065625, 60.690048330541785, 29.80000928721019, 19.398528360437655, 18.466909147526984, 9.425060540007236, ...])
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);
([3652164.1660178234, 3724366.7445090585, 3724893.75, 3731063.708112839, 3736628.7912219316, 3849826.5625, 4110455.2846536506, 4112501.5625, 4117646.875, 4129782.8125, 4171874.6904380023, 4229635.559494683, 4239629.6875, 4240378.710409218, 4258318.75, 4286385.9375, 4288850.0, 4290038.930931541, 4292000.702385836, 4292493.597870343, 4300600.0, 4314074.954179708, 4329221.5409518005, 4331359.574781905, 4336307.601858785, 4343105.385513553, 4349060.9375, 4374687.5, 4375909.258213484, 4392358.503075723, 4401479.761512158, 4409531.7361596245, 4413801.248558855, 4416331.979660258, 4515420.406114475, 4564271.555787775, 4564273.4375, 4564288.832152043, 4609579.258298291, 4635093.567631603, 4683454.491301021, 4784649.782074933, 4799779.500453262, 4823294.470223741, 4994832.8125, 4997514.976916406, 5041247.050323068, 5086541.395908652, 5090023.341352898, 5107471.800351081, 5140251.370928256, 5229702.167588686, 5235537.5, 5236168.592480656, 5256014.0625, 5259050.929456362, 5319824.922242462, 5381202.972358178, 5383223.7300288305, 5404996.875, 5415975.00665762, 5438481.741096879, 5466614.933847816, 5557769.974609845, 5586392.1875, 5646730.137122772, 5648598.351934149, 5654521.60604244, 5658296.504851465, 5705701.389799968, 5714365.625, 5736227.291925048, 5774119.560783633, 5817165.839737018, 5843220.654175912, 5878915.625, 6016310.140354518, 6059525.584449039, 6166880.428194637, 6431077.5009700665, 6496002.5545969745, 6818613.4353757985, 7043491.953484194, 7150618.75, 7170639.0625, 7240651.469649005, 7292022.632472252, 7350397.702149508, 7350420.960027718, 7414529.403819209, 7568220.7184166685, 7625778.125, 7722438.819420892, 7778004.295662959, 7785543.6981283715, 7870946.875, 7909673.044672084, 7923498.182796288, 7992943.75, 8069352.615377969, 8135228.492290175, 8396430.939354422, 8519190.625, 8841550.357182346, 9106464.376741227, 9107390.30462896, 9107542.551774455, 9115740.625, 9148919.345813122, 9161935.1946168, 9191142.1875, 9208860.254599188, 9275852.688473826, 9277387.5, 9486352.464056848, 9583219.291626872, 9654942.1875, 9738981.25, 10113260.05774582, 10208384.497664556, 10226654.6875, 10246075.0, 10246771.341788357, 10250068.75, 10251100.0, 10251174.271537036, 10258879.777271554, 10280034.861973448, 10281097.013193848, 10281100.0, 10288286.12692772, 10289297.659461964, 10290631.771402083, 10291188.59602439, 10291548.4375, 10291723.619375274, 10292664.267051836, 10293503.904335191, 10293874.396768257, 10295526.5625, 10296000.487859935, 10297114.775874328, 10298964.0625, 10299189.693151535, 10299515.915905701, 10299576.960007895, 10299589.146976532, 10299661.380137816, 10299998.4375, 10301199.552031625, 10301271.875, 10301788.483262895, 10301795.3125, 10302956.559663065, 10304171.241430288, 10304709.793919804, 10309340.043709056, 10312121.09907594, 10312271.875, 10313507.444803622, 10316767.380205011, 10328600.577054437, 10328634.780311713, 10329723.4375, 10330468.75, 10333880.649044175, 10335574.965902384, 10335868.75, 10337974.155453037, 10341682.60335377, 10343098.951898325, 10343485.9375, 10343575.0, 10343771.801535705, 10344109.37832614, 10344128.805080429, 10344203.877792956, 10344363.477427209, 10344581.25, 10345904.6875, 10347203.125, 10348156.25, 10349093.411603937, 10350843.75, 10351513.02603007, 10359079.680445895, 10362733.084342824, 10364783.233491564, 10365001.446012417, 10365382.217624303, 10365989.282100383, 10366543.113554018, 10366556.211294446, 10366610.324412562, 10367338.833009042, 10367532.667682143, 10368117.455268586, 10368223.803640032, 10368377.236192139, 10368972.997719998, 10368977.711994557, 10369113.49049988, 10369331.170681372, 10370723.044791857, 10371366.88631566, 10373388.617943583, 10373406.25, 10374204.6875, 10382252.008327005, 10382549.24846863, 10383229.6875, 10383239.495734682, 10385068.039693877, 10388835.572588935, 10389281.069299227, 10390530.601486634, 10390568.75, 10390694.156657089, 10390946.19960047, 10393211.968407532, 10393226.589739628, 10395461.895886743, 10396528.275404993, 10397909.900583802, 10399153.213772044, 10399322.592502175, 10399349.676676095, 10399359.662129613, 10399905.412935665, 10401118.75, 10401948.4375, 10402720.02236281, 10403573.726032445, 10403853.011620462, 10403985.191280201, 10404497.884031229, 10404567.1875, 10405238.085935289, 10405252.847592557, 10405386.634308208, 10405605.32191067, 10405646.330382194, 10405671.490852887, 10405865.759605164, 10405890.294648504, 10405904.61389024, 10405914.860353881, 10406140.76701717, 10406360.9375, 10406432.8125, 10406484.375, 10406786.464226983, 10406832.250823554, 10406879.690553028, 10407173.4375, 10407626.759256115, 10407848.790114649, 10408051.06427629, 10408245.291086849, 10408454.21169699, 10418753.125, 10419489.0625, 10421879.970060846, 10425624.423792494, 10427912.230007138, 10433657.58428888, 10437083.383655362, 10447099.514579797, 10451421.810047736, 10451735.720977884, 10451747.896207383, 10452478.125, 10452720.3125, 10452922.187752858, 10452950.601493225, 10453151.515664775, 10453286.622016145, 10453706.25, 10454060.61586752, 10454278.166314365, 10454328.615584746, 10454340.625, 10454347.727604486, 10454421.875, 10454479.6875, 10454485.55765809, 10454605.571254998, 10454606.25, 10455410.93841303, 10455440.366778191, 10455448.45654459, 10455567.169147467, 10455661.623580135, 10455748.050131332, 10455907.074823845, 10455911.627901128, 10455941.032101344, 10456057.166867834, 10456153.089356381, 10456199.228497935, 10456241.523492264, 10456273.293365039, 10456506.25, 10456582.367388975, 10456592.1875, 10457020.038217086, 10457176.5625, 10457235.9375, 10457821.81896243, 10458017.1875, 10458077.107537527, 10458172.98857761, 10458495.3125, 10458882.8125, 10459002.41401003, 10459075.0, 10459155.076827977, 10459446.454154033, 10459454.592874099, 10459571.875, 10459957.683390085, 10459993.083807854, 10460430.928887859, 10460448.41233817, 10460549.653167663, 10460713.540043997, 10460942.845068946, 10461182.120277757, 10461343.75, 10461503.125, 10461543.75, 10461692.264561426, 10461816.618758906, 10461920.924446665, 10461920.95844214, 10462103.686962146, 10462110.9375, 10462722.55482791, 10463248.234740347, 10464430.261973457, 10464468.583129382, 10464543.341045728, 10464993.825913992, 10465287.336939866, 10466478.125, 10467279.6875, 10467439.729077833, 10467680.895028688, 10468137.201061036, 10468673.81636335, 10468683.591850033, 10474645.124599569, 10474784.344568143, 10475728.125, 10476304.6875, 10476750.0, 10476754.182787195, 10476889.0625, 10478015.625, 10478727.100730967, 10479103.125, 10479162.032768156, 10479231.793967979, 10479494.326109152, 10479497.231418857, 10479861.47795457, 10480687.958008882, 10481088.398818819, 10481145.141934598, 10481187.5, 10481427.521893382, 10481600.963417068, 10481888.713513661, 10482063.673783131, 10482064.637878116, 10482114.630145282, 10482794.04519082, 10483063.174332613, 10483159.32771848, 10483167.1875, 10483687.5, 10483716.74836394, 10483985.747367743, 10484224.401553666, 10485117.313087244, 10485282.8125, 10485810.981834106, 10486023.886897217, 10486449.507969303, 10488007.876232188, 10488513.22570347, 10489319.097684728, 10489647.535331892, 10489853.330028359, 10490984.375, 10491433.76784313, 10491544.76867956, 10492099.081176488, 10492183.651508767, 10492906.099821616, 10493221.61453545, 10493430.191883625, 10493519.639283461, 10493904.6875, 10494235.328189718, 10494374.426099125, 10494504.6875, 10494682.543003306, 10494795.759027518, 10495041.104888957, 10495061.908083335, 10495732.019302024, 10496049.414127586, 10496053.868786793, 10496196.327440418, 10496443.980246222, 10496487.731521334, 10496926.5625, 10497041.432631636, 10497238.891484592, 10497347.284047501, 10497402.90162957, 10498220.3125, 10498285.923447577, 10498418.75, 10499007.851543283, 10499040.575087804, 10499072.821016906, 10499762.5, 10501772.132678652, 10502642.099386767, 10502676.5625, 10503458.822791541, 10503632.095475785, 10503889.58960197, 10504268.586495893, 10504667.1875, 10504670.423911097, 10504696.692113986, 10504813.22707798, 10504851.5625, 10504932.19986394, 10504934.680246068, 10505676.595866704, 10505780.575413492, 10505863.387053851, 10507459.06848338, 10508128.451197445, 10508573.898952149, 10508899.04431433, 10509488.599519545, 10509607.526402373, 10509838.229281075, 10511208.1848638, 10511379.6875, 10511387.661184918, 10512378.731055716, 10512929.6875, 10513856.432881953, 10515496.169996563, 10515507.8125, 10515540.210130313, 10515544.861313118, 10517444.30424702, 10517821.261796234, 10517861.850227175, 10518567.98701774, 10519173.4375, 10519305.904726855, 10519707.715524111, 10519845.3125, 10520108.313684875, 10520140.62518802, 10520893.611087987, 10521206.288651148, 10525802.636939438, 10531386.888041459, 10534410.9375, 10538979.62141344, 10539310.731671028, 10539434.161763344, 10540531.036622394, 10545134.142150324, 10549901.53870674, 10551447.194907982, 10557216.347291188, 10559878.125, 10562104.6875, 10564788.438622223, 10565301.473681439, 10565345.3125, 10565384.339410385, 10566908.576732567, 10568667.607526727, 10569032.8125, 10569335.749741443, 10570805.476721378, 10570978.125, 10571696.606459962, 10571805.306589019, 10571895.552454878, 10572164.0625, 10572201.814149529, 10572358.817198867, 10572633.462027524, 10573623.4375, 10573945.123408498, 10573950.650916606, 10574678.125, 10574835.69763795, 10575052.32991791, 10575080.18340491, 10575879.6875, 10575946.875, 10576125.201570578, 10576281.25, 10576425.188814338, 10576723.043977853, 10576743.142231017, 10577343.75, 10577999.560546024, 10578893.064755447, 10579517.821897497, 10579582.178189907, 10579709.698031418, 10579726.106625376, 10580119.754312027, 10580722.920942212, 10581122.839180754, 10581374.643173225, 10581418.8981566, 10581443.375745602, 10581451.787262468, 10581451.986306889, 10581459.375, 10581459.490012143, 10581694.918707618, 10581706.211114248, 10582035.47513587, 10582495.065467946, 10582653.48691567, 10582702.452964848, 10582714.271511862, 10583579.050850773, 10583654.825125048, 10583668.029981522, 10583784.375, 10584301.554780167, 10585117.929092333, 10585424.230167028, 10585478.646564683, 10585631.83394846, 10585731.25, 10585734.83313192, 10585898.4375, 10585904.426577412, 10586017.1875, 10586074.196481176, 10586086.993879145, 10586483.442951052, 10586735.502785703, 10586773.4375, 10587157.509942535, 10587666.480227893, 10587948.010568475, 10587972.710712653, 10588339.0625, 10588742.992640339, 10588771.875, 10588839.576475928, 10588875.0, 10589098.66880155, 10589612.7840939, 10590069.902422158, 10590525.0, 10591234.375, 10591410.666559884, 10591462.990221376, 10591647.447862642, 10592024.184293015, 10593401.498356799, 10594322.319418095, 10595719.433510428, 10597235.239349626, 10599140.625, 10605416.677087385, 10605819.833051985, 10606449.777043056, 10606743.75, 10606842.616231559, 10607368.75, 10607603.008968476, 10607921.52134144, 10608031.073959999, 10608640.41377798, 10608641.286191666, 10608650.229769794, 10608680.53714697, 10608755.528861428, 10608855.457782373, 10609221.875, 10609357.06716712, 10609488.749703005, 10610026.663890745, 10610346.425463695, 10610429.474386895, 10610442.689631145, 10610572.434886098, 10610785.9375, 10610833.43782564, 10611020.38868741, 10611077.780895688, 10611147.544419104, 10611383.58797712, 10611426.362996222, 10611538.915678276, 10611641.08990929, 10611704.6875, 10611805.785049884, 10611820.871380536, 10611832.425597874, 10611838.442024047, 10611998.375422884, 10611998.983990336, 10612014.34510026, 10612062.04524904, 10612098.272145357, 10612322.169013252, 10612480.711566461, 10612505.371741503, 10612570.3125, 10612582.8125, 10612636.639840268, 10612671.875, 10612734.265252035, 10612745.3125, 10613193.419572692, 10613229.179106573, 10613251.084660217, 10613430.753085034, 10613478.012386238, 10613591.129046913, 10613667.513678765, 10613673.4375, 10613680.035679476, 10613685.2789932, 10613813.938116616, 10613855.40331572, 10613905.702790296, 10614078.125, 10614120.119945195, 10614136.95521564, 10614143.75, 10614179.6875, 10614300.77169167, 10614402.015434077, 10614429.6875, 10614476.74880292, 10614529.715550724, 10614566.71680883, 10614690.625, 10614846.875, 10614847.713074127, 10614873.253738847, 10615724.267260147, 10615771.814420117, 10615959.19356702, 10616456.218571099, 10616471.563194454, 10617039.02746512, 10617156.25, 10617162.298879119, 10617175.41913489, 10619315.435942406, 10620513.265224762, 10620887.5, 10620912.5, 10620926.84838953, 10621257.972775584, 10621476.5625, 10621844.469567599, 10623130.407747211, 10624676.5625, 10624691.875470523, 10624913.809677787, 10625128.878214562, 10625243.613160865, 10625374.118499264, 10625555.837874247, 10625818.75, 10625829.142399944, 10625967.62225678, 10625994.360740516, 10626031.907404546, 10626139.40876648, 10626171.792923193, 10626288.440397715, 10626385.810173292, 10626400.222973887, 10626463.993685778, 10626493.994684765, 10626523.4375, 10626635.820321865, 10626672.9088016, 10626734.50435854, 10626804.369585967, 10626832.430014905, 10627047.913185144, 10627074.659129038, 10627098.465097638, 10627170.871778972, 10627180.37074052, 10627192.984871736, 10627407.8125, 10627427.856641078, 10627683.30474049, 10627736.341201575, 10627760.823010499, 10627862.01184869, 10627863.797675397, 10627889.0625, 10627895.386684552, 10627908.858977908, 10627929.175287405, 10627930.237263931, 10627973.209008548, 10627994.9070346, 10627995.5292694, 10628014.082349814, 10628060.9375, 10628209.375, 10628242.352434758, 10628257.765807243, 10628277.020691048, 10628293.75, 10628399.337016802, 10628425.690731876, 10628617.314072328, 10628619.102017524, 10628628.125, 10628738.261453407, 10628741.089823885, 10628834.106933054, 10628868.75, 10628874.909208957, 10628876.53139977, 10628880.170549586, 10628918.380309984, 10628928.125, 10628939.58876768, 10629033.773150746, 10629098.276528036, 10629198.363851955, 10629274.326565163, 10629293.562183142, 10629342.1875, 10629390.208385542, 10629407.089993417, 10629435.654044434, 10629508.544586057, 10629571.31557116, 10629634.375, 10629679.759067236, 10629706.25, 10629736.790936502, 10629743.247765293, 10629775.03324657, 10629785.9375, 10629890.673392182, 10629957.683458583, 10629965.877176784, 10630022.244926844, 10630052.208374472, 10630107.447398925, 10630107.8125, 10630145.57943362, 10630152.993366783, 10630159.375, 10630264.391867552, 10630274.920549078, 10630287.813564755, 10630301.5625, 10630357.760142911, 10630415.88845295, 10630600.745486872, 10630704.6875, 10630753.092175359, 10630762.5, 10630829.6875, 10630876.5625, 10630994.799111985, 10631076.5625, 10631078.125, 10631080.258523017, 10631118.75, 10631170.3125, 10631184.375, 10631196.875, 10631201.424700249, 10631269.682249641, 10631367.14250333, 10631394.5767872, 10631425.819294406, 10631431.415680544, 10631445.047450572, 10631446.875, 10631596.881175151, 10631653.95377016, 10631675.0, 10631684.633093443, 10631691.46413812, 10631741.579391183, 10631801.299745485, 10631823.415631918, 10631856.365523893, 10631939.439650763, 10631943.930642525, 10631986.719089227, 10631990.327768737, 10632040.569423862, 10632156.11951637, 10632215.012452502, 10632218.70814059, 10632341.390942106, 10632381.25, 10632518.790040795, 10632579.444469951, 10632581.74894059, 10632593.653777758, 10632593.75, 10632595.3125, 10632644.601164622, 10632740.770337023, 10632779.6875, 10632843.444119612, 10632852.42139746, 10632904.05582862, 10632933.51307184, 10632952.604259694, 10633065.7401911, 10633157.642653896, 10633169.52267566, 10633170.087970866, 10633179.653662475, 10633244.145443166, 10633285.9375, 10633443.095370859, 10633520.3125, 10633522.355841577, 10633572.570678445, 10633753.125, 10633764.0625, 10633774.376695724, 10633785.9375, 10633964.0625, 10633971.875, 10634010.14737568, 10634036.47650556, 10634059.317207497, 10634079.860047197, 10634101.511385217, 10634108.297125958, 10634151.432542432, 10634197.511830434, 10634220.1525593, 10634236.285775015, 10634276.244918508, 10634376.5625, 10634400.090129847, 10634454.579531517, 10634485.599831419, 10634530.25388916, 10634592.953716964, 10634613.580493376, 10634713.438081184, 10634738.36627284, 10634798.976982888, 10634922.5558367, 10634950.0, 10634987.5, 10634990.133212516, 10635078.043551981, 10635106.308282156, 10635145.262391362, 10635231.25, 10635316.070691971, 10635329.093580127, 10635373.138211435, 10635380.10327021, 10635385.9375, 10635417.394537011, 10635471.947282622, 10635524.463173052, 10635525.0, 10635676.5625, 10635728.125, 10635893.75, 10635925.0, 10635950.498356571, 10635954.817530962, 10635972.010101495, 10636084.146633383, 10636146.155701201, 10636224.900012383, 10636307.8125, 10636330.640639935, 10636338.49630937, 10636494.735863684, 10636517.1875, 10636525.0, 10636529.667534111, 10636534.375, 10636665.816810884, 10636669.400800625, 10636692.57742442, 10636704.6875, 10636755.442454379, 10636779.742202904, 10636782.267516036, 10636951.5625, 10636965.625, 10636996.875, 10637082.226428838, 10637154.242379755, 10637158.71627464, 10637160.85008602, 10637194.370019231, 10637198.033696573, 10637209.375, 10637239.571709791, 10637243.75, 10637250.65018471, 10637309.282475851, 10637319.986650914, 10637321.340386994, 10637327.453923019, 10637370.101357738, 10637382.098520368, 10637448.113133999, 10637458.80989659, 10637527.456962522, 10637537.556585427, 10637590.841391329, 10637687.451308258, 10637738.501098003, 10637804.726998638, 10637819.099518366, 10637847.6508774, 10637910.930772787, 10637984.151349949, 10637984.352248643, 10638059.375, 10638074.155734878, 10638128.813237714, 10638245.3125, 10638263.649965307, 10638290.938157143, 10638315.405620169, 10638360.96905572, 10638366.11095834, 10638401.898132985, 10638434.190309875, 10638437.5, 10638515.049819706, 10638542.34610782, 10638546.34745791, 10638552.311408529, 10638562.5, 10638598.065557, 10638649.164765086, 10638671.28156106, 10638676.711256674, 10638681.25, 10638820.3125, 10638870.95638957, 10638900.380064325, 10638918.522135502, 10638964.306221984, 10638995.3125, 10639063.38153672, 10639078.54302314, 10639144.393945731, 10639329.133382916, 10639350.836981015, 10639418.75, 10639478.736428315, 10639490.625, 10639495.700736754, 10639540.605499513, 10639582.342879225, 10639634.6725112, 10639635.998389238, 10639715.998887178, 10639818.75, 10639939.089258982, 10640039.0625, 10640068.171824694, 10640097.698330116, 10640152.256670868, 10640201.67122556, ...], [7.148931840533044, 13.484940129746791, 30.292258568995297, 23.080021950747895, 81.39466039751233, 80.0861554618384, 17.839557831889042, 85.35699908308082, 82.83623815937273, 57.91580025129563, 10.67602286488844, 79.91666171574091, 63.98581606633917, 6.151168463640022, 62.928127110843526, 34.12057118070352, 36.85200643143968, 7.556334818974151, 6.360214829326937, 10.897962530096507, 44.82928218878815, 14.769693397432938, 13.804751518506631, 6.804057853487458, 24.96347709783451, 27.032244147435442, 52.37338999351719, 56.324594626616516, 120.60634404921689, 7.315640246227523, 16.31547813646302, 11.98334508894631, 86.99042783230013, 12.49840114985274, 5.619244195806189, 20.034819434078116, 41.3102793310883, 28.77010938898071, 22.229671667040602, 7.538583546876988, 41.52211259737745, 35.80542729411604, 32.05818165124797, 10.024949714247144, 74.17907683152394, 22.228147352493522, 11.413271017257436, 17.77040054854171, 21.577124540602483, 43.37531915387393, 10.84091298329161, 68.15859575354114, 62.43873979483172, 25.75899800904177, 116.53207936626671, 12.975864622213237, 14.653191555227261, 14.389967944867708, 16.187489962901527, 64.77322744660441, 9.337038919550638, 9.78430422050536, 5.270205021618239, 100.98937576496039, 75.34315605841545, 8.539573564234507, 10.996544911411377, 10.731815387153283, 48.02507003442643, 14.321727159886935, 66.14080891324679, 12.497870156473812, 19.30267862500761, 7.6827958231034685, 5.411698618118123, 59.1666858710233, 48.932349884852805, 77.23654392738723, 33.00610765403899, 20.339059667966595, 6.030725131023727, 20.312250536439247, 24.631850887824996, 39.259934493100666, 30.0912052956864, 26.81432872995302, 18.90864879728313, 10.144679454851207, 18.15817940654463, 33.24774097722856, 119.19239806166242, 121.6723775774532, 26.94119810908432, 28.2945434771541, 70.69128889316345, 72.97140953478342, 27.264595831949293, 30.190976388866098, 79.87185731406484, 10.414758341317333, 20.966282762554545, 16.63441297344754, 41.07233772041288, 36.17918948655619, 145.87291720398068, 22.0797331610148, 16.539114515300028, 117.50856927698635, 5.362761138700646, 12.706677004641135, 71.48331942310993, 13.905885326277538, 56.585285147227346, 49.962661524204556, 6.638358164452135, 17.504943566209523, 33.52626618203942, 110.74679646064905, 42.38458816362882, 8.352527372496814, 53.66521178125014, 63.66890653754992, 64.36938683938854, 43.76547845205967, 96.17290652667546, 22.185955722656963, 15.295084388284218, 17.19140125123149, 6.791413113295642, 49.39023671650053, 11.437291769417168, 19.105504393242253, 5.418787978553225, 8.054396360401212, 47.72778314224871, 5.469627355537388, 56.50739483715446, 12.612113888321435, 20.521619386992587, 72.34520585166783, 17.196367781490746, 18.598061539614363, 121.67605529077349, 72.14548217790042, 11.615039859324385, 43.40366370240705, 7.143836449515055, 9.735994291437434, 53.773512465539326, 55.73960835304885, 84.95564971284784, 20.737480245925077, 67.22425489225897, 75.68101156302006, 20.256693246454887, 16.82125283098072, 5.505518425145992, 10.098658668420871, 69.52514695932048, 28.044550654713646, 9.499840748353096, 12.167820047029904, 16.749780220287, 65.17668248054936, 63.73141011772984, 20.541849812192908, 8.268627870376132, 73.1939089592158, 16.85362830258919, 10.815811279185164, 9.807843055988311, 61.110836670390945, 81.60268341139118, 76.44369884048034, 11.1329097570506, 18.372200770092686, 5.146923461604836, 5.582476234203807, 44.031286006183386, 83.24884291532652, 46.521939776445095, 59.52881652731322, 69.8641741778446, 47.434824443605315, 12.063182712779668, 21.810101786591204, 18.217327907720648, 62.242599970326296, 67.14309278950604, 27.932909605378143, 91.00302421577473, 20.23202563686583, 43.18010469818314, 88.9047917167006, 14.133446477639342, 25.605779679948675, 65.1644189795156, 16.5485362426288, 13.783305576172275, 5.27769334378384, 9.005003498541688, 10.337644883589435, 17.5288895413507, 13.629822787720359, 23.73562513492199, 23.696026322427347, 78.1035139597783, 39.835886802040285, 40.39470006297154, 18.116438777994112, 70.82691965183639, 11.879880904966218, 19.23218058122324, 9.040801350665062, 95.52308089164455, 47.49174143263975, 51.23248540271922, 5.975619720827415, 12.870035698662985, 21.813684291057676, 5.291929412787057, 13.0496706428388, 17.30186784894657, 84.44500872550311, 9.407610133637615, 14.030704596985803, 17.59823561357529, 12.599146719587353, 37.61055478721804, 77.92645500787525, 42.645577918465854, 23.390876117088823, 11.610781317664523, 38.336516996919556, 19.34451947227791, 18.923885023540578, 83.12175708610518, 7.829861697043641, 46.3508237330729, 8.692970466308745, 47.41336206728089, 32.1332777406667, 52.617690166687396, 121.50958692724993, 6.699299158705495, 9.269927988395356, 12.326041437234878, 11.35718967303209, 30.432413246373063, 86.51031538922771, 87.46894383340505, 6.873425852829774, 5.152483713969937, 11.132482237982883, 106.07643661615472, 15.748519318397092, 6.836006135695272, 129.6597210617906, 28.107960443385604, 13.392808046720956, 70.01242727334008, 29.951246042706476, 23.17134866324781, 52.19779506707289, 5.450296255983714, 84.59985509145535, 17.862806861595324, 79.00033992185689, 27.302412880477853, 50.472210603093686, 96.83791482548284, 75.60054352917095, 45.56399201303734, 11.654477610504395, 111.40502627779941, 89.57122476397309, 7.871116611930733, 63.20036956428421, 10.6596246343054, 22.758161038876832, 18.809426503825527, 64.2727156419326, 140.1941705610223, 30.066906587844564, 77.93701296434784, 22.781773411734854, 45.798131538080426, 43.36115909048881, 5.533124855411364, 14.040873341531753, 61.029565968705626, 28.16671816377996, 42.92721303861176, 5.682540507859678, 19.410021657919522, 128.9339461473179, 33.45453265952755, 20.153752049653065, 59.43890462702711, 10.103638899454552, 120.89982742509906, 25.969207232013037, 66.91199799169297, 22.05869774469963, 34.975079434008656, 32.495016263254136, 57.14561644149303, 90.10085553947309, 36.50327927308509, 86.32726255494504, 17.52501801982468, 22.07825032689005, 39.39845314118722, 65.19514758684713, 8.794804072644515, 79.77481693900339, 16.666868309841803, 22.320797020805134, 26.78397796722386, 63.38003137954641, 5.393561113904208, 8.82518750731584, 35.31251560250637, 9.310217663168867, 23.292632827115423, 21.271976780379518, 62.33217381161821, 118.88169533101572, 74.42641955532301, 55.01382817746946, 71.06984512373313, 55.04577170150617, 10.736879757664873, 17.8484562022531, 17.441331489369745, 5.308767335118666, 29.61935314842487, 6.161768488335388, 25.077753218234523, 33.723414543388046, 24.323562948196482, 22.452096562293605, 15.238973975671803, 25.67316765711081, 28.625267156733813, 31.333277930819282, 12.358423502792224, 87.2299170036102, 8.134576371361526, 31.705664553600293, 12.61214833537662, 30.950792076952922, 99.19234248631567, 116.38833354424494, 49.31744759059179, 81.5081419941207, 7.430352199148943, 73.24620862695842, 79.73976552495837, 19.58371978982513, 28.68335019036557, 21.826328941668397, 9.83800841931541, 17.710757873118965, 11.734596743066863, 31.47842492790717, 9.751225008334753, 26.116559732976324, 5.695988083317041, 75.763588737817, 20.522730313461143, 20.55853576324594, 28.336400103445893, 85.82816320387852, 5.3091974260752215, 6.882383054912022, 74.91221936310721, 18.33393061811477, 58.112365132692105, 34.21139796676596, 28.666349973384577, 31.80733821776979, 10.842977630623402, 96.06840598375334, 14.1152397157122, 32.556005981686006, 6.092721739539517, 16.984351608295743, 8.042462764125785, 98.34538170976963, 29.619285574195295, 9.643775199663375, 12.344824764730912, 6.109683070035106, 41.87699869244386, 20.48684771232265, 98.57520889442262, 8.65906096699066, 34.69900353407303, 52.563627116024136, 10.743609616099246, 7.7964541722978336, 6.185731099473827, 62.60663938385206, 20.394345764505708, 60.32944678443441, 55.29002848138984, 58.08194064266418, 9.73984037472642, 9.773054103730585, 5.670094714025713, 17.024300515804633, 69.50130830980063, 29.909304861371368, 30.056987405383026, 11.507735116706712, 5.471792219728853, 117.20440083038991, 19.278790157828947, 7.542533674152005, 6.320299878300778, 14.153395979283584, 55.326884530927025, 39.41198874726192, 40.76331033442173, 15.092442065336318, 27.574434303832884, 65.9795577033731, 69.40928011410931, 8.427710591004352, 44.58951638447973, 60.663132936307775, 8.904395468046397, 12.768529642094707, 17.920120576987173, 31.77188617771205, 31.54857369661306, 15.383869160161964, 54.61147820120796, 7.889230928951232, 56.187940975409525, 28.75303897607311, 135.74304198089047, 18.362257023086862, 6.185572325212607, 19.8090502070278, 104.72254621280996, 11.678960458400484, 17.050045347613786, 17.899519196260503, 85.58282598422616, 73.91080840642356, 18.70855644104434, 13.3078905280404, 63.016940962072994, 136.43560051925547, 21.131084139386182, 55.16457848981701, 15.687609917114928, 19.665879672600646, 81.89256214824098, 6.045993438046614, 8.976969702650123, 12.120699968154273, 7.986905078397273, 20.118721840142495, 19.217645629025245, 89.70253872305744, 23.189167733503435, 26.743919230752034, 60.18936030882986, 5.1413598921961325, 8.286676755674469, 10.917305232558162, 7.6172772212934605, 27.66456682585014, 20.444513629301635, 51.66817537161579, 27.282155513595157, 25.03310043330902, 14.186605639814555, 104.43888175596409, 10.782260836711439, 22.836390830094274, 16.319257278089562, 27.496297331882403, 76.46776385172836, 28.70360856619921, 44.26908987306158, 121.6587739225865, 29.40071348717206, 46.33853651271113, 10.07362560428534, 25.975246744752205, 46.751625453572544, 34.06840593283734, 78.25460604801808, 51.88396779191345, 29.41913195679234, 12.256174787537955, 11.524696259399999, 59.173617045772275, 6.527276574056618, 27.80779696731652, 9.948462144400063, 31.152309179859856, 54.61581855842693, 18.180155166377414, 35.77406685712664, 14.09982697304095, 26.483895250398803, 12.002706570122124, 109.51053480439157, 65.80639863362076, 9.507863626472828, 44.13780876418102, 16.665190169273473, 10.56369019610656, 23.414015009127233, 67.75055124449219, 5.4432156031169585, 47.54409560940683, 9.932359122614628, 20.250336245187913, 23.48941417491919, 33.576498644409995, 49.5191884513286, 37.72499203550633, 108.39300023024174, 10.612292432906694, 52.981853630106684, 22.84642535386895, 11.498190255460674, 16.847122131101877, 36.350852512076315, 11.312366246483599, 100.12741654510792, 27.777993302432623, 13.430317402629328, 24.451764517865314, 8.487709218045701, 83.44614482714289, 11.470915969234378, 10.25976188838491, 6.2847443078321925, 12.761320846219006, 37.520062493548764, 7.60044793556076, 79.49643124727919, 8.755514169326293, 6.335422692924832, 8.621566373078053, 61.302496133825144, 9.751347270361132, 65.65026303134839, 5.388592017736858, 103.22855169552273, 63.17702470093596, 82.72036951281824, 27.196395712968364, 10.51002114259277, 40.06515101998835, 54.97023939088687, 102.88458705586343, 96.36165309867562, 19.494337031457988, 35.85995031292562, 34.74588135064281, 58.14773730679318, 12.03886991898858, 81.91355367729757, 21.635318122407348, 26.210686248116808, 8.08100663309806, 58.65399421759888, 65.5955705871386, 80.57296084622148, 8.564022294725318, 27.600279484799056, 5.222874806683447, 8.25294611749242, 16.957415414032486, 7.313516488327974, 16.105667032963662, 76.0741425500324, 58.55024390322587, 21.70059676292083, 24.787408856939688, 32.11561008129946, 12.962699217938924, 90.18487985580117, 71.81697341286213, 46.547641265109405, 28.89402755361548, 24.955105697892325, 18.247214564950482, 15.896115968422604, 30.692712354407007, 6.379691547181434, 6.615022229013541, 77.41802416034595, 6.376273933564227, 28.931012085542473, 9.418631914507712, 68.51094982599571, 5.693327844666928, 5.8520919716367255, 6.57859228523985, 30.581931254076164, 93.30207017540675, 21.14263786413722, 23.203257215277787, 74.7903907597974, 8.74416670330952, 6.4562655115551255, 51.336473248252034, 15.2086528602447, 68.44602956347359, 18.522718835874763, 18.528920503796108, 22.70072420156964, 5.187897117086999, 14.710064255995572, 153.66601268134104, 95.67257150827801, 13.451704760995113, 25.637825331008106, 5.725728830389519, 50.576956143857835, 7.871000324438488, 53.497818953507526, 37.06133691251951, 17.80229212527299, 97.46186413394034, 14.539075166045356, 78.14566886044818, 23.369703176159632, 5.231135756823089, 68.7081467480198, 87.68122474530085, 26.480948953216725, 6.8684881771195005, 6.122688716411148, 58.19301874143853, 11.719344981210538, 5.766811777701954, 26.287063440812602, 7.32325195055917, 12.455326719681558, 71.63952976784431, 25.22760972391958, 54.48308157886448, 64.28886625728012, 95.35148323054561, 19.011702652736904, 8.541557056621695, 91.11866793293768, 9.494062652188601, 5.042016953133065, 21.790540172119567, 65.04133652408233, 55.880513385092435, 7.360679179703694, 10.852131414761125, 10.147665769865371, 27.38083488353445, 25.39341752715417, 27.91768750274773, 23.601104458241178, 27.849927004226238, 49.53733173470062, 5.799247419145112, 8.521398681488979, 7.536260680265318, 5.87285642387011, 50.07275011412632, 83.17207593414477, 5.964695289471022, 7.164230373929272, 40.75193788595857, 48.87272402973431, 10.024975453883638, 39.71054624974631, 10.672663783792194, 20.868669167593936, 12.551928055344996, 61.82425781548572, 29.358127473112425, 9.0056533811865, 78.65212449519426, 77.00491900749329, 8.530691752253551, 8.638304471923675, 12.338467164686582, 114.34925668704764, 19.170202158678265, 96.70867961856607, 8.22037330646447, 5.626499846306533, 104.51226716552975, 6.113919335122491, 30.41959539937168, 69.00188021637564, 21.211516975591177, 93.80887318077329, 30.77399942682155, 53.58346675717357, 8.027495932480429, 23.24234304911757, 13.808002198590788, 40.891503457960646, 6.162153928261576, 19.201557402145404, 40.468751957609456, 37.17246554903838, 8.56524564379221, 34.16445616749496, 22.26023021635092, 5.231685296689563, 6.2343096121135595, 73.97045702526606, 15.232011637954002, 14.617113816298493, 21.372132061356545, 7.814964880251251, 10.788403481529961, 49.73128704378932, 7.6835673174129795, 16.500331448663523, 76.36218856274925, 85.22089299865749, 94.62870000146923, 7.586436562975615, 109.41938209471465, 71.40283779993433, 44.23243396022516, 53.1924496969323, 8.354664581810093, 35.0296191893721, 39.602931400656274, 71.03857629417911, 34.74724875077877, 30.86046645451046, 65.02531703260472, 10.988699280629813, 36.63338764111509, 11.977186776970314, 13.404625965916667, 86.18429207569831, 9.819911701687955, 72.60240512331488, 25.705433867534822, 27.148023038812234, 19.921479435947052, 73.5970206387984, 76.41543467720741, 24.837560967310424, 32.683082628717386, 159.76254839475064, 28.407191267744, 90.33207943493323, 57.3820807410072, 14.340751860567277, 97.82832944320477, 19.63361397053076, 83.8667498692469, 15.069762262675642, 67.15970991390475, 13.506389339340245, 34.07103381921231, 86.76742320801145, 13.642450869735647, 7.3022543197622864, 89.94114352019047, 43.6845858511098, 64.49753140867242, 8.218172895237485, 59.99978917831636, 9.626346681876468, 14.340676622533122, 5.967185863732316, 34.60961672823572, 11.046843729776686, 60.20503043645337, 15.382824201554357, 78.3419637489707, 62.491918046242134, 166.7496679342746, 35.017822156463424, 31.92244510459986, 75.66269481311751, 105.20152283361102, 61.4552616963967, 12.15530375389351, 57.04578063364774, 47.40070585565362, 205.46316214033718, 62.92092383051183, 60.00651385564322, 54.85742527135068, 5.04078646634658, 171.85691864715253, 12.70591159107477, 155.50661636516108, 24.207694718619436, 64.22983494656923, 6.088741613655444, 44.37617142754047, 33.50068855044813, 7.699331484137284, 29.51160399886347, 13.039402363385083, 7.0540529847015705, 28.099251403206257, 75.23156584001103, 18.49861256752688, 11.422311138700424, 58.98765183430253, 31.24626783771896, 14.733827516796936, 16.055482649438673, 10.288559837301621, 47.09902386040163, 10.075533249838506, 31.73134559502421, 5.616263140227422, 16.36036643435742, 9.7922051963328, 26.756750595414136, 52.97754610303141, 42.020451973205795, 76.95592356195925, 8.364958996725935, 37.273720209810406, 39.26045013793952, 6.38217579990838, 20.880494049590204, 28.67024542238594, 62.158047447144924, 19.62081038321707, 74.83490486089849, 74.17405421921615, 14.149613017841608, 6.084587466366262, 118.9009092397917, 51.77604892378065, 128.4293931440629, 70.2285657787167, 33.47036792717982, 8.692243898969197, 88.2234049089431, 78.52740017825948, 20.345359883131753, 59.67591839594161, 95.48506450838042, 76.1047822166184, 19.016696711405917, 12.089525949588536, 24.80927931475304, 7.6668604565051774, 27.790486011422516, 72.01934538990827, 10.93047409826773, 70.00896166114207, 5.392394649550774, 7.734254628241622, 32.116388697089945, 34.781342592911514, 9.408793807837368, 5.242133491203054, 22.032523542690555, 9.861103948487587, 69.50545495910949, 42.591506370437486, 77.51941813043192, 10.189756861394464, 7.8107538925159234, 8.68272140541074, 69.88040776010068, 95.14169214603152, 10.437171525320675, 56.27921914098653, 16.60001302158335, 6.479264847448481, 39.6783221150746, 11.903981197362791, 28.577408171523164, 6.05751916672223, 7.760870689655603, 67.20962397483046, 28.24320483634124, 7.62959197676573, 21.1334331736312, 54.97651220714412, 123.19172938339705, 56.22900201528877, 57.78071805372738, 36.03017232828286, 16.96756411420634, 15.201387432298606, 7.1574244406798835, 5.797274134057586, 34.784664362189844, 19.103109454376213, 36.81879574181499, 25.70976410484425, 5.891569614774729, 20.761223868053733, 87.86878349846242, 105.67921050328974, 32.1038641557816, 41.0353030343911, 94.81413107762401, 23.429338514807128, 14.424503494877264, 32.39662231455878, 54.546143521061104, 15.15419272862624, 21.05579894082639, 50.323907452326175, 85.259881090295, 117.88148911504969, 8.880573722245868, 24.301984438117934, 36.34965124674858, 22.100736606004112, 9.917141611130647, 22.509565439832453, 52.122380601409894, 5.73995042759821, 62.0154539953766, 9.949163694093427, 81.05911236774136, 23.426077061694603, 13.232238372841122, 12.880716923190263, 34.37224348039453, 8.792791015669119, 23.44441069003737, 38.79177988747532, 35.07254027079682, 28.498150625835773, 23.4208990576484, 72.66688134243591, 104.42373427202324, 15.094227720931299, 11.721819092100993, 6.172679410324852, 28.39257311724082, 52.498991565219015, 85.72599358918454, 66.17603570075688, 12.472687527697271, 26.31287241355419, 76.78910141215047, 42.60021151519014, 17.007416066657292, 16.087147090987028, 20.599119951848195, 8.561441710823583, 9.632295253466424, 65.46564376940137, 68.39291650858559, 5.8908331160170215, 15.582592698796054, 7.422963731701056, 18.84727942103277, 46.29500919166993, 6.430324835957666, 40.31293336333714, 20.60902754200349, 29.528777564346687, 64.56105650952239, 55.76787178455645, 76.11557347639675, 49.07077184211889, 24.718084105737162, 15.959647024150446, 82.91609948854351, 113.00323515060393, 17.828981697210775, 34.27918617395646, 66.4276614151897, 12.748110250787397, 69.42207004804996, 37.48079375576374, 32.710546005861275, 16.661248217381154, 11.097362477920528, 21.801598384141702, 6.824392346092994, 11.46553843299462, 5.213053241323683, 41.48731844753239, 15.044492545065625, 60.690048330541785, 29.80000928721019, 19.398528360437655, 18.466909147526984, 9.425060540007236, ...])
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)