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 = 46525
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);
([6573489.0625, 6662304.661080177, 6689187.5, 6754762.271279669, 6768024.204607574, 6789121.875, 6825167.1875, 6874445.128584016, 6895070.3125, 6909843.085062547, 6910632.8125, 6920296.077717546, 6942978.125, 6943031.085885974, 7001894.104260199, 7049332.639193833, 7050725.0, 7050759.224275704, 7097463.807201331, 7119601.5625, 7135669.741511179, 7136684.375, 7141649.607784418, 7144037.204385764, 7144528.931793713, 7153471.666179091, 7161457.8125, 7161463.744540759, 7199317.663311705, 7202082.8125, 7208426.853472606, 7208435.9375, 7247264.0625, 7313165.183545164, 7333520.260260338, 7335323.4375, 7337816.440019261, 7393004.641361197, 7399423.346557353, 7406301.2610013075, 7425218.726662199, 7425231.592706239, 7430929.9742697105, 7434736.995312454, 7435933.755234047, 7485156.25, 7487300.264571213, 7493860.9375, 7494737.5, 7496746.875, 7505201.621091989, 7506896.2786585335, 7506896.768233116, 7507611.677810646, 7515784.375, 7519509.945573912, 7546681.25, 7547557.237905183, 7548617.08089397, 7549805.919760522, 7553221.875, 7557739.808498147, 7568165.29975868, 7575960.4954428, 7575964.943669471, 7577226.5625, 7601240.280800772, 7603493.103595252, 7606993.877590825, 7623887.57845387, 7625287.363568825, 7640688.880278643, 7640748.5577343935, 7646235.66984687, 7690222.388221704, 7738429.6875, 7745123.4375, 7786624.8111343365, 7796144.865553314, 7807323.094888711, 7807381.88030082, 7808732.121516798, 7810999.839655196, 7813171.272474813, 7828227.980949241, 7831200.984976409, 7831312.132279197, 7834384.375, 7835410.754364185, 7837425.881777661, 7887168.75, 7928410.9375, 7958840.529874768, 7959381.383360405, 7959633.38530229, 7960568.60143008, 7960675.5462681735, 7961437.5, 7961664.0625, 7962321.525743247, 7965034.375, 7965210.9375, 7965215.021175335, 7966203.125, 7968328.87559075, 7969403.125, 7971110.57729232, 7975413.744584781, 7976412.5, 7996492.137116131, 8004218.75, 8006542.1875, 8012191.810635749, 8037629.838510476, 8038489.0625, 8040567.052480574, 8041389.506764091, 8042228.753994689, 8056815.625, 8060597.045373509, 8083858.752651793, 8089361.930445716, 8111887.490544336, 8112585.9375, 8113560.9375, 8114950.687869898, 8185426.5625, 8215109.375, 8219881.699031973, 8224412.5, 8260938.104280005, 8279455.320030145, 8285558.2795428, 8287760.8700563125, 8289476.831719455, 8319071.995417132, 8322957.8125, 8340631.25, 8369786.233000929, 8371294.725236979, 8375839.0389409335, 8378408.157597328, 8398075.864383508, 8425313.02666408, 8489816.660293058, 8556134.375, 8568943.150522713, 8571135.838030268, 8571243.949727667, 8634851.113658179, 8641924.714841016, 8641933.091284556, 8738049.021776088, 8741192.31314276, 8742623.032768818, 9632028.125, 9731899.692548271, 9738870.3125, 9825504.6875, 9921096.875, 9925567.676993715, 9925818.75, 9926092.159137886, 9927762.260542417, 9935595.3125, 9935646.64848572, 9947119.037060998, 9956156.127357444, 9961306.723007845, 9987265.625, 9992508.722673269, 10003954.781350873, 10008006.94391537, 10087596.875, 10098589.668490335, 10142707.290901126, 10178972.985086972, 10180018.75, 10180879.457604773, 10182438.550195765, 10191531.264752254, 10192614.07097077, 10207129.64955993, 10238835.99217425, 10250593.987924738, 10250654.6875, 10250693.142440906, 10279040.46916834, 10303752.550782409, 10305035.467223655, 10308190.40347109, 10308437.355390312, 10313737.003884593, 10313813.077805312, 10315102.306160616, 10318543.75, 10318689.515756924, 10318695.194754813, 10319257.231834427, 10320125.93699621, 10320190.319122514, 10322989.0625, 10323207.079350488, 10323230.231696783, 10323261.76115332, 10323337.5, 10323972.558326693, 10324025.66237665, 10324098.4375, 10324186.69230128, 10324186.727097116, 10324511.99232183, 10325131.009242734, 10327250.0, 10328761.607562432, 10333848.2556097, 10335081.501434857, 10336229.515408961, 10337333.28683017, 10338264.95742437, 10348547.898495242, 10349670.3125, 10350499.527397526, 10356308.438245075, 10364957.8125, 10373943.75, 10400446.728148669, 10400608.835823989, 10400720.086884892, 10401006.56374473, 10401022.82693285, 10401373.707756432, 10401379.6875, 10401428.691170255, 10401471.627082767, 10401539.646187425, 10401600.825948415, 10401613.699500276, 10401670.952991564, 10401739.0625, 10401740.281774543, 10401765.891016103, 10401777.489536846, 10401812.5, 10401841.713133657, 10401843.058445891, 10401853.820547264, 10401856.25, 10401890.805079697, 10401960.577804409, 10402064.564428147, 10402091.022436619, 10402119.839870736, 10402162.762294762, 10402167.75871254, 10402218.715299958, 10402248.744807435, 10402295.3125, 10402339.437210722, 10402340.813794358, 10402348.4375, 10402365.623163702, 10402384.375, 10402409.375, 10402412.5, 10402452.927716304, 10402462.323842915, 10402500.0, 10402505.036754496, 10402537.575266846, 10402548.331792507, 10402551.5625, 10402564.573515309, 10402598.065747544, 10402644.771919342, 10402735.123642832, 10402742.493660018, 10402781.25, 10402820.3125, 10402846.125042327, 10402870.282334551, 10403027.939906674, 10403048.4375, 10403280.584678799, 10403362.116397511, 10403449.079186812, 10403557.8125, 10403593.652100801, 10403896.83420057, 10404574.45236664, 10404623.944968788, 10404736.74119156, 10405118.75, 10406473.114828082, 10406839.319474008, 10410212.610334055, 10412672.373697191, 10416037.33548324, 10416375.836941024, 10420542.029906888, 10426404.866985684, 10440679.912317593, 10442919.717649924, 10443746.086480722, 10443882.8125, 10446082.248857835, 10448826.54805453, 10448867.1875, 10449291.519473778, 10449325.0, 10449365.445733521, 10450119.376739971, 10451003.593633542, 10452277.76664083, 10461168.653091494, 10467655.67636353, 10476616.392687887, 10478362.5, 10479399.367457412, 10480351.45537639, 10485297.059202842, 10489779.739546845, 10489789.466018394, 10491106.862656876, 10497323.698062235, 10499490.194975073, 10535298.650262954, 10536372.377622347, 10537109.253020285, 10538262.765156101, 10539607.8125, 10541023.282574702, 10541047.445170293, 10541918.206777493, 10543284.375, 10543761.589108577, 10547303.846878348, 10556113.131947234, 10558281.940578602, 10559521.875, 10561127.58541359, 10580696.564885618, 10587674.576794745, 10587858.654126482, 10589390.622307071, 10589721.268829782, 10590017.468164692, 10599395.3125, 10600582.8125, 10603207.524499387, 10612454.123975264, 10629711.098764265, 10629916.477289136, 10634490.625, 10634518.641288254, 10639083.074607193, 10641669.720665528, 10642251.853164135, 10642355.887989134, 10642382.324412873, 10642468.75, 10642732.445533443, 10642971.946803428, 10643062.30774026, 10643093.385692148, 10643219.250748953, 10644002.758723198, 10644435.083859857, 10644667.04232774, 10645232.105780767, 10645278.914248047, 10645464.0625, 10645564.0625, 10645844.143239278, 10646035.9375, 10646085.931007246, 10646280.128195371, 10646335.9375, 10646456.25, 10646477.679288775, 10646589.0625, 10646825.967380635, 10647273.4375, 10647521.626707584, 10647584.375, 10647883.297238138, 10648425.498194223, 10648610.078232042, 10648631.25, 10648634.375, 10648910.360845143, 10649162.5, 10649960.841364397, 10650012.714930084, 10652368.75, 10656696.875, 10658871.875, 10658890.646497196, 10658892.894348208, 10660404.457160326, 10660804.6875, 10661521.875, 10665029.752225112, 10666331.472249951, 10666927.535335276, 10667191.487224001, 10670610.9375, 10671486.155568486, 10672254.977435056, 10673693.644532263, 10674210.9375, 10675549.300309714, 10679615.17982291, 10681888.810412172, 10683413.083209142, 10684196.373556243, 10687364.0625, 10688422.3374927, 10702767.1875, 10702775.196561825, 10703752.783768099, 10703759.214512704, 10703908.350404143, 10704058.707886428, 10704060.9375, 10704770.164650247, 10704939.88570587, 10705118.673320733, 10705276.346948083, 10705410.469374493, 10706131.051811919, 10706146.995388528, 10706656.25, 10706884.375, 10706904.6875, 10707152.22907296, 10707258.210777186, 10707387.218680961, 10707393.516978271, 10707498.296400491, 10707568.75, 10707589.709577952, 10707846.369973239, 10707895.3125, 10707954.6875, 10708032.666595183, 10708050.0, 10708379.6875, 10708778.685522908, 10709152.936243879, 10711207.8125, 10713337.294820752, 10719272.963748168, 10727120.3125, 10727694.79984923, 10730077.86846042, 10730169.900343724, 10730315.625, 10730432.791669197, 10730482.707162222, 10730639.741816165, 10730720.3974736, 10731021.07979038, 10731458.866564183, 10732128.613383222, 10736900.139804624, 10737231.899033466, 10737465.032179952, 10738403.125, 10739606.44582763, 10739768.9203937, 10739953.125, 10739973.258776005, 10741068.969785359, 10744113.317024734, 10744327.909890883, 10749537.872879246, 10750881.7696486, 10753817.567957504, 10755626.9421819, 10760663.6213962, 10761201.5625, 10763245.42863464, 10764157.8125, 10766055.446044652, 10766685.9375, 10770209.375, 10771927.4530644, 10772885.9375, 10773059.375, 10773870.518228356, 10773923.440219082, 10774250.797518536, 10774750.0, 10775129.501584595, 10775131.25, 10776075.0, 10784783.96793001, 10785660.623882957, 10785862.336420715, 10785960.842494885, 10786628.56083377, 10786885.285279363, 10787078.656931944, 10787544.85189971, 10787703.474940658, 10787803.727631252, 10790720.654015535, 10799614.0625, 10805717.75398487, 10812557.706135036, 10812661.535413256, 10814629.545066083, 10814682.185271142, 10814728.961788591, 10815771.77988, 10820044.21239952, 10822970.102281988, 10828665.059256034, 10829190.466100935, 10830227.406452095, 10833582.8125, 10836398.354726944, 10837053.98962553, 10837414.39107882, 10838078.549855314, 10838109.843805252, 10838173.4375, 10838181.472091267, 10838291.614970563, 10838296.09293238, 10838745.904049436, 10838831.017878734, 10838971.05193423, 10839126.064504545, 10839237.7570662, 10839376.280696917, 10839453.236811828, 10839793.481738806, 10840126.5625, 10840505.387410944, 10841435.694386989, 10843032.8125, 10844238.613813395, 10844555.438637147, 10844802.902836187, 10845873.712860612, 10847612.5, 10848632.8125, 10851396.103271121, 10851406.25, 10851523.4375, 10852701.845761903, 10852780.622443486, 10854246.254440596, 10854337.419119928, 10854792.86332867, 10855044.793221312, 10857008.86259465, 10860502.583782224, 10860505.719705405, 10860520.092062553, 10860591.602716522, 10860610.259756356, 10860720.3125, 10862095.473667672, 10862731.25, 10863589.0625, 10864545.218590824, 10864872.826312866, 10864976.454709785, 10864990.372754404, 10865029.533952035, 10865085.9375, 10865331.087964598, 10865557.08126145, 10866019.80837438, 10866764.0625, 10866984.253317751, 10867068.328062132, 10867208.991968343, 10867373.040898008, 10867709.347276293, 10867709.542230904, 10868225.300112305, 10869244.48531143, 10869955.247540621, 10870096.875, 10870568.828378482, 10870623.997879498, 10870894.84135849, 10870917.1875, 10871002.592734547, 10871146.875, 10871227.674268097, 10871417.209784567, 10871531.40945058, 10871534.164382357, 10871738.74523015, 10872172.535598936, 10872474.555363724, 10872726.522391582, 10873698.4375, 10874430.52041779, 10878885.084490174, 10879329.6875, 10879930.285826717, 10884221.30119414, 10885328.125, 10887032.8125, 10887170.460819257, 10889885.9375, 10891876.51974687, 10900729.743858682, 10901969.998623239, 10902021.540134177, 10903171.875, 10903236.796645744, 10903353.123418346, 10903490.423422242, 10903492.195839584, 10904182.976494877, 10904234.375, 10904250.060618268, 10904857.630086917, 10905034.487100102, 10905052.884394083, 10905207.854882304, 10905262.402827494, 10906556.110709433, 10906618.008286456, 10906665.625, 10906705.410524761, 10906961.753145881, 10907145.859251283, 10907151.366694111, 10907226.5625, 10907391.577933058, 10907531.254692024, 10907650.0, 10907740.625, 10907757.800729422, 10907792.053386064, 10907851.413840873, 10908323.821053684, 10908384.375, 10908466.383966247, 10908467.1875, 10908469.814498896, 10908502.568504265, 10908525.133923363, 10908588.103364328, 10908927.029883713, 10909030.30167394, 10909041.788403207, 10909200.641227132, 10909479.332872663, 10909583.35962009, 10909742.129180698, 10909790.74430847, 10909798.4375, 10909943.75, 10909959.04510322, 10909977.387406848, 10910019.518065305, 10910053.637159742, 10910082.265728867, 10910169.553062968, 10910249.216434665, 10910387.5, 10910451.320415717, 10910584.666741675, 10910606.711991346, 10910745.30765317, 10910793.172954222, 10910808.161209425, 10910885.9375, 10911337.598482134, 10912542.55301573, 10912682.956408205, 10913009.155430993, 10913884.145521486, 10913999.485388702, 10914391.379393738, 10914426.765531056, 10914443.522742504, 10915509.375, 10916584.623302557, 10916910.9375, 10917045.964137636, 10917781.25, 10918310.9375, 10918552.327836026, 10918795.084478702, 10918827.395637883, 10920104.37628808, 10920379.6875, 10920988.697561042, 10921285.959998295, 10921311.445466395, 10921597.349944428, 10922148.612330703, 10922174.425151777, 10922182.102245402, 10922598.957916485, 10922608.074198319, 10922751.5625, 10922838.299355416, 10922934.19804743, 10922970.024667643, 10923074.871584656, 10923314.0625, 10924310.254167179, 10924572.566229774, 10924666.037396915, 10925114.823218739, 10925274.395953067, 10925309.660851493, 10926426.5625, 10926609.126936935, 10926834.113338536, 10926842.1875, 10927233.53681536, 10927752.117140347, 10927776.5625, 10928120.3125, 10928280.407503584, 10928313.745109502, 10928471.5549109, 10928811.333527945, 10928852.878356487, 10930383.501830645, 10932831.961397411, 10934147.57190265, 10934978.125, 10935172.085746283, 10935177.35542735, 10935815.6659914, 10935843.208236394, 10935872.66549298, 10936504.315451268, 10936946.70594183, 10937775.824505543, 10938901.5625, 10938989.0625, 10939310.9375, 10939397.898068827, 10939739.0625, 10940133.782970836, 10940935.628307266, 10942134.910255041, 10942693.75, 10942956.25, 10943284.62634696, 10944834.238623954, 10946729.43219025, 10951558.793677473, 10952207.683059726, 10952259.28532832, 10953425.443781504, 10955703.125, 10956008.523494165, 10956799.104426967, 10958639.906623922, 10960482.484674502, 10961293.947291939, 10961470.3125, 10962075.397393666, 10963085.9375, 10963303.125, 10963500.701977616, 10963682.050963514, 10963916.097097263, 10964282.8125, 10964288.959774464, 10964889.835103363, 10965407.125829052, 10965888.887744227, 10967383.413915118, 10967666.68660426, 10970492.585335251, 10975902.065344887, 10976526.690177724, 10977313.4476116, 10978418.414521998, 10981890.80051772, 10982717.438100163, 10984603.902887106, 10984871.32525963, 10986236.328146555, 10987118.42220266, 10987740.655015921, 10987887.072337521, 10988233.493520787, 10992385.9375, 10993046.86592, 10993276.5625, 10995569.050242228, 10997536.801497238, 10999485.081681134, 11000277.189425623, 11000668.395693414, 11010188.5019505, 11010511.022211106, 11011583.563660307, 11011775.380673394, 11014120.3125, 11014365.625, 11014407.729422525, 11014762.559521053, 11014940.264963262, 11015540.406166391, 11015743.263049217, 11016493.308973854, 11017335.822291989, 11018510.9375, 11018514.0625, 11018532.8125, 11021437.492360607, 11021842.1875, 11021842.66892772, 11021958.755619006, 11024866.845534189, 11025606.384236455, 11025746.875, 11026298.569154762, 11026552.851288307, 11026894.652089505, 11027294.118103135, 11027666.43305905, 11028089.387376977, 11029160.895737419, 11029302.508129343, 11029504.52670929, 11029798.4375, 11030720.794008674, 11031302.34211236, 11031729.6875, 11032233.238924948, 11032241.062319685, 11032266.32122118, 11032444.485903295, 11032912.817878941, 11033679.6875, 11034125.825259745, 11034264.0625, 11036180.931137968, 11040648.799209915, 11048434.048151419, 11050758.073945856, 11050827.99595564, 11051111.93115673, 11051291.239824226, 11052172.466704426, 11052596.32281959, 11052629.627237454, 11052754.6875, 11052911.61978887, 11053386.208163979, 11053895.528893877, 11053896.151151927, 11054145.677182589, 11054246.875, 11054624.200677766, 11054690.57532673, 11054739.758817967, 11055397.74720087, 11056176.5625, 11056386.927260466, 11056937.439307136, 11056998.057799527, 11057048.670861337, 11057239.960239315, 11057405.398819093, 11057571.875, 11057930.962325215, 11057974.690589711, 11058162.197111817, 11058168.403244339, 11058254.6875, 11058298.046218792, 11058575.73948338, 11058745.652573014, 11058807.8125, 11058871.71390354, 11058929.590319438, 11058967.209384797, 11059131.343482688, 11059931.411751445, 11059981.25, 11060131.25, 11060648.4375, 11061412.5, 11061756.25, 11062285.517513849, 11062381.25, 11062382.15771534, 11062563.987288006, 11062646.474085188, 11062734.040186305, 11062854.5564848, 11062964.5646094, 11063035.9375, 11063076.184579002, 11063306.678301457, 11063336.638862181, 11063532.013552146, 11063573.838638002, 11063574.058423702, 11063592.1875, 11063657.920614177, 11063711.282049779, 11063861.832284654, 11064167.977690112, 11064457.73608406, 11064527.091761827, 11064754.224299261, 11064853.165264236, 11064964.0625, 11065055.19747289, 11065264.0625, 11065646.192376109, 11065862.5, 11068837.684426378, 11069198.80078844, 11069227.605263542, 11069810.751862202, 11074800.0, 11079475.0, 11080929.44114656, 11081481.552853331, 11081496.803677786, 11083301.125980841, 11085525.964599034, 11085708.39167428, 11086424.965965321, 11086731.887121925, 11087085.9375, 11087701.799513761, 11087744.910746772, 11087775.756881211, 11087829.153006328, 11087900.638072334, 11088346.234012226, 11088656.637696346, 11088720.3125, 11089054.6875, 11089163.412886245, 11089330.301907303, 11089633.631025543, 11089694.33728631, 11089776.485913249, 11089831.300444707, 11089842.023427382, 11090312.811773023, 11090528.262871109, 11090758.171365153, 11091155.876906864, 11091982.72597789, 11093960.996392127, 11094819.490876056, 11095320.123780603, 11096732.482938671, 11104792.1875, 11104809.223859612, 11105899.313436303, 11105974.297867382, 11106136.638612796, 11106198.90876055, 11106670.157635804, 11106702.28552308, 11107020.919238899, 11107360.394348023, 11108637.5, 11109126.01644201, 11109796.319158603, 11110463.017045118, 11110568.272925368, 11110746.875, 11110800.0, 11111003.125, 11111360.426275827, 11111377.014714492, 11111448.348233333, 11111557.8125, 11111661.963409413, 11111883.47988559, 11111952.239357162, 11112066.356309691, 11112171.744369306, 11112172.681455804, 11112173.054160414, 11112190.625, 11112444.958705788, 11112498.4375, 11113805.33957382, 11113838.460478649, 11113973.915959753, 11114174.076003429, 11114208.465689534, ...], [75.07217734126142, 5.244406457196255, 49.18762688939295, 14.1359538295751, 79.97899017476806, 98.24041033472311, 68.48098889806843, 14.283971260113622, 93.6562926316079, 17.62538147363729, 36.6854803876884, 18.96460191147195, 37.92787594558097, 5.095239801794994, 16.488786971683044, 53.50479675131219, 45.832696855569694, 10.90001373058362, 24.031738210778855, 84.83330911421127, 13.135740157593212, 65.4510282113361, 7.022030614400637, 23.806925845661613, 19.272452494081204, 58.58764158423332, 36.2744626517246, 9.076282334355659, 17.129194358585156, 93.48180372849603, 16.1800873239569, 88.90663079983983, 36.13133715106042, 22.097700211491254, 6.478933268840867, 73.11770973410573, 124.73060126508277, 14.768518536660702, 90.77627533808361, 6.704771307834857, 14.853296557553234, 9.639026887832124, 16.160141155487345, 6.994816905523085, 5.272319461297303, 71.4543350629404, 33.04838554322978, 74.49255532371193, 61.43052067107495, 116.04727321649025, 160.99784201489675, 10.308081572329534, 26.578545839257263, 6.920887379595784, 92.65424579994519, 12.625476031719419, 77.14641732168732, 56.49307430491277, 82.00381899474277, 9.066950709930815, 61.30650695095518, 15.77058003854616, 78.75372727089336, 6.419957944418757, 12.85542330635042, 54.35172074680685, 5.3854766484347705, 12.942198728029934, 16.906490447809865, 11.252590219011537, 65.08431110201529, 14.289657507999726, 5.248522913689889, 24.172912987046573, 27.226821173297168, 127.67228409570228, 51.24316627202805, 5.391302628566118, 38.78471096139242, 16.896636680388426, 18.047539082244175, 27.812241815062208, 25.71514374815116, 60.36440978665822, 187.06079632855523, 8.00309059368616, 10.597784525983002, 69.3556422524819, 47.72872307571072, 12.856919420222637, 47.9404580828659, 59.54613190323414, 10.982205501574773, 40.466440616199826, 14.278246447106405, 101.3901916697597, 56.01117464619783, 61.788159986872614, 67.87434474572107, 70.95744384224699, 47.1584240651145, 31.018012684239107, 20.516357260276195, 150.70133492505374, 7.89931780374045, 46.73907849649255, 61.54338989534633, 28.09177388238784, 68.5246595112168, 27.56580557930083, 38.962187802479434, 47.21745225630904, 73.18455882213522, 15.550122399335176, 36.56553478827875, 5.804057075860323, 16.95658410657223, 5.111040388153448, 47.34753238019486, 15.633250852865995, 14.774038446537988, 31.061164313234865, 28.339181562981594, 126.84823672509563, 43.89857757719065, 8.6872287239934, 105.314196401441, 29.441367714289775, 61.825996147610255, 39.67717842264673, 33.65001984407456, 12.284849609583498, 29.340690681459243, 27.25796552239051, 9.569913129657229, 15.42124536665598, 58.838020659980714, 84.31471139763765, 28.0228782787127, 13.093242320287581, 28.066935677513012, 8.47790983423331, 10.187563922122813, 35.936864087880814, 21.225922974577024, 120.11958852059999, 8.871211286434056, 5.806656834673623, 7.6771092495955395, 13.468374532807324, 23.942184441387077, 16.122429565581346, 22.94880777895331, 9.439949874341817, 22.499187399509953, 50.79345434785056, 22.97688250403805, 50.66276043312555, 48.10446410102274, 42.313983232687825, 6.865329912333611, 60.975593960652425, 14.834497150185648, 90.9151115919112, 47.44857320412564, 5.197689175903086, 7.710470755575024, 8.222769507467243, 9.76617007680247, 44.49866868680433, 69.31917399368959, 8.336838715208259, 100.2172162937907, 38.426539602798435, 17.894384103790305, 21.280312213284486, 8.976075014088915, 64.69287082243487, 24.689535067676058, 7.4278913869758325, 5.462400078400683, 9.338575974421726, 11.068917391544465, 103.79714923096748, 11.521142948963297, 88.44041454036585, 22.93826541598798, 37.8776509415079, 31.407337854340156, 21.794824054082987, 7.525032523463366, 14.417556617661953, 53.04155131133173, 5.143046022001374, 76.90749025464395, 83.9596235298397, 28.752391671984977, 8.22527794564523, 8.884359767276885, 6.19127788519879, 23.67595411509439, 28.8078892901229, 65.33182831723843, 34.11783191998367, 7.931030077585687, 65.61440300934657, 18.39390770449084, 5.264069912523522, 45.950217210079906, 8.730595054067157, 28.761385206986002, 5.586562280560387, 7.059570087867218, 76.30564896822874, 31.67413777996504, 16.66621701764353, 6.11464242510922, 5.038655753589627, 11.959973880203828, 19.96986008648751, 72.7832548593343, 90.33179035757954, 8.0515282669359, 72.27223247864498, 44.176424913471, 45.43287530185293, 53.208189064484934, 21.111002185440196, 9.14765075447271, 26.365704607155436, 20.456758011027407, 109.87516404283804, 114.27420205441175, 6.579663497164158, 68.23529166327852, 60.62847066789212, 12.721737681819134, 34.953123417541306, 18.112774467724865, 45.60832795318754, 52.16792067761825, 75.7149189857334, 19.076476998348006, 68.08552739367958, 62.49259077201054, 19.773741855187417, 18.476229111796005, 31.82586175204674, 71.77050926439054, 34.76351559689026, 12.014722358818581, 5.636416286179167, 32.44335828853374, 16.04530934342774, 7.8237829069827365, 11.073898145840959, 16.258252686790524, 106.67851664847883, 106.51381414596699, 17.24340236451267, 67.76793850822705, 60.02092629672113, 44.56488014799172, 106.92032967927841, 34.23065251569444, 16.367203531821573, 14.310059273926692, 63.85690621934114, 6.125187583720449, 15.23636767057412, 5.33831247442313, 33.70759250702737, 6.870003218993048, 8.099308212402622, 28.026314588925764, 16.409522907494033, 9.604428763678959, 33.318946968705895, 52.673601442706804, 19.31604071340796, 48.51830932722629, 89.93119332888264, 70.26712599978234, 127.23812096255614, 19.90194352623521, 91.99335053443664, 49.903294093555324, 26.728219251904658, 27.74240954742633, 21.030737547507837, 8.574495086707216, 6.374375369634091, 49.528888111887284, 10.658216483176206, 6.528143057609431, 9.426472484972813, 9.791959674920195, 10.879938168177452, 184.59839593682693, 14.373036416165618, 29.849269176822187, 23.220478181759162, 47.27802124474724, 6.928531893918455, 44.14558187170465, 44.02557541353598, 8.278953063968904, 34.99745954243413, 73.61748389649505, 56.006171020409475, 35.290290416383854, 5.14412659236871, 6.860816653981628, 75.35180732677149, 83.6770510872137, 24.929369400588925, 10.07748264810029, 54.994939960758806, 20.26552068468586, 39.93884739976046, 30.66968066173653, 11.210045696414731, 59.62601260268505, 12.242525753104331, 11.560964788612882, 22.220743833075947, 9.51802781980245, 12.016109643587779, 5.066684853430989, 11.5690998434243, 66.61115764262809, 25.799419203158358, 17.67485325219703, 22.385914980752567, 98.23978482544197, 9.950684280981868, 8.709156048005255, 18.058036616887634, 25.776289725106658, 87.62382853952433, 21.107089483779713, 13.878030318007164, 58.44411725357606, 27.556077585263598, 14.931255165879193, 7.3977843952301665, 7.708004756679522, 48.69519791525948, 69.28649124941768, 13.946752041811983, 5.891788158510217, 57.52753209050869, 19.624520340774204, 32.51839713420371, 8.229913388984398, 20.217176316120998, 6.398152547014445, 74.72856038686191, 9.042977598825573, 10.441842591140512, 55.920342158156174, 9.039260170197274, 11.241826112448706, 31.984635522487004, 37.234070738079126, 28.703180423135443, 90.1119952506361, 39.732705507939315, 26.93215981570401, 28.557668055014553, 42.280809378775224, 79.56723142002151, 46.826900324518874, 6.129970104471002, 77.71532743623608, 11.117573353343364, 16.93735096097623, 96.48996666364044, 46.05249731936982, 35.520757819129386, 131.48836521917747, 35.32598091099704, 37.97123888649692, 6.714929022598568, 37.270951990514455, 17.17889496347614, 12.007269099735668, 89.61440654897352, 29.94311532182373, 118.68255696822266, 31.525965223859007, 110.09250984077966, 7.5688332577668005, 5.251200828325058, 34.985855868910306, 56.929132762992566, 30.08088696046869, 14.453530779363835, 18.55321836419933, 24.683297443497587, 69.9192511787325, 94.01074908648386, 44.065536876838976, 8.407710876961485, 13.087005336465243, 8.802033176117297, 115.72652992242476, 47.248197562677305, 112.39560265524214, 73.3431235785254, 64.34973592257165, 12.810505326131674, 6.042996689973803, 62.13735405315971, 9.878557511689134, 21.478710065106963, 73.14396814944833, 5.4819736759565485, 105.29362074815238, 5.719382974466805, 19.55574366817205, 83.94971087613503, 12.087282844383326, 6.637250582652011, 44.80236638085149, 22.518669891917074, 34.573815659606474, 31.169619403195604, 34.99325912198817, 60.008299052309916, 9.16926362486868, 9.435316147237197, 93.00816363197146, 62.774886954462666, 88.9382459875829, 8.673608913039368, 34.18652616833832, 9.104344932788477, 66.79528722014248, 26.01745588792442, 52.30734759872509, 9.945848758327115, 8.938006362337848, 65.31260996864903, 79.06594615132903, 25.941174297667416, 74.02505215154855, 41.26530220847621, 17.61693710769345, 164.67951308993688, 50.47856823216371, 70.9631249230726, 31.069017810040435, 86.57334009136287, 13.291531578430444, 5.064260770043124, 9.005630829803414, 33.12384830456425, 6.0859356721344895, 10.9669543841294, 6.907153296227803, 11.263175386398919, 108.05852410327685, 11.949583839182523, 17.199301293764805, 22.690599240695835, 18.167935041962682, 54.23601821507019, 40.16961381727076, 15.744422743888435, 6.514137838527776, 30.612319245675017, 25.43420335186712, 11.489549216519764, 27.192729665554396, 46.43380159189047, 11.765255728986718, 118.33269368978267, 7.746893676272372, 5.213204197341408, 97.45369072676378, 32.92091237289348, 15.403440986176404, 54.825072469602084, 6.925021654971754, 55.024953628083225, 61.56539433092264, 55.125479356934164, 75.82756448093016, 101.89936360467429, 15.788257893645234, 22.725376267370226, 49.06603766112065, 140.4493414440499, 25.32627646221259, 93.64423687350916, 43.28581597452794, 148.27381357781758, 23.57834733576842, 10.88129881463778, 26.777504071615088, 8.53133394802645, 12.927626295897104, 21.37434471411091, 6.417233355973862, 5.550308772313137, 104.53266491513273, 16.425334723341162, 51.482895201442375, 35.67207683201504, 99.1802931863573, 17.844253294336486, 9.21380274487586, 10.270984578991259, 6.379044724803977, 14.590941251314716, 8.547237252464859, 9.159760015908702, 13.149524404927153, 25.73756075580948, 18.461375189308974, 111.69201065000257, 26.98822875255215, 19.722864798682856, 7.726565436656468, 16.85268584062992, 5.981298864199376, 95.2318838938896, 9.526529767516438, 18.16380448794719, 12.905493232315255, 17.805016270245613, 23.119948717384688, 39.70199532412188, 30.07465989437015, 32.905034406586395, 32.27417121349861, 18.668017912912518, 9.11442637213913, 82.42037523537005, 83.3301344869922, 79.38385190263644, 53.06585300950524, 16.09069812889234, 42.977013560625956, 24.2823332598941, 5.171824550515281, 37.897190963239076, 82.10415313779774, 72.3322789786159, 54.532094001293885, 31.25955924157789, 16.972771811679777, 45.047469747239376, 28.713085553421358, 112.83705180781921, 18.34387156633048, 22.57993282752387, 83.23479335414281, 35.4438826279675, 8.919945006269591, 41.754920246320474, 5.890047123563718, 10.211297592332711, 71.65004734307207, 90.21236799674416, 31.489414384245187, 78.33971502607363, 26.796224052701003, 129.72227455697444, 69.11334837319188, 7.514483381334682, 6.733234248780176, 109.30351282331908, 5.696522665904693, 19.45975629089219, 6.410865963400756, 74.92028756566594, 31.15858756800806, 8.07537911232484, 22.7450676248689, 8.08742144780278, 30.353306966510253, 15.61967548847913, 9.59874691467217, 48.4523925726423, 12.132615731422689, 107.39294819152948, 13.534194891369147, 53.28940554413209, 27.674462560677117, 64.05434608985782, 94.19755856349951, 30.339048405383295, 5.19208873311521, 107.84353799857332, 5.825873204550557, 8.178253453311795, 13.856003644861435, 18.243328509326172, 15.043820393085115, 45.39779489546082, 72.23426911832594, 6.378497524589386, 41.820963033459094, 56.91560154011888, 12.212285603082774, 44.62318248417635, 62.198332633739724, 71.4763974509007, 44.340975232724546, 33.55274446860617, 76.41268591356524, 8.316607308173648, 44.217346997150074, 172.85095077179528, 42.72788376144534, 57.68236848744887, 28.493912835076994, 6.06738478812736, 5.342207530484262, 131.40253357988735, 79.87764227333979, 15.177703713856664, 5.1987993613789785, 92.5447922505973, 24.540272187420573, 9.367498771034139, 95.01294513615254, 43.90869514516005, 69.76324340815974, 59.36128172325316, 10.02802315297609, 28.89723801410416, 23.599961116866147, 14.244257179428715, 84.09240186411662, 6.193138023946709, 12.033847802497604, 56.54814212725258, 61.13799151142902, 28.294067780190453, 6.737023905023753, 35.45819333998381, 5.138784942769096, 108.65036488894738, 5.87235587170712, 33.163910510339456, 21.513063495869783, 74.31771907994948, 5.16849235111946, 17.878044881761028, 5.10776756586421, 17.94555697178006, 5.156169937908997, 9.93961650546653, 33.835334614964026, 7.813881021133162, 11.03775733263657, 20.890648386786154, 32.21629433332239, 75.39911144805856, 24.037787637339843, 54.8375697170178, 18.985282709528644, 21.079621983235832, 6.404664962164572, 5.497323951473985, 5.369340738893303, 52.64961443016742, 10.769283805704049, 11.61654110886048, 12.485029151215066, 14.923067700604546, 8.886898582488412, 23.456835049792772, 102.20536003439744, 36.797555939952304, 16.545381703488037, 15.519937105118125, 78.09359550567274, 15.927247989940458, 21.3485725747755, 18.8865278688253, 8.396943282405031, 61.98353525044805, 74.68712517795197, 9.550569114549955, 55.392427825692174, 12.325972096617257, 91.1311588046308, 31.614937718830188, 26.20236630785555, 32.837856668101, 5.431308750585648, 40.94356792078524, 50.88252529373648, 10.601482813225905, 15.027961431009054, 7.261704946556967, 14.93815689747684, 20.984507210146358, 13.125624589086522, 48.15424996540767, 17.38146220320131, 25.91887308471437, 37.03945474158395, 12.658843799087862, 95.7406323730292, 23.907420755584393, 63.095838346191414, 53.67376060123676, 46.994721028441944, 5.752208765646974, 5.3039981789478565, 18.932049695202227, 20.514385526416543, 26.773470543369328, 51.48185201184789, 117.29536490502755, 40.28621377673642, 97.30821357661267, 17.81965515662261, 17.581868525611377, 47.91722806691817, 42.21962512287804, 18.64390396373255, 13.855633127974718, 91.99917653404489, 7.753042476696014, 18.10974384093796, 18.43423198290802, 18.58444764013253, 97.16703220390949, 37.62935513978792, 15.810603486947324, 17.69984182553106, 15.1000856609526, 89.92413158405873, 19.15022220137379, 83.1760532293708, 47.555260564, 30.20964974264669, 118.06981104639712, 43.45391576011398, 36.65337348550854, 73.59578498024516, 43.55178860075908, 22.614803511284386, 23.63402316716621, 60.657130917293614, 98.59436382584967, 35.08114962329778, 27.042316000601083, 47.0968915380204, 59.96834409664232, 20.718491149597373, 14.47007549913121, 78.7643542916547, 20.239802372533525, 90.40998012997653, 18.581673901080965, 18.28492886204938, 11.418608846637852, 59.07583224166319, 57.70004988449771, 52.93403684725626, 11.811390046321492, 51.74491304275439, 61.32337830790329, 53.326619877138214, 19.22850398835096, 24.931356199731535, 55.49239340103927, 26.646508898144784, 10.08297855489767, 89.35389256171885, 14.314785547474097, 53.9840630997492, 5.777825130128874, 29.295768425631834, 9.79614654522424, 8.35526954986941, 18.7730583317434, 8.116795964345672, 15.655543355552036, 15.991224380054948, 85.9024594321874, 51.32321411905693, 135.865864013853, 10.651282110208903, 5.463056332146961, 5.680070479096473, 62.05350468239303, 60.3754136220569, 14.907013286431024, 64.54062479352757, 11.631841711841682, 25.939957472718085, 78.63695933303217, 20.51796569277371, 40.97970355627991, 8.898504557158825, 11.262748586575906, 6.923345777588392, 93.1197981428094, 63.12107409890902, 56.07247767916914, 39.69464080941394, 7.137186327291113, 26.474232724918878, 24.846021278257087, 19.110834473289852, 8.984397048652696, 13.88722016196113, 88.74094753032595, 47.472283812511165, 41.995005948080234, 35.79951853748293, 75.34666205021576, 11.973979189869473, 47.311273452584246, 23.229090022146735, 11.344216137062135, 37.56310401071837, 11.339922021668125, 26.620928458185496, 88.29267304406551, 7.74203063450493, 45.75221389578616, 5.63227354774915, 81.8145789081531, 110.01533827829006, 25.708239186758664, 62.546344564614174, 69.79768845019245, 13.439461633041601, 97.99049506755227, 16.8610247232933, 9.730744650975875, 60.659612401937586, 11.709761667042905, 27.674452567941408, 45.386545786600536, 81.25279887949009, 85.31174646653568, 20.101513181213058, 9.657197781918143, 10.652564573564058, 70.75822364170835, 5.162367080890201, 15.562258324671586, 31.06636575328845, 7.832249464968949, 10.361933603276618, 56.50990407599748, 73.64158165261823, 26.320212602115166, 11.578877660496877, 94.2755269108217, 19.517258646983432, 35.36870736024426, 113.80265896616436, 12.574781202866186, 20.586153613247106, 7.876120932925281, 19.78388413548768, 37.40989826589821, 84.90771184695727, 63.36823268937307, 22.783404394815133, 9.53683874992403, 10.226522996733596, 20.167115807876115, 115.32222986714841, 73.53519230821252, 41.54581856978864, 6.704507199724822, 102.01440040999081, 33.592414213325846, 17.729019369670777, 18.780331650312274, 16.418194513712418, 62.44990945796653, 25.703507431280876, 23.203512101490567, 39.63611569098036, 26.58515252468809, 15.596083308369895, 59.511354215954086, 62.63525773807786, 48.682211559023635, 45.30069923450231, 103.10659308062128, 22.330226625910406, 54.26904990855776, 20.076528424209226, 27.120475760799472, 45.25196061824433, 23.316002849213895, 9.223026040941825, 19.484424674953296, 70.0867518975988, 22.803948889592885, 6.852136023941806, 18.515739608025715, 54.033739953538124, 5.84426947006113, 9.918096434556544, 65.94454278667367, 25.94801411924545, 11.712646051847745, 19.968702919644482, 44.677424012963755, 44.911196339826176, 20.814075955677435, 13.427973269780228, 174.86946339686256, 118.71862325152449, 5.418334368102563, 54.00544261685993, 87.98201673130264, 89.37676000296128, 15.69435797193652, 16.534140720057945, 21.298452225170088, 10.849432438850418, 41.92639222896467, 51.667522142310844, 13.465291365305905, 69.94557069545324, 8.24921765681521, 22.150624729120008, 52.00849247664295, 64.28518294566547, 8.268660851124174, 152.63179467313546, 44.34858305218947, 25.341698426935423, 31.569804667114564, 18.90439661118472, 8.022802099766913, 72.27516787710064, 20.193229379521288, 5.10616395665097, 53.25822973211863, 81.28330111708705, 94.56895524546209, 5.080242062867519, 10.13483626369147, 17.778858624098913, 86.10836314197097, 15.137331280486839, 37.72086468998508, 11.652699691341631, 25.95191403639876, 27.738595746492926, 29.27751350826201, 9.259299904000471, 7.6246777516722055, 18.79018504550025, 58.556962275038174, 23.38034085536877, 52.77965823588087, 29.099139889888395, 16.719325921264616, 27.16984822515132, 5.053560316842033, 68.07629501864206, 14.38236120706503, 18.664882117522062, 9.903159459159971, 30.533780162596294, 56.88268258791303, 108.16569308834679, 20.95357008661528, 6.143570004773866, 21.724882574535183, 39.15198967462634, 127.76625372006104, 94.49345904185722, 10.41275294252087, 20.956042939591974, 6.07886520335501, 71.01379630172036, 8.91546669866141, 9.967588296530268, 20.487076817447313, 18.72277127465273, 90.87335172888353, 20.858390758332106, 75.335130461312, 28.709999778934122, 9.049154154097682, 52.89689976144606, 6.9010662011869455, 7.991962336386363, 7.253172627954951, 18.099998855012032, 12.329330728499876, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6573489.0625, 6662304.661080177, 6689187.5, 6754762.271279669, 6768024.204607574, 6789121.875, 6825167.1875, 6874445.128584016, 6895070.3125, 6909843.085062547, 6910632.8125, 6920296.077717546, 6942978.125, 6943031.085885974, 7001894.104260199, 7049332.639193833, 7050725.0, 7050759.224275704, 7097463.807201331, 7119601.5625, 7135669.741511179, 7136684.375, 7141649.607784418, 7144037.204385764, 7144528.931793713, 7153471.666179091, 7161457.8125, 7161463.744540759, 7199317.663311705, 7202082.8125, 7208426.853472606, 7208435.9375, 7247264.0625, 7313165.183545164, 7333520.260260338, 7335323.4375, 7337816.440019261, 7393004.641361197, 7399423.346557353, 7406301.2610013075, 7425218.726662199, 7425231.592706239, 7430929.9742697105, 7434736.995312454, 7435933.755234047, 7485156.25, 7487300.264571213, 7493860.9375, 7494737.5, 7496746.875, 7505201.621091989, 7506896.2786585335, 7506896.768233116, 7507611.677810646, 7515784.375, 7519509.945573912, 7546681.25, 7547557.237905183, 7548617.08089397, 7549805.919760522, 7553221.875, 7557739.808498147, 7568165.29975868, 7575960.4954428, 7575964.943669471, 7577226.5625, 7601240.280800772, 7603493.103595252, 7606993.877590825, 7623887.57845387, 7625287.363568825, 7640688.880278643, 7640748.5577343935, 7646235.66984687, 7690222.388221704, 7738429.6875, 7745123.4375, 7786624.8111343365, 7796144.865553314, 7807323.094888711, 7807381.88030082, 7808732.121516798, 7810999.839655196, 7813171.272474813, 7828227.980949241, 7831200.984976409, 7831312.132279197, 7834384.375, 7835410.754364185, 7837425.881777661, 7887168.75, 7928410.9375, 7958840.529874768, 7959381.383360405, 7959633.38530229, 7960568.60143008, 7960675.5462681735, 7961437.5, 7961664.0625, 7962321.525743247, 7965034.375, 7965210.9375, 7965215.021175335, 7966203.125, 7968328.87559075, 7969403.125, 7971110.57729232, 7975413.744584781, 7976412.5, 7996492.137116131, 8004218.75, 8006542.1875, 8012191.810635749, 8037629.838510476, 8038489.0625, 8040567.052480574, 8041389.506764091, 8042228.753994689, 8056815.625, 8060597.045373509, 8083858.752651793, 8089361.930445716, 8111887.490544336, 8112585.9375, 8113560.9375, 8114950.687869898, 8185426.5625, 8215109.375, 8219881.699031973, 8224412.5, 8260938.104280005, 8279455.320030145, 8285558.2795428, 8287760.8700563125, 8289476.831719455, 8319071.995417132, 8322957.8125, 8340631.25, 8369786.233000929, 8371294.725236979, 8375839.0389409335, 8378408.157597328, 8398075.864383508, 8425313.02666408, 8489816.660293058, 8556134.375, 8568943.150522713, 8571135.838030268, 8571243.949727667, 8634851.113658179, 8641924.714841016, 8641933.091284556, 8738049.021776088, 8741192.31314276, 8742623.032768818, 9632028.125, 9731899.692548271, 9738870.3125, 9825504.6875, 9921096.875, 9925567.676993715, 9925818.75, 9926092.159137886, 9927762.260542417, 9935595.3125, 9935646.64848572, 9947119.037060998, 9956156.127357444, 9961306.723007845, 9987265.625, 9992508.722673269, 10003954.781350873, 10008006.94391537, 10087596.875, 10098589.668490335, 10142707.290901126, 10178972.985086972, 10180018.75, 10180879.457604773, 10182438.550195765, 10191531.264752254, 10192614.07097077, 10207129.64955993, 10238835.99217425, 10250593.987924738, 10250654.6875, 10250693.142440906, 10279040.46916834, 10303752.550782409, 10305035.467223655, 10308190.40347109, 10308437.355390312, 10313737.003884593, 10313813.077805312, 10315102.306160616, 10318543.75, 10318689.515756924, 10318695.194754813, 10319257.231834427, 10320125.93699621, 10320190.319122514, 10322989.0625, 10323207.079350488, 10323230.231696783, 10323261.76115332, 10323337.5, 10323972.558326693, 10324025.66237665, 10324098.4375, 10324186.69230128, 10324186.727097116, 10324511.99232183, 10325131.009242734, 10327250.0, 10328761.607562432, 10333848.2556097, 10335081.501434857, 10336229.515408961, 10337333.28683017, 10338264.95742437, 10348547.898495242, 10349670.3125, 10350499.527397526, 10356308.438245075, 10364957.8125, 10373943.75, 10400446.728148669, 10400608.835823989, 10400720.086884892, 10401006.56374473, 10401022.82693285, 10401373.707756432, 10401379.6875, 10401428.691170255, 10401471.627082767, 10401539.646187425, 10401600.825948415, 10401613.699500276, 10401670.952991564, 10401739.0625, 10401740.281774543, 10401765.891016103, 10401777.489536846, 10401812.5, 10401841.713133657, 10401843.058445891, 10401853.820547264, 10401856.25, 10401890.805079697, 10401960.577804409, 10402064.564428147, 10402091.022436619, 10402119.839870736, 10402162.762294762, 10402167.75871254, 10402218.715299958, 10402248.744807435, 10402295.3125, 10402339.437210722, 10402340.813794358, 10402348.4375, 10402365.623163702, 10402384.375, 10402409.375, 10402412.5, 10402452.927716304, 10402462.323842915, 10402500.0, 10402505.036754496, 10402537.575266846, 10402548.331792507, 10402551.5625, 10402564.573515309, 10402598.065747544, 10402644.771919342, 10402735.123642832, 10402742.493660018, 10402781.25, 10402820.3125, 10402846.125042327, 10402870.282334551, 10403027.939906674, 10403048.4375, 10403280.584678799, 10403362.116397511, 10403449.079186812, 10403557.8125, 10403593.652100801, 10403896.83420057, 10404574.45236664, 10404623.944968788, 10404736.74119156, 10405118.75, 10406473.114828082, 10406839.319474008, 10410212.610334055, 10412672.373697191, 10416037.33548324, 10416375.836941024, 10420542.029906888, 10426404.866985684, 10440679.912317593, 10442919.717649924, 10443746.086480722, 10443882.8125, 10446082.248857835, 10448826.54805453, 10448867.1875, 10449291.519473778, 10449325.0, 10449365.445733521, 10450119.376739971, 10451003.593633542, 10452277.76664083, 10461168.653091494, 10467655.67636353, 10476616.392687887, 10478362.5, 10479399.367457412, 10480351.45537639, 10485297.059202842, 10489779.739546845, 10489789.466018394, 10491106.862656876, 10497323.698062235, 10499490.194975073, 10535298.650262954, 10536372.377622347, 10537109.253020285, 10538262.765156101, 10539607.8125, 10541023.282574702, 10541047.445170293, 10541918.206777493, 10543284.375, 10543761.589108577, 10547303.846878348, 10556113.131947234, 10558281.940578602, 10559521.875, 10561127.58541359, 10580696.564885618, 10587674.576794745, 10587858.654126482, 10589390.622307071, 10589721.268829782, 10590017.468164692, 10599395.3125, 10600582.8125, 10603207.524499387, 10612454.123975264, 10629711.098764265, 10629916.477289136, 10634490.625, 10634518.641288254, 10639083.074607193, 10641669.720665528, 10642251.853164135, 10642355.887989134, 10642382.324412873, 10642468.75, 10642732.445533443, 10642971.946803428, 10643062.30774026, 10643093.385692148, 10643219.250748953, 10644002.758723198, 10644435.083859857, 10644667.04232774, 10645232.105780767, 10645278.914248047, 10645464.0625, 10645564.0625, 10645844.143239278, 10646035.9375, 10646085.931007246, 10646280.128195371, 10646335.9375, 10646456.25, 10646477.679288775, 10646589.0625, 10646825.967380635, 10647273.4375, 10647521.626707584, 10647584.375, 10647883.297238138, 10648425.498194223, 10648610.078232042, 10648631.25, 10648634.375, 10648910.360845143, 10649162.5, 10649960.841364397, 10650012.714930084, 10652368.75, 10656696.875, 10658871.875, 10658890.646497196, 10658892.894348208, 10660404.457160326, 10660804.6875, 10661521.875, 10665029.752225112, 10666331.472249951, 10666927.535335276, 10667191.487224001, 10670610.9375, 10671486.155568486, 10672254.977435056, 10673693.644532263, 10674210.9375, 10675549.300309714, 10679615.17982291, 10681888.810412172, 10683413.083209142, 10684196.373556243, 10687364.0625, 10688422.3374927, 10702767.1875, 10702775.196561825, 10703752.783768099, 10703759.214512704, 10703908.350404143, 10704058.707886428, 10704060.9375, 10704770.164650247, 10704939.88570587, 10705118.673320733, 10705276.346948083, 10705410.469374493, 10706131.051811919, 10706146.995388528, 10706656.25, 10706884.375, 10706904.6875, 10707152.22907296, 10707258.210777186, 10707387.218680961, 10707393.516978271, 10707498.296400491, 10707568.75, 10707589.709577952, 10707846.369973239, 10707895.3125, 10707954.6875, 10708032.666595183, 10708050.0, 10708379.6875, 10708778.685522908, 10709152.936243879, 10711207.8125, 10713337.294820752, 10719272.963748168, 10727120.3125, 10727694.79984923, 10730077.86846042, 10730169.900343724, 10730315.625, 10730432.791669197, 10730482.707162222, 10730639.741816165, 10730720.3974736, 10731021.07979038, 10731458.866564183, 10732128.613383222, 10736900.139804624, 10737231.899033466, 10737465.032179952, 10738403.125, 10739606.44582763, 10739768.9203937, 10739953.125, 10739973.258776005, 10741068.969785359, 10744113.317024734, 10744327.909890883, 10749537.872879246, 10750881.7696486, 10753817.567957504, 10755626.9421819, 10760663.6213962, 10761201.5625, 10763245.42863464, 10764157.8125, 10766055.446044652, 10766685.9375, 10770209.375, 10771927.4530644, 10772885.9375, 10773059.375, 10773870.518228356, 10773923.440219082, 10774250.797518536, 10774750.0, 10775129.501584595, 10775131.25, 10776075.0, 10784783.96793001, 10785660.623882957, 10785862.336420715, 10785960.842494885, 10786628.56083377, 10786885.285279363, 10787078.656931944, 10787544.85189971, 10787703.474940658, 10787803.727631252, 10790720.654015535, 10799614.0625, 10805717.75398487, 10812557.706135036, 10812661.535413256, 10814629.545066083, 10814682.185271142, 10814728.961788591, 10815771.77988, 10820044.21239952, 10822970.102281988, 10828665.059256034, 10829190.466100935, 10830227.406452095, 10833582.8125, 10836398.354726944, 10837053.98962553, 10837414.39107882, 10838078.549855314, 10838109.843805252, 10838173.4375, 10838181.472091267, 10838291.614970563, 10838296.09293238, 10838745.904049436, 10838831.017878734, 10838971.05193423, 10839126.064504545, 10839237.7570662, 10839376.280696917, 10839453.236811828, 10839793.481738806, 10840126.5625, 10840505.387410944, 10841435.694386989, 10843032.8125, 10844238.613813395, 10844555.438637147, 10844802.902836187, 10845873.712860612, 10847612.5, 10848632.8125, 10851396.103271121, 10851406.25, 10851523.4375, 10852701.845761903, 10852780.622443486, 10854246.254440596, 10854337.419119928, 10854792.86332867, 10855044.793221312, 10857008.86259465, 10860502.583782224, 10860505.719705405, 10860520.092062553, 10860591.602716522, 10860610.259756356, 10860720.3125, 10862095.473667672, 10862731.25, 10863589.0625, 10864545.218590824, 10864872.826312866, 10864976.454709785, 10864990.372754404, 10865029.533952035, 10865085.9375, 10865331.087964598, 10865557.08126145, 10866019.80837438, 10866764.0625, 10866984.253317751, 10867068.328062132, 10867208.991968343, 10867373.040898008, 10867709.347276293, 10867709.542230904, 10868225.300112305, 10869244.48531143, 10869955.247540621, 10870096.875, 10870568.828378482, 10870623.997879498, 10870894.84135849, 10870917.1875, 10871002.592734547, 10871146.875, 10871227.674268097, 10871417.209784567, 10871531.40945058, 10871534.164382357, 10871738.74523015, 10872172.535598936, 10872474.555363724, 10872726.522391582, 10873698.4375, 10874430.52041779, 10878885.084490174, 10879329.6875, 10879930.285826717, 10884221.30119414, 10885328.125, 10887032.8125, 10887170.460819257, 10889885.9375, 10891876.51974687, 10900729.743858682, 10901969.998623239, 10902021.540134177, 10903171.875, 10903236.796645744, 10903353.123418346, 10903490.423422242, 10903492.195839584, 10904182.976494877, 10904234.375, 10904250.060618268, 10904857.630086917, 10905034.487100102, 10905052.884394083, 10905207.854882304, 10905262.402827494, 10906556.110709433, 10906618.008286456, 10906665.625, 10906705.410524761, 10906961.753145881, 10907145.859251283, 10907151.366694111, 10907226.5625, 10907391.577933058, 10907531.254692024, 10907650.0, 10907740.625, 10907757.800729422, 10907792.053386064, 10907851.413840873, 10908323.821053684, 10908384.375, 10908466.383966247, 10908467.1875, 10908469.814498896, 10908502.568504265, 10908525.133923363, 10908588.103364328, 10908927.029883713, 10909030.30167394, 10909041.788403207, 10909200.641227132, 10909479.332872663, 10909583.35962009, 10909742.129180698, 10909790.74430847, 10909798.4375, 10909943.75, 10909959.04510322, 10909977.387406848, 10910019.518065305, 10910053.637159742, 10910082.265728867, 10910169.553062968, 10910249.216434665, 10910387.5, 10910451.320415717, 10910584.666741675, 10910606.711991346, 10910745.30765317, 10910793.172954222, 10910808.161209425, 10910885.9375, 10911337.598482134, 10912542.55301573, 10912682.956408205, 10913009.155430993, 10913884.145521486, 10913999.485388702, 10914391.379393738, 10914426.765531056, 10914443.522742504, 10915509.375, 10916584.623302557, 10916910.9375, 10917045.964137636, 10917781.25, 10918310.9375, 10918552.327836026, 10918795.084478702, 10918827.395637883, 10920104.37628808, 10920379.6875, 10920988.697561042, 10921285.959998295, 10921311.445466395, 10921597.349944428, 10922148.612330703, 10922174.425151777, 10922182.102245402, 10922598.957916485, 10922608.074198319, 10922751.5625, 10922838.299355416, 10922934.19804743, 10922970.024667643, 10923074.871584656, 10923314.0625, 10924310.254167179, 10924572.566229774, 10924666.037396915, 10925114.823218739, 10925274.395953067, 10925309.660851493, 10926426.5625, 10926609.126936935, 10926834.113338536, 10926842.1875, 10927233.53681536, 10927752.117140347, 10927776.5625, 10928120.3125, 10928280.407503584, 10928313.745109502, 10928471.5549109, 10928811.333527945, 10928852.878356487, 10930383.501830645, 10932831.961397411, 10934147.57190265, 10934978.125, 10935172.085746283, 10935177.35542735, 10935815.6659914, 10935843.208236394, 10935872.66549298, 10936504.315451268, 10936946.70594183, 10937775.824505543, 10938901.5625, 10938989.0625, 10939310.9375, 10939397.898068827, 10939739.0625, 10940133.782970836, 10940935.628307266, 10942134.910255041, 10942693.75, 10942956.25, 10943284.62634696, 10944834.238623954, 10946729.43219025, 10951558.793677473, 10952207.683059726, 10952259.28532832, 10953425.443781504, 10955703.125, 10956008.523494165, 10956799.104426967, 10958639.906623922, 10960482.484674502, 10961293.947291939, 10961470.3125, 10962075.397393666, 10963085.9375, 10963303.125, 10963500.701977616, 10963682.050963514, 10963916.097097263, 10964282.8125, 10964288.959774464, 10964889.835103363, 10965407.125829052, 10965888.887744227, 10967383.413915118, 10967666.68660426, 10970492.585335251, 10975902.065344887, 10976526.690177724, 10977313.4476116, 10978418.414521998, 10981890.80051772, 10982717.438100163, 10984603.902887106, 10984871.32525963, 10986236.328146555, 10987118.42220266, 10987740.655015921, 10987887.072337521, 10988233.493520787, 10992385.9375, 10993046.86592, 10993276.5625, 10995569.050242228, 10997536.801497238, 10999485.081681134, 11000277.189425623, 11000668.395693414, 11010188.5019505, 11010511.022211106, 11011583.563660307, 11011775.380673394, 11014120.3125, 11014365.625, 11014407.729422525, 11014762.559521053, 11014940.264963262, 11015540.406166391, 11015743.263049217, 11016493.308973854, 11017335.822291989, 11018510.9375, 11018514.0625, 11018532.8125, 11021437.492360607, 11021842.1875, 11021842.66892772, 11021958.755619006, 11024866.845534189, 11025606.384236455, 11025746.875, 11026298.569154762, 11026552.851288307, 11026894.652089505, 11027294.118103135, 11027666.43305905, 11028089.387376977, 11029160.895737419, 11029302.508129343, 11029504.52670929, 11029798.4375, 11030720.794008674, 11031302.34211236, 11031729.6875, 11032233.238924948, 11032241.062319685, 11032266.32122118, 11032444.485903295, 11032912.817878941, 11033679.6875, 11034125.825259745, 11034264.0625, 11036180.931137968, 11040648.799209915, 11048434.048151419, 11050758.073945856, 11050827.99595564, 11051111.93115673, 11051291.239824226, 11052172.466704426, 11052596.32281959, 11052629.627237454, 11052754.6875, 11052911.61978887, 11053386.208163979, 11053895.528893877, 11053896.151151927, 11054145.677182589, 11054246.875, 11054624.200677766, 11054690.57532673, 11054739.758817967, 11055397.74720087, 11056176.5625, 11056386.927260466, 11056937.439307136, 11056998.057799527, 11057048.670861337, 11057239.960239315, 11057405.398819093, 11057571.875, 11057930.962325215, 11057974.690589711, 11058162.197111817, 11058168.403244339, 11058254.6875, 11058298.046218792, 11058575.73948338, 11058745.652573014, 11058807.8125, 11058871.71390354, 11058929.590319438, 11058967.209384797, 11059131.343482688, 11059931.411751445, 11059981.25, 11060131.25, 11060648.4375, 11061412.5, 11061756.25, 11062285.517513849, 11062381.25, 11062382.15771534, 11062563.987288006, 11062646.474085188, 11062734.040186305, 11062854.5564848, 11062964.5646094, 11063035.9375, 11063076.184579002, 11063306.678301457, 11063336.638862181, 11063532.013552146, 11063573.838638002, 11063574.058423702, 11063592.1875, 11063657.920614177, 11063711.282049779, 11063861.832284654, 11064167.977690112, 11064457.73608406, 11064527.091761827, 11064754.224299261, 11064853.165264236, 11064964.0625, 11065055.19747289, 11065264.0625, 11065646.192376109, 11065862.5, 11068837.684426378, 11069198.80078844, 11069227.605263542, 11069810.751862202, 11074800.0, 11079475.0, 11080929.44114656, 11081481.552853331, 11081496.803677786, 11083301.125980841, 11085525.964599034, 11085708.39167428, 11086424.965965321, 11086731.887121925, 11087085.9375, 11087701.799513761, 11087744.910746772, 11087775.756881211, 11087829.153006328, 11087900.638072334, 11088346.234012226, 11088656.637696346, 11088720.3125, 11089054.6875, 11089163.412886245, 11089330.301907303, 11089633.631025543, 11089694.33728631, 11089776.485913249, 11089831.300444707, 11089842.023427382, 11090312.811773023, 11090528.262871109, 11090758.171365153, 11091155.876906864, 11091982.72597789, 11093960.996392127, 11094819.490876056, 11095320.123780603, 11096732.482938671, 11104792.1875, 11104809.223859612, 11105899.313436303, 11105974.297867382, 11106136.638612796, 11106198.90876055, 11106670.157635804, 11106702.28552308, 11107020.919238899, 11107360.394348023, 11108637.5, 11109126.01644201, 11109796.319158603, 11110463.017045118, 11110568.272925368, 11110746.875, 11110800.0, 11111003.125, 11111360.426275827, 11111377.014714492, 11111448.348233333, 11111557.8125, 11111661.963409413, 11111883.47988559, 11111952.239357162, 11112066.356309691, 11112171.744369306, 11112172.681455804, 11112173.054160414, 11112190.625, 11112444.958705788, 11112498.4375, 11113805.33957382, 11113838.460478649, 11113973.915959753, 11114174.076003429, 11114208.465689534, ...], [75.07217734126142, 5.244406457196255, 49.18762688939295, 14.1359538295751, 79.97899017476806, 98.24041033472311, 68.48098889806843, 14.283971260113622, 93.6562926316079, 17.62538147363729, 36.6854803876884, 18.96460191147195, 37.92787594558097, 5.095239801794994, 16.488786971683044, 53.50479675131219, 45.832696855569694, 10.90001373058362, 24.031738210778855, 84.83330911421127, 13.135740157593212, 65.4510282113361, 7.022030614400637, 23.806925845661613, 19.272452494081204, 58.58764158423332, 36.2744626517246, 9.076282334355659, 17.129194358585156, 93.48180372849603, 16.1800873239569, 88.90663079983983, 36.13133715106042, 22.097700211491254, 6.478933268840867, 73.11770973410573, 124.73060126508277, 14.768518536660702, 90.77627533808361, 6.704771307834857, 14.853296557553234, 9.639026887832124, 16.160141155487345, 6.994816905523085, 5.272319461297303, 71.4543350629404, 33.04838554322978, 74.49255532371193, 61.43052067107495, 116.04727321649025, 160.99784201489675, 10.308081572329534, 26.578545839257263, 6.920887379595784, 92.65424579994519, 12.625476031719419, 77.14641732168732, 56.49307430491277, 82.00381899474277, 9.066950709930815, 61.30650695095518, 15.77058003854616, 78.75372727089336, 6.419957944418757, 12.85542330635042, 54.35172074680685, 5.3854766484347705, 12.942198728029934, 16.906490447809865, 11.252590219011537, 65.08431110201529, 14.289657507999726, 5.248522913689889, 24.172912987046573, 27.226821173297168, 127.67228409570228, 51.24316627202805, 5.391302628566118, 38.78471096139242, 16.896636680388426, 18.047539082244175, 27.812241815062208, 25.71514374815116, 60.36440978665822, 187.06079632855523, 8.00309059368616, 10.597784525983002, 69.3556422524819, 47.72872307571072, 12.856919420222637, 47.9404580828659, 59.54613190323414, 10.982205501574773, 40.466440616199826, 14.278246447106405, 101.3901916697597, 56.01117464619783, 61.788159986872614, 67.87434474572107, 70.95744384224699, 47.1584240651145, 31.018012684239107, 20.516357260276195, 150.70133492505374, 7.89931780374045, 46.73907849649255, 61.54338989534633, 28.09177388238784, 68.5246595112168, 27.56580557930083, 38.962187802479434, 47.21745225630904, 73.18455882213522, 15.550122399335176, 36.56553478827875, 5.804057075860323, 16.95658410657223, 5.111040388153448, 47.34753238019486, 15.633250852865995, 14.774038446537988, 31.061164313234865, 28.339181562981594, 126.84823672509563, 43.89857757719065, 8.6872287239934, 105.314196401441, 29.441367714289775, 61.825996147610255, 39.67717842264673, 33.65001984407456, 12.284849609583498, 29.340690681459243, 27.25796552239051, 9.569913129657229, 15.42124536665598, 58.838020659980714, 84.31471139763765, 28.0228782787127, 13.093242320287581, 28.066935677513012, 8.47790983423331, 10.187563922122813, 35.936864087880814, 21.225922974577024, 120.11958852059999, 8.871211286434056, 5.806656834673623, 7.6771092495955395, 13.468374532807324, 23.942184441387077, 16.122429565581346, 22.94880777895331, 9.439949874341817, 22.499187399509953, 50.79345434785056, 22.97688250403805, 50.66276043312555, 48.10446410102274, 42.313983232687825, 6.865329912333611, 60.975593960652425, 14.834497150185648, 90.9151115919112, 47.44857320412564, 5.197689175903086, 7.710470755575024, 8.222769507467243, 9.76617007680247, 44.49866868680433, 69.31917399368959, 8.336838715208259, 100.2172162937907, 38.426539602798435, 17.894384103790305, 21.280312213284486, 8.976075014088915, 64.69287082243487, 24.689535067676058, 7.4278913869758325, 5.462400078400683, 9.338575974421726, 11.068917391544465, 103.79714923096748, 11.521142948963297, 88.44041454036585, 22.93826541598798, 37.8776509415079, 31.407337854340156, 21.794824054082987, 7.525032523463366, 14.417556617661953, 53.04155131133173, 5.143046022001374, 76.90749025464395, 83.9596235298397, 28.752391671984977, 8.22527794564523, 8.884359767276885, 6.19127788519879, 23.67595411509439, 28.8078892901229, 65.33182831723843, 34.11783191998367, 7.931030077585687, 65.61440300934657, 18.39390770449084, 5.264069912523522, 45.950217210079906, 8.730595054067157, 28.761385206986002, 5.586562280560387, 7.059570087867218, 76.30564896822874, 31.67413777996504, 16.66621701764353, 6.11464242510922, 5.038655753589627, 11.959973880203828, 19.96986008648751, 72.7832548593343, 90.33179035757954, 8.0515282669359, 72.27223247864498, 44.176424913471, 45.43287530185293, 53.208189064484934, 21.111002185440196, 9.14765075447271, 26.365704607155436, 20.456758011027407, 109.87516404283804, 114.27420205441175, 6.579663497164158, 68.23529166327852, 60.62847066789212, 12.721737681819134, 34.953123417541306, 18.112774467724865, 45.60832795318754, 52.16792067761825, 75.7149189857334, 19.076476998348006, 68.08552739367958, 62.49259077201054, 19.773741855187417, 18.476229111796005, 31.82586175204674, 71.77050926439054, 34.76351559689026, 12.014722358818581, 5.636416286179167, 32.44335828853374, 16.04530934342774, 7.8237829069827365, 11.073898145840959, 16.258252686790524, 106.67851664847883, 106.51381414596699, 17.24340236451267, 67.76793850822705, 60.02092629672113, 44.56488014799172, 106.92032967927841, 34.23065251569444, 16.367203531821573, 14.310059273926692, 63.85690621934114, 6.125187583720449, 15.23636767057412, 5.33831247442313, 33.70759250702737, 6.870003218993048, 8.099308212402622, 28.026314588925764, 16.409522907494033, 9.604428763678959, 33.318946968705895, 52.673601442706804, 19.31604071340796, 48.51830932722629, 89.93119332888264, 70.26712599978234, 127.23812096255614, 19.90194352623521, 91.99335053443664, 49.903294093555324, 26.728219251904658, 27.74240954742633, 21.030737547507837, 8.574495086707216, 6.374375369634091, 49.528888111887284, 10.658216483176206, 6.528143057609431, 9.426472484972813, 9.791959674920195, 10.879938168177452, 184.59839593682693, 14.373036416165618, 29.849269176822187, 23.220478181759162, 47.27802124474724, 6.928531893918455, 44.14558187170465, 44.02557541353598, 8.278953063968904, 34.99745954243413, 73.61748389649505, 56.006171020409475, 35.290290416383854, 5.14412659236871, 6.860816653981628, 75.35180732677149, 83.6770510872137, 24.929369400588925, 10.07748264810029, 54.994939960758806, 20.26552068468586, 39.93884739976046, 30.66968066173653, 11.210045696414731, 59.62601260268505, 12.242525753104331, 11.560964788612882, 22.220743833075947, 9.51802781980245, 12.016109643587779, 5.066684853430989, 11.5690998434243, 66.61115764262809, 25.799419203158358, 17.67485325219703, 22.385914980752567, 98.23978482544197, 9.950684280981868, 8.709156048005255, 18.058036616887634, 25.776289725106658, 87.62382853952433, 21.107089483779713, 13.878030318007164, 58.44411725357606, 27.556077585263598, 14.931255165879193, 7.3977843952301665, 7.708004756679522, 48.69519791525948, 69.28649124941768, 13.946752041811983, 5.891788158510217, 57.52753209050869, 19.624520340774204, 32.51839713420371, 8.229913388984398, 20.217176316120998, 6.398152547014445, 74.72856038686191, 9.042977598825573, 10.441842591140512, 55.920342158156174, 9.039260170197274, 11.241826112448706, 31.984635522487004, 37.234070738079126, 28.703180423135443, 90.1119952506361, 39.732705507939315, 26.93215981570401, 28.557668055014553, 42.280809378775224, 79.56723142002151, 46.826900324518874, 6.129970104471002, 77.71532743623608, 11.117573353343364, 16.93735096097623, 96.48996666364044, 46.05249731936982, 35.520757819129386, 131.48836521917747, 35.32598091099704, 37.97123888649692, 6.714929022598568, 37.270951990514455, 17.17889496347614, 12.007269099735668, 89.61440654897352, 29.94311532182373, 118.68255696822266, 31.525965223859007, 110.09250984077966, 7.5688332577668005, 5.251200828325058, 34.985855868910306, 56.929132762992566, 30.08088696046869, 14.453530779363835, 18.55321836419933, 24.683297443497587, 69.9192511787325, 94.01074908648386, 44.065536876838976, 8.407710876961485, 13.087005336465243, 8.802033176117297, 115.72652992242476, 47.248197562677305, 112.39560265524214, 73.3431235785254, 64.34973592257165, 12.810505326131674, 6.042996689973803, 62.13735405315971, 9.878557511689134, 21.478710065106963, 73.14396814944833, 5.4819736759565485, 105.29362074815238, 5.719382974466805, 19.55574366817205, 83.94971087613503, 12.087282844383326, 6.637250582652011, 44.80236638085149, 22.518669891917074, 34.573815659606474, 31.169619403195604, 34.99325912198817, 60.008299052309916, 9.16926362486868, 9.435316147237197, 93.00816363197146, 62.774886954462666, 88.9382459875829, 8.673608913039368, 34.18652616833832, 9.104344932788477, 66.79528722014248, 26.01745588792442, 52.30734759872509, 9.945848758327115, 8.938006362337848, 65.31260996864903, 79.06594615132903, 25.941174297667416, 74.02505215154855, 41.26530220847621, 17.61693710769345, 164.67951308993688, 50.47856823216371, 70.9631249230726, 31.069017810040435, 86.57334009136287, 13.291531578430444, 5.064260770043124, 9.005630829803414, 33.12384830456425, 6.0859356721344895, 10.9669543841294, 6.907153296227803, 11.263175386398919, 108.05852410327685, 11.949583839182523, 17.199301293764805, 22.690599240695835, 18.167935041962682, 54.23601821507019, 40.16961381727076, 15.744422743888435, 6.514137838527776, 30.612319245675017, 25.43420335186712, 11.489549216519764, 27.192729665554396, 46.43380159189047, 11.765255728986718, 118.33269368978267, 7.746893676272372, 5.213204197341408, 97.45369072676378, 32.92091237289348, 15.403440986176404, 54.825072469602084, 6.925021654971754, 55.024953628083225, 61.56539433092264, 55.125479356934164, 75.82756448093016, 101.89936360467429, 15.788257893645234, 22.725376267370226, 49.06603766112065, 140.4493414440499, 25.32627646221259, 93.64423687350916, 43.28581597452794, 148.27381357781758, 23.57834733576842, 10.88129881463778, 26.777504071615088, 8.53133394802645, 12.927626295897104, 21.37434471411091, 6.417233355973862, 5.550308772313137, 104.53266491513273, 16.425334723341162, 51.482895201442375, 35.67207683201504, 99.1802931863573, 17.844253294336486, 9.21380274487586, 10.270984578991259, 6.379044724803977, 14.590941251314716, 8.547237252464859, 9.159760015908702, 13.149524404927153, 25.73756075580948, 18.461375189308974, 111.69201065000257, 26.98822875255215, 19.722864798682856, 7.726565436656468, 16.85268584062992, 5.981298864199376, 95.2318838938896, 9.526529767516438, 18.16380448794719, 12.905493232315255, 17.805016270245613, 23.119948717384688, 39.70199532412188, 30.07465989437015, 32.905034406586395, 32.27417121349861, 18.668017912912518, 9.11442637213913, 82.42037523537005, 83.3301344869922, 79.38385190263644, 53.06585300950524, 16.09069812889234, 42.977013560625956, 24.2823332598941, 5.171824550515281, 37.897190963239076, 82.10415313779774, 72.3322789786159, 54.532094001293885, 31.25955924157789, 16.972771811679777, 45.047469747239376, 28.713085553421358, 112.83705180781921, 18.34387156633048, 22.57993282752387, 83.23479335414281, 35.4438826279675, 8.919945006269591, 41.754920246320474, 5.890047123563718, 10.211297592332711, 71.65004734307207, 90.21236799674416, 31.489414384245187, 78.33971502607363, 26.796224052701003, 129.72227455697444, 69.11334837319188, 7.514483381334682, 6.733234248780176, 109.30351282331908, 5.696522665904693, 19.45975629089219, 6.410865963400756, 74.92028756566594, 31.15858756800806, 8.07537911232484, 22.7450676248689, 8.08742144780278, 30.353306966510253, 15.61967548847913, 9.59874691467217, 48.4523925726423, 12.132615731422689, 107.39294819152948, 13.534194891369147, 53.28940554413209, 27.674462560677117, 64.05434608985782, 94.19755856349951, 30.339048405383295, 5.19208873311521, 107.84353799857332, 5.825873204550557, 8.178253453311795, 13.856003644861435, 18.243328509326172, 15.043820393085115, 45.39779489546082, 72.23426911832594, 6.378497524589386, 41.820963033459094, 56.91560154011888, 12.212285603082774, 44.62318248417635, 62.198332633739724, 71.4763974509007, 44.340975232724546, 33.55274446860617, 76.41268591356524, 8.316607308173648, 44.217346997150074, 172.85095077179528, 42.72788376144534, 57.68236848744887, 28.493912835076994, 6.06738478812736, 5.342207530484262, 131.40253357988735, 79.87764227333979, 15.177703713856664, 5.1987993613789785, 92.5447922505973, 24.540272187420573, 9.367498771034139, 95.01294513615254, 43.90869514516005, 69.76324340815974, 59.36128172325316, 10.02802315297609, 28.89723801410416, 23.599961116866147, 14.244257179428715, 84.09240186411662, 6.193138023946709, 12.033847802497604, 56.54814212725258, 61.13799151142902, 28.294067780190453, 6.737023905023753, 35.45819333998381, 5.138784942769096, 108.65036488894738, 5.87235587170712, 33.163910510339456, 21.513063495869783, 74.31771907994948, 5.16849235111946, 17.878044881761028, 5.10776756586421, 17.94555697178006, 5.156169937908997, 9.93961650546653, 33.835334614964026, 7.813881021133162, 11.03775733263657, 20.890648386786154, 32.21629433332239, 75.39911144805856, 24.037787637339843, 54.8375697170178, 18.985282709528644, 21.079621983235832, 6.404664962164572, 5.497323951473985, 5.369340738893303, 52.64961443016742, 10.769283805704049, 11.61654110886048, 12.485029151215066, 14.923067700604546, 8.886898582488412, 23.456835049792772, 102.20536003439744, 36.797555939952304, 16.545381703488037, 15.519937105118125, 78.09359550567274, 15.927247989940458, 21.3485725747755, 18.8865278688253, 8.396943282405031, 61.98353525044805, 74.68712517795197, 9.550569114549955, 55.392427825692174, 12.325972096617257, 91.1311588046308, 31.614937718830188, 26.20236630785555, 32.837856668101, 5.431308750585648, 40.94356792078524, 50.88252529373648, 10.601482813225905, 15.027961431009054, 7.261704946556967, 14.93815689747684, 20.984507210146358, 13.125624589086522, 48.15424996540767, 17.38146220320131, 25.91887308471437, 37.03945474158395, 12.658843799087862, 95.7406323730292, 23.907420755584393, 63.095838346191414, 53.67376060123676, 46.994721028441944, 5.752208765646974, 5.3039981789478565, 18.932049695202227, 20.514385526416543, 26.773470543369328, 51.48185201184789, 117.29536490502755, 40.28621377673642, 97.30821357661267, 17.81965515662261, 17.581868525611377, 47.91722806691817, 42.21962512287804, 18.64390396373255, 13.855633127974718, 91.99917653404489, 7.753042476696014, 18.10974384093796, 18.43423198290802, 18.58444764013253, 97.16703220390949, 37.62935513978792, 15.810603486947324, 17.69984182553106, 15.1000856609526, 89.92413158405873, 19.15022220137379, 83.1760532293708, 47.555260564, 30.20964974264669, 118.06981104639712, 43.45391576011398, 36.65337348550854, 73.59578498024516, 43.55178860075908, 22.614803511284386, 23.63402316716621, 60.657130917293614, 98.59436382584967, 35.08114962329778, 27.042316000601083, 47.0968915380204, 59.96834409664232, 20.718491149597373, 14.47007549913121, 78.7643542916547, 20.239802372533525, 90.40998012997653, 18.581673901080965, 18.28492886204938, 11.418608846637852, 59.07583224166319, 57.70004988449771, 52.93403684725626, 11.811390046321492, 51.74491304275439, 61.32337830790329, 53.326619877138214, 19.22850398835096, 24.931356199731535, 55.49239340103927, 26.646508898144784, 10.08297855489767, 89.35389256171885, 14.314785547474097, 53.9840630997492, 5.777825130128874, 29.295768425631834, 9.79614654522424, 8.35526954986941, 18.7730583317434, 8.116795964345672, 15.655543355552036, 15.991224380054948, 85.9024594321874, 51.32321411905693, 135.865864013853, 10.651282110208903, 5.463056332146961, 5.680070479096473, 62.05350468239303, 60.3754136220569, 14.907013286431024, 64.54062479352757, 11.631841711841682, 25.939957472718085, 78.63695933303217, 20.51796569277371, 40.97970355627991, 8.898504557158825, 11.262748586575906, 6.923345777588392, 93.1197981428094, 63.12107409890902, 56.07247767916914, 39.69464080941394, 7.137186327291113, 26.474232724918878, 24.846021278257087, 19.110834473289852, 8.984397048652696, 13.88722016196113, 88.74094753032595, 47.472283812511165, 41.995005948080234, 35.79951853748293, 75.34666205021576, 11.973979189869473, 47.311273452584246, 23.229090022146735, 11.344216137062135, 37.56310401071837, 11.339922021668125, 26.620928458185496, 88.29267304406551, 7.74203063450493, 45.75221389578616, 5.63227354774915, 81.8145789081531, 110.01533827829006, 25.708239186758664, 62.546344564614174, 69.79768845019245, 13.439461633041601, 97.99049506755227, 16.8610247232933, 9.730744650975875, 60.659612401937586, 11.709761667042905, 27.674452567941408, 45.386545786600536, 81.25279887949009, 85.31174646653568, 20.101513181213058, 9.657197781918143, 10.652564573564058, 70.75822364170835, 5.162367080890201, 15.562258324671586, 31.06636575328845, 7.832249464968949, 10.361933603276618, 56.50990407599748, 73.64158165261823, 26.320212602115166, 11.578877660496877, 94.2755269108217, 19.517258646983432, 35.36870736024426, 113.80265896616436, 12.574781202866186, 20.586153613247106, 7.876120932925281, 19.78388413548768, 37.40989826589821, 84.90771184695727, 63.36823268937307, 22.783404394815133, 9.53683874992403, 10.226522996733596, 20.167115807876115, 115.32222986714841, 73.53519230821252, 41.54581856978864, 6.704507199724822, 102.01440040999081, 33.592414213325846, 17.729019369670777, 18.780331650312274, 16.418194513712418, 62.44990945796653, 25.703507431280876, 23.203512101490567, 39.63611569098036, 26.58515252468809, 15.596083308369895, 59.511354215954086, 62.63525773807786, 48.682211559023635, 45.30069923450231, 103.10659308062128, 22.330226625910406, 54.26904990855776, 20.076528424209226, 27.120475760799472, 45.25196061824433, 23.316002849213895, 9.223026040941825, 19.484424674953296, 70.0867518975988, 22.803948889592885, 6.852136023941806, 18.515739608025715, 54.033739953538124, 5.84426947006113, 9.918096434556544, 65.94454278667367, 25.94801411924545, 11.712646051847745, 19.968702919644482, 44.677424012963755, 44.911196339826176, 20.814075955677435, 13.427973269780228, 174.86946339686256, 118.71862325152449, 5.418334368102563, 54.00544261685993, 87.98201673130264, 89.37676000296128, 15.69435797193652, 16.534140720057945, 21.298452225170088, 10.849432438850418, 41.92639222896467, 51.667522142310844, 13.465291365305905, 69.94557069545324, 8.24921765681521, 22.150624729120008, 52.00849247664295, 64.28518294566547, 8.268660851124174, 152.63179467313546, 44.34858305218947, 25.341698426935423, 31.569804667114564, 18.90439661118472, 8.022802099766913, 72.27516787710064, 20.193229379521288, 5.10616395665097, 53.25822973211863, 81.28330111708705, 94.56895524546209, 5.080242062867519, 10.13483626369147, 17.778858624098913, 86.10836314197097, 15.137331280486839, 37.72086468998508, 11.652699691341631, 25.95191403639876, 27.738595746492926, 29.27751350826201, 9.259299904000471, 7.6246777516722055, 18.79018504550025, 58.556962275038174, 23.38034085536877, 52.77965823588087, 29.099139889888395, 16.719325921264616, 27.16984822515132, 5.053560316842033, 68.07629501864206, 14.38236120706503, 18.664882117522062, 9.903159459159971, 30.533780162596294, 56.88268258791303, 108.16569308834679, 20.95357008661528, 6.143570004773866, 21.724882574535183, 39.15198967462634, 127.76625372006104, 94.49345904185722, 10.41275294252087, 20.956042939591974, 6.07886520335501, 71.01379630172036, 8.91546669866141, 9.967588296530268, 20.487076817447313, 18.72277127465273, 90.87335172888353, 20.858390758332106, 75.335130461312, 28.709999778934122, 9.049154154097682, 52.89689976144606, 6.9010662011869455, 7.991962336386363, 7.253172627954951, 18.099998855012032, 12.329330728499876, ...])
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);
([6573489.0625, 6662304.661080177, 6689187.5, 6754762.271279669, 6768024.204607574, 6789121.875, 6825167.1875, 6874445.128584016, 6895070.3125, 6909843.085062547, 6910632.8125, 6920296.077717546, 6942978.125, 6943031.085885974, 7001894.104260199, 7049332.639193833, 7050725.0, 7050759.224275704, 7097463.807201331, 7119601.5625, 7135669.741511179, 7136684.375, 7141649.607784418, 7144037.204385764, 7144528.931793713, 7153471.666179091, 7161457.8125, 7161463.744540759, 7199317.663311705, 7202082.8125, 7208426.853472606, 7208435.9375, 7247264.0625, 7313165.183545164, 7333520.260260338, 7335323.4375, 7337816.440019261, 7393004.641361197, 7399423.346557353, 7406301.2610013075, 7425218.726662199, 7425231.592706239, 7430929.9742697105, 7434736.995312454, 7435933.755234047, 7485156.25, 7487300.264571213, 7493860.9375, 7494737.5, 7496746.875, 7505201.621091989, 7506896.2786585335, 7506896.768233116, 7507611.677810646, 7515784.375, 7519509.945573912, 7546681.25, 7547557.237905183, 7548617.08089397, 7549805.919760522, 7553221.875, 7557739.808498147, 7568165.29975868, 7575960.4954428, 7575964.943669471, 7577226.5625, 7601240.280800772, 7603493.103595252, 7606993.877590825, 7623887.57845387, 7625287.363568825, 7640688.880278643, 7640748.5577343935, 7646235.66984687, 7690222.388221704, 7738429.6875, 7745123.4375, 7786624.8111343365, 7796144.865553314, 7807323.094888711, 7807381.88030082, 7808732.121516798, 7810999.839655196, 7813171.272474813, 7828227.980949241, 7831200.984976409, 7831312.132279197, 7834384.375, 7835410.754364185, 7837425.881777661, 7887168.75, 7928410.9375, 7958840.529874768, 7959381.383360405, 7959633.38530229, 7960568.60143008, 7960675.5462681735, 7961437.5, 7961664.0625, 7962321.525743247, 7965034.375, 7965210.9375, 7965215.021175335, 7966203.125, 7968328.87559075, 7969403.125, 7971110.57729232, 7975413.744584781, 7976412.5, 7996492.137116131, 8004218.75, 8006542.1875, 8012191.810635749, 8037629.838510476, 8038489.0625, 8040567.052480574, 8041389.506764091, 8042228.753994689, 8056815.625, 8060597.045373509, 8083858.752651793, 8089361.930445716, 8111887.490544336, 8112585.9375, 8113560.9375, 8114950.687869898, 8185426.5625, 8215109.375, 8219881.699031973, 8224412.5, 8260938.104280005, 8279455.320030145, 8285558.2795428, 8287760.8700563125, 8289476.831719455, 8319071.995417132, 8322957.8125, 8340631.25, 8369786.233000929, 8371294.725236979, 8375839.0389409335, 8378408.157597328, 8398075.864383508, 8425313.02666408, 8489816.660293058, 8556134.375, 8568943.150522713, 8571135.838030268, 8571243.949727667, 8634851.113658179, 8641924.714841016, 8641933.091284556, 8738049.021776088, 8741192.31314276, 8742623.032768818, 9632028.125, 9731899.692548271, 9738870.3125, 9825504.6875, 9921096.875, 9925567.676993715, 9925818.75, 9926092.159137886, 9927762.260542417, 9935595.3125, 9935646.64848572, 9947119.037060998, 9956156.127357444, 9961306.723007845, 9987265.625, 9992508.722673269, 10003954.781350873, 10008006.94391537, 10087596.875, 10098589.668490335, 10142707.290901126, 10178972.985086972, 10180018.75, 10180879.457604773, 10182438.550195765, 10191531.264752254, 10192614.07097077, 10207129.64955993, 10238835.99217425, 10250593.987924738, 10250654.6875, 10250693.142440906, 10279040.46916834, 10303752.550782409, 10305035.467223655, 10308190.40347109, 10308437.355390312, 10313737.003884593, 10313813.077805312, 10315102.306160616, 10318543.75, 10318689.515756924, 10318695.194754813, 10319257.231834427, 10320125.93699621, 10320190.319122514, 10322989.0625, 10323207.079350488, 10323230.231696783, 10323261.76115332, 10323337.5, 10323972.558326693, 10324025.66237665, 10324098.4375, 10324186.69230128, 10324186.727097116, 10324511.99232183, 10325131.009242734, 10327250.0, 10328761.607562432, 10333848.2556097, 10335081.501434857, 10336229.515408961, 10337333.28683017, 10338264.95742437, 10348547.898495242, 10349670.3125, 10350499.527397526, 10356308.438245075, 10364957.8125, 10373943.75, 10400446.728148669, 10400608.835823989, 10400720.086884892, 10401006.56374473, 10401022.82693285, 10401373.707756432, 10401379.6875, 10401428.691170255, 10401471.627082767, 10401539.646187425, 10401600.825948415, 10401613.699500276, 10401670.952991564, 10401739.0625, 10401740.281774543, 10401765.891016103, 10401777.489536846, 10401812.5, 10401841.713133657, 10401843.058445891, 10401853.820547264, 10401856.25, 10401890.805079697, 10401960.577804409, 10402064.564428147, 10402091.022436619, 10402119.839870736, 10402162.762294762, 10402167.75871254, 10402218.715299958, 10402248.744807435, 10402295.3125, 10402339.437210722, 10402340.813794358, 10402348.4375, 10402365.623163702, 10402384.375, 10402409.375, 10402412.5, 10402452.927716304, 10402462.323842915, 10402500.0, 10402505.036754496, 10402537.575266846, 10402548.331792507, 10402551.5625, 10402564.573515309, 10402598.065747544, 10402644.771919342, 10402735.123642832, 10402742.493660018, 10402781.25, 10402820.3125, 10402846.125042327, 10402870.282334551, 10403027.939906674, 10403048.4375, 10403280.584678799, 10403362.116397511, 10403449.079186812, 10403557.8125, 10403593.652100801, 10403896.83420057, 10404574.45236664, 10404623.944968788, 10404736.74119156, 10405118.75, 10406473.114828082, 10406839.319474008, 10410212.610334055, 10412672.373697191, 10416037.33548324, 10416375.836941024, 10420542.029906888, 10426404.866985684, 10440679.912317593, 10442919.717649924, 10443746.086480722, 10443882.8125, 10446082.248857835, 10448826.54805453, 10448867.1875, 10449291.519473778, 10449325.0, 10449365.445733521, 10450119.376739971, 10451003.593633542, 10452277.76664083, 10461168.653091494, 10467655.67636353, 10476616.392687887, 10478362.5, 10479399.367457412, 10480351.45537639, 10485297.059202842, 10489779.739546845, 10489789.466018394, 10491106.862656876, 10497323.698062235, 10499490.194975073, 10535298.650262954, 10536372.377622347, 10537109.253020285, 10538262.765156101, 10539607.8125, 10541023.282574702, 10541047.445170293, 10541918.206777493, 10543284.375, 10543761.589108577, 10547303.846878348, 10556113.131947234, 10558281.940578602, 10559521.875, 10561127.58541359, 10580696.564885618, 10587674.576794745, 10587858.654126482, 10589390.622307071, 10589721.268829782, 10590017.468164692, 10599395.3125, 10600582.8125, 10603207.524499387, 10612454.123975264, 10629711.098764265, 10629916.477289136, 10634490.625, 10634518.641288254, 10639083.074607193, 10641669.720665528, 10642251.853164135, 10642355.887989134, 10642382.324412873, 10642468.75, 10642732.445533443, 10642971.946803428, 10643062.30774026, 10643093.385692148, 10643219.250748953, 10644002.758723198, 10644435.083859857, 10644667.04232774, 10645232.105780767, 10645278.914248047, 10645464.0625, 10645564.0625, 10645844.143239278, 10646035.9375, 10646085.931007246, 10646280.128195371, 10646335.9375, 10646456.25, 10646477.679288775, 10646589.0625, 10646825.967380635, 10647273.4375, 10647521.626707584, 10647584.375, 10647883.297238138, 10648425.498194223, 10648610.078232042, 10648631.25, 10648634.375, 10648910.360845143, 10649162.5, 10649960.841364397, 10650012.714930084, 10652368.75, 10656696.875, 10658871.875, 10658890.646497196, 10658892.894348208, 10660404.457160326, 10660804.6875, 10661521.875, 10665029.752225112, 10666331.472249951, 10666927.535335276, 10667191.487224001, 10670610.9375, 10671486.155568486, 10672254.977435056, 10673693.644532263, 10674210.9375, 10675549.300309714, 10679615.17982291, 10681888.810412172, 10683413.083209142, 10684196.373556243, 10687364.0625, 10688422.3374927, 10702767.1875, 10702775.196561825, 10703752.783768099, 10703759.214512704, 10703908.350404143, 10704058.707886428, 10704060.9375, 10704770.164650247, 10704939.88570587, 10705118.673320733, 10705276.346948083, 10705410.469374493, 10706131.051811919, 10706146.995388528, 10706656.25, 10706884.375, 10706904.6875, 10707152.22907296, 10707258.210777186, 10707387.218680961, 10707393.516978271, 10707498.296400491, 10707568.75, 10707589.709577952, 10707846.369973239, 10707895.3125, 10707954.6875, 10708032.666595183, 10708050.0, 10708379.6875, 10708778.685522908, 10709152.936243879, 10711207.8125, 10713337.294820752, 10719272.963748168, 10727120.3125, 10727694.79984923, 10730077.86846042, 10730169.900343724, 10730315.625, 10730432.791669197, 10730482.707162222, 10730639.741816165, 10730720.3974736, 10731021.07979038, 10731458.866564183, 10732128.613383222, 10736900.139804624, 10737231.899033466, 10737465.032179952, 10738403.125, 10739606.44582763, 10739768.9203937, 10739953.125, 10739973.258776005, 10741068.969785359, 10744113.317024734, 10744327.909890883, 10749537.872879246, 10750881.7696486, 10753817.567957504, 10755626.9421819, 10760663.6213962, 10761201.5625, 10763245.42863464, 10764157.8125, 10766055.446044652, 10766685.9375, 10770209.375, 10771927.4530644, 10772885.9375, 10773059.375, 10773870.518228356, 10773923.440219082, 10774250.797518536, 10774750.0, 10775129.501584595, 10775131.25, 10776075.0, 10784783.96793001, 10785660.623882957, 10785862.336420715, 10785960.842494885, 10786628.56083377, 10786885.285279363, 10787078.656931944, 10787544.85189971, 10787703.474940658, 10787803.727631252, 10790720.654015535, 10799614.0625, 10805717.75398487, 10812557.706135036, 10812661.535413256, 10814629.545066083, 10814682.185271142, 10814728.961788591, 10815771.77988, 10820044.21239952, 10822970.102281988, 10828665.059256034, 10829190.466100935, 10830227.406452095, 10833582.8125, 10836398.354726944, 10837053.98962553, 10837414.39107882, 10838078.549855314, 10838109.843805252, 10838173.4375, 10838181.472091267, 10838291.614970563, 10838296.09293238, 10838745.904049436, 10838831.017878734, 10838971.05193423, 10839126.064504545, 10839237.7570662, 10839376.280696917, 10839453.236811828, 10839793.481738806, 10840126.5625, 10840505.387410944, 10841435.694386989, 10843032.8125, 10844238.613813395, 10844555.438637147, 10844802.902836187, 10845873.712860612, 10847612.5, 10848632.8125, 10851396.103271121, 10851406.25, 10851523.4375, 10852701.845761903, 10852780.622443486, 10854246.254440596, 10854337.419119928, 10854792.86332867, 10855044.793221312, 10857008.86259465, 10860502.583782224, 10860505.719705405, 10860520.092062553, 10860591.602716522, 10860610.259756356, 10860720.3125, 10862095.473667672, 10862731.25, 10863589.0625, 10864545.218590824, 10864872.826312866, 10864976.454709785, 10864990.372754404, 10865029.533952035, 10865085.9375, 10865331.087964598, 10865557.08126145, 10866019.80837438, 10866764.0625, 10866984.253317751, 10867068.328062132, 10867208.991968343, 10867373.040898008, 10867709.347276293, 10867709.542230904, 10868225.300112305, 10869244.48531143, 10869955.247540621, 10870096.875, 10870568.828378482, 10870623.997879498, 10870894.84135849, 10870917.1875, 10871002.592734547, 10871146.875, 10871227.674268097, 10871417.209784567, 10871531.40945058, 10871534.164382357, 10871738.74523015, 10872172.535598936, 10872474.555363724, 10872726.522391582, 10873698.4375, 10874430.52041779, 10878885.084490174, 10879329.6875, 10879930.285826717, 10884221.30119414, 10885328.125, 10887032.8125, 10887170.460819257, 10889885.9375, 10891876.51974687, 10900729.743858682, 10901969.998623239, 10902021.540134177, 10903171.875, 10903236.796645744, 10903353.123418346, 10903490.423422242, 10903492.195839584, 10904182.976494877, 10904234.375, 10904250.060618268, 10904857.630086917, 10905034.487100102, 10905052.884394083, 10905207.854882304, 10905262.402827494, 10906556.110709433, 10906618.008286456, 10906665.625, 10906705.410524761, 10906961.753145881, 10907145.859251283, 10907151.366694111, 10907226.5625, 10907391.577933058, 10907531.254692024, 10907650.0, 10907740.625, 10907757.800729422, 10907792.053386064, 10907851.413840873, 10908323.821053684, 10908384.375, 10908466.383966247, 10908467.1875, 10908469.814498896, 10908502.568504265, 10908525.133923363, 10908588.103364328, 10908927.029883713, 10909030.30167394, 10909041.788403207, 10909200.641227132, 10909479.332872663, 10909583.35962009, 10909742.129180698, 10909790.74430847, 10909798.4375, 10909943.75, 10909959.04510322, 10909977.387406848, 10910019.518065305, 10910053.637159742, 10910082.265728867, 10910169.553062968, 10910249.216434665, 10910387.5, 10910451.320415717, 10910584.666741675, 10910606.711991346, 10910745.30765317, 10910793.172954222, 10910808.161209425, 10910885.9375, 10911337.598482134, 10912542.55301573, 10912682.956408205, 10913009.155430993, 10913884.145521486, 10913999.485388702, 10914391.379393738, 10914426.765531056, 10914443.522742504, 10915509.375, 10916584.623302557, 10916910.9375, 10917045.964137636, 10917781.25, 10918310.9375, 10918552.327836026, 10918795.084478702, 10918827.395637883, 10920104.37628808, 10920379.6875, 10920988.697561042, 10921285.959998295, 10921311.445466395, 10921597.349944428, 10922148.612330703, 10922174.425151777, 10922182.102245402, 10922598.957916485, 10922608.074198319, 10922751.5625, 10922838.299355416, 10922934.19804743, 10922970.024667643, 10923074.871584656, 10923314.0625, 10924310.254167179, 10924572.566229774, 10924666.037396915, 10925114.823218739, 10925274.395953067, 10925309.660851493, 10926426.5625, 10926609.126936935, 10926834.113338536, 10926842.1875, 10927233.53681536, 10927752.117140347, 10927776.5625, 10928120.3125, 10928280.407503584, 10928313.745109502, 10928471.5549109, 10928811.333527945, 10928852.878356487, 10930383.501830645, 10932831.961397411, 10934147.57190265, 10934978.125, 10935172.085746283, 10935177.35542735, 10935815.6659914, 10935843.208236394, 10935872.66549298, 10936504.315451268, 10936946.70594183, 10937775.824505543, 10938901.5625, 10938989.0625, 10939310.9375, 10939397.898068827, 10939739.0625, 10940133.782970836, 10940935.628307266, 10942134.910255041, 10942693.75, 10942956.25, 10943284.62634696, 10944834.238623954, 10946729.43219025, 10951558.793677473, 10952207.683059726, 10952259.28532832, 10953425.443781504, 10955703.125, 10956008.523494165, 10956799.104426967, 10958639.906623922, 10960482.484674502, 10961293.947291939, 10961470.3125, 10962075.397393666, 10963085.9375, 10963303.125, 10963500.701977616, 10963682.050963514, 10963916.097097263, 10964282.8125, 10964288.959774464, 10964889.835103363, 10965407.125829052, 10965888.887744227, 10967383.413915118, 10967666.68660426, 10970492.585335251, 10975902.065344887, 10976526.690177724, 10977313.4476116, 10978418.414521998, 10981890.80051772, 10982717.438100163, 10984603.902887106, 10984871.32525963, 10986236.328146555, 10987118.42220266, 10987740.655015921, 10987887.072337521, 10988233.493520787, 10992385.9375, 10993046.86592, 10993276.5625, 10995569.050242228, 10997536.801497238, 10999485.081681134, 11000277.189425623, 11000668.395693414, 11010188.5019505, 11010511.022211106, 11011583.563660307, 11011775.380673394, 11014120.3125, 11014365.625, 11014407.729422525, 11014762.559521053, 11014940.264963262, 11015540.406166391, 11015743.263049217, 11016493.308973854, 11017335.822291989, 11018510.9375, 11018514.0625, 11018532.8125, 11021437.492360607, 11021842.1875, 11021842.66892772, 11021958.755619006, 11024866.845534189, 11025606.384236455, 11025746.875, 11026298.569154762, 11026552.851288307, 11026894.652089505, 11027294.118103135, 11027666.43305905, 11028089.387376977, 11029160.895737419, 11029302.508129343, 11029504.52670929, 11029798.4375, 11030720.794008674, 11031302.34211236, 11031729.6875, 11032233.238924948, 11032241.062319685, 11032266.32122118, 11032444.485903295, 11032912.817878941, 11033679.6875, 11034125.825259745, 11034264.0625, 11036180.931137968, 11040648.799209915, 11048434.048151419, 11050758.073945856, 11050827.99595564, 11051111.93115673, 11051291.239824226, 11052172.466704426, 11052596.32281959, 11052629.627237454, 11052754.6875, 11052911.61978887, 11053386.208163979, 11053895.528893877, 11053896.151151927, 11054145.677182589, 11054246.875, 11054624.200677766, 11054690.57532673, 11054739.758817967, 11055397.74720087, 11056176.5625, 11056386.927260466, 11056937.439307136, 11056998.057799527, 11057048.670861337, 11057239.960239315, 11057405.398819093, 11057571.875, 11057930.962325215, 11057974.690589711, 11058162.197111817, 11058168.403244339, 11058254.6875, 11058298.046218792, 11058575.73948338, 11058745.652573014, 11058807.8125, 11058871.71390354, 11058929.590319438, 11058967.209384797, 11059131.343482688, 11059931.411751445, 11059981.25, 11060131.25, 11060648.4375, 11061412.5, 11061756.25, 11062285.517513849, 11062381.25, 11062382.15771534, 11062563.987288006, 11062646.474085188, 11062734.040186305, 11062854.5564848, 11062964.5646094, 11063035.9375, 11063076.184579002, 11063306.678301457, 11063336.638862181, 11063532.013552146, 11063573.838638002, 11063574.058423702, 11063592.1875, 11063657.920614177, 11063711.282049779, 11063861.832284654, 11064167.977690112, 11064457.73608406, 11064527.091761827, 11064754.224299261, 11064853.165264236, 11064964.0625, 11065055.19747289, 11065264.0625, 11065646.192376109, 11065862.5, 11068837.684426378, 11069198.80078844, 11069227.605263542, 11069810.751862202, 11074800.0, 11079475.0, 11080929.44114656, 11081481.552853331, 11081496.803677786, 11083301.125980841, 11085525.964599034, 11085708.39167428, 11086424.965965321, 11086731.887121925, 11087085.9375, 11087701.799513761, 11087744.910746772, 11087775.756881211, 11087829.153006328, 11087900.638072334, 11088346.234012226, 11088656.637696346, 11088720.3125, 11089054.6875, 11089163.412886245, 11089330.301907303, 11089633.631025543, 11089694.33728631, 11089776.485913249, 11089831.300444707, 11089842.023427382, 11090312.811773023, 11090528.262871109, 11090758.171365153, 11091155.876906864, 11091982.72597789, 11093960.996392127, 11094819.490876056, 11095320.123780603, 11096732.482938671, 11104792.1875, 11104809.223859612, 11105899.313436303, 11105974.297867382, 11106136.638612796, 11106198.90876055, 11106670.157635804, 11106702.28552308, 11107020.919238899, 11107360.394348023, 11108637.5, 11109126.01644201, 11109796.319158603, 11110463.017045118, 11110568.272925368, 11110746.875, 11110800.0, 11111003.125, 11111360.426275827, 11111377.014714492, 11111448.348233333, 11111557.8125, 11111661.963409413, 11111883.47988559, 11111952.239357162, 11112066.356309691, 11112171.744369306, 11112172.681455804, 11112173.054160414, 11112190.625, 11112444.958705788, 11112498.4375, 11113805.33957382, 11113838.460478649, 11113973.915959753, 11114174.076003429, 11114208.465689534, ...], [75.07217734126142, 5.244406457196255, 49.18762688939295, 14.1359538295751, 79.97899017476806, 98.24041033472311, 68.48098889806843, 14.283971260113622, 93.6562926316079, 17.62538147363729, 36.6854803876884, 18.96460191147195, 37.92787594558097, 5.095239801794994, 16.488786971683044, 53.50479675131219, 45.832696855569694, 10.90001373058362, 24.031738210778855, 84.83330911421127, 13.135740157593212, 65.4510282113361, 7.022030614400637, 23.806925845661613, 19.272452494081204, 58.58764158423332, 36.2744626517246, 9.076282334355659, 17.129194358585156, 93.48180372849603, 16.1800873239569, 88.90663079983983, 36.13133715106042, 22.097700211491254, 6.478933268840867, 73.11770973410573, 124.73060126508277, 14.768518536660702, 90.77627533808361, 6.704771307834857, 14.853296557553234, 9.639026887832124, 16.160141155487345, 6.994816905523085, 5.272319461297303, 71.4543350629404, 33.04838554322978, 74.49255532371193, 61.43052067107495, 116.04727321649025, 160.99784201489675, 10.308081572329534, 26.578545839257263, 6.920887379595784, 92.65424579994519, 12.625476031719419, 77.14641732168732, 56.49307430491277, 82.00381899474277, 9.066950709930815, 61.30650695095518, 15.77058003854616, 78.75372727089336, 6.419957944418757, 12.85542330635042, 54.35172074680685, 5.3854766484347705, 12.942198728029934, 16.906490447809865, 11.252590219011537, 65.08431110201529, 14.289657507999726, 5.248522913689889, 24.172912987046573, 27.226821173297168, 127.67228409570228, 51.24316627202805, 5.391302628566118, 38.78471096139242, 16.896636680388426, 18.047539082244175, 27.812241815062208, 25.71514374815116, 60.36440978665822, 187.06079632855523, 8.00309059368616, 10.597784525983002, 69.3556422524819, 47.72872307571072, 12.856919420222637, 47.9404580828659, 59.54613190323414, 10.982205501574773, 40.466440616199826, 14.278246447106405, 101.3901916697597, 56.01117464619783, 61.788159986872614, 67.87434474572107, 70.95744384224699, 47.1584240651145, 31.018012684239107, 20.516357260276195, 150.70133492505374, 7.89931780374045, 46.73907849649255, 61.54338989534633, 28.09177388238784, 68.5246595112168, 27.56580557930083, 38.962187802479434, 47.21745225630904, 73.18455882213522, 15.550122399335176, 36.56553478827875, 5.804057075860323, 16.95658410657223, 5.111040388153448, 47.34753238019486, 15.633250852865995, 14.774038446537988, 31.061164313234865, 28.339181562981594, 126.84823672509563, 43.89857757719065, 8.6872287239934, 105.314196401441, 29.441367714289775, 61.825996147610255, 39.67717842264673, 33.65001984407456, 12.284849609583498, 29.340690681459243, 27.25796552239051, 9.569913129657229, 15.42124536665598, 58.838020659980714, 84.31471139763765, 28.0228782787127, 13.093242320287581, 28.066935677513012, 8.47790983423331, 10.187563922122813, 35.936864087880814, 21.225922974577024, 120.11958852059999, 8.871211286434056, 5.806656834673623, 7.6771092495955395, 13.468374532807324, 23.942184441387077, 16.122429565581346, 22.94880777895331, 9.439949874341817, 22.499187399509953, 50.79345434785056, 22.97688250403805, 50.66276043312555, 48.10446410102274, 42.313983232687825, 6.865329912333611, 60.975593960652425, 14.834497150185648, 90.9151115919112, 47.44857320412564, 5.197689175903086, 7.710470755575024, 8.222769507467243, 9.76617007680247, 44.49866868680433, 69.31917399368959, 8.336838715208259, 100.2172162937907, 38.426539602798435, 17.894384103790305, 21.280312213284486, 8.976075014088915, 64.69287082243487, 24.689535067676058, 7.4278913869758325, 5.462400078400683, 9.338575974421726, 11.068917391544465, 103.79714923096748, 11.521142948963297, 88.44041454036585, 22.93826541598798, 37.8776509415079, 31.407337854340156, 21.794824054082987, 7.525032523463366, 14.417556617661953, 53.04155131133173, 5.143046022001374, 76.90749025464395, 83.9596235298397, 28.752391671984977, 8.22527794564523, 8.884359767276885, 6.19127788519879, 23.67595411509439, 28.8078892901229, 65.33182831723843, 34.11783191998367, 7.931030077585687, 65.61440300934657, 18.39390770449084, 5.264069912523522, 45.950217210079906, 8.730595054067157, 28.761385206986002, 5.586562280560387, 7.059570087867218, 76.30564896822874, 31.67413777996504, 16.66621701764353, 6.11464242510922, 5.038655753589627, 11.959973880203828, 19.96986008648751, 72.7832548593343, 90.33179035757954, 8.0515282669359, 72.27223247864498, 44.176424913471, 45.43287530185293, 53.208189064484934, 21.111002185440196, 9.14765075447271, 26.365704607155436, 20.456758011027407, 109.87516404283804, 114.27420205441175, 6.579663497164158, 68.23529166327852, 60.62847066789212, 12.721737681819134, 34.953123417541306, 18.112774467724865, 45.60832795318754, 52.16792067761825, 75.7149189857334, 19.076476998348006, 68.08552739367958, 62.49259077201054, 19.773741855187417, 18.476229111796005, 31.82586175204674, 71.77050926439054, 34.76351559689026, 12.014722358818581, 5.636416286179167, 32.44335828853374, 16.04530934342774, 7.8237829069827365, 11.073898145840959, 16.258252686790524, 106.67851664847883, 106.51381414596699, 17.24340236451267, 67.76793850822705, 60.02092629672113, 44.56488014799172, 106.92032967927841, 34.23065251569444, 16.367203531821573, 14.310059273926692, 63.85690621934114, 6.125187583720449, 15.23636767057412, 5.33831247442313, 33.70759250702737, 6.870003218993048, 8.099308212402622, 28.026314588925764, 16.409522907494033, 9.604428763678959, 33.318946968705895, 52.673601442706804, 19.31604071340796, 48.51830932722629, 89.93119332888264, 70.26712599978234, 127.23812096255614, 19.90194352623521, 91.99335053443664, 49.903294093555324, 26.728219251904658, 27.74240954742633, 21.030737547507837, 8.574495086707216, 6.374375369634091, 49.528888111887284, 10.658216483176206, 6.528143057609431, 9.426472484972813, 9.791959674920195, 10.879938168177452, 184.59839593682693, 14.373036416165618, 29.849269176822187, 23.220478181759162, 47.27802124474724, 6.928531893918455, 44.14558187170465, 44.02557541353598, 8.278953063968904, 34.99745954243413, 73.61748389649505, 56.006171020409475, 35.290290416383854, 5.14412659236871, 6.860816653981628, 75.35180732677149, 83.6770510872137, 24.929369400588925, 10.07748264810029, 54.994939960758806, 20.26552068468586, 39.93884739976046, 30.66968066173653, 11.210045696414731, 59.62601260268505, 12.242525753104331, 11.560964788612882, 22.220743833075947, 9.51802781980245, 12.016109643587779, 5.066684853430989, 11.5690998434243, 66.61115764262809, 25.799419203158358, 17.67485325219703, 22.385914980752567, 98.23978482544197, 9.950684280981868, 8.709156048005255, 18.058036616887634, 25.776289725106658, 87.62382853952433, 21.107089483779713, 13.878030318007164, 58.44411725357606, 27.556077585263598, 14.931255165879193, 7.3977843952301665, 7.708004756679522, 48.69519791525948, 69.28649124941768, 13.946752041811983, 5.891788158510217, 57.52753209050869, 19.624520340774204, 32.51839713420371, 8.229913388984398, 20.217176316120998, 6.398152547014445, 74.72856038686191, 9.042977598825573, 10.441842591140512, 55.920342158156174, 9.039260170197274, 11.241826112448706, 31.984635522487004, 37.234070738079126, 28.703180423135443, 90.1119952506361, 39.732705507939315, 26.93215981570401, 28.557668055014553, 42.280809378775224, 79.56723142002151, 46.826900324518874, 6.129970104471002, 77.71532743623608, 11.117573353343364, 16.93735096097623, 96.48996666364044, 46.05249731936982, 35.520757819129386, 131.48836521917747, 35.32598091099704, 37.97123888649692, 6.714929022598568, 37.270951990514455, 17.17889496347614, 12.007269099735668, 89.61440654897352, 29.94311532182373, 118.68255696822266, 31.525965223859007, 110.09250984077966, 7.5688332577668005, 5.251200828325058, 34.985855868910306, 56.929132762992566, 30.08088696046869, 14.453530779363835, 18.55321836419933, 24.683297443497587, 69.9192511787325, 94.01074908648386, 44.065536876838976, 8.407710876961485, 13.087005336465243, 8.802033176117297, 115.72652992242476, 47.248197562677305, 112.39560265524214, 73.3431235785254, 64.34973592257165, 12.810505326131674, 6.042996689973803, 62.13735405315971, 9.878557511689134, 21.478710065106963, 73.14396814944833, 5.4819736759565485, 105.29362074815238, 5.719382974466805, 19.55574366817205, 83.94971087613503, 12.087282844383326, 6.637250582652011, 44.80236638085149, 22.518669891917074, 34.573815659606474, 31.169619403195604, 34.99325912198817, 60.008299052309916, 9.16926362486868, 9.435316147237197, 93.00816363197146, 62.774886954462666, 88.9382459875829, 8.673608913039368, 34.18652616833832, 9.104344932788477, 66.79528722014248, 26.01745588792442, 52.30734759872509, 9.945848758327115, 8.938006362337848, 65.31260996864903, 79.06594615132903, 25.941174297667416, 74.02505215154855, 41.26530220847621, 17.61693710769345, 164.67951308993688, 50.47856823216371, 70.9631249230726, 31.069017810040435, 86.57334009136287, 13.291531578430444, 5.064260770043124, 9.005630829803414, 33.12384830456425, 6.0859356721344895, 10.9669543841294, 6.907153296227803, 11.263175386398919, 108.05852410327685, 11.949583839182523, 17.199301293764805, 22.690599240695835, 18.167935041962682, 54.23601821507019, 40.16961381727076, 15.744422743888435, 6.514137838527776, 30.612319245675017, 25.43420335186712, 11.489549216519764, 27.192729665554396, 46.43380159189047, 11.765255728986718, 118.33269368978267, 7.746893676272372, 5.213204197341408, 97.45369072676378, 32.92091237289348, 15.403440986176404, 54.825072469602084, 6.925021654971754, 55.024953628083225, 61.56539433092264, 55.125479356934164, 75.82756448093016, 101.89936360467429, 15.788257893645234, 22.725376267370226, 49.06603766112065, 140.4493414440499, 25.32627646221259, 93.64423687350916, 43.28581597452794, 148.27381357781758, 23.57834733576842, 10.88129881463778, 26.777504071615088, 8.53133394802645, 12.927626295897104, 21.37434471411091, 6.417233355973862, 5.550308772313137, 104.53266491513273, 16.425334723341162, 51.482895201442375, 35.67207683201504, 99.1802931863573, 17.844253294336486, 9.21380274487586, 10.270984578991259, 6.379044724803977, 14.590941251314716, 8.547237252464859, 9.159760015908702, 13.149524404927153, 25.73756075580948, 18.461375189308974, 111.69201065000257, 26.98822875255215, 19.722864798682856, 7.726565436656468, 16.85268584062992, 5.981298864199376, 95.2318838938896, 9.526529767516438, 18.16380448794719, 12.905493232315255, 17.805016270245613, 23.119948717384688, 39.70199532412188, 30.07465989437015, 32.905034406586395, 32.27417121349861, 18.668017912912518, 9.11442637213913, 82.42037523537005, 83.3301344869922, 79.38385190263644, 53.06585300950524, 16.09069812889234, 42.977013560625956, 24.2823332598941, 5.171824550515281, 37.897190963239076, 82.10415313779774, 72.3322789786159, 54.532094001293885, 31.25955924157789, 16.972771811679777, 45.047469747239376, 28.713085553421358, 112.83705180781921, 18.34387156633048, 22.57993282752387, 83.23479335414281, 35.4438826279675, 8.919945006269591, 41.754920246320474, 5.890047123563718, 10.211297592332711, 71.65004734307207, 90.21236799674416, 31.489414384245187, 78.33971502607363, 26.796224052701003, 129.72227455697444, 69.11334837319188, 7.514483381334682, 6.733234248780176, 109.30351282331908, 5.696522665904693, 19.45975629089219, 6.410865963400756, 74.92028756566594, 31.15858756800806, 8.07537911232484, 22.7450676248689, 8.08742144780278, 30.353306966510253, 15.61967548847913, 9.59874691467217, 48.4523925726423, 12.132615731422689, 107.39294819152948, 13.534194891369147, 53.28940554413209, 27.674462560677117, 64.05434608985782, 94.19755856349951, 30.339048405383295, 5.19208873311521, 107.84353799857332, 5.825873204550557, 8.178253453311795, 13.856003644861435, 18.243328509326172, 15.043820393085115, 45.39779489546082, 72.23426911832594, 6.378497524589386, 41.820963033459094, 56.91560154011888, 12.212285603082774, 44.62318248417635, 62.198332633739724, 71.4763974509007, 44.340975232724546, 33.55274446860617, 76.41268591356524, 8.316607308173648, 44.217346997150074, 172.85095077179528, 42.72788376144534, 57.68236848744887, 28.493912835076994, 6.06738478812736, 5.342207530484262, 131.40253357988735, 79.87764227333979, 15.177703713856664, 5.1987993613789785, 92.5447922505973, 24.540272187420573, 9.367498771034139, 95.01294513615254, 43.90869514516005, 69.76324340815974, 59.36128172325316, 10.02802315297609, 28.89723801410416, 23.599961116866147, 14.244257179428715, 84.09240186411662, 6.193138023946709, 12.033847802497604, 56.54814212725258, 61.13799151142902, 28.294067780190453, 6.737023905023753, 35.45819333998381, 5.138784942769096, 108.65036488894738, 5.87235587170712, 33.163910510339456, 21.513063495869783, 74.31771907994948, 5.16849235111946, 17.878044881761028, 5.10776756586421, 17.94555697178006, 5.156169937908997, 9.93961650546653, 33.835334614964026, 7.813881021133162, 11.03775733263657, 20.890648386786154, 32.21629433332239, 75.39911144805856, 24.037787637339843, 54.8375697170178, 18.985282709528644, 21.079621983235832, 6.404664962164572, 5.497323951473985, 5.369340738893303, 52.64961443016742, 10.769283805704049, 11.61654110886048, 12.485029151215066, 14.923067700604546, 8.886898582488412, 23.456835049792772, 102.20536003439744, 36.797555939952304, 16.545381703488037, 15.519937105118125, 78.09359550567274, 15.927247989940458, 21.3485725747755, 18.8865278688253, 8.396943282405031, 61.98353525044805, 74.68712517795197, 9.550569114549955, 55.392427825692174, 12.325972096617257, 91.1311588046308, 31.614937718830188, 26.20236630785555, 32.837856668101, 5.431308750585648, 40.94356792078524, 50.88252529373648, 10.601482813225905, 15.027961431009054, 7.261704946556967, 14.93815689747684, 20.984507210146358, 13.125624589086522, 48.15424996540767, 17.38146220320131, 25.91887308471437, 37.03945474158395, 12.658843799087862, 95.7406323730292, 23.907420755584393, 63.095838346191414, 53.67376060123676, 46.994721028441944, 5.752208765646974, 5.3039981789478565, 18.932049695202227, 20.514385526416543, 26.773470543369328, 51.48185201184789, 117.29536490502755, 40.28621377673642, 97.30821357661267, 17.81965515662261, 17.581868525611377, 47.91722806691817, 42.21962512287804, 18.64390396373255, 13.855633127974718, 91.99917653404489, 7.753042476696014, 18.10974384093796, 18.43423198290802, 18.58444764013253, 97.16703220390949, 37.62935513978792, 15.810603486947324, 17.69984182553106, 15.1000856609526, 89.92413158405873, 19.15022220137379, 83.1760532293708, 47.555260564, 30.20964974264669, 118.06981104639712, 43.45391576011398, 36.65337348550854, 73.59578498024516, 43.55178860075908, 22.614803511284386, 23.63402316716621, 60.657130917293614, 98.59436382584967, 35.08114962329778, 27.042316000601083, 47.0968915380204, 59.96834409664232, 20.718491149597373, 14.47007549913121, 78.7643542916547, 20.239802372533525, 90.40998012997653, 18.581673901080965, 18.28492886204938, 11.418608846637852, 59.07583224166319, 57.70004988449771, 52.93403684725626, 11.811390046321492, 51.74491304275439, 61.32337830790329, 53.326619877138214, 19.22850398835096, 24.931356199731535, 55.49239340103927, 26.646508898144784, 10.08297855489767, 89.35389256171885, 14.314785547474097, 53.9840630997492, 5.777825130128874, 29.295768425631834, 9.79614654522424, 8.35526954986941, 18.7730583317434, 8.116795964345672, 15.655543355552036, 15.991224380054948, 85.9024594321874, 51.32321411905693, 135.865864013853, 10.651282110208903, 5.463056332146961, 5.680070479096473, 62.05350468239303, 60.3754136220569, 14.907013286431024, 64.54062479352757, 11.631841711841682, 25.939957472718085, 78.63695933303217, 20.51796569277371, 40.97970355627991, 8.898504557158825, 11.262748586575906, 6.923345777588392, 93.1197981428094, 63.12107409890902, 56.07247767916914, 39.69464080941394, 7.137186327291113, 26.474232724918878, 24.846021278257087, 19.110834473289852, 8.984397048652696, 13.88722016196113, 88.74094753032595, 47.472283812511165, 41.995005948080234, 35.79951853748293, 75.34666205021576, 11.973979189869473, 47.311273452584246, 23.229090022146735, 11.344216137062135, 37.56310401071837, 11.339922021668125, 26.620928458185496, 88.29267304406551, 7.74203063450493, 45.75221389578616, 5.63227354774915, 81.8145789081531, 110.01533827829006, 25.708239186758664, 62.546344564614174, 69.79768845019245, 13.439461633041601, 97.99049506755227, 16.8610247232933, 9.730744650975875, 60.659612401937586, 11.709761667042905, 27.674452567941408, 45.386545786600536, 81.25279887949009, 85.31174646653568, 20.101513181213058, 9.657197781918143, 10.652564573564058, 70.75822364170835, 5.162367080890201, 15.562258324671586, 31.06636575328845, 7.832249464968949, 10.361933603276618, 56.50990407599748, 73.64158165261823, 26.320212602115166, 11.578877660496877, 94.2755269108217, 19.517258646983432, 35.36870736024426, 113.80265896616436, 12.574781202866186, 20.586153613247106, 7.876120932925281, 19.78388413548768, 37.40989826589821, 84.90771184695727, 63.36823268937307, 22.783404394815133, 9.53683874992403, 10.226522996733596, 20.167115807876115, 115.32222986714841, 73.53519230821252, 41.54581856978864, 6.704507199724822, 102.01440040999081, 33.592414213325846, 17.729019369670777, 18.780331650312274, 16.418194513712418, 62.44990945796653, 25.703507431280876, 23.203512101490567, 39.63611569098036, 26.58515252468809, 15.596083308369895, 59.511354215954086, 62.63525773807786, 48.682211559023635, 45.30069923450231, 103.10659308062128, 22.330226625910406, 54.26904990855776, 20.076528424209226, 27.120475760799472, 45.25196061824433, 23.316002849213895, 9.223026040941825, 19.484424674953296, 70.0867518975988, 22.803948889592885, 6.852136023941806, 18.515739608025715, 54.033739953538124, 5.84426947006113, 9.918096434556544, 65.94454278667367, 25.94801411924545, 11.712646051847745, 19.968702919644482, 44.677424012963755, 44.911196339826176, 20.814075955677435, 13.427973269780228, 174.86946339686256, 118.71862325152449, 5.418334368102563, 54.00544261685993, 87.98201673130264, 89.37676000296128, 15.69435797193652, 16.534140720057945, 21.298452225170088, 10.849432438850418, 41.92639222896467, 51.667522142310844, 13.465291365305905, 69.94557069545324, 8.24921765681521, 22.150624729120008, 52.00849247664295, 64.28518294566547, 8.268660851124174, 152.63179467313546, 44.34858305218947, 25.341698426935423, 31.569804667114564, 18.90439661118472, 8.022802099766913, 72.27516787710064, 20.193229379521288, 5.10616395665097, 53.25822973211863, 81.28330111708705, 94.56895524546209, 5.080242062867519, 10.13483626369147, 17.778858624098913, 86.10836314197097, 15.137331280486839, 37.72086468998508, 11.652699691341631, 25.95191403639876, 27.738595746492926, 29.27751350826201, 9.259299904000471, 7.6246777516722055, 18.79018504550025, 58.556962275038174, 23.38034085536877, 52.77965823588087, 29.099139889888395, 16.719325921264616, 27.16984822515132, 5.053560316842033, 68.07629501864206, 14.38236120706503, 18.664882117522062, 9.903159459159971, 30.533780162596294, 56.88268258791303, 108.16569308834679, 20.95357008661528, 6.143570004773866, 21.724882574535183, 39.15198967462634, 127.76625372006104, 94.49345904185722, 10.41275294252087, 20.956042939591974, 6.07886520335501, 71.01379630172036, 8.91546669866141, 9.967588296530268, 20.487076817447313, 18.72277127465273, 90.87335172888353, 20.858390758332106, 75.335130461312, 28.709999778934122, 9.049154154097682, 52.89689976144606, 6.9010662011869455, 7.991962336386363, 7.253172627954951, 18.099998855012032, 12.329330728499876, ...])
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)