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 = 46417
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);
([4383412.5, 4424153.024104283, 4599503.125, 4630755.47316403, 4659576.99695841, 4661293.748593525, 4787601.762730187, 4790425.088030814, 4790564.0625, 4790857.020623764, 4830032.9677309105, 4860655.616202976, 4861373.4375, 5039605.422700358, 5083563.817995524, 5313391.600058501, 6580721.778459584, 6885275.613055371, 6885454.6875, 6886067.75716023, 6887823.4375, 6890093.273045763, 6915719.2976211915, 6918320.499494589, 6918835.9375, 6918928.125, 6919370.8154875375, 6951208.587267481, 6960460.671138099, 6961642.1875, 6962304.063598096, 6963809.824490528, 7125428.313173762, 7346700.0, 7346952.574117401, 7352040.4577491535, 7439046.457377031, 7630562.337648009, 7630565.966448663, 7653300.914921903, 7697039.524623272, 7698006.585187028, 7699118.75, 7699530.778418833, 7699707.8125, 7700274.869817937, 7700419.540947897, 7703343.956899868, 7718448.4375, 7731033.818609564, 7732100.210784914, 7733030.427579885, 7735948.2639966365, 7742964.0625, 7751772.2078442015, 7752440.625, 7757330.868802202, 7757431.555363298, 7818226.118604041, 8062706.5002904255, 8143411.997743406, 8303211.145440493, 8303215.542039445, 8304838.1164197475, 8353493.982804089, 8407776.5625, 8417670.111536507, 8495505.461403763, 8514768.75, 8515778.437368745, 8516371.875, 8517834.375, 8520030.177165242, 8520312.50028625, 8533094.90655702, 8533364.132267833, 8560288.849159922, 8564781.25, 8567302.90763792, 8573863.033992702, 8574265.35343801, 8575682.664400095, 8575771.875, 8576568.75, 8576569.557564326, 8576734.375, 8577317.745797142, 8577383.164948419, 8577461.640365576, 8577475.0, 8577539.5797454, 8577865.961845405, 8577971.359716091, 8578086.605673624, 8578358.603662346, 8578461.891906574, 8578744.400503347, 8579366.084359013, 8579945.3125, 8579970.3125, 8580788.612828394, 8581448.371659594, 8585606.25, 8589495.744934088, 8833772.403412636, 8842629.246694487, 8871747.74827563, 8893418.605703238, 8915575.702071728, 8920390.625, 8937459.525544735, 8959297.79009422, 8971887.34595692, 8996746.474817002, 8999027.007785108, 8999996.72517168, 8999998.606305167, 9002110.9375, 9003395.3125, 9003912.99853216, 9004648.301008223, 9004779.598085238, 9004857.399914585, 9004998.662974203, 9005289.949885892, 9005576.5625, 9005635.9375, 9005816.356866326, 9005915.103024768, 9005918.702463686, 9007489.366405178, 9007887.202762472, 9008163.543323254, 9009792.428543271, 9041625.462616984, 9042173.25543869, 9042454.432010878, 9043398.20830611, 9043545.01370649, 9043726.5625, 9043764.436727414, 9044955.32899658, 9045026.630719693, 9045617.1875, 9046260.9375, 9048693.596394973, 9064345.3125, 9065459.573471725, 9069880.891376503, 9070043.9258699, 9070355.98122784, 9072138.905603295, 9073390.239171207, 9080492.72896618, 9090601.188022945, 9091810.85001925, 9092110.265001327, 9095025.0, 9098904.160244064, 9099062.415843382, 9102899.645014089, 9103501.084446546, 9104357.675368546, 9106185.9375, 9117325.26058202, 9126157.16721829, 9126999.832595477, 9127070.3125, 9138067.736375095, 9138571.479878213, 9138804.6875, 9139310.447785893, 9139320.049627569, 9139657.8125, 9139926.5625, 9140855.560457256, 9141216.692825036, 9141518.75, 9142218.75, 9142963.847702723, 9143233.740990018, 9143428.125, 9145453.093972076, 9145983.047643691, 9146153.305273322, 9146351.047253234, 9146737.06548615, 9149031.306927033, 9161357.8125, 9165565.625, 9167357.413476884, 9167408.93922236, 9167411.99376335, 9167478.243640449, 9167490.625, 9167965.870192721, 9168121.875, 9168148.4375, 9168240.47660692, 9168372.235471949, 9168434.523147747, 9168486.938356541, 9168796.977776427, 9169028.286115073, 9169183.534837022, 9169238.167997152, 9169484.971391276, 9169793.407569716, 9171797.266328895, 9171876.094540544, 9172118.111499123, 9172457.497332238, 9176474.76890707, 9176793.656566568, 9180404.6875, 9183240.992147023, 9183407.104507573, 9183667.68018047, 9185069.339019936, 9185518.75, 9185538.48830992, 9187782.17126208, 9187893.980210433, 9188264.525592351, 9188609.037831549, 9188617.40332254, 9189470.3125, 9189827.649641156, 9190000.0, 9190915.625, 9198969.020458668, 9200020.3125, 9202715.625, 9204614.012952762, 9221891.191202471, 9221906.239164446, 9222551.61718935, 9222787.239561245, 9222865.59662723, 9223418.75, 9223424.775131615, 9223809.940781007, 9225654.6875, 9225688.920816258, 9225698.4375, 9225987.17375243, 9226155.846851707, 9226167.1875, 9226242.674955592, 9227633.38185855, 9227682.8125, 9228895.23151751, 9228958.64762725, 9229959.375, 9231673.564138332, 9233156.22393225, 9234561.89552807, 9247558.207259689, 9248309.960153347, 9248429.6875, 9248437.5, 9248605.525672393, 9248631.232149562, 9249522.301993428, 9249534.375, 9249664.0625, 9250040.897633055, 9250053.125, 9250123.8283838, 9250258.394381905, 9250395.010764614, 9250396.875, 9250422.530403458, 9250429.48036206, 9250534.37076236, 9250679.6875, 9250723.4375, 9250872.891940182, 9251015.560192756, 9251248.4375, 9251380.909746712, 9251876.55299108, 9252214.769044448, 9252335.463082034, 9252425.939172035, 9252432.8125, 9252554.6875, 9252561.45682316, 9252879.6875, 9253170.3125, 9253176.118708136, 9255646.139942033, 9255848.82149725, 9256620.3125, 9258589.0625, 9260057.98792105, 9265146.905236684, 9266146.3421287, 9266868.498432016, 9266921.875, 9267073.019663284, 9268581.25, 9282505.579799598, 9282576.731510159, 9284967.070156265, 9289003.125, 9290635.467102831, 9291195.3125, 9291315.23964107, 9291757.8125, 9291773.986962803, 9291815.639349613, 9292793.6096465, 9292872.195544781, 9294374.937648635, 9294424.730492212, 9294873.249353511, 9294892.1875, 9294918.427560233, 9295755.85111608, 9295884.93503582, 9296009.139049776, 9296102.871278966, 9296151.501631953, 9296965.58909384, 9298069.451248057, 9299417.754579877, 9301107.8125, 9303351.510093216, 9309879.1924755, 9310302.653179707, 9311152.984081844, 9311827.333871638, 9317664.0625, 9317674.309501875, 9317802.461598951, 9322017.092407838, 9331514.051114922, 9331942.97716182, 9332013.578015747, 9333884.375, 9334531.236183474, 9336896.091692489, 9349777.624996204, 9351887.456186064, 9352248.4375, 9355789.07535579, 9356105.409066819, 9356998.289663412, 9357294.07186214, 9370237.5, 9370983.905065687, 9371725.0, 9373840.592552, 9381426.328121362, 9383637.006060997, 9399589.0625, 9399853.582572944, 9401007.355138684, 9403372.939446326, 9404021.956533227, 9404766.538459962, 9414668.703448372, 9414771.875, 9415007.231294693, 9415041.965140674, 9415239.244833123, 9415373.416752001, 9415391.935352191, 9418168.34481272, 9418668.328835435, 9418854.817269435, 9419259.375, 9421293.27113994, 9423744.12569811, 9425435.9375, 9425562.218044864, 9425592.805399876, 9426421.630726127, 9427816.717922747, 9428286.7894879, 9429731.25, 9429873.733982729, 9430006.25, 9445650.0, 9445667.641671814, 9453255.25824561, 9470142.1875, 9494835.053178616, 9496033.495589994, 9505743.20065029, 9506118.735799713, 9507574.16333835, 9511591.684220556, 9515131.25, 9521235.076199248, 9531975.0, 9537329.103419213, 9537450.186013315, 9538245.3125, 9538283.600381808, 9539918.432056097, 9562291.087908866, 9565753.125, 9566110.172269275, 9567432.828508943, 9571287.5, 9571783.91776073, 9572348.539085325, 9573036.749327844, 9575136.437820803, 9575251.457839819, 9575281.25, 9575696.64641321, 9576018.75, 9580812.5, 9583198.56150096, 9583854.6875, 9584268.41122392, 9584509.096069297, 9584616.10042936, 9584810.836883385, 9584872.347416028, 9584921.181266207, 9585349.95325198, 9585553.68211574, 9585852.91415568, 9585870.3125, 9586470.31484751, 9586553.72177747, 9586558.517071066, 9586926.166696457, 9587331.319490667, 9588245.3125, 9588399.355795879, 9588556.25, 9589008.631295972, 9589328.165857008, 9589359.375, 9590071.667899309, 9590378.125, 9590442.446743215, 9590779.30832262, 9591315.625, 9591362.395680908, 9591876.292711735, 9597187.441792177, 9598359.366151545, 9598460.339297341, 9598495.131842565, 9599781.25, 9600871.029813768, 9600992.1875, 9601043.58153722, 9601309.375, 9604205.500754738, 9605286.318558492, 9613052.406756122, 9613467.440598702, 9613595.009110468, 9614712.976579763, 9616240.500349067, 9617938.729361681, 9620882.270408465, 9620888.334733805, 9621309.510730112, 9622862.93272888, 9623196.275125982, 9623498.4375, 9623516.374217398, 9625337.28386483, 9629196.410608267, 9629241.674750729, 9632404.61137145, 9636443.75, 9636467.79272368, 9643066.76921409, 9643562.1611992, 9644934.466148643, 9645755.325273061, 9645809.045482151, 9646025.483772064, 9646159.375, 9646400.635819646, 9646612.137698064, 9647421.260900062, 9649052.923467755, 9649580.040776018, 9651751.5625, 9651873.4375, 9653193.199168755, 9653699.933357088, 9656996.221724972, 9657951.292675203, 9700285.940345887, 9702329.032271598, 9709743.801274765, 9717274.86704258, 9717654.6875, 9724689.0625, 9726366.0311182, 9729823.634778256, 9731898.4375, 9733752.338019261, 9734254.6875, 9734276.538872119, 9734899.659028178, 9735640.625, 9740536.635581328, 9743221.595311979, 9745112.5, 9749795.139542386, 9756273.395948768, 9756699.08200969, 9757757.595931804, 9757975.651723685, 9758040.265667666, 9758845.099832453, 9761099.087315692, 9762158.991067113, 9764235.591462549, 9764657.968525695, 9764685.19717135, 9765560.395892115, 9765910.493048452, 9765956.25, 9766016.895158496, 9766041.076149305, 9767580.797789495, 9770481.280644778, 9774869.01060959, 9779514.242742417, 9781821.168723589, 9789513.444012746, 9790023.90259135, 9790506.25, 9791603.125, 9791950.3208606, 9792533.366521275, 9792676.5625, 9792746.875, 9794213.819910225, 9794513.669525538, 9794616.468731496, 9794679.152079003, 9794698.4375, 9795285.574558979, 9795374.046763746, 9795526.5625, 9795607.8125, 9795644.413233709, 9795656.6100634, 9795659.522571456, 9795758.792749971, 9796037.5, 9796104.15522365, 9796201.28538323, 9796279.808606252, 9796741.819310185, 9798243.75, 9798621.875, 9799205.26838471, 9799438.631454024, 9799810.488414671, 9799908.617721995, 9800023.388931338, 9800840.625, 9800844.921005324, 9802168.75, 9803569.290266762, 9806727.128808862, 9807954.6875, 9814227.754300594, 9818148.4375, 9818185.644072736, 9818238.91463127, 9819224.698169982, 9819870.118122056, 9820305.556335488, 9821877.697298823, 9824204.568426695, 9825401.70369891, 9847760.9375, 9850675.238682514, 9852379.19652429, 9852542.17226007, 9853676.201163277, 9854196.631600896, 9854393.75, 9854959.116179131, 9855005.169302484, 9855052.049444918, 9855548.387926228, 9855720.77711559, 9855841.688569471, 9855951.82659441, 9857869.588750098, 9858051.373971025, 9858108.998349017, 9858426.5625, 9858854.848102331, 9859932.8125, 9860612.204920702, 9861181.25, 9861217.1875, 9861409.362858355, 9862033.458155338, 9862270.179611687, 9862440.625, 9862801.032789089, 9864632.762781426, 9866271.017370177, 9866399.633847803, 9868193.75, 9871800.63378831, 9875946.247992229, 9876571.255102754, 9879949.942522323, 9880420.509451786, 9885698.407638533, 9886198.204067757, 9886525.462761048, 9886623.4375, 9886906.43037889, 9887191.335951356, 9887393.291494783, 9887491.497787885, 9887846.119902078, 9888117.1875, 9888300.584698135, 9888840.921022046, 9889142.1875, 9889214.460923955, 9889250.0, 9889897.375880562, 9890276.5625, 9892956.25, 9894296.875, 9894821.875, 9894826.403490005, 9897382.19303707, 9897584.243150836, 9899623.4375, 9904171.455601081, 9904656.800031021, 9905465.885417478, 9906861.548394127, 9907160.747292612, 9907175.906787109, 9910392.068425687, 9910826.607827066, 9911031.25, 9919718.386769721, 9920768.398956753, 9927699.555131346, 9935371.875, 9943574.802004203, 9943814.0625, 9943910.148631448, 9944113.532743981, 9944372.778356707, 9944548.034160458, 9945079.6875, 9945577.61131064, 9945818.521682898, 9946507.419330776, 9946665.530329065, 9949219.581281964, 9949845.3125, 9950787.5, 9950827.298513936, 9951044.454498656, 9951103.39834752, 9951105.969653655, 9951728.125, 9951879.032688746, 9951891.05153027, 9952312.5, 9952338.20089771, 9952402.277157769, 9952506.693159133, 9952727.084968265, 9952795.757244473, 9953236.500509286, 9953431.25, 9953548.4375, 9955929.6875, 9956355.916336996, 9956515.328338781, 9956616.211648932, 9956711.954327604, 9960362.313707106, 9966337.5, 9966969.430796461, 9968899.788847983, 9972006.25, 9973081.551757963, 9973090.633440452, 9973929.343364246, 9984398.303816132, 9992752.470452242, 9992783.251599178, 9992907.8125, 9993239.118789393, 9993585.304419817, 9994299.580417268, 9994581.25, 9994782.8125, 9994978.82949133, 9995022.930442533, 9995146.875, 9995213.874686886, 9995265.625, 9995906.220140763, 9996142.1875, 9996251.705754947, 9996257.06799858, 9996297.524852488, 9996326.59010562, 9997618.243794903, 9997643.499688597, 9998048.748169469, 9998302.713179547, 9999996.875, 10000326.38390224, 10000908.822859356, 10001498.814062227, 10002490.625, 10002932.056128072, 10003033.17106525, 10006849.845824867, 10007316.520147173, 10007349.700559046, 10007764.002525134, 10008420.386258893, 10008849.703585139, 10009988.761386918, 10011159.404210838, 10011426.081962794, 10013433.621585865, 10019073.49224785, 10022212.5, 10023257.872849772, 10023276.170093544, 10023298.980172087, 10023514.00740276, 10023552.881165683, 10023792.1875, 10024156.256410988, 10024209.790741412, 10024411.90357082, 10024691.384887172, 10024992.1875, 10025332.298372658, 10025973.4375, 10026182.326049874, 10026353.475298807, 10029774.045474764, 10031352.00034725, 10032527.936285706, 10032731.336447727, 10033054.029987812, 10033149.528355636, 10033712.5, 10033857.8125, 10033954.002797712, 10034980.602447934, 10035037.5, 10037964.53250773, 10038841.59585224, 10039282.8125, 10039758.541468078, 10040576.557202984, 10041367.599080706, 10041626.763326902, 10041679.744201522, 10042004.6875, 10042224.423871292, 10042935.704793192, 10044184.838099858, 10044563.962717773, 10045763.194699286, 10052796.341617083, 10055794.286191896, 10057752.91504561, 10057788.02651143, 10058384.733029667, 10058453.125, 10061160.9375, 10062114.82168439, 10062769.683656568, 10062990.625, 10063164.489527507, 10063195.1933691, 10063657.608586835, 10063661.396236967, 10063767.4094235, 10063779.49706589, 10064650.0, 10064804.383887358, 10066418.75, 10066444.528334165, 10066834.375, 10067111.706195898, 10083135.9375, 10083254.302131273, 10096353.281646486, 10104034.375, 10109804.464861779, 10131436.127765099, 10132804.881136496, 10132807.53978334, 10134226.5625, 10135698.440891465, 10137793.75, 10139425.168980125, 10140571.875, 10144271.304769957, 10144301.231694343, 10145436.413763098, 10146320.935243618, 10146892.1875, 10148113.790377095, 10148424.82309949, 10148837.5, 10151531.062683886, 10151750.491050808, 10151791.16574111, 10152106.395038728, 10152242.1875, 10153119.494577106, 10153507.118945224, 10154010.9375, 10154871.564146262, 10154896.875, 10154898.4375, 10154967.163870974, 10155341.262879144, 10155673.893472068, 10155878.279855693, 10156513.621101363, 10157126.230743859, 10157711.602331322, 10164899.48603243, 10165092.174901607, 10165909.375, 10166138.93315352, 10166260.9375, 10166331.25, 10166337.5, 10167026.5625, 10168346.621129634, 10168444.451108564, 10168542.037514266, 10168593.75, 10168615.027248517, 10168676.506447624, 10168703.500324644, 10168850.0, 10168920.3125, 10168984.720555471, 10169131.25, 10169291.106154785, 10169507.8125, 10169695.3125, 10169800.433371078, 10169875.098564638, 10169917.073782306, 10169927.42636971, 10169968.6277959, 10169984.303755539, 10170046.968106177, 10170128.069868399, 10170367.919471208, 10170440.625, 10170528.125, 10170534.713876242, 10170565.625, 10170590.085714698, 10170650.0, 10170651.543299392, 10170653.708836269, 10170721.744952032, 10170731.172534332, 10170831.25, 10170888.523860548, 10170970.353659723, 10171031.246018337, 10171062.870169828, 10171219.78408882, 10171237.009703455, 10171344.180500237, 10171609.171086203, 10171739.62377487, 10171759.375, 10171996.275120864, 10172165.933809888, 10172284.673708078, 10172329.972262932, 10173858.207499921, 10173887.476650337, 10174204.699896313, 10174479.901176952, 10174528.917305967, 10174553.125, 10174928.06538209, 10175285.230777828, 10175351.099794634, 10176226.300288638, 10176697.670699604, 10177002.671705393, 10177806.609193368, 10179886.17014357, 10180823.083747867, 10185770.766560324, 10186106.881300114, 10192285.9375, 10193130.901607424, 10193880.093153687, 10210859.682153443, 10211192.924868152, 10212641.895540329, 10215127.208910326, 10215595.3125, 10216187.921690516, 10216835.361304972, 10217716.724664424, 10219019.446746584, 10219021.657439793, 10219520.291369742, 10219710.611461299, 10220346.688029815, 10224018.637769686, 10226440.105475726, 10233771.730001766, 10234695.11471516, 10235068.238464536, 10235101.199722383, 10235203.125, 10235590.625, 10235851.024232037, 10236053.031783061, 10236074.787292719, 10236218.398181476, 10236406.360965248, 10237006.25, 10237134.33655735, 10237211.099247372, 10237221.39641005, 10237222.945666945, 10237384.425786851, 10237604.96685459, 10237854.6875, 10237950.833728386, 10238066.533710517, 10238138.16788906, 10238314.662181573, 10238416.15456816, 10238434.282883901, 10238839.565038027, 10238929.295510288, 10238961.24696077, 10239215.625, 10239636.850564519, 10239875.149403026, 10239929.6875, 10240148.4375, 10240332.8125, 10240510.737028323, 10241783.8910627, 10241795.3125, 10241804.061084315, 10242223.127783826, 10242543.75, 10242654.624047562, 10242848.950464308, 10242901.295831455, 10243418.75, 10243579.6875, 10243832.8125, 10244148.068989642, 10244235.108918179, 10244350.70278416, 10245248.343339255, 10245835.9375, 10246533.162463335, 10246723.953627354, 10248370.934527054, 10248453.113714574, 10248675.878079118, 10248804.6875, 10248865.625, 10249760.511965323, 10250374.976411816, 10250407.069000296, 10256668.587003699, 10257818.137280438, 10258695.932240115, 10264066.944437267, 10266190.625, ...], [56.53938761166684, 26.677417633201085, 56.606666617604354, 12.626829427651645, 20.03284234053468, 92.1303604387883, 28.253339113396365, 7.144786162283835, 47.3731543420738, 12.591943689433405, 7.660363826483249, 12.973959313725812, 119.22638501896267, 86.66448214260751, 106.64757689717104, 66.35258632023596, 26.75133166959498, 12.243369993527434, 31.148170777939363, 17.67177854030805, 100.81695642970917, 62.492511477686975, 41.855251703220745, 11.433136423448998, 51.378067278982556, 46.617994894892234, 80.16997863669165, 16.717076519999488, 57.46854356014319, 96.60042436519205, 12.999051156248354, 6.856689067530647, 63.88644291266048, 40.26546646094923, 13.18881785094221, 25.608706310653712, 57.285131469627714, 32.38139168196634, 16.42500353019921, 27.33020960789407, 60.63918108976708, 37.38848900586814, 44.21752636113902, 68.17722102365056, 86.85836348679022, 26.192782603283415, 24.520886454909018, 6.805527655516849, 63.865728539811066, 7.4136775738759395, 69.46636509037819, 8.720982736977886, 14.319013402794004, 45.967255487788655, 16.382539938849117, 85.56296877007043, 43.01848079147661, 16.24889556166832, 22.071640471835085, 32.97269608557538, 26.771177851418578, 5.7201209414915395, 14.634457813610991, 92.33302165193837, 5.831408956307563, 78.97917760746799, 56.59031236012944, 75.89292780112487, 73.31427823685125, 11.653780532732663, 89.88114663064567, 80.42792997183632, 18.230604966731743, 14.942600582653556, 98.1917816233965, 56.87352059477689, 5.693313681471024, 50.6114049063382, 72.19576301728196, 12.079327426116986, 13.998482325446915, 25.906506806237118, 104.86029034801382, 60.109330501826925, 19.278280845429176, 63.78065896202092, 9.852746223859842, 80.54166107663852, 82.73089206847527, 33.17862363557593, 19.939018359712282, 11.698467153155608, 41.46778550667171, 26.18325727906969, 51.212440105492526, 20.478573092300117, 9.949503903423702, 6.561594230185889, 52.27780686272103, 46.405709445687116, 8.978075840671242, 27.286548507292316, 107.58762873600776, 16.893051983680813, 17.42774081027694, 27.52611142112656, 13.377935450386707, 8.211716877995753, 12.436586709829854, 38.33152379761458, 5.5404318362119325, 12.93968699604447, 25.813200941497158, 22.550177884546937, 7.2436388918408285, 13.657015304346455, 11.402225604877643, 86.25907488351936, 47.2785336097533, 9.791793217388573, 65.97881361771404, 60.750807610418796, 22.411801228559213, 15.876695656629195, 12.870740170449887, 85.81001971419278, 88.23112438483803, 21.885888593620866, 8.028576510374911, 27.27877886945356, 35.33197835828458, 7.499157028224494, 5.674494144978439, 55.46888874019756, 5.8490217261009425, 10.854578045418895, 10.750539215778453, 9.144844873434396, 29.716903180825142, 42.111673355668124, 15.435767554122265, 56.70270406183646, 9.389760700076435, 61.65976145126779, 80.07296297680077, 25.820050665162405, 87.65816545734317, 13.568182853348773, 7.478482971985426, 9.484674164764941, 15.99986621835781, 25.768686254941354, 10.573817409947114, 6.8766450586767665, 31.166614474494928, 89.48175255865519, 19.929189413205307, 94.84140939506375, 73.34925216947701, 26.964195507003605, 6.223366604155347, 8.957444523208265, 14.443379225227343, 50.321111279419554, 11.560999786627006, 33.180715865552145, 17.63891882772936, 42.0740904518548, 7.814600420991213, 22.607257623426836, 54.26627122480173, 57.93470838643003, 5.332993980363993, 49.47611755704072, 40.79321083054327, 8.80929883500929, 12.702698015017571, 33.24143313176359, 47.88209591871756, 24.903723244929274, 80.11288113277342, 36.140321299241464, 16.712863407450236, 90.57487368811921, 9.488632552846477, 17.566436170956752, 28.746850204231915, 6.094039201094509, 77.45319879453811, 75.26620920694313, 22.56322736437739, 60.075780568665856, 21.431111112627907, 15.413851889936556, 41.64387570783944, 9.547705332435996, 93.71383035746598, 57.26026494833991, 25.90188503199383, 16.519955663212976, 8.366505519593877, 13.160331257638914, 6.5033239349663035, 8.37365583209082, 15.719473232242198, 24.21515809389633, 27.44288302820543, 9.057723314024356, 11.799923337650403, 10.467376113232605, 7.387549833990105, 37.639199708929766, 14.12823832455806, 8.237778542651734, 48.435861739268965, 11.754550142636294, 61.99835224076563, 130.5297411898773, 5.858887252053201, 35.43156033154564, 13.127347949654276, 44.96135809967386, 7.183311087247542, 129.68701782599976, 23.287299585352823, 15.833297741555565, 41.61341097104158, 21.742481863981887, 74.71876786436972, 61.43280722634753, 9.571063662179997, 41.37941981722983, 29.91533366535508, 85.8044010881378, 29.064939071818678, 9.322257876404283, 79.79474254235662, 37.68607246024625, 81.82817084034195, 58.25226438825748, 14.148505978039996, 17.64844053831581, 63.30947069016986, 10.913239640478517, 30.157685711818917, 23.421157072297973, 22.516901021556535, 70.7192923478734, 5.306385697696575, 12.151856720385355, 40.606640819982516, 43.01878217356263, 26.673859858196224, 44.84484329950829, 143.6727298621335, 97.39181760062064, 13.048747892211955, 15.190103991225442, 133.68558976676192, 34.69365752339348, 57.64352597005518, 10.157309479994229, 141.15599271465405, 16.164987135604502, 99.0707651324503, 37.62622712808021, 25.754759456458853, 48.67203706788844, 24.0264018677392, 17.74584400418456, 72.59939381842062, 87.94225043198973, 28.269743872073832, 7.529998994972391, 38.69298058244337, 63.33265039894927, 47.94085073013604, 74.97712018689349, 53.70999670237773, 46.68398387174742, 23.24982812183631, 69.88081664476653, 147.97907807346706, 21.752147817230465, 20.345154139075067, 55.160462623204815, 59.1443603455302, 47.085010828326475, 55.59832595747055, 30.546875570716914, 93.13583663454122, 132.82668582936924, 7.748289584934385, 39.2311893246446, 119.51818083960072, 15.655123625123563, 15.058023683299607, 105.4593757200355, 9.127376786535986, 77.48520000353852, 10.531898600570823, 35.98964637074633, 29.01249337380651, 15.627357471734904, 8.225483713094006, 38.20835578191325, 5.232167848070695, 53.1019474943998, 13.717389514022138, 68.5086303426614, 11.025543780764966, 24.51505523198538, 48.17680163977752, 93.95599924373806, 11.03162641751231, 14.004985809190496, 8.18952676652669, 52.79168556036793, 7.490636387159549, 65.35219295111624, 12.132605839462279, 49.8515140299489, 24.360456617929486, 7.105542697005426, 69.95719840892818, 12.434755595814654, 13.541973379737339, 29.06308338129886, 18.69690142355339, 54.74885076152905, 21.77889041914701, 7.553052945204448, 34.37131919101533, 29.319676070765706, 6.951046488984165, 50.48267915341437, 60.33921544853838, 28.30156877618172, 10.102133203544703, 13.368741836620181, 41.12220547185058, 59.22048067800965, 8.74661436697144, 78.48876078843169, 35.19686402035036, 65.34871760869603, 14.990737127666554, 12.480169544092753, 14.406454721168773, 6.30873819490794, 48.976753620054296, 7.003166732038329, 46.293023704861035, 40.20566302843428, 10.78010863318277, 5.276069826318852, 50.051354680688924, 5.6398698509530885, 22.91043842615652, 10.429277816269972, 15.261657322948675, 10.245064916342686, 27.63609817012075, 29.68273638150051, 22.70992294936034, 9.150206237715159, 37.49025177746986, 28.1207053718986, 33.00264928260705, 148.97157770855577, 49.82639228620577, 8.356414813065104, 137.91061671043968, 6.414557350553309, 6.840903571162934, 54.73147930485367, 52.80641466393986, 5.363550272460176, 6.236821668955938, 10.465315921155513, 10.173217066944954, 79.11946979648903, 16.206339523779736, 67.42413152848533, 86.55960986670547, 39.51722060846561, 17.67832301024383, 61.02184769098284, 72.54924631791287, 18.392322681330583, 21.014542150244075, 92.90882627261713, 50.42900145600497, 121.12311468470406, 120.53849733915887, 10.004162470056846, 31.128431808070825, 52.051416005833445, 9.493801578820092, 43.2593137138889, 18.928381315725744, 10.664626705641338, 6.5621900813604395, 49.98368693948398, 5.370004154560348, 5.399086391819069, 57.33453181772506, 70.66009234854988, 155.2773473280777, 12.688223873827258, 47.80745014929121, 67.02682219142034, 37.67214207442496, 24.707920587937117, 98.36858917812413, 30.969071636063454, 43.065400595527265, 33.35508652895035, 23.26775324595096, 33.90161505021882, 8.555081584530326, 23.391695006209204, 5.737498256374694, 27.911451081312784, 7.109217008140597, 50.02961071826984, 14.1944784454332, 30.05155746888738, 32.504098601527105, 12.20903016543724, 20.898436777232853, 13.620771414948596, 9.390860878470097, 60.82384412193744, 6.023575269705489, 47.25002144124233, 19.36374810186452, 8.308302018885716, 108.27716220604326, 10.818722963274043, 58.17726681209909, 5.2524593745202734, 34.648575533467906, 32.98341282991498, 26.61966064474519, 94.3236113278995, 27.42360411114185, 12.213686710472025, 13.06490492595183, 25.405077817604976, 53.392226225657524, 10.02176024084793, 74.02118622076794, 5.126918077737223, 51.93524915991995, 90.39249760001462, 16.624405528798476, 10.164303768897506, 16.002737564823942, 58.019321607843196, 26.83763250624837, 40.8490778486557, 39.65622052089343, 5.507337095629318, 10.153363654907977, 15.485380151010888, 6.323463720762927, 47.536221544493486, 65.86699164387772, 17.62189886822371, 142.25676308199985, 21.855821440212555, 25.366278663523296, 27.104362521338007, 41.420362914926464, 17.889609838361697, 31.890694819657785, 23.267453011713318, 65.7114767656642, 29.26676067713212, 7.03744420575189, 32.65769264728954, 51.51174757437024, 29.883412670231486, 28.70882175985242, 5.321310063048104, 42.64159853710765, 11.728771661779325, 96.15697510557318, 59.53846334883505, 21.000587711231557, 11.02511325468349, 20.08921388962052, 14.0039816059811, 120.93700028437107, 64.84090340312329, 75.86471295838777, 26.14794403998503, 30.088738573679958, 95.47331024237695, 11.82794752777706, 35.924273965128236, 73.29277985109073, 10.08624374368367, 34.50128449101422, 28.065622465600523, 79.71174557130148, 106.62295886692328, 56.09249700259687, 24.013713454797628, 28.54923565830209, 25.390336367205197, 27.72845976134689, 15.485272621693408, 24.878366870077702, 66.19450712215173, 23.021327779739284, 55.095480585512355, 31.82548189783204, 23.279394901508148, 20.896274971320135, 15.571535873096481, 8.775127476106897, 15.40766709215931, 54.8348316058308, 111.37300780382148, 105.44688710677076, 75.81845743467035, 48.45557719411602, 15.05961374765212, 11.56104855435377, 7.1696518990238465, 83.30852064956724, 15.908227154355757, 93.44807377297863, 125.74873722173415, 175.949731075619, 95.51060690619126, 23.31858755425828, 108.70860363566644, 40.42738756000946, 57.17978433299879, 48.65415412896279, 47.78342487923739, 21.146887174711395, 102.31299270938423, 5.908409586872017, 52.98721129510591, 59.95007512234413, 57.021696238046495, 29.40673342225022, 64.44070830066934, 15.535485933844814, 41.68281264686619, 60.5053925952987, 21.177057501227107, 7.505992786436611, 15.424115720540712, 99.9514195947909, 82.36894049809449, 70.08358341683403, 18.389737109049154, 5.327365134262181, 5.232747783874862, 19.260579243988417, 99.1417058885727, 62.775104468093126, 9.020946928584438, 65.77124806521473, 8.594554155558294, 5.218093896985946, 106.761293965985, 6.4305096414298015, 28.570974207435988, 23.83506391137164, 52.963951568531265, 7.497600922311262, 6.0681162115289595, 39.697757063831276, 22.245967962129612, 13.417612970763958, 15.508465140024118, 42.76916251136518, 8.416962788558434, 44.88783189756101, 9.318550111942033, 13.265703058384723, 40.85743548665154, 43.00224570117275, 63.73784541124269, 123.70842904635268, 73.97940611220926, 27.580629361682703, 17.27505077463449, 13.328976018751634, 8.431353356432476, 6.627134011807118, 36.26179543950162, 8.096959046330841, 80.04831124907423, 32.33834288511146, 42.90293360880201, 23.813800960964908, 33.743090634273145, 49.7572105498007, 67.80268126565299, 5.0264246657066405, 14.4580898462561, 35.32967687364303, 10.389708482494282, 5.5306723979057635, 26.20578467071788, 37.856609074265755, 55.242518162139966, 18.069794374432824, 20.31325767179707, 6.394117682677631, 55.13404560803784, 6.518414803005371, 39.312672997303345, 14.120642955714272, 29.666737972994795, 48.611947893176975, 11.421862562363813, 18.58137950226216, 11.961870855874501, 6.01919644694305, 12.67777481568395, 82.37231941331818, 12.183739798075056, 9.594911044528576, 63.78925813377378, 13.45794808425146, 50.09435548590025, 17.269760344385347, 33.131586193824624, 69.67851552614971, 40.53773536557658, 98.0583147686493, 21.212783620063178, 20.378793585308227, 6.4666194559672805, 111.44281050242441, 66.86325852710252, 5.560384349326205, 11.560708742965849, 17.925001677135615, 34.62742872919465, 32.19661499815366, 125.77573104783825, 15.117136054401742, 42.81435753996487, 13.716912673723025, 56.76598311512034, 13.479617215629546, 86.06006934450815, 64.96822816117928, 131.26124025812157, 25.405856623162236, 8.024985322986353, 129.3733137811607, 22.5147589836032, 106.78811723991188, 26.665555380080708, 148.5699314762023, 32.37962300587062, 22.724700046636652, 12.734466431156875, 61.88263872297989, 75.20156740892172, 25.980841685611217, 55.0637248061144, 16.096889366445726, 5.282505397957318, 58.339429714982145, 15.595820235660915, 36.08511356932623, 29.6928855406683, 18.512575566140864, 12.464670258267976, 11.899068619185066, 24.723649750534967, 47.97868183290288, 12.138735562079722, 58.50057731902126, 156.50043652359759, 75.94329512798268, 58.89502347904612, 60.00480878886897, 12.187813152820434, 100.28378021866465, 14.276006578917075, 64.63221596527329, 18.37698293011916, 74.62360845501973, 58.134974075984005, 6.30609126625208, 5.245381584972985, 22.836893641820872, 14.455328462474117, 20.078517756283382, 19.07077992323792, 128.24609031062238, 7.623724267374488, 42.832043982908466, 5.903680069659406, 39.0839923509497, 66.94782405488293, 12.441970549018306, 22.419787491538756, 47.15530208748659, 7.072941236246087, 44.497050746613965, 27.9473054710803, 110.63991645556867, 74.20919830248052, 6.177505495759935, 25.520816541395327, 7.613252773822794, 21.150652153747263, 24.406895954141792, 56.205354631785596, 29.02464005232241, 41.52323398545876, 9.18482032785578, 6.403886818959319, 16.60144027347604, 60.074696082903586, 51.78995121787489, 5.477369941411861, 10.894979335913693, 10.223476832776246, 27.10572844105163, 14.717736794467509, 11.244987659314535, 13.268970922147837, 29.48754307783083, 21.873039613258072, 128.32102324493093, 5.184642939900836, 15.15437097833843, 29.547742933606344, 56.68591290794218, 144.0743442709277, 42.8887491501939, 233.63943407951376, 34.169511277029784, 43.45156184226525, 9.336829915357326, 5.175158355151423, 10.307975566991294, 66.3912315405809, 81.01865630897638, 24.204930062451552, 82.36973174352342, 21.629340816459717, 16.468993040494418, 24.860552555417282, 36.60206065411707, 25.284569359861777, 9.405585174158054, 6.638974478904221, 13.404382173297677, 54.532077321521584, 71.35226098161374, 60.759949797119276, 23.790105671348808, 86.1558289516029, 70.30507038766265, 13.0818622860174, 42.02031353068701, 19.053569420967914, 91.00453868979592, 11.838351701567065, 15.766514837226545, 7.623875209890896, 79.67256375926864, 35.37717435913066, 40.024350000943755, 92.5017241638084, 14.574353329447796, 12.420226337156743, 10.385151970676432, 12.08379831974331, 55.58045074558105, 22.441278707233245, 16.507681978714757, 39.447619711725146, 66.81027192546287, 90.31866499858289, 12.986502334133, 55.15500110897398, 11.867929505009675, 51.685643983132465, 10.823265407558461, 11.929384104207696, 11.493258809144537, 14.26216039164288, 59.492762373640886, 13.898133195960138, 53.99901270038983, 10.089399362610807, 64.18442973139186, 7.339325975056963, 72.8603282386206, 22.718266560746702, 103.79646143719609, 110.42584272719164, 53.13801375856263, 24.09793785499535, 130.59230978302213, 30.972585778142864, 132.8706096576496, 11.133012022715919, 34.53871966030854, 21.497933911249426, 28.73265828208623, 20.820003512085563, 23.365059250938366, 15.149470344593272, 12.263950883032342, 94.83624779113501, 18.150651835674054, 25.461746357620157, 55.05771916109065, 16.539781771619314, 37.86442597758004, 22.642545180818395, 15.524731051854921, 100.28032892521773, 38.80313102587246, 12.68785233432345, 47.87485008633021, 23.79006518470606, 71.27096029566125, 59.91041766465297, 26.801291855737073, 18.095992138210992, 24.415461138011892, 11.378701913286037, 8.066181635495521, 23.353402890819083, 18.271124589016242, 93.65282124999908, 46.20968713614763, 40.10360485455157, 114.27115916727303, 123.8282813461792, 53.9685776415347, 33.707888113721786, 124.75693011863756, 9.125586451447242, 10.004063747409678, 115.22843777535577, 195.4330549872761, 10.306377986699337, 16.565519031555997, 56.17920461009419, 62.57260445805724, 87.64377892046234, 21.588242091992008, 57.03340660826603, 11.97343966560203, 58.14802189345923, 89.26972523373686, 16.89806068144621, 17.68525920400072, 35.68821666852933, 22.99235902334469, 14.49532151215596, 27.190489635020366, 15.308672873281234, 9.28521733104272, 6.167675663608236, 40.21724184350828, 58.847952469392965, 8.474296765116765, 72.35209839278046, 21.109960043481518, 105.41866938286425, 223.70286228254838, 9.879210394175994, 34.56795714017708, 14.65424446434028, 57.23032572823127, 21.1161204662076, 9.366450233347248, 30.00439289792358, 13.417449759348603, 120.38377617694744, 148.45594033237663, 9.724027945108185, 10.823264506990643, 12.135158938409816, 64.40838063243785, 13.060578475850498, 29.114017367292107, 99.5762462243792, 17.74884561300624, 79.27729452237426, 26.69961697981711, 98.38903984479953, 9.518859617742667, 6.932711525121302, 36.98880171695906, 27.398160529774568, 19.652204116580695, 21.873380260617992, 24.245746427441563, 46.495650651889726, 13.455807502444188, 24.796118952943182, 113.1913924091221, 13.745262901997664, 8.54223211152946, 18.98197006103805, 53.9957411809924, 30.418124628499374, 27.71820598772304, 26.611374249439, 18.765391758061, 128.10132128787563, 12.3146798370911, 40.66833036863664, 20.854481951335238, 20.76525938999798, 8.96848383458682, 26.779099325692847, 79.07465372985315, 131.2788339444019, 110.83456227328281, 163.91060854468003, 43.98798217658441, 42.04243205357038, 33.866792191399156, 25.150538020315512, 13.294563756712247, 13.718262752410192, 63.51068260986829, 74.13795913230756, 28.566333341182954, 14.59772768846134, 13.205693902427194, 23.110654804914777, 11.305698403158747, 52.01880373305371, 14.796980913520098, 11.390304084359663, 80.29389006176564, 35.043094288736064, 132.2817702250024, 8.440043963885847, 135.7385267259631, 84.71359196729512, 54.65143090225954, 39.148687943952766, 17.85519672977727, 15.301640782900614, 35.9414887310742, 9.795836565854028, 22.642760343801424, 9.607535012063561, 32.82349848266714, 33.18112083521433, 7.658183049310589, 66.87305560343523, 72.92991476380492, 43.325700089710686, 8.183335295558233, 117.09073131021316, 61.67897504503649, 5.27212209383443, 10.675812873588221, 47.90539556336227, 14.705050908414274, 17.33862551140153, 10.734989862748506, 53.58593643964911, 29.361103657893597, 53.89546592117069, 22.387419983568805, 8.71697193120229, 6.91242025591407, 34.75650055212488, 40.72368003590796, 8.48074030496328, 85.10027945699325, 12.262425005963275, 5.398042776320478, 95.25537120892118, 45.37647178221753, 36.128401502554595, 5.680200687652496, 28.06637997989971, 30.680721334278818, 25.67415257044872, 49.19994559169135, 5.6492750542899035, 24.50634245461745, 119.29676391478066, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4383412.5, 4424153.024104283, 4599503.125, 4630755.47316403, 4659576.99695841, 4661293.748593525, 4787601.762730187, 4790425.088030814, 4790564.0625, 4790857.020623764, 4830032.9677309105, 4860655.616202976, 4861373.4375, 5039605.422700358, 5083563.817995524, 5313391.600058501, 6580721.778459584, 6885275.613055371, 6885454.6875, 6886067.75716023, 6887823.4375, 6890093.273045763, 6915719.2976211915, 6918320.499494589, 6918835.9375, 6918928.125, 6919370.8154875375, 6951208.587267481, 6960460.671138099, 6961642.1875, 6962304.063598096, 6963809.824490528, 7125428.313173762, 7346700.0, 7346952.574117401, 7352040.4577491535, 7439046.457377031, 7630562.337648009, 7630565.966448663, 7653300.914921903, 7697039.524623272, 7698006.585187028, 7699118.75, 7699530.778418833, 7699707.8125, 7700274.869817937, 7700419.540947897, 7703343.956899868, 7718448.4375, 7731033.818609564, 7732100.210784914, 7733030.427579885, 7735948.2639966365, 7742964.0625, 7751772.2078442015, 7752440.625, 7757330.868802202, 7757431.555363298, 7818226.118604041, 8062706.5002904255, 8143411.997743406, 8303211.145440493, 8303215.542039445, 8304838.1164197475, 8353493.982804089, 8407776.5625, 8417670.111536507, 8495505.461403763, 8514768.75, 8515778.437368745, 8516371.875, 8517834.375, 8520030.177165242, 8520312.50028625, 8533094.90655702, 8533364.132267833, 8560288.849159922, 8564781.25, 8567302.90763792, 8573863.033992702, 8574265.35343801, 8575682.664400095, 8575771.875, 8576568.75, 8576569.557564326, 8576734.375, 8577317.745797142, 8577383.164948419, 8577461.640365576, 8577475.0, 8577539.5797454, 8577865.961845405, 8577971.359716091, 8578086.605673624, 8578358.603662346, 8578461.891906574, 8578744.400503347, 8579366.084359013, 8579945.3125, 8579970.3125, 8580788.612828394, 8581448.371659594, 8585606.25, 8589495.744934088, 8833772.403412636, 8842629.246694487, 8871747.74827563, 8893418.605703238, 8915575.702071728, 8920390.625, 8937459.525544735, 8959297.79009422, 8971887.34595692, 8996746.474817002, 8999027.007785108, 8999996.72517168, 8999998.606305167, 9002110.9375, 9003395.3125, 9003912.99853216, 9004648.301008223, 9004779.598085238, 9004857.399914585, 9004998.662974203, 9005289.949885892, 9005576.5625, 9005635.9375, 9005816.356866326, 9005915.103024768, 9005918.702463686, 9007489.366405178, 9007887.202762472, 9008163.543323254, 9009792.428543271, 9041625.462616984, 9042173.25543869, 9042454.432010878, 9043398.20830611, 9043545.01370649, 9043726.5625, 9043764.436727414, 9044955.32899658, 9045026.630719693, 9045617.1875, 9046260.9375, 9048693.596394973, 9064345.3125, 9065459.573471725, 9069880.891376503, 9070043.9258699, 9070355.98122784, 9072138.905603295, 9073390.239171207, 9080492.72896618, 9090601.188022945, 9091810.85001925, 9092110.265001327, 9095025.0, 9098904.160244064, 9099062.415843382, 9102899.645014089, 9103501.084446546, 9104357.675368546, 9106185.9375, 9117325.26058202, 9126157.16721829, 9126999.832595477, 9127070.3125, 9138067.736375095, 9138571.479878213, 9138804.6875, 9139310.447785893, 9139320.049627569, 9139657.8125, 9139926.5625, 9140855.560457256, 9141216.692825036, 9141518.75, 9142218.75, 9142963.847702723, 9143233.740990018, 9143428.125, 9145453.093972076, 9145983.047643691, 9146153.305273322, 9146351.047253234, 9146737.06548615, 9149031.306927033, 9161357.8125, 9165565.625, 9167357.413476884, 9167408.93922236, 9167411.99376335, 9167478.243640449, 9167490.625, 9167965.870192721, 9168121.875, 9168148.4375, 9168240.47660692, 9168372.235471949, 9168434.523147747, 9168486.938356541, 9168796.977776427, 9169028.286115073, 9169183.534837022, 9169238.167997152, 9169484.971391276, 9169793.407569716, 9171797.266328895, 9171876.094540544, 9172118.111499123, 9172457.497332238, 9176474.76890707, 9176793.656566568, 9180404.6875, 9183240.992147023, 9183407.104507573, 9183667.68018047, 9185069.339019936, 9185518.75, 9185538.48830992, 9187782.17126208, 9187893.980210433, 9188264.525592351, 9188609.037831549, 9188617.40332254, 9189470.3125, 9189827.649641156, 9190000.0, 9190915.625, 9198969.020458668, 9200020.3125, 9202715.625, 9204614.012952762, 9221891.191202471, 9221906.239164446, 9222551.61718935, 9222787.239561245, 9222865.59662723, 9223418.75, 9223424.775131615, 9223809.940781007, 9225654.6875, 9225688.920816258, 9225698.4375, 9225987.17375243, 9226155.846851707, 9226167.1875, 9226242.674955592, 9227633.38185855, 9227682.8125, 9228895.23151751, 9228958.64762725, 9229959.375, 9231673.564138332, 9233156.22393225, 9234561.89552807, 9247558.207259689, 9248309.960153347, 9248429.6875, 9248437.5, 9248605.525672393, 9248631.232149562, 9249522.301993428, 9249534.375, 9249664.0625, 9250040.897633055, 9250053.125, 9250123.8283838, 9250258.394381905, 9250395.010764614, 9250396.875, 9250422.530403458, 9250429.48036206, 9250534.37076236, 9250679.6875, 9250723.4375, 9250872.891940182, 9251015.560192756, 9251248.4375, 9251380.909746712, 9251876.55299108, 9252214.769044448, 9252335.463082034, 9252425.939172035, 9252432.8125, 9252554.6875, 9252561.45682316, 9252879.6875, 9253170.3125, 9253176.118708136, 9255646.139942033, 9255848.82149725, 9256620.3125, 9258589.0625, 9260057.98792105, 9265146.905236684, 9266146.3421287, 9266868.498432016, 9266921.875, 9267073.019663284, 9268581.25, 9282505.579799598, 9282576.731510159, 9284967.070156265, 9289003.125, 9290635.467102831, 9291195.3125, 9291315.23964107, 9291757.8125, 9291773.986962803, 9291815.639349613, 9292793.6096465, 9292872.195544781, 9294374.937648635, 9294424.730492212, 9294873.249353511, 9294892.1875, 9294918.427560233, 9295755.85111608, 9295884.93503582, 9296009.139049776, 9296102.871278966, 9296151.501631953, 9296965.58909384, 9298069.451248057, 9299417.754579877, 9301107.8125, 9303351.510093216, 9309879.1924755, 9310302.653179707, 9311152.984081844, 9311827.333871638, 9317664.0625, 9317674.309501875, 9317802.461598951, 9322017.092407838, 9331514.051114922, 9331942.97716182, 9332013.578015747, 9333884.375, 9334531.236183474, 9336896.091692489, 9349777.624996204, 9351887.456186064, 9352248.4375, 9355789.07535579, 9356105.409066819, 9356998.289663412, 9357294.07186214, 9370237.5, 9370983.905065687, 9371725.0, 9373840.592552, 9381426.328121362, 9383637.006060997, 9399589.0625, 9399853.582572944, 9401007.355138684, 9403372.939446326, 9404021.956533227, 9404766.538459962, 9414668.703448372, 9414771.875, 9415007.231294693, 9415041.965140674, 9415239.244833123, 9415373.416752001, 9415391.935352191, 9418168.34481272, 9418668.328835435, 9418854.817269435, 9419259.375, 9421293.27113994, 9423744.12569811, 9425435.9375, 9425562.218044864, 9425592.805399876, 9426421.630726127, 9427816.717922747, 9428286.7894879, 9429731.25, 9429873.733982729, 9430006.25, 9445650.0, 9445667.641671814, 9453255.25824561, 9470142.1875, 9494835.053178616, 9496033.495589994, 9505743.20065029, 9506118.735799713, 9507574.16333835, 9511591.684220556, 9515131.25, 9521235.076199248, 9531975.0, 9537329.103419213, 9537450.186013315, 9538245.3125, 9538283.600381808, 9539918.432056097, 9562291.087908866, 9565753.125, 9566110.172269275, 9567432.828508943, 9571287.5, 9571783.91776073, 9572348.539085325, 9573036.749327844, 9575136.437820803, 9575251.457839819, 9575281.25, 9575696.64641321, 9576018.75, 9580812.5, 9583198.56150096, 9583854.6875, 9584268.41122392, 9584509.096069297, 9584616.10042936, 9584810.836883385, 9584872.347416028, 9584921.181266207, 9585349.95325198, 9585553.68211574, 9585852.91415568, 9585870.3125, 9586470.31484751, 9586553.72177747, 9586558.517071066, 9586926.166696457, 9587331.319490667, 9588245.3125, 9588399.355795879, 9588556.25, 9589008.631295972, 9589328.165857008, 9589359.375, 9590071.667899309, 9590378.125, 9590442.446743215, 9590779.30832262, 9591315.625, 9591362.395680908, 9591876.292711735, 9597187.441792177, 9598359.366151545, 9598460.339297341, 9598495.131842565, 9599781.25, 9600871.029813768, 9600992.1875, 9601043.58153722, 9601309.375, 9604205.500754738, 9605286.318558492, 9613052.406756122, 9613467.440598702, 9613595.009110468, 9614712.976579763, 9616240.500349067, 9617938.729361681, 9620882.270408465, 9620888.334733805, 9621309.510730112, 9622862.93272888, 9623196.275125982, 9623498.4375, 9623516.374217398, 9625337.28386483, 9629196.410608267, 9629241.674750729, 9632404.61137145, 9636443.75, 9636467.79272368, 9643066.76921409, 9643562.1611992, 9644934.466148643, 9645755.325273061, 9645809.045482151, 9646025.483772064, 9646159.375, 9646400.635819646, 9646612.137698064, 9647421.260900062, 9649052.923467755, 9649580.040776018, 9651751.5625, 9651873.4375, 9653193.199168755, 9653699.933357088, 9656996.221724972, 9657951.292675203, 9700285.940345887, 9702329.032271598, 9709743.801274765, 9717274.86704258, 9717654.6875, 9724689.0625, 9726366.0311182, 9729823.634778256, 9731898.4375, 9733752.338019261, 9734254.6875, 9734276.538872119, 9734899.659028178, 9735640.625, 9740536.635581328, 9743221.595311979, 9745112.5, 9749795.139542386, 9756273.395948768, 9756699.08200969, 9757757.595931804, 9757975.651723685, 9758040.265667666, 9758845.099832453, 9761099.087315692, 9762158.991067113, 9764235.591462549, 9764657.968525695, 9764685.19717135, 9765560.395892115, 9765910.493048452, 9765956.25, 9766016.895158496, 9766041.076149305, 9767580.797789495, 9770481.280644778, 9774869.01060959, 9779514.242742417, 9781821.168723589, 9789513.444012746, 9790023.90259135, 9790506.25, 9791603.125, 9791950.3208606, 9792533.366521275, 9792676.5625, 9792746.875, 9794213.819910225, 9794513.669525538, 9794616.468731496, 9794679.152079003, 9794698.4375, 9795285.574558979, 9795374.046763746, 9795526.5625, 9795607.8125, 9795644.413233709, 9795656.6100634, 9795659.522571456, 9795758.792749971, 9796037.5, 9796104.15522365, 9796201.28538323, 9796279.808606252, 9796741.819310185, 9798243.75, 9798621.875, 9799205.26838471, 9799438.631454024, 9799810.488414671, 9799908.617721995, 9800023.388931338, 9800840.625, 9800844.921005324, 9802168.75, 9803569.290266762, 9806727.128808862, 9807954.6875, 9814227.754300594, 9818148.4375, 9818185.644072736, 9818238.91463127, 9819224.698169982, 9819870.118122056, 9820305.556335488, 9821877.697298823, 9824204.568426695, 9825401.70369891, 9847760.9375, 9850675.238682514, 9852379.19652429, 9852542.17226007, 9853676.201163277, 9854196.631600896, 9854393.75, 9854959.116179131, 9855005.169302484, 9855052.049444918, 9855548.387926228, 9855720.77711559, 9855841.688569471, 9855951.82659441, 9857869.588750098, 9858051.373971025, 9858108.998349017, 9858426.5625, 9858854.848102331, 9859932.8125, 9860612.204920702, 9861181.25, 9861217.1875, 9861409.362858355, 9862033.458155338, 9862270.179611687, 9862440.625, 9862801.032789089, 9864632.762781426, 9866271.017370177, 9866399.633847803, 9868193.75, 9871800.63378831, 9875946.247992229, 9876571.255102754, 9879949.942522323, 9880420.509451786, 9885698.407638533, 9886198.204067757, 9886525.462761048, 9886623.4375, 9886906.43037889, 9887191.335951356, 9887393.291494783, 9887491.497787885, 9887846.119902078, 9888117.1875, 9888300.584698135, 9888840.921022046, 9889142.1875, 9889214.460923955, 9889250.0, 9889897.375880562, 9890276.5625, 9892956.25, 9894296.875, 9894821.875, 9894826.403490005, 9897382.19303707, 9897584.243150836, 9899623.4375, 9904171.455601081, 9904656.800031021, 9905465.885417478, 9906861.548394127, 9907160.747292612, 9907175.906787109, 9910392.068425687, 9910826.607827066, 9911031.25, 9919718.386769721, 9920768.398956753, 9927699.555131346, 9935371.875, 9943574.802004203, 9943814.0625, 9943910.148631448, 9944113.532743981, 9944372.778356707, 9944548.034160458, 9945079.6875, 9945577.61131064, 9945818.521682898, 9946507.419330776, 9946665.530329065, 9949219.581281964, 9949845.3125, 9950787.5, 9950827.298513936, 9951044.454498656, 9951103.39834752, 9951105.969653655, 9951728.125, 9951879.032688746, 9951891.05153027, 9952312.5, 9952338.20089771, 9952402.277157769, 9952506.693159133, 9952727.084968265, 9952795.757244473, 9953236.500509286, 9953431.25, 9953548.4375, 9955929.6875, 9956355.916336996, 9956515.328338781, 9956616.211648932, 9956711.954327604, 9960362.313707106, 9966337.5, 9966969.430796461, 9968899.788847983, 9972006.25, 9973081.551757963, 9973090.633440452, 9973929.343364246, 9984398.303816132, 9992752.470452242, 9992783.251599178, 9992907.8125, 9993239.118789393, 9993585.304419817, 9994299.580417268, 9994581.25, 9994782.8125, 9994978.82949133, 9995022.930442533, 9995146.875, 9995213.874686886, 9995265.625, 9995906.220140763, 9996142.1875, 9996251.705754947, 9996257.06799858, 9996297.524852488, 9996326.59010562, 9997618.243794903, 9997643.499688597, 9998048.748169469, 9998302.713179547, 9999996.875, 10000326.38390224, 10000908.822859356, 10001498.814062227, 10002490.625, 10002932.056128072, 10003033.17106525, 10006849.845824867, 10007316.520147173, 10007349.700559046, 10007764.002525134, 10008420.386258893, 10008849.703585139, 10009988.761386918, 10011159.404210838, 10011426.081962794, 10013433.621585865, 10019073.49224785, 10022212.5, 10023257.872849772, 10023276.170093544, 10023298.980172087, 10023514.00740276, 10023552.881165683, 10023792.1875, 10024156.256410988, 10024209.790741412, 10024411.90357082, 10024691.384887172, 10024992.1875, 10025332.298372658, 10025973.4375, 10026182.326049874, 10026353.475298807, 10029774.045474764, 10031352.00034725, 10032527.936285706, 10032731.336447727, 10033054.029987812, 10033149.528355636, 10033712.5, 10033857.8125, 10033954.002797712, 10034980.602447934, 10035037.5, 10037964.53250773, 10038841.59585224, 10039282.8125, 10039758.541468078, 10040576.557202984, 10041367.599080706, 10041626.763326902, 10041679.744201522, 10042004.6875, 10042224.423871292, 10042935.704793192, 10044184.838099858, 10044563.962717773, 10045763.194699286, 10052796.341617083, 10055794.286191896, 10057752.91504561, 10057788.02651143, 10058384.733029667, 10058453.125, 10061160.9375, 10062114.82168439, 10062769.683656568, 10062990.625, 10063164.489527507, 10063195.1933691, 10063657.608586835, 10063661.396236967, 10063767.4094235, 10063779.49706589, 10064650.0, 10064804.383887358, 10066418.75, 10066444.528334165, 10066834.375, 10067111.706195898, 10083135.9375, 10083254.302131273, 10096353.281646486, 10104034.375, 10109804.464861779, 10131436.127765099, 10132804.881136496, 10132807.53978334, 10134226.5625, 10135698.440891465, 10137793.75, 10139425.168980125, 10140571.875, 10144271.304769957, 10144301.231694343, 10145436.413763098, 10146320.935243618, 10146892.1875, 10148113.790377095, 10148424.82309949, 10148837.5, 10151531.062683886, 10151750.491050808, 10151791.16574111, 10152106.395038728, 10152242.1875, 10153119.494577106, 10153507.118945224, 10154010.9375, 10154871.564146262, 10154896.875, 10154898.4375, 10154967.163870974, 10155341.262879144, 10155673.893472068, 10155878.279855693, 10156513.621101363, 10157126.230743859, 10157711.602331322, 10164899.48603243, 10165092.174901607, 10165909.375, 10166138.93315352, 10166260.9375, 10166331.25, 10166337.5, 10167026.5625, 10168346.621129634, 10168444.451108564, 10168542.037514266, 10168593.75, 10168615.027248517, 10168676.506447624, 10168703.500324644, 10168850.0, 10168920.3125, 10168984.720555471, 10169131.25, 10169291.106154785, 10169507.8125, 10169695.3125, 10169800.433371078, 10169875.098564638, 10169917.073782306, 10169927.42636971, 10169968.6277959, 10169984.303755539, 10170046.968106177, 10170128.069868399, 10170367.919471208, 10170440.625, 10170528.125, 10170534.713876242, 10170565.625, 10170590.085714698, 10170650.0, 10170651.543299392, 10170653.708836269, 10170721.744952032, 10170731.172534332, 10170831.25, 10170888.523860548, 10170970.353659723, 10171031.246018337, 10171062.870169828, 10171219.78408882, 10171237.009703455, 10171344.180500237, 10171609.171086203, 10171739.62377487, 10171759.375, 10171996.275120864, 10172165.933809888, 10172284.673708078, 10172329.972262932, 10173858.207499921, 10173887.476650337, 10174204.699896313, 10174479.901176952, 10174528.917305967, 10174553.125, 10174928.06538209, 10175285.230777828, 10175351.099794634, 10176226.300288638, 10176697.670699604, 10177002.671705393, 10177806.609193368, 10179886.17014357, 10180823.083747867, 10185770.766560324, 10186106.881300114, 10192285.9375, 10193130.901607424, 10193880.093153687, 10210859.682153443, 10211192.924868152, 10212641.895540329, 10215127.208910326, 10215595.3125, 10216187.921690516, 10216835.361304972, 10217716.724664424, 10219019.446746584, 10219021.657439793, 10219520.291369742, 10219710.611461299, 10220346.688029815, 10224018.637769686, 10226440.105475726, 10233771.730001766, 10234695.11471516, 10235068.238464536, 10235101.199722383, 10235203.125, 10235590.625, 10235851.024232037, 10236053.031783061, 10236074.787292719, 10236218.398181476, 10236406.360965248, 10237006.25, 10237134.33655735, 10237211.099247372, 10237221.39641005, 10237222.945666945, 10237384.425786851, 10237604.96685459, 10237854.6875, 10237950.833728386, 10238066.533710517, 10238138.16788906, 10238314.662181573, 10238416.15456816, 10238434.282883901, 10238839.565038027, 10238929.295510288, 10238961.24696077, 10239215.625, 10239636.850564519, 10239875.149403026, 10239929.6875, 10240148.4375, 10240332.8125, 10240510.737028323, 10241783.8910627, 10241795.3125, 10241804.061084315, 10242223.127783826, 10242543.75, 10242654.624047562, 10242848.950464308, 10242901.295831455, 10243418.75, 10243579.6875, 10243832.8125, 10244148.068989642, 10244235.108918179, 10244350.70278416, 10245248.343339255, 10245835.9375, 10246533.162463335, 10246723.953627354, 10248370.934527054, 10248453.113714574, 10248675.878079118, 10248804.6875, 10248865.625, 10249760.511965323, 10250374.976411816, 10250407.069000296, 10256668.587003699, 10257818.137280438, 10258695.932240115, 10264066.944437267, 10266190.625, ...], [56.53938761166684, 26.677417633201085, 56.606666617604354, 12.626829427651645, 20.03284234053468, 92.1303604387883, 28.253339113396365, 7.144786162283835, 47.3731543420738, 12.591943689433405, 7.660363826483249, 12.973959313725812, 119.22638501896267, 86.66448214260751, 106.64757689717104, 66.35258632023596, 26.75133166959498, 12.243369993527434, 31.148170777939363, 17.67177854030805, 100.81695642970917, 62.492511477686975, 41.855251703220745, 11.433136423448998, 51.378067278982556, 46.617994894892234, 80.16997863669165, 16.717076519999488, 57.46854356014319, 96.60042436519205, 12.999051156248354, 6.856689067530647, 63.88644291266048, 40.26546646094923, 13.18881785094221, 25.608706310653712, 57.285131469627714, 32.38139168196634, 16.42500353019921, 27.33020960789407, 60.63918108976708, 37.38848900586814, 44.21752636113902, 68.17722102365056, 86.85836348679022, 26.192782603283415, 24.520886454909018, 6.805527655516849, 63.865728539811066, 7.4136775738759395, 69.46636509037819, 8.720982736977886, 14.319013402794004, 45.967255487788655, 16.382539938849117, 85.56296877007043, 43.01848079147661, 16.24889556166832, 22.071640471835085, 32.97269608557538, 26.771177851418578, 5.7201209414915395, 14.634457813610991, 92.33302165193837, 5.831408956307563, 78.97917760746799, 56.59031236012944, 75.89292780112487, 73.31427823685125, 11.653780532732663, 89.88114663064567, 80.42792997183632, 18.230604966731743, 14.942600582653556, 98.1917816233965, 56.87352059477689, 5.693313681471024, 50.6114049063382, 72.19576301728196, 12.079327426116986, 13.998482325446915, 25.906506806237118, 104.86029034801382, 60.109330501826925, 19.278280845429176, 63.78065896202092, 9.852746223859842, 80.54166107663852, 82.73089206847527, 33.17862363557593, 19.939018359712282, 11.698467153155608, 41.46778550667171, 26.18325727906969, 51.212440105492526, 20.478573092300117, 9.949503903423702, 6.561594230185889, 52.27780686272103, 46.405709445687116, 8.978075840671242, 27.286548507292316, 107.58762873600776, 16.893051983680813, 17.42774081027694, 27.52611142112656, 13.377935450386707, 8.211716877995753, 12.436586709829854, 38.33152379761458, 5.5404318362119325, 12.93968699604447, 25.813200941497158, 22.550177884546937, 7.2436388918408285, 13.657015304346455, 11.402225604877643, 86.25907488351936, 47.2785336097533, 9.791793217388573, 65.97881361771404, 60.750807610418796, 22.411801228559213, 15.876695656629195, 12.870740170449887, 85.81001971419278, 88.23112438483803, 21.885888593620866, 8.028576510374911, 27.27877886945356, 35.33197835828458, 7.499157028224494, 5.674494144978439, 55.46888874019756, 5.8490217261009425, 10.854578045418895, 10.750539215778453, 9.144844873434396, 29.716903180825142, 42.111673355668124, 15.435767554122265, 56.70270406183646, 9.389760700076435, 61.65976145126779, 80.07296297680077, 25.820050665162405, 87.65816545734317, 13.568182853348773, 7.478482971985426, 9.484674164764941, 15.99986621835781, 25.768686254941354, 10.573817409947114, 6.8766450586767665, 31.166614474494928, 89.48175255865519, 19.929189413205307, 94.84140939506375, 73.34925216947701, 26.964195507003605, 6.223366604155347, 8.957444523208265, 14.443379225227343, 50.321111279419554, 11.560999786627006, 33.180715865552145, 17.63891882772936, 42.0740904518548, 7.814600420991213, 22.607257623426836, 54.26627122480173, 57.93470838643003, 5.332993980363993, 49.47611755704072, 40.79321083054327, 8.80929883500929, 12.702698015017571, 33.24143313176359, 47.88209591871756, 24.903723244929274, 80.11288113277342, 36.140321299241464, 16.712863407450236, 90.57487368811921, 9.488632552846477, 17.566436170956752, 28.746850204231915, 6.094039201094509, 77.45319879453811, 75.26620920694313, 22.56322736437739, 60.075780568665856, 21.431111112627907, 15.413851889936556, 41.64387570783944, 9.547705332435996, 93.71383035746598, 57.26026494833991, 25.90188503199383, 16.519955663212976, 8.366505519593877, 13.160331257638914, 6.5033239349663035, 8.37365583209082, 15.719473232242198, 24.21515809389633, 27.44288302820543, 9.057723314024356, 11.799923337650403, 10.467376113232605, 7.387549833990105, 37.639199708929766, 14.12823832455806, 8.237778542651734, 48.435861739268965, 11.754550142636294, 61.99835224076563, 130.5297411898773, 5.858887252053201, 35.43156033154564, 13.127347949654276, 44.96135809967386, 7.183311087247542, 129.68701782599976, 23.287299585352823, 15.833297741555565, 41.61341097104158, 21.742481863981887, 74.71876786436972, 61.43280722634753, 9.571063662179997, 41.37941981722983, 29.91533366535508, 85.8044010881378, 29.064939071818678, 9.322257876404283, 79.79474254235662, 37.68607246024625, 81.82817084034195, 58.25226438825748, 14.148505978039996, 17.64844053831581, 63.30947069016986, 10.913239640478517, 30.157685711818917, 23.421157072297973, 22.516901021556535, 70.7192923478734, 5.306385697696575, 12.151856720385355, 40.606640819982516, 43.01878217356263, 26.673859858196224, 44.84484329950829, 143.6727298621335, 97.39181760062064, 13.048747892211955, 15.190103991225442, 133.68558976676192, 34.69365752339348, 57.64352597005518, 10.157309479994229, 141.15599271465405, 16.164987135604502, 99.0707651324503, 37.62622712808021, 25.754759456458853, 48.67203706788844, 24.0264018677392, 17.74584400418456, 72.59939381842062, 87.94225043198973, 28.269743872073832, 7.529998994972391, 38.69298058244337, 63.33265039894927, 47.94085073013604, 74.97712018689349, 53.70999670237773, 46.68398387174742, 23.24982812183631, 69.88081664476653, 147.97907807346706, 21.752147817230465, 20.345154139075067, 55.160462623204815, 59.1443603455302, 47.085010828326475, 55.59832595747055, 30.546875570716914, 93.13583663454122, 132.82668582936924, 7.748289584934385, 39.2311893246446, 119.51818083960072, 15.655123625123563, 15.058023683299607, 105.4593757200355, 9.127376786535986, 77.48520000353852, 10.531898600570823, 35.98964637074633, 29.01249337380651, 15.627357471734904, 8.225483713094006, 38.20835578191325, 5.232167848070695, 53.1019474943998, 13.717389514022138, 68.5086303426614, 11.025543780764966, 24.51505523198538, 48.17680163977752, 93.95599924373806, 11.03162641751231, 14.004985809190496, 8.18952676652669, 52.79168556036793, 7.490636387159549, 65.35219295111624, 12.132605839462279, 49.8515140299489, 24.360456617929486, 7.105542697005426, 69.95719840892818, 12.434755595814654, 13.541973379737339, 29.06308338129886, 18.69690142355339, 54.74885076152905, 21.77889041914701, 7.553052945204448, 34.37131919101533, 29.319676070765706, 6.951046488984165, 50.48267915341437, 60.33921544853838, 28.30156877618172, 10.102133203544703, 13.368741836620181, 41.12220547185058, 59.22048067800965, 8.74661436697144, 78.48876078843169, 35.19686402035036, 65.34871760869603, 14.990737127666554, 12.480169544092753, 14.406454721168773, 6.30873819490794, 48.976753620054296, 7.003166732038329, 46.293023704861035, 40.20566302843428, 10.78010863318277, 5.276069826318852, 50.051354680688924, 5.6398698509530885, 22.91043842615652, 10.429277816269972, 15.261657322948675, 10.245064916342686, 27.63609817012075, 29.68273638150051, 22.70992294936034, 9.150206237715159, 37.49025177746986, 28.1207053718986, 33.00264928260705, 148.97157770855577, 49.82639228620577, 8.356414813065104, 137.91061671043968, 6.414557350553309, 6.840903571162934, 54.73147930485367, 52.80641466393986, 5.363550272460176, 6.236821668955938, 10.465315921155513, 10.173217066944954, 79.11946979648903, 16.206339523779736, 67.42413152848533, 86.55960986670547, 39.51722060846561, 17.67832301024383, 61.02184769098284, 72.54924631791287, 18.392322681330583, 21.014542150244075, 92.90882627261713, 50.42900145600497, 121.12311468470406, 120.53849733915887, 10.004162470056846, 31.128431808070825, 52.051416005833445, 9.493801578820092, 43.2593137138889, 18.928381315725744, 10.664626705641338, 6.5621900813604395, 49.98368693948398, 5.370004154560348, 5.399086391819069, 57.33453181772506, 70.66009234854988, 155.2773473280777, 12.688223873827258, 47.80745014929121, 67.02682219142034, 37.67214207442496, 24.707920587937117, 98.36858917812413, 30.969071636063454, 43.065400595527265, 33.35508652895035, 23.26775324595096, 33.90161505021882, 8.555081584530326, 23.391695006209204, 5.737498256374694, 27.911451081312784, 7.109217008140597, 50.02961071826984, 14.1944784454332, 30.05155746888738, 32.504098601527105, 12.20903016543724, 20.898436777232853, 13.620771414948596, 9.390860878470097, 60.82384412193744, 6.023575269705489, 47.25002144124233, 19.36374810186452, 8.308302018885716, 108.27716220604326, 10.818722963274043, 58.17726681209909, 5.2524593745202734, 34.648575533467906, 32.98341282991498, 26.61966064474519, 94.3236113278995, 27.42360411114185, 12.213686710472025, 13.06490492595183, 25.405077817604976, 53.392226225657524, 10.02176024084793, 74.02118622076794, 5.126918077737223, 51.93524915991995, 90.39249760001462, 16.624405528798476, 10.164303768897506, 16.002737564823942, 58.019321607843196, 26.83763250624837, 40.8490778486557, 39.65622052089343, 5.507337095629318, 10.153363654907977, 15.485380151010888, 6.323463720762927, 47.536221544493486, 65.86699164387772, 17.62189886822371, 142.25676308199985, 21.855821440212555, 25.366278663523296, 27.104362521338007, 41.420362914926464, 17.889609838361697, 31.890694819657785, 23.267453011713318, 65.7114767656642, 29.26676067713212, 7.03744420575189, 32.65769264728954, 51.51174757437024, 29.883412670231486, 28.70882175985242, 5.321310063048104, 42.64159853710765, 11.728771661779325, 96.15697510557318, 59.53846334883505, 21.000587711231557, 11.02511325468349, 20.08921388962052, 14.0039816059811, 120.93700028437107, 64.84090340312329, 75.86471295838777, 26.14794403998503, 30.088738573679958, 95.47331024237695, 11.82794752777706, 35.924273965128236, 73.29277985109073, 10.08624374368367, 34.50128449101422, 28.065622465600523, 79.71174557130148, 106.62295886692328, 56.09249700259687, 24.013713454797628, 28.54923565830209, 25.390336367205197, 27.72845976134689, 15.485272621693408, 24.878366870077702, 66.19450712215173, 23.021327779739284, 55.095480585512355, 31.82548189783204, 23.279394901508148, 20.896274971320135, 15.571535873096481, 8.775127476106897, 15.40766709215931, 54.8348316058308, 111.37300780382148, 105.44688710677076, 75.81845743467035, 48.45557719411602, 15.05961374765212, 11.56104855435377, 7.1696518990238465, 83.30852064956724, 15.908227154355757, 93.44807377297863, 125.74873722173415, 175.949731075619, 95.51060690619126, 23.31858755425828, 108.70860363566644, 40.42738756000946, 57.17978433299879, 48.65415412896279, 47.78342487923739, 21.146887174711395, 102.31299270938423, 5.908409586872017, 52.98721129510591, 59.95007512234413, 57.021696238046495, 29.40673342225022, 64.44070830066934, 15.535485933844814, 41.68281264686619, 60.5053925952987, 21.177057501227107, 7.505992786436611, 15.424115720540712, 99.9514195947909, 82.36894049809449, 70.08358341683403, 18.389737109049154, 5.327365134262181, 5.232747783874862, 19.260579243988417, 99.1417058885727, 62.775104468093126, 9.020946928584438, 65.77124806521473, 8.594554155558294, 5.218093896985946, 106.761293965985, 6.4305096414298015, 28.570974207435988, 23.83506391137164, 52.963951568531265, 7.497600922311262, 6.0681162115289595, 39.697757063831276, 22.245967962129612, 13.417612970763958, 15.508465140024118, 42.76916251136518, 8.416962788558434, 44.88783189756101, 9.318550111942033, 13.265703058384723, 40.85743548665154, 43.00224570117275, 63.73784541124269, 123.70842904635268, 73.97940611220926, 27.580629361682703, 17.27505077463449, 13.328976018751634, 8.431353356432476, 6.627134011807118, 36.26179543950162, 8.096959046330841, 80.04831124907423, 32.33834288511146, 42.90293360880201, 23.813800960964908, 33.743090634273145, 49.7572105498007, 67.80268126565299, 5.0264246657066405, 14.4580898462561, 35.32967687364303, 10.389708482494282, 5.5306723979057635, 26.20578467071788, 37.856609074265755, 55.242518162139966, 18.069794374432824, 20.31325767179707, 6.394117682677631, 55.13404560803784, 6.518414803005371, 39.312672997303345, 14.120642955714272, 29.666737972994795, 48.611947893176975, 11.421862562363813, 18.58137950226216, 11.961870855874501, 6.01919644694305, 12.67777481568395, 82.37231941331818, 12.183739798075056, 9.594911044528576, 63.78925813377378, 13.45794808425146, 50.09435548590025, 17.269760344385347, 33.131586193824624, 69.67851552614971, 40.53773536557658, 98.0583147686493, 21.212783620063178, 20.378793585308227, 6.4666194559672805, 111.44281050242441, 66.86325852710252, 5.560384349326205, 11.560708742965849, 17.925001677135615, 34.62742872919465, 32.19661499815366, 125.77573104783825, 15.117136054401742, 42.81435753996487, 13.716912673723025, 56.76598311512034, 13.479617215629546, 86.06006934450815, 64.96822816117928, 131.26124025812157, 25.405856623162236, 8.024985322986353, 129.3733137811607, 22.5147589836032, 106.78811723991188, 26.665555380080708, 148.5699314762023, 32.37962300587062, 22.724700046636652, 12.734466431156875, 61.88263872297989, 75.20156740892172, 25.980841685611217, 55.0637248061144, 16.096889366445726, 5.282505397957318, 58.339429714982145, 15.595820235660915, 36.08511356932623, 29.6928855406683, 18.512575566140864, 12.464670258267976, 11.899068619185066, 24.723649750534967, 47.97868183290288, 12.138735562079722, 58.50057731902126, 156.50043652359759, 75.94329512798268, 58.89502347904612, 60.00480878886897, 12.187813152820434, 100.28378021866465, 14.276006578917075, 64.63221596527329, 18.37698293011916, 74.62360845501973, 58.134974075984005, 6.30609126625208, 5.245381584972985, 22.836893641820872, 14.455328462474117, 20.078517756283382, 19.07077992323792, 128.24609031062238, 7.623724267374488, 42.832043982908466, 5.903680069659406, 39.0839923509497, 66.94782405488293, 12.441970549018306, 22.419787491538756, 47.15530208748659, 7.072941236246087, 44.497050746613965, 27.9473054710803, 110.63991645556867, 74.20919830248052, 6.177505495759935, 25.520816541395327, 7.613252773822794, 21.150652153747263, 24.406895954141792, 56.205354631785596, 29.02464005232241, 41.52323398545876, 9.18482032785578, 6.403886818959319, 16.60144027347604, 60.074696082903586, 51.78995121787489, 5.477369941411861, 10.894979335913693, 10.223476832776246, 27.10572844105163, 14.717736794467509, 11.244987659314535, 13.268970922147837, 29.48754307783083, 21.873039613258072, 128.32102324493093, 5.184642939900836, 15.15437097833843, 29.547742933606344, 56.68591290794218, 144.0743442709277, 42.8887491501939, 233.63943407951376, 34.169511277029784, 43.45156184226525, 9.336829915357326, 5.175158355151423, 10.307975566991294, 66.3912315405809, 81.01865630897638, 24.204930062451552, 82.36973174352342, 21.629340816459717, 16.468993040494418, 24.860552555417282, 36.60206065411707, 25.284569359861777, 9.405585174158054, 6.638974478904221, 13.404382173297677, 54.532077321521584, 71.35226098161374, 60.759949797119276, 23.790105671348808, 86.1558289516029, 70.30507038766265, 13.0818622860174, 42.02031353068701, 19.053569420967914, 91.00453868979592, 11.838351701567065, 15.766514837226545, 7.623875209890896, 79.67256375926864, 35.37717435913066, 40.024350000943755, 92.5017241638084, 14.574353329447796, 12.420226337156743, 10.385151970676432, 12.08379831974331, 55.58045074558105, 22.441278707233245, 16.507681978714757, 39.447619711725146, 66.81027192546287, 90.31866499858289, 12.986502334133, 55.15500110897398, 11.867929505009675, 51.685643983132465, 10.823265407558461, 11.929384104207696, 11.493258809144537, 14.26216039164288, 59.492762373640886, 13.898133195960138, 53.99901270038983, 10.089399362610807, 64.18442973139186, 7.339325975056963, 72.8603282386206, 22.718266560746702, 103.79646143719609, 110.42584272719164, 53.13801375856263, 24.09793785499535, 130.59230978302213, 30.972585778142864, 132.8706096576496, 11.133012022715919, 34.53871966030854, 21.497933911249426, 28.73265828208623, 20.820003512085563, 23.365059250938366, 15.149470344593272, 12.263950883032342, 94.83624779113501, 18.150651835674054, 25.461746357620157, 55.05771916109065, 16.539781771619314, 37.86442597758004, 22.642545180818395, 15.524731051854921, 100.28032892521773, 38.80313102587246, 12.68785233432345, 47.87485008633021, 23.79006518470606, 71.27096029566125, 59.91041766465297, 26.801291855737073, 18.095992138210992, 24.415461138011892, 11.378701913286037, 8.066181635495521, 23.353402890819083, 18.271124589016242, 93.65282124999908, 46.20968713614763, 40.10360485455157, 114.27115916727303, 123.8282813461792, 53.9685776415347, 33.707888113721786, 124.75693011863756, 9.125586451447242, 10.004063747409678, 115.22843777535577, 195.4330549872761, 10.306377986699337, 16.565519031555997, 56.17920461009419, 62.57260445805724, 87.64377892046234, 21.588242091992008, 57.03340660826603, 11.97343966560203, 58.14802189345923, 89.26972523373686, 16.89806068144621, 17.68525920400072, 35.68821666852933, 22.99235902334469, 14.49532151215596, 27.190489635020366, 15.308672873281234, 9.28521733104272, 6.167675663608236, 40.21724184350828, 58.847952469392965, 8.474296765116765, 72.35209839278046, 21.109960043481518, 105.41866938286425, 223.70286228254838, 9.879210394175994, 34.56795714017708, 14.65424446434028, 57.23032572823127, 21.1161204662076, 9.366450233347248, 30.00439289792358, 13.417449759348603, 120.38377617694744, 148.45594033237663, 9.724027945108185, 10.823264506990643, 12.135158938409816, 64.40838063243785, 13.060578475850498, 29.114017367292107, 99.5762462243792, 17.74884561300624, 79.27729452237426, 26.69961697981711, 98.38903984479953, 9.518859617742667, 6.932711525121302, 36.98880171695906, 27.398160529774568, 19.652204116580695, 21.873380260617992, 24.245746427441563, 46.495650651889726, 13.455807502444188, 24.796118952943182, 113.1913924091221, 13.745262901997664, 8.54223211152946, 18.98197006103805, 53.9957411809924, 30.418124628499374, 27.71820598772304, 26.611374249439, 18.765391758061, 128.10132128787563, 12.3146798370911, 40.66833036863664, 20.854481951335238, 20.76525938999798, 8.96848383458682, 26.779099325692847, 79.07465372985315, 131.2788339444019, 110.83456227328281, 163.91060854468003, 43.98798217658441, 42.04243205357038, 33.866792191399156, 25.150538020315512, 13.294563756712247, 13.718262752410192, 63.51068260986829, 74.13795913230756, 28.566333341182954, 14.59772768846134, 13.205693902427194, 23.110654804914777, 11.305698403158747, 52.01880373305371, 14.796980913520098, 11.390304084359663, 80.29389006176564, 35.043094288736064, 132.2817702250024, 8.440043963885847, 135.7385267259631, 84.71359196729512, 54.65143090225954, 39.148687943952766, 17.85519672977727, 15.301640782900614, 35.9414887310742, 9.795836565854028, 22.642760343801424, 9.607535012063561, 32.82349848266714, 33.18112083521433, 7.658183049310589, 66.87305560343523, 72.92991476380492, 43.325700089710686, 8.183335295558233, 117.09073131021316, 61.67897504503649, 5.27212209383443, 10.675812873588221, 47.90539556336227, 14.705050908414274, 17.33862551140153, 10.734989862748506, 53.58593643964911, 29.361103657893597, 53.89546592117069, 22.387419983568805, 8.71697193120229, 6.91242025591407, 34.75650055212488, 40.72368003590796, 8.48074030496328, 85.10027945699325, 12.262425005963275, 5.398042776320478, 95.25537120892118, 45.37647178221753, 36.128401502554595, 5.680200687652496, 28.06637997989971, 30.680721334278818, 25.67415257044872, 49.19994559169135, 5.6492750542899035, 24.50634245461745, 119.29676391478066, ...])
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);
([4383412.5, 4424153.024104283, 4599503.125, 4630755.47316403, 4659576.99695841, 4661293.748593525, 4787601.762730187, 4790425.088030814, 4790564.0625, 4790857.020623764, 4830032.9677309105, 4860655.616202976, 4861373.4375, 5039605.422700358, 5083563.817995524, 5313391.600058501, 6580721.778459584, 6885275.613055371, 6885454.6875, 6886067.75716023, 6887823.4375, 6890093.273045763, 6915719.2976211915, 6918320.499494589, 6918835.9375, 6918928.125, 6919370.8154875375, 6951208.587267481, 6960460.671138099, 6961642.1875, 6962304.063598096, 6963809.824490528, 7125428.313173762, 7346700.0, 7346952.574117401, 7352040.4577491535, 7439046.457377031, 7630562.337648009, 7630565.966448663, 7653300.914921903, 7697039.524623272, 7698006.585187028, 7699118.75, 7699530.778418833, 7699707.8125, 7700274.869817937, 7700419.540947897, 7703343.956899868, 7718448.4375, 7731033.818609564, 7732100.210784914, 7733030.427579885, 7735948.2639966365, 7742964.0625, 7751772.2078442015, 7752440.625, 7757330.868802202, 7757431.555363298, 7818226.118604041, 8062706.5002904255, 8143411.997743406, 8303211.145440493, 8303215.542039445, 8304838.1164197475, 8353493.982804089, 8407776.5625, 8417670.111536507, 8495505.461403763, 8514768.75, 8515778.437368745, 8516371.875, 8517834.375, 8520030.177165242, 8520312.50028625, 8533094.90655702, 8533364.132267833, 8560288.849159922, 8564781.25, 8567302.90763792, 8573863.033992702, 8574265.35343801, 8575682.664400095, 8575771.875, 8576568.75, 8576569.557564326, 8576734.375, 8577317.745797142, 8577383.164948419, 8577461.640365576, 8577475.0, 8577539.5797454, 8577865.961845405, 8577971.359716091, 8578086.605673624, 8578358.603662346, 8578461.891906574, 8578744.400503347, 8579366.084359013, 8579945.3125, 8579970.3125, 8580788.612828394, 8581448.371659594, 8585606.25, 8589495.744934088, 8833772.403412636, 8842629.246694487, 8871747.74827563, 8893418.605703238, 8915575.702071728, 8920390.625, 8937459.525544735, 8959297.79009422, 8971887.34595692, 8996746.474817002, 8999027.007785108, 8999996.72517168, 8999998.606305167, 9002110.9375, 9003395.3125, 9003912.99853216, 9004648.301008223, 9004779.598085238, 9004857.399914585, 9004998.662974203, 9005289.949885892, 9005576.5625, 9005635.9375, 9005816.356866326, 9005915.103024768, 9005918.702463686, 9007489.366405178, 9007887.202762472, 9008163.543323254, 9009792.428543271, 9041625.462616984, 9042173.25543869, 9042454.432010878, 9043398.20830611, 9043545.01370649, 9043726.5625, 9043764.436727414, 9044955.32899658, 9045026.630719693, 9045617.1875, 9046260.9375, 9048693.596394973, 9064345.3125, 9065459.573471725, 9069880.891376503, 9070043.9258699, 9070355.98122784, 9072138.905603295, 9073390.239171207, 9080492.72896618, 9090601.188022945, 9091810.85001925, 9092110.265001327, 9095025.0, 9098904.160244064, 9099062.415843382, 9102899.645014089, 9103501.084446546, 9104357.675368546, 9106185.9375, 9117325.26058202, 9126157.16721829, 9126999.832595477, 9127070.3125, 9138067.736375095, 9138571.479878213, 9138804.6875, 9139310.447785893, 9139320.049627569, 9139657.8125, 9139926.5625, 9140855.560457256, 9141216.692825036, 9141518.75, 9142218.75, 9142963.847702723, 9143233.740990018, 9143428.125, 9145453.093972076, 9145983.047643691, 9146153.305273322, 9146351.047253234, 9146737.06548615, 9149031.306927033, 9161357.8125, 9165565.625, 9167357.413476884, 9167408.93922236, 9167411.99376335, 9167478.243640449, 9167490.625, 9167965.870192721, 9168121.875, 9168148.4375, 9168240.47660692, 9168372.235471949, 9168434.523147747, 9168486.938356541, 9168796.977776427, 9169028.286115073, 9169183.534837022, 9169238.167997152, 9169484.971391276, 9169793.407569716, 9171797.266328895, 9171876.094540544, 9172118.111499123, 9172457.497332238, 9176474.76890707, 9176793.656566568, 9180404.6875, 9183240.992147023, 9183407.104507573, 9183667.68018047, 9185069.339019936, 9185518.75, 9185538.48830992, 9187782.17126208, 9187893.980210433, 9188264.525592351, 9188609.037831549, 9188617.40332254, 9189470.3125, 9189827.649641156, 9190000.0, 9190915.625, 9198969.020458668, 9200020.3125, 9202715.625, 9204614.012952762, 9221891.191202471, 9221906.239164446, 9222551.61718935, 9222787.239561245, 9222865.59662723, 9223418.75, 9223424.775131615, 9223809.940781007, 9225654.6875, 9225688.920816258, 9225698.4375, 9225987.17375243, 9226155.846851707, 9226167.1875, 9226242.674955592, 9227633.38185855, 9227682.8125, 9228895.23151751, 9228958.64762725, 9229959.375, 9231673.564138332, 9233156.22393225, 9234561.89552807, 9247558.207259689, 9248309.960153347, 9248429.6875, 9248437.5, 9248605.525672393, 9248631.232149562, 9249522.301993428, 9249534.375, 9249664.0625, 9250040.897633055, 9250053.125, 9250123.8283838, 9250258.394381905, 9250395.010764614, 9250396.875, 9250422.530403458, 9250429.48036206, 9250534.37076236, 9250679.6875, 9250723.4375, 9250872.891940182, 9251015.560192756, 9251248.4375, 9251380.909746712, 9251876.55299108, 9252214.769044448, 9252335.463082034, 9252425.939172035, 9252432.8125, 9252554.6875, 9252561.45682316, 9252879.6875, 9253170.3125, 9253176.118708136, 9255646.139942033, 9255848.82149725, 9256620.3125, 9258589.0625, 9260057.98792105, 9265146.905236684, 9266146.3421287, 9266868.498432016, 9266921.875, 9267073.019663284, 9268581.25, 9282505.579799598, 9282576.731510159, 9284967.070156265, 9289003.125, 9290635.467102831, 9291195.3125, 9291315.23964107, 9291757.8125, 9291773.986962803, 9291815.639349613, 9292793.6096465, 9292872.195544781, 9294374.937648635, 9294424.730492212, 9294873.249353511, 9294892.1875, 9294918.427560233, 9295755.85111608, 9295884.93503582, 9296009.139049776, 9296102.871278966, 9296151.501631953, 9296965.58909384, 9298069.451248057, 9299417.754579877, 9301107.8125, 9303351.510093216, 9309879.1924755, 9310302.653179707, 9311152.984081844, 9311827.333871638, 9317664.0625, 9317674.309501875, 9317802.461598951, 9322017.092407838, 9331514.051114922, 9331942.97716182, 9332013.578015747, 9333884.375, 9334531.236183474, 9336896.091692489, 9349777.624996204, 9351887.456186064, 9352248.4375, 9355789.07535579, 9356105.409066819, 9356998.289663412, 9357294.07186214, 9370237.5, 9370983.905065687, 9371725.0, 9373840.592552, 9381426.328121362, 9383637.006060997, 9399589.0625, 9399853.582572944, 9401007.355138684, 9403372.939446326, 9404021.956533227, 9404766.538459962, 9414668.703448372, 9414771.875, 9415007.231294693, 9415041.965140674, 9415239.244833123, 9415373.416752001, 9415391.935352191, 9418168.34481272, 9418668.328835435, 9418854.817269435, 9419259.375, 9421293.27113994, 9423744.12569811, 9425435.9375, 9425562.218044864, 9425592.805399876, 9426421.630726127, 9427816.717922747, 9428286.7894879, 9429731.25, 9429873.733982729, 9430006.25, 9445650.0, 9445667.641671814, 9453255.25824561, 9470142.1875, 9494835.053178616, 9496033.495589994, 9505743.20065029, 9506118.735799713, 9507574.16333835, 9511591.684220556, 9515131.25, 9521235.076199248, 9531975.0, 9537329.103419213, 9537450.186013315, 9538245.3125, 9538283.600381808, 9539918.432056097, 9562291.087908866, 9565753.125, 9566110.172269275, 9567432.828508943, 9571287.5, 9571783.91776073, 9572348.539085325, 9573036.749327844, 9575136.437820803, 9575251.457839819, 9575281.25, 9575696.64641321, 9576018.75, 9580812.5, 9583198.56150096, 9583854.6875, 9584268.41122392, 9584509.096069297, 9584616.10042936, 9584810.836883385, 9584872.347416028, 9584921.181266207, 9585349.95325198, 9585553.68211574, 9585852.91415568, 9585870.3125, 9586470.31484751, 9586553.72177747, 9586558.517071066, 9586926.166696457, 9587331.319490667, 9588245.3125, 9588399.355795879, 9588556.25, 9589008.631295972, 9589328.165857008, 9589359.375, 9590071.667899309, 9590378.125, 9590442.446743215, 9590779.30832262, 9591315.625, 9591362.395680908, 9591876.292711735, 9597187.441792177, 9598359.366151545, 9598460.339297341, 9598495.131842565, 9599781.25, 9600871.029813768, 9600992.1875, 9601043.58153722, 9601309.375, 9604205.500754738, 9605286.318558492, 9613052.406756122, 9613467.440598702, 9613595.009110468, 9614712.976579763, 9616240.500349067, 9617938.729361681, 9620882.270408465, 9620888.334733805, 9621309.510730112, 9622862.93272888, 9623196.275125982, 9623498.4375, 9623516.374217398, 9625337.28386483, 9629196.410608267, 9629241.674750729, 9632404.61137145, 9636443.75, 9636467.79272368, 9643066.76921409, 9643562.1611992, 9644934.466148643, 9645755.325273061, 9645809.045482151, 9646025.483772064, 9646159.375, 9646400.635819646, 9646612.137698064, 9647421.260900062, 9649052.923467755, 9649580.040776018, 9651751.5625, 9651873.4375, 9653193.199168755, 9653699.933357088, 9656996.221724972, 9657951.292675203, 9700285.940345887, 9702329.032271598, 9709743.801274765, 9717274.86704258, 9717654.6875, 9724689.0625, 9726366.0311182, 9729823.634778256, 9731898.4375, 9733752.338019261, 9734254.6875, 9734276.538872119, 9734899.659028178, 9735640.625, 9740536.635581328, 9743221.595311979, 9745112.5, 9749795.139542386, 9756273.395948768, 9756699.08200969, 9757757.595931804, 9757975.651723685, 9758040.265667666, 9758845.099832453, 9761099.087315692, 9762158.991067113, 9764235.591462549, 9764657.968525695, 9764685.19717135, 9765560.395892115, 9765910.493048452, 9765956.25, 9766016.895158496, 9766041.076149305, 9767580.797789495, 9770481.280644778, 9774869.01060959, 9779514.242742417, 9781821.168723589, 9789513.444012746, 9790023.90259135, 9790506.25, 9791603.125, 9791950.3208606, 9792533.366521275, 9792676.5625, 9792746.875, 9794213.819910225, 9794513.669525538, 9794616.468731496, 9794679.152079003, 9794698.4375, 9795285.574558979, 9795374.046763746, 9795526.5625, 9795607.8125, 9795644.413233709, 9795656.6100634, 9795659.522571456, 9795758.792749971, 9796037.5, 9796104.15522365, 9796201.28538323, 9796279.808606252, 9796741.819310185, 9798243.75, 9798621.875, 9799205.26838471, 9799438.631454024, 9799810.488414671, 9799908.617721995, 9800023.388931338, 9800840.625, 9800844.921005324, 9802168.75, 9803569.290266762, 9806727.128808862, 9807954.6875, 9814227.754300594, 9818148.4375, 9818185.644072736, 9818238.91463127, 9819224.698169982, 9819870.118122056, 9820305.556335488, 9821877.697298823, 9824204.568426695, 9825401.70369891, 9847760.9375, 9850675.238682514, 9852379.19652429, 9852542.17226007, 9853676.201163277, 9854196.631600896, 9854393.75, 9854959.116179131, 9855005.169302484, 9855052.049444918, 9855548.387926228, 9855720.77711559, 9855841.688569471, 9855951.82659441, 9857869.588750098, 9858051.373971025, 9858108.998349017, 9858426.5625, 9858854.848102331, 9859932.8125, 9860612.204920702, 9861181.25, 9861217.1875, 9861409.362858355, 9862033.458155338, 9862270.179611687, 9862440.625, 9862801.032789089, 9864632.762781426, 9866271.017370177, 9866399.633847803, 9868193.75, 9871800.63378831, 9875946.247992229, 9876571.255102754, 9879949.942522323, 9880420.509451786, 9885698.407638533, 9886198.204067757, 9886525.462761048, 9886623.4375, 9886906.43037889, 9887191.335951356, 9887393.291494783, 9887491.497787885, 9887846.119902078, 9888117.1875, 9888300.584698135, 9888840.921022046, 9889142.1875, 9889214.460923955, 9889250.0, 9889897.375880562, 9890276.5625, 9892956.25, 9894296.875, 9894821.875, 9894826.403490005, 9897382.19303707, 9897584.243150836, 9899623.4375, 9904171.455601081, 9904656.800031021, 9905465.885417478, 9906861.548394127, 9907160.747292612, 9907175.906787109, 9910392.068425687, 9910826.607827066, 9911031.25, 9919718.386769721, 9920768.398956753, 9927699.555131346, 9935371.875, 9943574.802004203, 9943814.0625, 9943910.148631448, 9944113.532743981, 9944372.778356707, 9944548.034160458, 9945079.6875, 9945577.61131064, 9945818.521682898, 9946507.419330776, 9946665.530329065, 9949219.581281964, 9949845.3125, 9950787.5, 9950827.298513936, 9951044.454498656, 9951103.39834752, 9951105.969653655, 9951728.125, 9951879.032688746, 9951891.05153027, 9952312.5, 9952338.20089771, 9952402.277157769, 9952506.693159133, 9952727.084968265, 9952795.757244473, 9953236.500509286, 9953431.25, 9953548.4375, 9955929.6875, 9956355.916336996, 9956515.328338781, 9956616.211648932, 9956711.954327604, 9960362.313707106, 9966337.5, 9966969.430796461, 9968899.788847983, 9972006.25, 9973081.551757963, 9973090.633440452, 9973929.343364246, 9984398.303816132, 9992752.470452242, 9992783.251599178, 9992907.8125, 9993239.118789393, 9993585.304419817, 9994299.580417268, 9994581.25, 9994782.8125, 9994978.82949133, 9995022.930442533, 9995146.875, 9995213.874686886, 9995265.625, 9995906.220140763, 9996142.1875, 9996251.705754947, 9996257.06799858, 9996297.524852488, 9996326.59010562, 9997618.243794903, 9997643.499688597, 9998048.748169469, 9998302.713179547, 9999996.875, 10000326.38390224, 10000908.822859356, 10001498.814062227, 10002490.625, 10002932.056128072, 10003033.17106525, 10006849.845824867, 10007316.520147173, 10007349.700559046, 10007764.002525134, 10008420.386258893, 10008849.703585139, 10009988.761386918, 10011159.404210838, 10011426.081962794, 10013433.621585865, 10019073.49224785, 10022212.5, 10023257.872849772, 10023276.170093544, 10023298.980172087, 10023514.00740276, 10023552.881165683, 10023792.1875, 10024156.256410988, 10024209.790741412, 10024411.90357082, 10024691.384887172, 10024992.1875, 10025332.298372658, 10025973.4375, 10026182.326049874, 10026353.475298807, 10029774.045474764, 10031352.00034725, 10032527.936285706, 10032731.336447727, 10033054.029987812, 10033149.528355636, 10033712.5, 10033857.8125, 10033954.002797712, 10034980.602447934, 10035037.5, 10037964.53250773, 10038841.59585224, 10039282.8125, 10039758.541468078, 10040576.557202984, 10041367.599080706, 10041626.763326902, 10041679.744201522, 10042004.6875, 10042224.423871292, 10042935.704793192, 10044184.838099858, 10044563.962717773, 10045763.194699286, 10052796.341617083, 10055794.286191896, 10057752.91504561, 10057788.02651143, 10058384.733029667, 10058453.125, 10061160.9375, 10062114.82168439, 10062769.683656568, 10062990.625, 10063164.489527507, 10063195.1933691, 10063657.608586835, 10063661.396236967, 10063767.4094235, 10063779.49706589, 10064650.0, 10064804.383887358, 10066418.75, 10066444.528334165, 10066834.375, 10067111.706195898, 10083135.9375, 10083254.302131273, 10096353.281646486, 10104034.375, 10109804.464861779, 10131436.127765099, 10132804.881136496, 10132807.53978334, 10134226.5625, 10135698.440891465, 10137793.75, 10139425.168980125, 10140571.875, 10144271.304769957, 10144301.231694343, 10145436.413763098, 10146320.935243618, 10146892.1875, 10148113.790377095, 10148424.82309949, 10148837.5, 10151531.062683886, 10151750.491050808, 10151791.16574111, 10152106.395038728, 10152242.1875, 10153119.494577106, 10153507.118945224, 10154010.9375, 10154871.564146262, 10154896.875, 10154898.4375, 10154967.163870974, 10155341.262879144, 10155673.893472068, 10155878.279855693, 10156513.621101363, 10157126.230743859, 10157711.602331322, 10164899.48603243, 10165092.174901607, 10165909.375, 10166138.93315352, 10166260.9375, 10166331.25, 10166337.5, 10167026.5625, 10168346.621129634, 10168444.451108564, 10168542.037514266, 10168593.75, 10168615.027248517, 10168676.506447624, 10168703.500324644, 10168850.0, 10168920.3125, 10168984.720555471, 10169131.25, 10169291.106154785, 10169507.8125, 10169695.3125, 10169800.433371078, 10169875.098564638, 10169917.073782306, 10169927.42636971, 10169968.6277959, 10169984.303755539, 10170046.968106177, 10170128.069868399, 10170367.919471208, 10170440.625, 10170528.125, 10170534.713876242, 10170565.625, 10170590.085714698, 10170650.0, 10170651.543299392, 10170653.708836269, 10170721.744952032, 10170731.172534332, 10170831.25, 10170888.523860548, 10170970.353659723, 10171031.246018337, 10171062.870169828, 10171219.78408882, 10171237.009703455, 10171344.180500237, 10171609.171086203, 10171739.62377487, 10171759.375, 10171996.275120864, 10172165.933809888, 10172284.673708078, 10172329.972262932, 10173858.207499921, 10173887.476650337, 10174204.699896313, 10174479.901176952, 10174528.917305967, 10174553.125, 10174928.06538209, 10175285.230777828, 10175351.099794634, 10176226.300288638, 10176697.670699604, 10177002.671705393, 10177806.609193368, 10179886.17014357, 10180823.083747867, 10185770.766560324, 10186106.881300114, 10192285.9375, 10193130.901607424, 10193880.093153687, 10210859.682153443, 10211192.924868152, 10212641.895540329, 10215127.208910326, 10215595.3125, 10216187.921690516, 10216835.361304972, 10217716.724664424, 10219019.446746584, 10219021.657439793, 10219520.291369742, 10219710.611461299, 10220346.688029815, 10224018.637769686, 10226440.105475726, 10233771.730001766, 10234695.11471516, 10235068.238464536, 10235101.199722383, 10235203.125, 10235590.625, 10235851.024232037, 10236053.031783061, 10236074.787292719, 10236218.398181476, 10236406.360965248, 10237006.25, 10237134.33655735, 10237211.099247372, 10237221.39641005, 10237222.945666945, 10237384.425786851, 10237604.96685459, 10237854.6875, 10237950.833728386, 10238066.533710517, 10238138.16788906, 10238314.662181573, 10238416.15456816, 10238434.282883901, 10238839.565038027, 10238929.295510288, 10238961.24696077, 10239215.625, 10239636.850564519, 10239875.149403026, 10239929.6875, 10240148.4375, 10240332.8125, 10240510.737028323, 10241783.8910627, 10241795.3125, 10241804.061084315, 10242223.127783826, 10242543.75, 10242654.624047562, 10242848.950464308, 10242901.295831455, 10243418.75, 10243579.6875, 10243832.8125, 10244148.068989642, 10244235.108918179, 10244350.70278416, 10245248.343339255, 10245835.9375, 10246533.162463335, 10246723.953627354, 10248370.934527054, 10248453.113714574, 10248675.878079118, 10248804.6875, 10248865.625, 10249760.511965323, 10250374.976411816, 10250407.069000296, 10256668.587003699, 10257818.137280438, 10258695.932240115, 10264066.944437267, 10266190.625, ...], [56.53938761166684, 26.677417633201085, 56.606666617604354, 12.626829427651645, 20.03284234053468, 92.1303604387883, 28.253339113396365, 7.144786162283835, 47.3731543420738, 12.591943689433405, 7.660363826483249, 12.973959313725812, 119.22638501896267, 86.66448214260751, 106.64757689717104, 66.35258632023596, 26.75133166959498, 12.243369993527434, 31.148170777939363, 17.67177854030805, 100.81695642970917, 62.492511477686975, 41.855251703220745, 11.433136423448998, 51.378067278982556, 46.617994894892234, 80.16997863669165, 16.717076519999488, 57.46854356014319, 96.60042436519205, 12.999051156248354, 6.856689067530647, 63.88644291266048, 40.26546646094923, 13.18881785094221, 25.608706310653712, 57.285131469627714, 32.38139168196634, 16.42500353019921, 27.33020960789407, 60.63918108976708, 37.38848900586814, 44.21752636113902, 68.17722102365056, 86.85836348679022, 26.192782603283415, 24.520886454909018, 6.805527655516849, 63.865728539811066, 7.4136775738759395, 69.46636509037819, 8.720982736977886, 14.319013402794004, 45.967255487788655, 16.382539938849117, 85.56296877007043, 43.01848079147661, 16.24889556166832, 22.071640471835085, 32.97269608557538, 26.771177851418578, 5.7201209414915395, 14.634457813610991, 92.33302165193837, 5.831408956307563, 78.97917760746799, 56.59031236012944, 75.89292780112487, 73.31427823685125, 11.653780532732663, 89.88114663064567, 80.42792997183632, 18.230604966731743, 14.942600582653556, 98.1917816233965, 56.87352059477689, 5.693313681471024, 50.6114049063382, 72.19576301728196, 12.079327426116986, 13.998482325446915, 25.906506806237118, 104.86029034801382, 60.109330501826925, 19.278280845429176, 63.78065896202092, 9.852746223859842, 80.54166107663852, 82.73089206847527, 33.17862363557593, 19.939018359712282, 11.698467153155608, 41.46778550667171, 26.18325727906969, 51.212440105492526, 20.478573092300117, 9.949503903423702, 6.561594230185889, 52.27780686272103, 46.405709445687116, 8.978075840671242, 27.286548507292316, 107.58762873600776, 16.893051983680813, 17.42774081027694, 27.52611142112656, 13.377935450386707, 8.211716877995753, 12.436586709829854, 38.33152379761458, 5.5404318362119325, 12.93968699604447, 25.813200941497158, 22.550177884546937, 7.2436388918408285, 13.657015304346455, 11.402225604877643, 86.25907488351936, 47.2785336097533, 9.791793217388573, 65.97881361771404, 60.750807610418796, 22.411801228559213, 15.876695656629195, 12.870740170449887, 85.81001971419278, 88.23112438483803, 21.885888593620866, 8.028576510374911, 27.27877886945356, 35.33197835828458, 7.499157028224494, 5.674494144978439, 55.46888874019756, 5.8490217261009425, 10.854578045418895, 10.750539215778453, 9.144844873434396, 29.716903180825142, 42.111673355668124, 15.435767554122265, 56.70270406183646, 9.389760700076435, 61.65976145126779, 80.07296297680077, 25.820050665162405, 87.65816545734317, 13.568182853348773, 7.478482971985426, 9.484674164764941, 15.99986621835781, 25.768686254941354, 10.573817409947114, 6.8766450586767665, 31.166614474494928, 89.48175255865519, 19.929189413205307, 94.84140939506375, 73.34925216947701, 26.964195507003605, 6.223366604155347, 8.957444523208265, 14.443379225227343, 50.321111279419554, 11.560999786627006, 33.180715865552145, 17.63891882772936, 42.0740904518548, 7.814600420991213, 22.607257623426836, 54.26627122480173, 57.93470838643003, 5.332993980363993, 49.47611755704072, 40.79321083054327, 8.80929883500929, 12.702698015017571, 33.24143313176359, 47.88209591871756, 24.903723244929274, 80.11288113277342, 36.140321299241464, 16.712863407450236, 90.57487368811921, 9.488632552846477, 17.566436170956752, 28.746850204231915, 6.094039201094509, 77.45319879453811, 75.26620920694313, 22.56322736437739, 60.075780568665856, 21.431111112627907, 15.413851889936556, 41.64387570783944, 9.547705332435996, 93.71383035746598, 57.26026494833991, 25.90188503199383, 16.519955663212976, 8.366505519593877, 13.160331257638914, 6.5033239349663035, 8.37365583209082, 15.719473232242198, 24.21515809389633, 27.44288302820543, 9.057723314024356, 11.799923337650403, 10.467376113232605, 7.387549833990105, 37.639199708929766, 14.12823832455806, 8.237778542651734, 48.435861739268965, 11.754550142636294, 61.99835224076563, 130.5297411898773, 5.858887252053201, 35.43156033154564, 13.127347949654276, 44.96135809967386, 7.183311087247542, 129.68701782599976, 23.287299585352823, 15.833297741555565, 41.61341097104158, 21.742481863981887, 74.71876786436972, 61.43280722634753, 9.571063662179997, 41.37941981722983, 29.91533366535508, 85.8044010881378, 29.064939071818678, 9.322257876404283, 79.79474254235662, 37.68607246024625, 81.82817084034195, 58.25226438825748, 14.148505978039996, 17.64844053831581, 63.30947069016986, 10.913239640478517, 30.157685711818917, 23.421157072297973, 22.516901021556535, 70.7192923478734, 5.306385697696575, 12.151856720385355, 40.606640819982516, 43.01878217356263, 26.673859858196224, 44.84484329950829, 143.6727298621335, 97.39181760062064, 13.048747892211955, 15.190103991225442, 133.68558976676192, 34.69365752339348, 57.64352597005518, 10.157309479994229, 141.15599271465405, 16.164987135604502, 99.0707651324503, 37.62622712808021, 25.754759456458853, 48.67203706788844, 24.0264018677392, 17.74584400418456, 72.59939381842062, 87.94225043198973, 28.269743872073832, 7.529998994972391, 38.69298058244337, 63.33265039894927, 47.94085073013604, 74.97712018689349, 53.70999670237773, 46.68398387174742, 23.24982812183631, 69.88081664476653, 147.97907807346706, 21.752147817230465, 20.345154139075067, 55.160462623204815, 59.1443603455302, 47.085010828326475, 55.59832595747055, 30.546875570716914, 93.13583663454122, 132.82668582936924, 7.748289584934385, 39.2311893246446, 119.51818083960072, 15.655123625123563, 15.058023683299607, 105.4593757200355, 9.127376786535986, 77.48520000353852, 10.531898600570823, 35.98964637074633, 29.01249337380651, 15.627357471734904, 8.225483713094006, 38.20835578191325, 5.232167848070695, 53.1019474943998, 13.717389514022138, 68.5086303426614, 11.025543780764966, 24.51505523198538, 48.17680163977752, 93.95599924373806, 11.03162641751231, 14.004985809190496, 8.18952676652669, 52.79168556036793, 7.490636387159549, 65.35219295111624, 12.132605839462279, 49.8515140299489, 24.360456617929486, 7.105542697005426, 69.95719840892818, 12.434755595814654, 13.541973379737339, 29.06308338129886, 18.69690142355339, 54.74885076152905, 21.77889041914701, 7.553052945204448, 34.37131919101533, 29.319676070765706, 6.951046488984165, 50.48267915341437, 60.33921544853838, 28.30156877618172, 10.102133203544703, 13.368741836620181, 41.12220547185058, 59.22048067800965, 8.74661436697144, 78.48876078843169, 35.19686402035036, 65.34871760869603, 14.990737127666554, 12.480169544092753, 14.406454721168773, 6.30873819490794, 48.976753620054296, 7.003166732038329, 46.293023704861035, 40.20566302843428, 10.78010863318277, 5.276069826318852, 50.051354680688924, 5.6398698509530885, 22.91043842615652, 10.429277816269972, 15.261657322948675, 10.245064916342686, 27.63609817012075, 29.68273638150051, 22.70992294936034, 9.150206237715159, 37.49025177746986, 28.1207053718986, 33.00264928260705, 148.97157770855577, 49.82639228620577, 8.356414813065104, 137.91061671043968, 6.414557350553309, 6.840903571162934, 54.73147930485367, 52.80641466393986, 5.363550272460176, 6.236821668955938, 10.465315921155513, 10.173217066944954, 79.11946979648903, 16.206339523779736, 67.42413152848533, 86.55960986670547, 39.51722060846561, 17.67832301024383, 61.02184769098284, 72.54924631791287, 18.392322681330583, 21.014542150244075, 92.90882627261713, 50.42900145600497, 121.12311468470406, 120.53849733915887, 10.004162470056846, 31.128431808070825, 52.051416005833445, 9.493801578820092, 43.2593137138889, 18.928381315725744, 10.664626705641338, 6.5621900813604395, 49.98368693948398, 5.370004154560348, 5.399086391819069, 57.33453181772506, 70.66009234854988, 155.2773473280777, 12.688223873827258, 47.80745014929121, 67.02682219142034, 37.67214207442496, 24.707920587937117, 98.36858917812413, 30.969071636063454, 43.065400595527265, 33.35508652895035, 23.26775324595096, 33.90161505021882, 8.555081584530326, 23.391695006209204, 5.737498256374694, 27.911451081312784, 7.109217008140597, 50.02961071826984, 14.1944784454332, 30.05155746888738, 32.504098601527105, 12.20903016543724, 20.898436777232853, 13.620771414948596, 9.390860878470097, 60.82384412193744, 6.023575269705489, 47.25002144124233, 19.36374810186452, 8.308302018885716, 108.27716220604326, 10.818722963274043, 58.17726681209909, 5.2524593745202734, 34.648575533467906, 32.98341282991498, 26.61966064474519, 94.3236113278995, 27.42360411114185, 12.213686710472025, 13.06490492595183, 25.405077817604976, 53.392226225657524, 10.02176024084793, 74.02118622076794, 5.126918077737223, 51.93524915991995, 90.39249760001462, 16.624405528798476, 10.164303768897506, 16.002737564823942, 58.019321607843196, 26.83763250624837, 40.8490778486557, 39.65622052089343, 5.507337095629318, 10.153363654907977, 15.485380151010888, 6.323463720762927, 47.536221544493486, 65.86699164387772, 17.62189886822371, 142.25676308199985, 21.855821440212555, 25.366278663523296, 27.104362521338007, 41.420362914926464, 17.889609838361697, 31.890694819657785, 23.267453011713318, 65.7114767656642, 29.26676067713212, 7.03744420575189, 32.65769264728954, 51.51174757437024, 29.883412670231486, 28.70882175985242, 5.321310063048104, 42.64159853710765, 11.728771661779325, 96.15697510557318, 59.53846334883505, 21.000587711231557, 11.02511325468349, 20.08921388962052, 14.0039816059811, 120.93700028437107, 64.84090340312329, 75.86471295838777, 26.14794403998503, 30.088738573679958, 95.47331024237695, 11.82794752777706, 35.924273965128236, 73.29277985109073, 10.08624374368367, 34.50128449101422, 28.065622465600523, 79.71174557130148, 106.62295886692328, 56.09249700259687, 24.013713454797628, 28.54923565830209, 25.390336367205197, 27.72845976134689, 15.485272621693408, 24.878366870077702, 66.19450712215173, 23.021327779739284, 55.095480585512355, 31.82548189783204, 23.279394901508148, 20.896274971320135, 15.571535873096481, 8.775127476106897, 15.40766709215931, 54.8348316058308, 111.37300780382148, 105.44688710677076, 75.81845743467035, 48.45557719411602, 15.05961374765212, 11.56104855435377, 7.1696518990238465, 83.30852064956724, 15.908227154355757, 93.44807377297863, 125.74873722173415, 175.949731075619, 95.51060690619126, 23.31858755425828, 108.70860363566644, 40.42738756000946, 57.17978433299879, 48.65415412896279, 47.78342487923739, 21.146887174711395, 102.31299270938423, 5.908409586872017, 52.98721129510591, 59.95007512234413, 57.021696238046495, 29.40673342225022, 64.44070830066934, 15.535485933844814, 41.68281264686619, 60.5053925952987, 21.177057501227107, 7.505992786436611, 15.424115720540712, 99.9514195947909, 82.36894049809449, 70.08358341683403, 18.389737109049154, 5.327365134262181, 5.232747783874862, 19.260579243988417, 99.1417058885727, 62.775104468093126, 9.020946928584438, 65.77124806521473, 8.594554155558294, 5.218093896985946, 106.761293965985, 6.4305096414298015, 28.570974207435988, 23.83506391137164, 52.963951568531265, 7.497600922311262, 6.0681162115289595, 39.697757063831276, 22.245967962129612, 13.417612970763958, 15.508465140024118, 42.76916251136518, 8.416962788558434, 44.88783189756101, 9.318550111942033, 13.265703058384723, 40.85743548665154, 43.00224570117275, 63.73784541124269, 123.70842904635268, 73.97940611220926, 27.580629361682703, 17.27505077463449, 13.328976018751634, 8.431353356432476, 6.627134011807118, 36.26179543950162, 8.096959046330841, 80.04831124907423, 32.33834288511146, 42.90293360880201, 23.813800960964908, 33.743090634273145, 49.7572105498007, 67.80268126565299, 5.0264246657066405, 14.4580898462561, 35.32967687364303, 10.389708482494282, 5.5306723979057635, 26.20578467071788, 37.856609074265755, 55.242518162139966, 18.069794374432824, 20.31325767179707, 6.394117682677631, 55.13404560803784, 6.518414803005371, 39.312672997303345, 14.120642955714272, 29.666737972994795, 48.611947893176975, 11.421862562363813, 18.58137950226216, 11.961870855874501, 6.01919644694305, 12.67777481568395, 82.37231941331818, 12.183739798075056, 9.594911044528576, 63.78925813377378, 13.45794808425146, 50.09435548590025, 17.269760344385347, 33.131586193824624, 69.67851552614971, 40.53773536557658, 98.0583147686493, 21.212783620063178, 20.378793585308227, 6.4666194559672805, 111.44281050242441, 66.86325852710252, 5.560384349326205, 11.560708742965849, 17.925001677135615, 34.62742872919465, 32.19661499815366, 125.77573104783825, 15.117136054401742, 42.81435753996487, 13.716912673723025, 56.76598311512034, 13.479617215629546, 86.06006934450815, 64.96822816117928, 131.26124025812157, 25.405856623162236, 8.024985322986353, 129.3733137811607, 22.5147589836032, 106.78811723991188, 26.665555380080708, 148.5699314762023, 32.37962300587062, 22.724700046636652, 12.734466431156875, 61.88263872297989, 75.20156740892172, 25.980841685611217, 55.0637248061144, 16.096889366445726, 5.282505397957318, 58.339429714982145, 15.595820235660915, 36.08511356932623, 29.6928855406683, 18.512575566140864, 12.464670258267976, 11.899068619185066, 24.723649750534967, 47.97868183290288, 12.138735562079722, 58.50057731902126, 156.50043652359759, 75.94329512798268, 58.89502347904612, 60.00480878886897, 12.187813152820434, 100.28378021866465, 14.276006578917075, 64.63221596527329, 18.37698293011916, 74.62360845501973, 58.134974075984005, 6.30609126625208, 5.245381584972985, 22.836893641820872, 14.455328462474117, 20.078517756283382, 19.07077992323792, 128.24609031062238, 7.623724267374488, 42.832043982908466, 5.903680069659406, 39.0839923509497, 66.94782405488293, 12.441970549018306, 22.419787491538756, 47.15530208748659, 7.072941236246087, 44.497050746613965, 27.9473054710803, 110.63991645556867, 74.20919830248052, 6.177505495759935, 25.520816541395327, 7.613252773822794, 21.150652153747263, 24.406895954141792, 56.205354631785596, 29.02464005232241, 41.52323398545876, 9.18482032785578, 6.403886818959319, 16.60144027347604, 60.074696082903586, 51.78995121787489, 5.477369941411861, 10.894979335913693, 10.223476832776246, 27.10572844105163, 14.717736794467509, 11.244987659314535, 13.268970922147837, 29.48754307783083, 21.873039613258072, 128.32102324493093, 5.184642939900836, 15.15437097833843, 29.547742933606344, 56.68591290794218, 144.0743442709277, 42.8887491501939, 233.63943407951376, 34.169511277029784, 43.45156184226525, 9.336829915357326, 5.175158355151423, 10.307975566991294, 66.3912315405809, 81.01865630897638, 24.204930062451552, 82.36973174352342, 21.629340816459717, 16.468993040494418, 24.860552555417282, 36.60206065411707, 25.284569359861777, 9.405585174158054, 6.638974478904221, 13.404382173297677, 54.532077321521584, 71.35226098161374, 60.759949797119276, 23.790105671348808, 86.1558289516029, 70.30507038766265, 13.0818622860174, 42.02031353068701, 19.053569420967914, 91.00453868979592, 11.838351701567065, 15.766514837226545, 7.623875209890896, 79.67256375926864, 35.37717435913066, 40.024350000943755, 92.5017241638084, 14.574353329447796, 12.420226337156743, 10.385151970676432, 12.08379831974331, 55.58045074558105, 22.441278707233245, 16.507681978714757, 39.447619711725146, 66.81027192546287, 90.31866499858289, 12.986502334133, 55.15500110897398, 11.867929505009675, 51.685643983132465, 10.823265407558461, 11.929384104207696, 11.493258809144537, 14.26216039164288, 59.492762373640886, 13.898133195960138, 53.99901270038983, 10.089399362610807, 64.18442973139186, 7.339325975056963, 72.8603282386206, 22.718266560746702, 103.79646143719609, 110.42584272719164, 53.13801375856263, 24.09793785499535, 130.59230978302213, 30.972585778142864, 132.8706096576496, 11.133012022715919, 34.53871966030854, 21.497933911249426, 28.73265828208623, 20.820003512085563, 23.365059250938366, 15.149470344593272, 12.263950883032342, 94.83624779113501, 18.150651835674054, 25.461746357620157, 55.05771916109065, 16.539781771619314, 37.86442597758004, 22.642545180818395, 15.524731051854921, 100.28032892521773, 38.80313102587246, 12.68785233432345, 47.87485008633021, 23.79006518470606, 71.27096029566125, 59.91041766465297, 26.801291855737073, 18.095992138210992, 24.415461138011892, 11.378701913286037, 8.066181635495521, 23.353402890819083, 18.271124589016242, 93.65282124999908, 46.20968713614763, 40.10360485455157, 114.27115916727303, 123.8282813461792, 53.9685776415347, 33.707888113721786, 124.75693011863756, 9.125586451447242, 10.004063747409678, 115.22843777535577, 195.4330549872761, 10.306377986699337, 16.565519031555997, 56.17920461009419, 62.57260445805724, 87.64377892046234, 21.588242091992008, 57.03340660826603, 11.97343966560203, 58.14802189345923, 89.26972523373686, 16.89806068144621, 17.68525920400072, 35.68821666852933, 22.99235902334469, 14.49532151215596, 27.190489635020366, 15.308672873281234, 9.28521733104272, 6.167675663608236, 40.21724184350828, 58.847952469392965, 8.474296765116765, 72.35209839278046, 21.109960043481518, 105.41866938286425, 223.70286228254838, 9.879210394175994, 34.56795714017708, 14.65424446434028, 57.23032572823127, 21.1161204662076, 9.366450233347248, 30.00439289792358, 13.417449759348603, 120.38377617694744, 148.45594033237663, 9.724027945108185, 10.823264506990643, 12.135158938409816, 64.40838063243785, 13.060578475850498, 29.114017367292107, 99.5762462243792, 17.74884561300624, 79.27729452237426, 26.69961697981711, 98.38903984479953, 9.518859617742667, 6.932711525121302, 36.98880171695906, 27.398160529774568, 19.652204116580695, 21.873380260617992, 24.245746427441563, 46.495650651889726, 13.455807502444188, 24.796118952943182, 113.1913924091221, 13.745262901997664, 8.54223211152946, 18.98197006103805, 53.9957411809924, 30.418124628499374, 27.71820598772304, 26.611374249439, 18.765391758061, 128.10132128787563, 12.3146798370911, 40.66833036863664, 20.854481951335238, 20.76525938999798, 8.96848383458682, 26.779099325692847, 79.07465372985315, 131.2788339444019, 110.83456227328281, 163.91060854468003, 43.98798217658441, 42.04243205357038, 33.866792191399156, 25.150538020315512, 13.294563756712247, 13.718262752410192, 63.51068260986829, 74.13795913230756, 28.566333341182954, 14.59772768846134, 13.205693902427194, 23.110654804914777, 11.305698403158747, 52.01880373305371, 14.796980913520098, 11.390304084359663, 80.29389006176564, 35.043094288736064, 132.2817702250024, 8.440043963885847, 135.7385267259631, 84.71359196729512, 54.65143090225954, 39.148687943952766, 17.85519672977727, 15.301640782900614, 35.9414887310742, 9.795836565854028, 22.642760343801424, 9.607535012063561, 32.82349848266714, 33.18112083521433, 7.658183049310589, 66.87305560343523, 72.92991476380492, 43.325700089710686, 8.183335295558233, 117.09073131021316, 61.67897504503649, 5.27212209383443, 10.675812873588221, 47.90539556336227, 14.705050908414274, 17.33862551140153, 10.734989862748506, 53.58593643964911, 29.361103657893597, 53.89546592117069, 22.387419983568805, 8.71697193120229, 6.91242025591407, 34.75650055212488, 40.72368003590796, 8.48074030496328, 85.10027945699325, 12.262425005963275, 5.398042776320478, 95.25537120892118, 45.37647178221753, 36.128401502554595, 5.680200687652496, 28.06637997989971, 30.680721334278818, 25.67415257044872, 49.19994559169135, 5.6492750542899035, 24.50634245461745, 119.29676391478066, ...])
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)