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 = 48171
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);
([5070460.9375, 5215787.393618365, 5367219.541028576, 5448015.625, 5451879.463537301, 5608511.135762243, 6520713.616369924, 6569522.731252979, 6905983.002077185, 7221098.391403784, 7243590.625, 7244824.392101433, 7244881.688947889, 7244892.9449966345, 7245073.4375, 7247053.501837572, 7248445.646024158, 7316639.37833467, 7386943.04798743, 7416551.42748123, 7418600.762891336, 7426894.020877612, 7450798.293480774, 7451111.736553305, 7451972.3594608335, 7453443.696792748, 7504797.440772329, 7506217.1875, 7507073.4375, 7508504.274487494, 7512306.301639069, 7574817.406275298, 7594127.430746653, 7631646.706159428, 7643195.72917014, 7652135.9375, 7661079.035824593, 7661089.251240696, 7661222.334788303, 7663409.199793166, 7666636.088395809, 7719180.470229714, 7722595.674553191, 7722615.439629221, 7736996.875, 7743622.161448758, 7794253.125, 7795691.570457213, 7799817.655801363, 7799955.446850067, 7800063.723889173, 7800201.5625, 7801152.667915466, 7801848.4375, 7818345.107671302, 7826541.979296097, 7828388.66456534, 7828401.106574721, 7828795.668541639, 7829115.23715533, 7829527.152435956, 7829818.75, 7829939.0625, 7830427.060288581, 7830668.530991223, 7831536.759028912, 7832496.875, 7834698.743068432, 7834700.9394906135, 7834716.393008528, 7834731.221582325, 7835569.123912062, 7835571.48634555, 7835960.101814254, 7839665.204557224, 7843921.875, 7852771.559086482, 7859134.649857675, 7873238.772289084, 7876833.626882441, 7877724.384087129, 7896571.064712193, 7904906.25, 7904916.506057326, 7910462.564720085, 7921660.930136811, 7957238.477294019, 8096385.9375, 8099817.186860958, 8102361.386503978, 8110784.375, 8110984.375, 8111218.564954903, 8111432.09088387, 8111482.975548319, 8111485.9375, 8111538.721629927, 8111544.138710073, 8111554.603228234, 8111617.1875, 8111631.25, 8111640.986054002, 8111701.5625, 8111714.868278435, 8111732.360078576, 8111739.091484605, 8111765.427527215, 8111775.9679556675, 8111779.361603156, 8111844.849902123, 8111907.506924464, 8111926.5625, 8111984.20065555, 8112002.3001818545, 8112006.25, 8112013.616034214, 8112044.092515269, 8112057.438389344, 8112087.353644867, 8112090.625, 8112120.010275244, 8112152.615191953, 8112173.547957111, 8112179.952058575, 8112220.3125, 8112231.882252449, 8112254.6875, 8112256.25, 8112332.781383758, 8112375.630942215, 8112404.711934009, 8112405.377577927, 8112414.0625, 8112443.296945578, 8112478.544561426, 8112494.392558802, 8112567.489262607, 8112568.496799331, 8112579.233573941, 8112626.10155264, 8112660.9375, 8112675.0, 8112676.503519694, 8112725.681543901, 8112760.9375, 8112807.8125, 8112933.297423102, 8112959.375, 8112973.4375, 8112980.474677065, 8113073.4375, 8113081.817917068, 8113132.208535111, 8113267.1875, 8113285.803036466, 8113290.982187968, 8113347.464255617, 8113357.8125, 8113477.701717746, 8113496.875, 8113506.5726716425, 8113554.299371814, 8113587.327116787, 8113635.9375, 8113636.465999925, 8113648.988268335, 8113685.6600928055, 8113711.487136518, 8113736.294000358, 8113816.595383452, 8113818.75, 8113840.507870333, 8113840.591690407, 8113870.72533357, 8113964.295151598, 8114006.25, 8114013.719143653, 8114162.336446661, 8114314.0625, 8114338.8781795725, 8114389.0625, 8114511.795443438, 8114514.0625, 8114591.713061398, 8114608.916047371, 8114632.285474193, 8114653.329937646, 8115326.5625, 8115358.584736733, 8115590.625, 8115660.481608563, 8115668.75, 8115698.468045064, 8115907.8125, 8117079.376316426, 8118756.274243798, 8124985.9375, 8125970.981816211, 8126404.555723857, 8126758.366743944, 8128059.375, 8132195.076373672, 8133018.117493172, 8133737.147754852, 8134101.5625, 8134196.606531736, 8135303.125, 8135552.222180053, 8135552.421287416, 8136667.616355583, 8137292.1875, 8137317.1875, 8137320.3125, 8137674.797766724, 8138415.338050036, 8139176.304777334, 8139800.0, 8140055.318299458, 8140482.860920266, 8147060.9375, 8196617.165077563, 8197240.814889537, 8200190.625, 8201280.525470765, 8203268.75, 8206453.127030509, 8210923.0172679415, 8212704.6875, 8213951.424276945, 8213971.266939663, 8214457.955925107, 8215430.464364012, 8215725.043018692, 8218289.527016553, 8218687.045783583, 8219162.246241704, 8220023.4375, 8222202.025687322, 8222370.961326903, 8222431.25, 8222654.365220945, 8222750.412656075, 8222775.0, 8222951.87535387, 8223028.5473249005, 8223192.751228352, 8223240.460842052, 8223275.404695955, 8223340.321680342, 8223473.076058484, 8223492.1875, 8224117.007057401, 8224345.419307678, 8224710.552822049, 8224948.957975741, 8224975.023872173, 8226182.229971629, 8227990.567268225, 8228881.04636466, 8229918.228778405, 8230830.229809085, 8232160.763127763, 8233663.565151722, 8233717.1875, 8233910.447422828, 8234085.672863947, 8234630.386944135, 8235068.75, 8235117.998678548, 8235228.203814385, 8235262.5, 8235765.625, 8239255.460831217, 8239617.15749074, 8239888.7910956675, 8240548.4375, 8241118.964226573, 8242918.930816011, 8243434.375, 8248245.428066, 8249417.1875, 8249663.259065764, 8249787.5, 8252084.492315056, 8254842.1875, 8256815.351952439, 8257047.9141038265, 8257752.114941555, 8257837.700203403, 8259090.757170897, 8259431.768141071, 8259583.051697291, 8260250.678523206, 8261417.853495158, 8261443.327556934, 8262293.6200393755, 8263453.525127516, 8268866.849719075, 8272762.936225195, 8273150.284858259, 8277164.720803135, 8300169.451682595, 8314424.729331815, 8349129.102992362, 8388569.265908025, 8392985.9375, 8394394.266998239, 8398620.3125, 8415533.285566231, 8518385.421633326, 8523270.352170387, 8545944.59859476, 8591510.203259613, 8593419.90124883, 8602226.5625, 8609196.875, 8630212.5, 8726096.881006444, 8746358.156812755, 8769842.513369812, 8773153.07004514, 8774400.0, 8775620.818030104, 8777439.504606094, 8777753.125, 8778215.251255464, 8778488.792959541, 8779047.73894515, 8779248.269937674, 8779658.746095788, 8779725.0, 8780127.982726837, 8780254.24935366, 8781887.445330845, 8781911.414301652, 8782456.25, 8785437.5, 8787203.67838064, 8822966.207509777, 8849917.908280673, 8849999.852942368, 8850044.841280924, 8850114.572206557, 8850150.340766992, 8850313.443365235, 8850632.640997734, 8850646.331075406, 8850704.6875, 8850994.858097397, 8851078.30308076, 8851446.785175674, 8851540.275104135, 8851623.921933549, 8851710.9375, 8852816.910093162, 8853259.621301653, 8853368.654353475, 8853533.658705456, 8854180.625823209, 8854282.044822093, 8861840.937751463, 8863209.375, 8863326.5625, 8863836.715835517, 8863898.413542405, 8864249.227452904, 8864389.0625, 8864435.9375, 8864446.719312623, 8864450.386329448, 8864462.613321546, 8864488.918689728, 8864554.6875, 8864575.0, 8864618.495318431, 8864687.582136177, 8864733.270165069, 8864832.305183094, 8864845.3125, 8864854.6875, 8864856.25, 8864903.125, 8864920.05373837, 8864925.878785955, 8864935.029030465, 8864984.511772724, 8865000.0, 8865033.447800724, 8865037.5, 8865048.42227548, 8865050.797322832, 8865108.432856327, 8865111.386853008, 8865117.530698013, 8865139.435524765, 8865193.75, 8865195.862139713, 8865209.158169372, 8865212.5, 8865268.75, 8865268.75, 8865279.88084343, 8865296.67659655, 8865301.674827412, 8865340.070612045, 8865376.537054762, 8865393.75, 8865402.444676226, 8865434.375, 8865467.1875, 8865522.797674468, 8865530.77092633, 8865581.25, 8865594.917433288, 8865597.299460363, 8865607.444976985, 8865610.653068328, 8865641.919199957, 8865653.125, 8865716.033268096, 8865735.9375, 8865754.875970757, 8865774.845524041, 8865788.700636016, 8865809.375, 8865810.9375, 8865844.267802646, 8865884.469782764, 8865893.779193224, 8865946.980441233, 8865967.131878996, 8865972.964359576, 8865984.90085162, 8866043.277754458, 8866082.8125, 8866153.408194369, 8866161.828992967, 8866201.5625, 8866230.201856218, 8866242.852496762, 8866305.557101095, 8866362.669252664, 8866403.125, 8866447.84061748, 8866460.148466066, 8866468.141165033, 8866468.25103405, 8866579.6875, 8866624.771786124, 8866628.94729106, 8866636.56831276, 8866835.9375, 8866986.773293832, 8867315.006696796, 8867365.526823102, 8867433.744108211, 8868149.34535483, 8868182.871373944, 8868256.25, 8868735.9375, 8868771.041536143, 8869261.332816428, 8869261.680456093, 8869542.1875, 8881847.996981464, 8882746.875, 8891564.814046811, 8920700.41652891, 8924195.189346462, 8924510.551623223, 8924551.5625, 8924677.376983866, 8924856.0642603, 8924878.125, 8924979.6875, 8925005.151838463, 8925032.8125, 8925097.102792192, 8925154.805239502, 8925360.425212288, 8925459.278565641, 8925563.939546997, 8925768.102139842, 8925769.195138505, 8925805.76491259, 8926082.8125, 8926217.37214427, 8926222.551469017, 8926362.5, 8926396.594721364, 8926503.125, 8926608.877705572, 8926642.153729929, 8926725.943834336, 8926735.501245987, 8926798.4375, 8926815.6551098, 8926837.898403678, 8926900.0, 8926990.253700355, 8927046.875, 8927067.806588132, 8927147.406190183, 8927176.412515951, 8927182.949678523, 8927377.44336247, 8927430.719688237, 8927451.5625, 8927509.06658433, 8927573.4375, 8927580.299212985, 8927870.504817285, 8928046.875, 8928130.474317484, 8928234.501542117, 8928705.897431612, 8928860.9375, 8928981.25, 8929265.399439827, 8929627.657491237, 8930223.727003606, 8930301.983828288, 8930336.354400815, 8930339.0625, 8930753.125, 8931237.5, 8931587.5, 8932013.907232758, 8933287.291283997, 8933370.3125, 8934034.571452744, 8934282.292973615, 8934440.625, 8934456.182397902, 8934942.55338107, 8934956.251971858, 8935368.335238185, 8935804.123115927, 8935832.8125, 8935835.722575875, 8935846.438788062, 8935851.770203387, 8936037.413172133, 8936210.576650374, 8936245.061323464, 8936285.19247201, 8936302.514059812, 8936343.75, 8936429.042872231, 8936627.859635182, 8936629.6875, 8936710.9375, 8936832.518831305, 8936834.375, 8936891.915259525, 8937420.741054501, 8937448.4375, 8937591.599854203, 8937643.931719508, 8937660.514735421, 8937765.555783536, 8937794.125156993, 8937811.20407985, 8937925.756868426, 8938019.971456962, 8938101.946031569, 8938156.762912305, 8938302.647004317, 8938323.676984686, 8938445.509897253, 8938455.043279309, 8938566.758770334, 8938571.104728453, 8938574.661017573, 8938630.77966804, 8938706.690499045, 8938811.313109582, 8939194.703043148, 8939227.521146, 8939526.5625, 8939594.064550163, 8939622.137739895, 8939819.951324936, 8940104.708384626, 8940201.11362608, 8940428.125, 8940432.401729537, 8940540.625, 8940605.807975555, 8940656.25, 8940747.950726008, 8940925.92437305, 8941685.318658823, 8941931.25, 8941934.320140468, 8942017.64972554, 8942059.40536614, 8942127.424896274, 8942262.883634482, 8942420.678739332, 8942446.875, 8943338.093344579, 8943393.14210162, 8943724.433813138, 8944279.091363253, 8944520.434381144, 8945482.8125, 8946051.323972732, 8946479.018417548, 8947084.375, 8947215.766946193, 8949562.5, 8950586.787569573, 8950898.7879561, 8951365.784026489, 8951524.877980854, 8952129.597506015, 8952743.75, 8953265.21395358, 8953300.04745111, 8953687.873078417, 8953860.902131101, 8954192.781994548, 8954715.535186922, 8954976.112092597, 8955024.908003528, 8955289.13366875, 8955430.52019777, 8955448.31530875, 8956227.725529222, 8956460.623101061, 8956607.103258457, 8956850.847382283, 8957030.39296321, 8957101.5625, 8957267.1875, 8957318.678664666, 8957371.875, 8957402.121306127, 8957639.0625, 8958048.068876168, 8958085.016042473, 8958706.741524456, 8958911.035451282, 8959001.5625, 8959322.855565075, 8959523.889053654, 8959560.9375, 8959577.014042912, 8960139.0625, 8960191.522063876, 8960257.158778382, 8960289.0625, 8960367.1875, 8960433.540251683, 8960641.410961518, 8960935.132942101, 8961359.678659024, 8961551.765971122, 8962004.990974609, 8962202.473695977, 8962226.67687261, 8962341.398560362, 8962433.314493768, 8962512.585656084, 8962596.875, 8962917.105759347, 8963107.763864247, 8963735.9375, 8964384.408761919, 8965220.10552931, 8966653.078576384, 8967191.538548177, 8967195.969093109, 8973869.333620014, 8979968.394091204, 8980099.958580028, 8982326.03172864, 8982663.456750298, 8984583.11470828, 8985790.888874944, 8986315.625, 8987099.281223655, 8987379.485090708, 8987452.664185008, 8987454.6875, 8987513.750283657, 8987699.132060347, 8988034.624413095, 8989878.733846445, 9000099.083032724, 9002270.287554033, 9002281.25, 9003679.249072462, 9004476.5625, 9004720.6193983, 9005215.794104066, 9005364.109083585, 9005573.913652755, 9005760.788051028, 9005831.125570407, 9005996.112320963, 9006304.6875, 9006417.03507497, 9006482.052208591, 9006630.932011774, 9006653.125, 9006734.375, 9006804.118670402, 9006842.1875, 9006927.784825958, 9007251.460176552, 9007284.903762262, 9007419.822479635, 9007463.098944215, 9007491.500821756, 9007498.910214609, 9007568.701084737, 9007684.178317895, 9007878.611198336, 9007956.341735598, 9007977.586358622, 9007991.273962788, 9007991.964100366, 9008032.613310669, 9008073.248176329, 9008129.6875, 9008151.465630252, 9008257.390839001, 9008275.0, 9008285.9375, 9008314.0625, 9008531.768501924, 9008664.0625, 9008700.0, 9008754.024112735, 9008765.810652167, 9008928.243492853, 9008934.185733834, 9008937.225638028, 9008968.198045738, 9009375.7296459, 9009595.3125, 9009622.683076529, 9009693.720270865, 9009789.0625, 9009908.711020494, 9010033.694927434, 9010122.868044438, 9010258.84216265, 9010763.428645242, 9011630.728996165, 9015245.332077019, 9017361.886949249, 9023096.875, 9024143.4713684, 9030950.222367054, 9031051.838900752, 9031131.25, 9032699.09380282, 9034098.275224185, 9034194.470969696, 9034829.6875, 9070081.25, 9083598.240021093, 9089698.259307742, 9091770.96062987, 9101190.625, 9101780.351336211, 9105184.767354645, 9105533.460426848, 9117693.75, 9122428.676592391, 9140889.0625, 9145202.899327682, 9146084.375, 9148303.221808216, 9154662.712217035, 9154756.83653665, 9155704.426505644, 9157260.9375, 9163917.024166182, 9166289.0625, 9169925.0, 9170386.235266583, 9174592.1875, 9174947.507426426, 9179627.312612975, 9180461.660565676, 9187552.822949525, 9213581.25, 9213681.25, 9213949.618867503, 9214223.287488, 9214407.636932997, 9215055.758573392, 9215344.843292812, 9215556.67696672, 9215672.4404519, 9216888.24908793, 9217974.667746453, 9221936.681749698, 9222665.625, 9223793.75, 9227302.228495153, 9228265.053098138, 9228784.0832295, 9228820.243418556, 9228840.69275588, 9228938.53399181, 9228940.625, 9229256.25, 9229267.1875, 9229286.179239731, 9229351.5625, 9229392.1875, 9229615.466761513, 9229615.625, 9229724.187616926, 9229725.0, 9229732.8125, 9229790.701092938, 9229846.875, 9230187.686037801, 9230298.4375, 9230522.773241892, 9230870.89597312, 9230952.707373388, 9230954.681584887, 9231039.0625, 9231980.639430128, 9232388.812766157, 9233698.101388901, 9235712.432361009, 9247412.547808088, 9255984.76114649, 9263398.55868432, 9263496.875, 9263874.841583975, 9265681.031327475, 9267268.728972321, 9267280.933251588, 9268253.06057122, 9270114.30794123, 9270620.912031004, 9270921.058200007, 9270952.820350934, 9271501.379516695, 9271794.765996022, 9272115.017789232, 9273823.415130911, 9274480.333467549, 9274503.125, 9274620.3125, 9276176.7058364, 9277647.479972862, 9277718.75, 9277841.392054932, 9277926.314940326, 9278147.465280179, 9278895.828490295, 9279119.565633222, 9279335.242925936, 9279592.1875, 9280157.902830044, 9281863.533998456, 9281885.9375, 9282321.169926144, 9282636.998987706, 9282907.8125, 9284193.866925742, 9284884.375, 9285607.102319619, 9287002.864245104, 9287976.5625, 9290596.875, 9291075.0, 9291885.9375, 9294171.875, 9294354.517630186, 9295350.0, 9295405.090959905, 9295939.0625, 9298353.125, 9299010.134711664, 9299022.787392294, 9299652.83545882, 9301820.987963673, 9302891.926430808, 9303192.511496091, 9303387.5, 9303743.229167065, 9303946.636342213, 9306698.4375, 9307693.15534017, 9309347.973420558, 9309535.9375, 9309543.75, 9310442.647787258, 9310493.75, 9311175.729421211, 9311829.859779898, 9311984.375, 9312016.328939827, 9312167.449217448, 9313031.25, 9313601.518782971, 9313685.999402093, 9313824.814627064, 9314622.767575406, 9314703.125, 9318204.6875, 9318918.614457281, 9320764.0625, 9324073.327687062, 9326294.932721794, 9330443.709286124, 9332094.058662647, 9334692.47379687, 9335127.19688034, 9336209.143200388, 9341627.122141678, 9342569.956229549, 9347362.513772938, 9352620.3125, 9353532.8125, 9354284.375, 9356535.225649664, 9359272.020410223, 9359733.748505475, 9360393.872939516, 9360923.202859476, 9360967.084030407, 9361016.306466162, 9361062.111904219, 9361098.327232648, 9361309.91417212, 9361411.410778323, 9361421.86121036, 9361643.75, 9361688.350352712, 9361710.9375, 9361891.117988225, 9361917.562886178, 9361962.890550338, 9361982.52465393, 9361985.104483703, 9361986.587202094, 9362003.125, 9362102.676035186, 9362160.890102541, 9362182.8125, 9362201.735230533, 9362220.473639209, 9362250.0, 9362296.517839346, 9362303.944914335, 9362306.920338918, 9362317.479338098, 9362338.75570347, 9362389.0625, 9362397.618585428, 9362403.321467, 9362414.552377786, 9362416.50988539, 9362438.888552407, 9362462.34692779, 9362493.75, 9362500.0, 9362506.25, 9362518.40300925, 9362535.893015113, 9362540.625, 9362541.57092733, 9362566.215269534, 9362573.884696987, 9362582.109007875, 9362631.873844983, 9362681.334480813, 9362694.966937372, 9362728.851990787, 9362730.348643625, 9362735.9375, 9362750.222726632, 9362757.223757375, 9362778.125, 9362790.186433854, 9362790.625, 9362796.390519552, 9362799.706880786, 9362832.8125, 9362847.379169248, 9362872.452143706, 9362873.121543242, 9362892.1875, 9362894.13559691, 9362916.2237094, 9362920.40059395, 9362925.0, 9362949.299965242, ...], [44.0672262209433, 80.40059815075732, 7.9168000649105785, 65.15375998014837, 64.0932184770716, 9.504866840176946, 8.063952314147242, 19.655982330217476, 15.716921485809369, 52.167770019938274, 51.23012102002287, 13.039942087251454, 11.890914785761685, 12.561734526328229, 73.1540980022033, 16.602844168706895, 23.503815743702088, 11.660075214896802, 12.804857478612215, 119.86466432181143, 18.947751942700464, 5.29952845689708, 8.211858139025338, 7.92028977227413, 17.177345177371052, 11.045546578195122, 17.64838843272528, 69.71389427765243, 57.39302848786589, 13.570769809883563, 15.142055360444411, 15.846539887463528, 7.370060714270678, 14.33478550046729, 16.80938038714609, 72.56413792131625, 10.241948456428647, 5.956012482254268, 11.931438830153683, 25.4873931568199, 9.462338661296139, 18.80163403084672, 16.527915413589, 56.80302056128345, 87.48222602800261, 11.607046481404478, 68.77505695998275, 20.3999294327125, 11.048965142832433, 7.336472542040575, 7.485193241438548, 74.06495920189043, 6.675559750492203, 30.47759480502255, 14.214330614693859, 24.998681371054897, 7.465384817209268, 44.1127598380352, 9.651764881971099, 42.94303270561549, 5.562413805080329, 31.70189350522852, 67.16729406562163, 7.793780425206226, 93.16001720248589, 10.138260449308413, 35.329244473919005, 53.587956603866274, 13.001321552945038, 18.98486982225364, 63.42760201473784, 53.81980079045574, 8.091214974471502, 12.491980831058832, 7.457934344218052, 35.641658431211525, 23.549574780019217, 11.586340232352633, 75.51749047085718, 12.694267099149416, 64.2353066104251, 31.159322563785402, 48.61340894256978, 6.3853237440382955, 5.4645512708129695, 14.913518468447855, 12.722075906675606, 63.10203067593844, 14.93907425134072, 16.982220071130982, 62.25125677164811, 39.55107645773781, 14.280186173130968, 6.180138256344099, 17.901649278148554, 57.12498352521888, 19.306654353952332, 7.227523319325769, 26.962197612336986, 125.3514787146684, 57.260362666414586, 41.51786992803147, 29.733917871886003, 19.264780612353576, 5.326654239259991, 15.053148124190784, 159.5550851195598, 20.59911384514211, 7.038339798268997, 5.277008651888208, 13.892055156567844, 76.28892784086351, 25.500475927730786, 18.767605493461108, 49.15456309851142, 6.419309532191531, 6.542158237643279, 10.589306134383989, 31.575888996772825, 42.161614983925645, 64.34595077070601, 29.00456473821115, 36.19836649802296, 88.46192527936898, 47.79340910155912, 12.284255081436244, 62.82395439806711, 123.0845764120979, 11.079415956255493, 12.281451164149104, 9.35214931773127, 7.8734732079958665, 122.23824694802207, 30.96271798228404, 28.793013306766593, 27.22289972249125, 8.45287229259346, 24.36753010952978, 5.381399838575695, 45.617859329488596, 48.7673973316033, 70.17024426365903, 27.40965850451994, 18.381978325427603, 32.91812984162873, 106.90871921883641, 9.778101447363529, 43.341517529291465, 35.47153109523381, 19.125602435978593, 142.32855845384674, 7.279195306892297, 18.67901631771509, 37.467414449526494, 26.123688221196, 16.503457743071053, 12.193262634669374, 31.98223262864473, 73.46138210912936, 50.65192995382454, 23.654152584764724, 22.686721910270006, 212.4606581408741, 65.84785324836949, 80.41714092903715, 17.558886617504793, 29.639028786358075, 9.843829189144227, 12.959149467952003, 20.62090330293467, 78.98088403267097, 5.69934389405961, 5.340781578493584, 9.706704989230598, 15.909181233120458, 58.09139292650805, 17.4485378442879, 9.196835279661881, 46.03709369230211, 20.2670225328873, 89.43461952976031, 19.66943933587731, 34.96514035051314, 22.774291478370913, 84.41045111147247, 29.20596797142728, 46.423685478579976, 50.572204356482274, 6.36995744010295, 42.72297667543314, 13.448494464350619, 93.89110683329622, 20.69873629928123, 43.26530526955826, 82.19013037547266, 24.59210894073253, 60.46961089112091, 8.675358489572396, 35.43731095488766, 73.14142633489483, 104.97116666422198, 10.777650298607389, 30.94848123465257, 8.10869243951407, 64.78922116555013, 24.162048976907975, 38.465564836281, 22.55126891610883, 19.676166727636563, 19.79435073416711, 48.12936960084649, 89.21827770504306, 51.88141415634807, 15.301176917660705, 30.533513785229758, 39.56199924300063, 39.69141749129856, 12.281145782794784, 5.817571659361525, 61.17055894194604, 48.22591120082947, 16.901914572047286, 47.65348223808544, 19.511940512952645, 54.571098950178275, 34.32236387652001, 30.844894621599895, 72.67785667174873, 18.484953626703003, 13.039526810450715, 15.517889800628692, 30.435187884145193, 6.772125414129021, 24.75235353400151, 36.01228248587473, 14.055140189175367, 43.08673719075191, 8.547710702803517, 6.90034262417286, 45.725322460973786, 165.20697433869842, 16.788252425764483, 51.90609975926991, 16.285028625997537, 5.734173604064786, 5.561080200342416, 32.92988358824165, 27.118160025630438, 13.899041071986414, 5.908535181630372, 86.27848774161859, 87.20280717346685, 9.423378034365394, 13.653386651497373, 6.571897559654115, 6.768281839322427, 20.707531212127236, 83.74034431416757, 95.40755739817223, 21.283983796510537, 8.595809511858306, 32.43189502497857, 137.3523553226237, 51.55667280437777, 49.93802744262617, 31.317022694760908, 31.95999454932736, 60.473078190563484, 24.346124834182366, 33.695818866752944, 63.388324587388325, 49.73156654985981, 8.742754231377287, 27.944471480000548, 22.058048815230663, 54.6767128471776, 11.479922909089936, 6.8001500784711935, 94.27796787804331, 8.348650893350888, 77.63037817130834, 18.92012555517789, 43.24138869526932, 11.316166328721023, 86.44083252581923, 6.060157594906135, 104.14578784862411, 12.116994090264926, 5.542876583243554, 15.470407111263974, 17.368352742421518, 15.93896753849822, 12.384560158763184, 6.904173212543638, 5.5129233880005, 5.698536588331347, 110.4328300504257, 74.11753057867911, 24.932073913081368, 201.9487506025565, 42.07939752712338, 12.43572151715728, 51.71704052347994, 28.13878732198408, 12.042756592276767, 49.08524388852624, 12.044951435238868, 113.11671793859585, 31.12125002843412, 7.42673794775578, 9.36517350693576, 17.72094812818981, 10.145948931483526, 10.540477184282203, 105.22442328221886, 35.5053646944135, 47.29201598834821, 5.939928773605218, 16.43920450435194, 6.8303557924546245, 104.24347785059193, 81.66083387303789, 17.296171530802177, 11.897028070157605, 28.964321982733185, 13.685662533351042, 6.710862084917227, 6.631623430134139, 39.11650458242414, 20.296868950122697, 72.44212919689713, 25.998775094310652, 14.988766154566914, 27.487703668485878, 17.13468721169664, 71.92102517512936, 46.36102127244823, 8.60262777430108, 28.84502826063975, 33.71459778804297, 10.90537147352695, 74.44948759878673, 9.803087149149945, 93.75601683361087, 10.280661271302272, 14.325776105404195, 13.207335489016511, 55.90166108432437, 111.43080571391334, 31.56478010576704, 14.609848264960169, 13.756846544487189, 7.254896026040043, 83.8320627524339, 32.64220196005144, 95.67527643303535, 26.766562467460083, 12.770288219448375, 42.440106717063735, 19.18248833743437, 26.54503782501882, 65.12710137603092, 40.92602823787551, 8.74604955824043, 28.059332361726447, 111.438729742916, 97.14238564429782, 97.31980886615867, 18.58967828772301, 20.04058916019423, 9.429097003088069, 8.211964498798821, 52.22564420288066, 51.36130533526837, 14.052185668513818, 24.172839905667193, 11.927290338137011, 5.508955219543054, 66.60030571347919, 58.30357782843204, 33.47261228426993, 47.961353997041265, 24.292195795333324, 30.676880670188613, 76.8744581212963, 22.546989541941656, 47.95128520483094, 61.76403462358772, 41.6611548929606, 78.78220600427504, 69.92093215790189, 69.00549991625276, 28.175180545196604, 33.18118048398571, 24.302243772048897, 32.6883279003525, 39.767894577510205, 8.175148158051924, 88.58344804676467, 37.64910951550274, 78.39516809465732, 5.297097095358458, 41.08078537874222, 8.346884804139949, 13.179518150936511, 61.30395938507971, 87.7092424276866, 30.278579578959565, 59.450764025251274, 77.81523862395753, 20.203139273332297, 155.039627661263, 91.4951301689859, 13.622924409803856, 16.85058935858505, 69.50235818762583, 22.573158927626558, 24.16429002316809, 52.975647964595254, 11.832038886380595, 33.26786573295432, 11.435656869960434, 25.806436429991003, 14.784869637380563, 114.53886939084353, 47.5174476209319, 6.571444922615294, 88.09349821095395, 9.356210284871453, 15.359232056675847, 36.78100957217274, 150.1502866292629, 65.10642952265007, 7.002609807188147, 29.194191599493355, 16.143226048932494, 12.880889986803767, 29.78820281859159, 109.53031259343027, 9.965022290578524, 98.66276843593212, 6.2888216981041305, 47.19166226032253, 7.4007372066530435, 12.598513859314064, 20.472027447620896, 6.667819114886728, 45.53241690413845, 24.7131666828117, 80.36329635336575, 6.350328372817864, 31.164929083102543, 56.524914783943196, 13.013312906728485, 56.21333818732625, 12.981311263472476, 8.833086311923623, 6.274665431263286, 69.86206470482873, 38.70186292269607, 12.072619438724052, 16.69780193219936, 18.804926675505804, 41.34836533551406, 5.121197799634698, 38.22439776195731, 18.866130720468373, 19.79481132962618, 74.94682120976708, 57.47756163584593, 53.98528084364248, 91.63910798791935, 25.328900231966667, 39.34705477307614, 30.48204632315243, 9.757521800063294, 97.99863918491337, 7.182647008448343, 15.410106464298796, 97.22784385624973, 40.750737298812226, 6.251788124765306, 14.655940737491985, 14.885209717228586, 19.35637959208231, 85.17051175622302, 6.107513402931716, 7.31140291935736, 42.1796353938051, 24.00596646674867, 30.57048925955976, 59.652959411938966, 60.31171276438647, 20.38575021011037, 22.15347679170643, 59.32819215003417, 15.057529398661332, 16.713809982161187, 91.19907300588605, 82.7569334510009, 75.1709081808377, 105.61869807109262, 8.588983989324602, 153.89697296608682, 27.591999892576425, 12.854668302019066, 63.59834754533455, 32.182282963326614, 5.3868130438931665, 69.08595502052549, 8.63891447199616, 15.72896127864509, 45.80783315439815, 5.659108048573549, 19.904490295836858, 64.3095163016903, 42.441736937706715, 35.780664695461255, 50.8079223045401, 21.82345864606857, 22.33279969656546, 54.2367527372651, 11.848512477749178, 51.89447788628196, 48.18543498020521, 98.0778517887959, 80.27393623051437, 14.380982898590524, 5.9214330635110475, 101.03308975943365, 113.07274071177216, 33.86262902190991, 65.3983508242896, 27.255145287568006, 7.221070887285844, 14.949030549124016, 19.97706771980451, 20.874010526382317, 57.721601109222945, 10.807600955300192, 92.23144513487956, 9.5134281035854, 14.620577374202696, 21.321973423165268, 14.063411508102854, 6.938473423169307, 192.3852200938898, 55.546253772312326, 20.162272766585957, 88.21024775224852, 43.63277308501733, 81.96168171712912, 10.697744714919228, 62.45150031067783, 24.111927962741348, 27.8223201184663, 46.041331478976694, 13.092247692879589, 7.170053793958792, 22.299791192178272, 137.1847906271821, 8.495457101216699, 6.529708006449231, 18.904304655600246, 7.034597598753268, 72.41894883323505, 103.10323929601674, 21.715449798277724, 5.135653624588958, 44.09679578338417, 7.218224889304558, 13.525570983178758, 19.163140326619214, 77.25590115406277, 21.794249608779406, 54.37395338387814, 11.77036582053601, 20.466542116305114, 20.516096993704, 48.191176380379666, 12.227188671718924, 24.30671714366828, 10.60649363088939, 36.033108431330476, 62.23982630767485, 110.45514385999476, 22.4319195832188, 103.14613940042686, 12.826190789281208, 80.83937021440656, 13.362415503395502, 48.05108979656883, 20.384218229991372, 36.43246660038503, 11.043027014439854, 134.01487334759938, 15.058528031910138, 12.809499277188094, 8.500432730955849, 7.741298189904778, 58.428141183634665, 17.816061374236405, 6.193332993137408, 13.148358739054128, 40.70997652178394, 9.43663163561044, 33.137646780124115, 18.32763959588428, 12.885654523642392, 50.48949559715793, 15.51162700569188, 34.44320211127956, 37.05914346114708, 11.723552905084807, 7.6617856608385955, 9.230317071435898, 26.863356140841898, 46.48739551069643, 49.77106335921479, 7.133981226619455, 53.23095465206276, 14.808391903143146, 130.8882064810849, 47.79412608199959, 73.28873571229676, 26.8289702945113, 74.8045705708033, 6.941971874449923, 35.601521175952726, 28.26134699162061, 79.29855428353379, 56.397754744635705, 19.58575199099757, 18.543737818969554, 57.21174888048607, 63.13011335687912, 6.0807122525287, 59.30201607458227, 6.88044277192505, 68.17872613629083, 13.700856074127637, 5.489970344703043, 23.732191144635067, 120.58655111322976, 79.37252920088103, 66.41675076004785, 16.99605327474192, 30.175457966253582, 7.245432488564343, 92.6252070805198, 5.186793752101209, 20.08545906448566, 58.719884275630605, 55.72833692024495, 5.869864213074002, 106.29049606669246, 28.592246348250278, 142.87752654152746, 8.397189196526078, 37.54776907534021, 6.188274386484477, 16.50781052223907, 12.598732011379452, 17.276073976717306, 26.0563477231687, 55.124726202207896, 24.63094951035179, 47.095504665294214, 29.52256160776921, 6.492396762738451, 25.016539601274488, 27.638453570493123, 19.352440193769986, 7.305453072662256, 17.756444118457452, 45.7654266143129, 5.068143871960007, 7.421921459264899, 31.26648334257405, 48.57549650613181, 16.05265586313973, 40.430719130861675, 80.80400680591767, 47.05747161993371, 5.900255082467164, 100.47018320971709, 10.672409540118373, 18.469545173391452, 11.54129721269032, 387.64122801512354, 7.302152444962949, 48.41756804342694, 40.36217613138773, 5.512174002889739, 61.687486395945456, 34.03576380217626, 15.627763206329062, 11.201309066904264, 6.862441635575355, 20.604591995828244, 37.6459337433924, 72.2902500651029, 66.76287546700536, 25.838523727490852, 8.76183803287705, 6.4383729467976085, 86.84763101928122, 34.62910665288685, 13.141409689705352, 35.07387007252384, 72.40299524939644, 9.246356050389672, 8.587496479287342, 31.40973773454877, 39.91055883923139, 21.991383646338303, 101.43806264974381, 14.758288441656685, 9.170455979654689, 111.03256189360593, 16.721878721218687, 8.02089285920974, 48.896357812843455, 8.171870376419719, 38.03124766433565, 25.275510812261473, 58.87964206538491, 14.584709453704264, 133.03483447151936, 66.1631473877565, 105.57605043177412, 28.621902147959176, 17.37042998540572, 49.47871398500984, 55.7066860335251, 25.101568312451825, 7.6717940144042664, 7.646664224371724, 22.17627420969518, 29.79452795563083, 10.362211879134296, 7.327439279688538, 66.39608381647251, 81.13891712800992, 5.041043293792083, 39.98502922198521, 30.3865648253619, 12.858518408686509, 10.340752234565537, 32.65558077269106, 20.357285528113003, 6.0355448845397754, 7.6103337367455435, 11.733787863542906, 42.05552833265298, 7.0500847426894095, 7.685694034070659, 16.11121812717408, 59.63417064413499, 7.8592104814905595, 90.11498998428074, 63.05826743582787, 48.165061235957616, 57.88408716210857, 10.832454088732923, 14.303203107457467, 12.318390943225543, 74.16467396427285, 12.352448726208346, 22.07798717373861, 18.16076399632731, 30.75239050608078, 21.54032896288912, 45.22918065883398, 23.688130424990746, 30.208053264343253, 7.638630903357476, 25.14067500837553, 9.882023436729105, 14.032032440983158, 68.65443047514924, 127.07998983900757, 91.64766249967711, 81.35999055582818, 11.627379030230975, 104.96213317625404, 6.896694001467725, 49.80787231340811, 12.483539784787062, 6.229776107454668, 29.015015124903602, 49.1438918773219, 134.56395945172295, 31.175323988064694, 86.27228181541497, 13.349588029740186, 13.411178950520496, 33.31090954868682, 17.646464347296828, 5.570575228729357, 5.595923765338806, 6.921779379546344, 75.92207725499863, 42.859013768679176, 5.566300664746369, 93.8552559836843, 13.999368386027516, 86.58882292969001, 96.15432032363276, 21.213352834559256, 50.20293985573825, 36.201197463933795, 34.109103609700625, 108.04066915068624, 40.0478855209055, 36.19794834542415, 18.206785983699312, 94.1147410687222, 12.544848649610037, 56.883436272741456, 32.670750265526344, 5.819632027847173, 192.14169573486157, 110.86210869088721, 83.11900472465939, 8.826508567759817, 6.885864828783603, 92.2533867792045, 14.919011611343093, 51.37606813517367, 8.863493675890469, 24.414783685504936, 91.12022463831838, 39.22145721684601, 11.203265312554143, 49.55724043199001, 78.25494186272232, 67.72221151998434, 96.3892703759288, 75.0869912009641, 28.11534477815159, 10.66624960686438, 129.8608390924675, 15.967523941784636, 11.626514413010884, 12.534775205017482, 9.086438263614902, 25.370147062753823, 8.017279028756805, 13.041708169426824, 11.092921566715749, 12.31372479579799, 56.38858252341982, 63.40789337594254, 15.295271342117355, 20.539945868202437, 91.66638622232207, 18.977938563433618, 14.07502273419526, 5.647556392145065, 15.402810193605509, 39.68921637012615, 19.74939019130308, 35.14028480010033, 9.408968377746449, 21.213416985785244, 29.323105790134008, 12.57290714092241, 79.40751568092381, 77.81940400308808, 19.475812847529625, 64.57554301562381, 6.629549732641203, 64.8038650613732, 34.007994183834526, 78.79624327858713, 84.34480766355483, 70.79115217975884, 40.97341732889351, 83.62389895936528, 32.908603066187865, 6.319554841287105, 55.568220716811794, 89.90451982056584, 8.73381066363458, 20.115895508969924, 10.703410284964365, 18.34144495240052, 8.15318169803612, 37.14314107592902, 79.51330452739786, 21.287767790351328, 25.612708010563537, 47.35564480145775, 28.621934963612638, 10.472322788404467, 43.065156004582, 96.92148337030403, 17.043667465041157, 69.77884426334766, 39.43581711156298, 15.641501964706569, 37.06242845261597, 10.007147610874815, 16.042627616826618, 59.71817415643895, 14.777458174818568, 11.225862186973153, 7.073560674409322, 19.95042818785362, 42.349939240680236, 75.93463031386773, 54.772366369355154, 89.99024944473592, 27.03810811606352, 22.782507985147472, 54.5944395535642, 79.17700131741097, 5.725224231652832, 25.662677441449787, 24.662834781872448, 57.14138287004934, 13.737713616736126, 11.149303249349998, 42.77521258481368, 47.69883761134932, 43.24912514959319, 19.611545205280258, 62.04881321982681, 12.992462757271507, 15.431758959215209, 7.061108203276464, 26.633964953497024, 13.32478819821214, 6.427927395481974, 8.229114353401739, 65.59139963583564, 9.766440340584378, 47.53581819622143, 144.2108523165711, 12.780297464114577, 73.56357140732528, 17.225174448124015, 37.058186368000904, 24.778885236536944, 19.526492154858175, 19.584144672281205, 80.48572090939845, 44.74094142040889, 27.89200990385213, 27.62054702468179, 28.741622613166793, 11.408873505256782, 9.471476330093125, 49.948711457911415, 5.194417049627684, 91.64022007621512, 6.160697601871624, 24.92066473023778, 257.27327129294457, 52.69772712623854, 8.723267859686702, 23.630318836278374, 40.47800389172416, 19.887148799691765, 6.7292691495877754, 14.388493913604298, 72.90713108248211, 31.84367422715309, 52.5557931478412, 13.765591927944216, 14.774622075581853, 38.54937854818661, 20.404041576803333, 12.195384353539131, 22.39720488574083, 12.801263088602413, 12.26629731155304, 72.40682288504493, 49.6524141507241, 18.692541748783324, 7.306813167221083, 41.82261291283586, 6.295754447563651, 5.889723310202171, 84.44003868747419, 22.12863697212076, 73.58689155368258, 21.64932575489739, 91.15691371573769, 50.79104410773626, 12.019202766814141, 46.74979893647207, 53.729937912987026, 74.47070549063943, 13.093802332953778, 17.849178131551533, 7.144803037927964, 77.06855284835578, 19.705551924637955, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5070460.9375, 5215787.393618365, 5367219.541028576, 5448015.625, 5451879.463537301, 5608511.135762243, 6520713.616369924, 6569522.731252979, 6905983.002077185, 7221098.391403784, 7243590.625, 7244824.392101433, 7244881.688947889, 7244892.9449966345, 7245073.4375, 7247053.501837572, 7248445.646024158, 7316639.37833467, 7386943.04798743, 7416551.42748123, 7418600.762891336, 7426894.020877612, 7450798.293480774, 7451111.736553305, 7451972.3594608335, 7453443.696792748, 7504797.440772329, 7506217.1875, 7507073.4375, 7508504.274487494, 7512306.301639069, 7574817.406275298, 7594127.430746653, 7631646.706159428, 7643195.72917014, 7652135.9375, 7661079.035824593, 7661089.251240696, 7661222.334788303, 7663409.199793166, 7666636.088395809, 7719180.470229714, 7722595.674553191, 7722615.439629221, 7736996.875, 7743622.161448758, 7794253.125, 7795691.570457213, 7799817.655801363, 7799955.446850067, 7800063.723889173, 7800201.5625, 7801152.667915466, 7801848.4375, 7818345.107671302, 7826541.979296097, 7828388.66456534, 7828401.106574721, 7828795.668541639, 7829115.23715533, 7829527.152435956, 7829818.75, 7829939.0625, 7830427.060288581, 7830668.530991223, 7831536.759028912, 7832496.875, 7834698.743068432, 7834700.9394906135, 7834716.393008528, 7834731.221582325, 7835569.123912062, 7835571.48634555, 7835960.101814254, 7839665.204557224, 7843921.875, 7852771.559086482, 7859134.649857675, 7873238.772289084, 7876833.626882441, 7877724.384087129, 7896571.064712193, 7904906.25, 7904916.506057326, 7910462.564720085, 7921660.930136811, 7957238.477294019, 8096385.9375, 8099817.186860958, 8102361.386503978, 8110784.375, 8110984.375, 8111218.564954903, 8111432.09088387, 8111482.975548319, 8111485.9375, 8111538.721629927, 8111544.138710073, 8111554.603228234, 8111617.1875, 8111631.25, 8111640.986054002, 8111701.5625, 8111714.868278435, 8111732.360078576, 8111739.091484605, 8111765.427527215, 8111775.9679556675, 8111779.361603156, 8111844.849902123, 8111907.506924464, 8111926.5625, 8111984.20065555, 8112002.3001818545, 8112006.25, 8112013.616034214, 8112044.092515269, 8112057.438389344, 8112087.353644867, 8112090.625, 8112120.010275244, 8112152.615191953, 8112173.547957111, 8112179.952058575, 8112220.3125, 8112231.882252449, 8112254.6875, 8112256.25, 8112332.781383758, 8112375.630942215, 8112404.711934009, 8112405.377577927, 8112414.0625, 8112443.296945578, 8112478.544561426, 8112494.392558802, 8112567.489262607, 8112568.496799331, 8112579.233573941, 8112626.10155264, 8112660.9375, 8112675.0, 8112676.503519694, 8112725.681543901, 8112760.9375, 8112807.8125, 8112933.297423102, 8112959.375, 8112973.4375, 8112980.474677065, 8113073.4375, 8113081.817917068, 8113132.208535111, 8113267.1875, 8113285.803036466, 8113290.982187968, 8113347.464255617, 8113357.8125, 8113477.701717746, 8113496.875, 8113506.5726716425, 8113554.299371814, 8113587.327116787, 8113635.9375, 8113636.465999925, 8113648.988268335, 8113685.6600928055, 8113711.487136518, 8113736.294000358, 8113816.595383452, 8113818.75, 8113840.507870333, 8113840.591690407, 8113870.72533357, 8113964.295151598, 8114006.25, 8114013.719143653, 8114162.336446661, 8114314.0625, 8114338.8781795725, 8114389.0625, 8114511.795443438, 8114514.0625, 8114591.713061398, 8114608.916047371, 8114632.285474193, 8114653.329937646, 8115326.5625, 8115358.584736733, 8115590.625, 8115660.481608563, 8115668.75, 8115698.468045064, 8115907.8125, 8117079.376316426, 8118756.274243798, 8124985.9375, 8125970.981816211, 8126404.555723857, 8126758.366743944, 8128059.375, 8132195.076373672, 8133018.117493172, 8133737.147754852, 8134101.5625, 8134196.606531736, 8135303.125, 8135552.222180053, 8135552.421287416, 8136667.616355583, 8137292.1875, 8137317.1875, 8137320.3125, 8137674.797766724, 8138415.338050036, 8139176.304777334, 8139800.0, 8140055.318299458, 8140482.860920266, 8147060.9375, 8196617.165077563, 8197240.814889537, 8200190.625, 8201280.525470765, 8203268.75, 8206453.127030509, 8210923.0172679415, 8212704.6875, 8213951.424276945, 8213971.266939663, 8214457.955925107, 8215430.464364012, 8215725.043018692, 8218289.527016553, 8218687.045783583, 8219162.246241704, 8220023.4375, 8222202.025687322, 8222370.961326903, 8222431.25, 8222654.365220945, 8222750.412656075, 8222775.0, 8222951.87535387, 8223028.5473249005, 8223192.751228352, 8223240.460842052, 8223275.404695955, 8223340.321680342, 8223473.076058484, 8223492.1875, 8224117.007057401, 8224345.419307678, 8224710.552822049, 8224948.957975741, 8224975.023872173, 8226182.229971629, 8227990.567268225, 8228881.04636466, 8229918.228778405, 8230830.229809085, 8232160.763127763, 8233663.565151722, 8233717.1875, 8233910.447422828, 8234085.672863947, 8234630.386944135, 8235068.75, 8235117.998678548, 8235228.203814385, 8235262.5, 8235765.625, 8239255.460831217, 8239617.15749074, 8239888.7910956675, 8240548.4375, 8241118.964226573, 8242918.930816011, 8243434.375, 8248245.428066, 8249417.1875, 8249663.259065764, 8249787.5, 8252084.492315056, 8254842.1875, 8256815.351952439, 8257047.9141038265, 8257752.114941555, 8257837.700203403, 8259090.757170897, 8259431.768141071, 8259583.051697291, 8260250.678523206, 8261417.853495158, 8261443.327556934, 8262293.6200393755, 8263453.525127516, 8268866.849719075, 8272762.936225195, 8273150.284858259, 8277164.720803135, 8300169.451682595, 8314424.729331815, 8349129.102992362, 8388569.265908025, 8392985.9375, 8394394.266998239, 8398620.3125, 8415533.285566231, 8518385.421633326, 8523270.352170387, 8545944.59859476, 8591510.203259613, 8593419.90124883, 8602226.5625, 8609196.875, 8630212.5, 8726096.881006444, 8746358.156812755, 8769842.513369812, 8773153.07004514, 8774400.0, 8775620.818030104, 8777439.504606094, 8777753.125, 8778215.251255464, 8778488.792959541, 8779047.73894515, 8779248.269937674, 8779658.746095788, 8779725.0, 8780127.982726837, 8780254.24935366, 8781887.445330845, 8781911.414301652, 8782456.25, 8785437.5, 8787203.67838064, 8822966.207509777, 8849917.908280673, 8849999.852942368, 8850044.841280924, 8850114.572206557, 8850150.340766992, 8850313.443365235, 8850632.640997734, 8850646.331075406, 8850704.6875, 8850994.858097397, 8851078.30308076, 8851446.785175674, 8851540.275104135, 8851623.921933549, 8851710.9375, 8852816.910093162, 8853259.621301653, 8853368.654353475, 8853533.658705456, 8854180.625823209, 8854282.044822093, 8861840.937751463, 8863209.375, 8863326.5625, 8863836.715835517, 8863898.413542405, 8864249.227452904, 8864389.0625, 8864435.9375, 8864446.719312623, 8864450.386329448, 8864462.613321546, 8864488.918689728, 8864554.6875, 8864575.0, 8864618.495318431, 8864687.582136177, 8864733.270165069, 8864832.305183094, 8864845.3125, 8864854.6875, 8864856.25, 8864903.125, 8864920.05373837, 8864925.878785955, 8864935.029030465, 8864984.511772724, 8865000.0, 8865033.447800724, 8865037.5, 8865048.42227548, 8865050.797322832, 8865108.432856327, 8865111.386853008, 8865117.530698013, 8865139.435524765, 8865193.75, 8865195.862139713, 8865209.158169372, 8865212.5, 8865268.75, 8865268.75, 8865279.88084343, 8865296.67659655, 8865301.674827412, 8865340.070612045, 8865376.537054762, 8865393.75, 8865402.444676226, 8865434.375, 8865467.1875, 8865522.797674468, 8865530.77092633, 8865581.25, 8865594.917433288, 8865597.299460363, 8865607.444976985, 8865610.653068328, 8865641.919199957, 8865653.125, 8865716.033268096, 8865735.9375, 8865754.875970757, 8865774.845524041, 8865788.700636016, 8865809.375, 8865810.9375, 8865844.267802646, 8865884.469782764, 8865893.779193224, 8865946.980441233, 8865967.131878996, 8865972.964359576, 8865984.90085162, 8866043.277754458, 8866082.8125, 8866153.408194369, 8866161.828992967, 8866201.5625, 8866230.201856218, 8866242.852496762, 8866305.557101095, 8866362.669252664, 8866403.125, 8866447.84061748, 8866460.148466066, 8866468.141165033, 8866468.25103405, 8866579.6875, 8866624.771786124, 8866628.94729106, 8866636.56831276, 8866835.9375, 8866986.773293832, 8867315.006696796, 8867365.526823102, 8867433.744108211, 8868149.34535483, 8868182.871373944, 8868256.25, 8868735.9375, 8868771.041536143, 8869261.332816428, 8869261.680456093, 8869542.1875, 8881847.996981464, 8882746.875, 8891564.814046811, 8920700.41652891, 8924195.189346462, 8924510.551623223, 8924551.5625, 8924677.376983866, 8924856.0642603, 8924878.125, 8924979.6875, 8925005.151838463, 8925032.8125, 8925097.102792192, 8925154.805239502, 8925360.425212288, 8925459.278565641, 8925563.939546997, 8925768.102139842, 8925769.195138505, 8925805.76491259, 8926082.8125, 8926217.37214427, 8926222.551469017, 8926362.5, 8926396.594721364, 8926503.125, 8926608.877705572, 8926642.153729929, 8926725.943834336, 8926735.501245987, 8926798.4375, 8926815.6551098, 8926837.898403678, 8926900.0, 8926990.253700355, 8927046.875, 8927067.806588132, 8927147.406190183, 8927176.412515951, 8927182.949678523, 8927377.44336247, 8927430.719688237, 8927451.5625, 8927509.06658433, 8927573.4375, 8927580.299212985, 8927870.504817285, 8928046.875, 8928130.474317484, 8928234.501542117, 8928705.897431612, 8928860.9375, 8928981.25, 8929265.399439827, 8929627.657491237, 8930223.727003606, 8930301.983828288, 8930336.354400815, 8930339.0625, 8930753.125, 8931237.5, 8931587.5, 8932013.907232758, 8933287.291283997, 8933370.3125, 8934034.571452744, 8934282.292973615, 8934440.625, 8934456.182397902, 8934942.55338107, 8934956.251971858, 8935368.335238185, 8935804.123115927, 8935832.8125, 8935835.722575875, 8935846.438788062, 8935851.770203387, 8936037.413172133, 8936210.576650374, 8936245.061323464, 8936285.19247201, 8936302.514059812, 8936343.75, 8936429.042872231, 8936627.859635182, 8936629.6875, 8936710.9375, 8936832.518831305, 8936834.375, 8936891.915259525, 8937420.741054501, 8937448.4375, 8937591.599854203, 8937643.931719508, 8937660.514735421, 8937765.555783536, 8937794.125156993, 8937811.20407985, 8937925.756868426, 8938019.971456962, 8938101.946031569, 8938156.762912305, 8938302.647004317, 8938323.676984686, 8938445.509897253, 8938455.043279309, 8938566.758770334, 8938571.104728453, 8938574.661017573, 8938630.77966804, 8938706.690499045, 8938811.313109582, 8939194.703043148, 8939227.521146, 8939526.5625, 8939594.064550163, 8939622.137739895, 8939819.951324936, 8940104.708384626, 8940201.11362608, 8940428.125, 8940432.401729537, 8940540.625, 8940605.807975555, 8940656.25, 8940747.950726008, 8940925.92437305, 8941685.318658823, 8941931.25, 8941934.320140468, 8942017.64972554, 8942059.40536614, 8942127.424896274, 8942262.883634482, 8942420.678739332, 8942446.875, 8943338.093344579, 8943393.14210162, 8943724.433813138, 8944279.091363253, 8944520.434381144, 8945482.8125, 8946051.323972732, 8946479.018417548, 8947084.375, 8947215.766946193, 8949562.5, 8950586.787569573, 8950898.7879561, 8951365.784026489, 8951524.877980854, 8952129.597506015, 8952743.75, 8953265.21395358, 8953300.04745111, 8953687.873078417, 8953860.902131101, 8954192.781994548, 8954715.535186922, 8954976.112092597, 8955024.908003528, 8955289.13366875, 8955430.52019777, 8955448.31530875, 8956227.725529222, 8956460.623101061, 8956607.103258457, 8956850.847382283, 8957030.39296321, 8957101.5625, 8957267.1875, 8957318.678664666, 8957371.875, 8957402.121306127, 8957639.0625, 8958048.068876168, 8958085.016042473, 8958706.741524456, 8958911.035451282, 8959001.5625, 8959322.855565075, 8959523.889053654, 8959560.9375, 8959577.014042912, 8960139.0625, 8960191.522063876, 8960257.158778382, 8960289.0625, 8960367.1875, 8960433.540251683, 8960641.410961518, 8960935.132942101, 8961359.678659024, 8961551.765971122, 8962004.990974609, 8962202.473695977, 8962226.67687261, 8962341.398560362, 8962433.314493768, 8962512.585656084, 8962596.875, 8962917.105759347, 8963107.763864247, 8963735.9375, 8964384.408761919, 8965220.10552931, 8966653.078576384, 8967191.538548177, 8967195.969093109, 8973869.333620014, 8979968.394091204, 8980099.958580028, 8982326.03172864, 8982663.456750298, 8984583.11470828, 8985790.888874944, 8986315.625, 8987099.281223655, 8987379.485090708, 8987452.664185008, 8987454.6875, 8987513.750283657, 8987699.132060347, 8988034.624413095, 8989878.733846445, 9000099.083032724, 9002270.287554033, 9002281.25, 9003679.249072462, 9004476.5625, 9004720.6193983, 9005215.794104066, 9005364.109083585, 9005573.913652755, 9005760.788051028, 9005831.125570407, 9005996.112320963, 9006304.6875, 9006417.03507497, 9006482.052208591, 9006630.932011774, 9006653.125, 9006734.375, 9006804.118670402, 9006842.1875, 9006927.784825958, 9007251.460176552, 9007284.903762262, 9007419.822479635, 9007463.098944215, 9007491.500821756, 9007498.910214609, 9007568.701084737, 9007684.178317895, 9007878.611198336, 9007956.341735598, 9007977.586358622, 9007991.273962788, 9007991.964100366, 9008032.613310669, 9008073.248176329, 9008129.6875, 9008151.465630252, 9008257.390839001, 9008275.0, 9008285.9375, 9008314.0625, 9008531.768501924, 9008664.0625, 9008700.0, 9008754.024112735, 9008765.810652167, 9008928.243492853, 9008934.185733834, 9008937.225638028, 9008968.198045738, 9009375.7296459, 9009595.3125, 9009622.683076529, 9009693.720270865, 9009789.0625, 9009908.711020494, 9010033.694927434, 9010122.868044438, 9010258.84216265, 9010763.428645242, 9011630.728996165, 9015245.332077019, 9017361.886949249, 9023096.875, 9024143.4713684, 9030950.222367054, 9031051.838900752, 9031131.25, 9032699.09380282, 9034098.275224185, 9034194.470969696, 9034829.6875, 9070081.25, 9083598.240021093, 9089698.259307742, 9091770.96062987, 9101190.625, 9101780.351336211, 9105184.767354645, 9105533.460426848, 9117693.75, 9122428.676592391, 9140889.0625, 9145202.899327682, 9146084.375, 9148303.221808216, 9154662.712217035, 9154756.83653665, 9155704.426505644, 9157260.9375, 9163917.024166182, 9166289.0625, 9169925.0, 9170386.235266583, 9174592.1875, 9174947.507426426, 9179627.312612975, 9180461.660565676, 9187552.822949525, 9213581.25, 9213681.25, 9213949.618867503, 9214223.287488, 9214407.636932997, 9215055.758573392, 9215344.843292812, 9215556.67696672, 9215672.4404519, 9216888.24908793, 9217974.667746453, 9221936.681749698, 9222665.625, 9223793.75, 9227302.228495153, 9228265.053098138, 9228784.0832295, 9228820.243418556, 9228840.69275588, 9228938.53399181, 9228940.625, 9229256.25, 9229267.1875, 9229286.179239731, 9229351.5625, 9229392.1875, 9229615.466761513, 9229615.625, 9229724.187616926, 9229725.0, 9229732.8125, 9229790.701092938, 9229846.875, 9230187.686037801, 9230298.4375, 9230522.773241892, 9230870.89597312, 9230952.707373388, 9230954.681584887, 9231039.0625, 9231980.639430128, 9232388.812766157, 9233698.101388901, 9235712.432361009, 9247412.547808088, 9255984.76114649, 9263398.55868432, 9263496.875, 9263874.841583975, 9265681.031327475, 9267268.728972321, 9267280.933251588, 9268253.06057122, 9270114.30794123, 9270620.912031004, 9270921.058200007, 9270952.820350934, 9271501.379516695, 9271794.765996022, 9272115.017789232, 9273823.415130911, 9274480.333467549, 9274503.125, 9274620.3125, 9276176.7058364, 9277647.479972862, 9277718.75, 9277841.392054932, 9277926.314940326, 9278147.465280179, 9278895.828490295, 9279119.565633222, 9279335.242925936, 9279592.1875, 9280157.902830044, 9281863.533998456, 9281885.9375, 9282321.169926144, 9282636.998987706, 9282907.8125, 9284193.866925742, 9284884.375, 9285607.102319619, 9287002.864245104, 9287976.5625, 9290596.875, 9291075.0, 9291885.9375, 9294171.875, 9294354.517630186, 9295350.0, 9295405.090959905, 9295939.0625, 9298353.125, 9299010.134711664, 9299022.787392294, 9299652.83545882, 9301820.987963673, 9302891.926430808, 9303192.511496091, 9303387.5, 9303743.229167065, 9303946.636342213, 9306698.4375, 9307693.15534017, 9309347.973420558, 9309535.9375, 9309543.75, 9310442.647787258, 9310493.75, 9311175.729421211, 9311829.859779898, 9311984.375, 9312016.328939827, 9312167.449217448, 9313031.25, 9313601.518782971, 9313685.999402093, 9313824.814627064, 9314622.767575406, 9314703.125, 9318204.6875, 9318918.614457281, 9320764.0625, 9324073.327687062, 9326294.932721794, 9330443.709286124, 9332094.058662647, 9334692.47379687, 9335127.19688034, 9336209.143200388, 9341627.122141678, 9342569.956229549, 9347362.513772938, 9352620.3125, 9353532.8125, 9354284.375, 9356535.225649664, 9359272.020410223, 9359733.748505475, 9360393.872939516, 9360923.202859476, 9360967.084030407, 9361016.306466162, 9361062.111904219, 9361098.327232648, 9361309.91417212, 9361411.410778323, 9361421.86121036, 9361643.75, 9361688.350352712, 9361710.9375, 9361891.117988225, 9361917.562886178, 9361962.890550338, 9361982.52465393, 9361985.104483703, 9361986.587202094, 9362003.125, 9362102.676035186, 9362160.890102541, 9362182.8125, 9362201.735230533, 9362220.473639209, 9362250.0, 9362296.517839346, 9362303.944914335, 9362306.920338918, 9362317.479338098, 9362338.75570347, 9362389.0625, 9362397.618585428, 9362403.321467, 9362414.552377786, 9362416.50988539, 9362438.888552407, 9362462.34692779, 9362493.75, 9362500.0, 9362506.25, 9362518.40300925, 9362535.893015113, 9362540.625, 9362541.57092733, 9362566.215269534, 9362573.884696987, 9362582.109007875, 9362631.873844983, 9362681.334480813, 9362694.966937372, 9362728.851990787, 9362730.348643625, 9362735.9375, 9362750.222726632, 9362757.223757375, 9362778.125, 9362790.186433854, 9362790.625, 9362796.390519552, 9362799.706880786, 9362832.8125, 9362847.379169248, 9362872.452143706, 9362873.121543242, 9362892.1875, 9362894.13559691, 9362916.2237094, 9362920.40059395, 9362925.0, 9362949.299965242, ...], [44.0672262209433, 80.40059815075732, 7.9168000649105785, 65.15375998014837, 64.0932184770716, 9.504866840176946, 8.063952314147242, 19.655982330217476, 15.716921485809369, 52.167770019938274, 51.23012102002287, 13.039942087251454, 11.890914785761685, 12.561734526328229, 73.1540980022033, 16.602844168706895, 23.503815743702088, 11.660075214896802, 12.804857478612215, 119.86466432181143, 18.947751942700464, 5.29952845689708, 8.211858139025338, 7.92028977227413, 17.177345177371052, 11.045546578195122, 17.64838843272528, 69.71389427765243, 57.39302848786589, 13.570769809883563, 15.142055360444411, 15.846539887463528, 7.370060714270678, 14.33478550046729, 16.80938038714609, 72.56413792131625, 10.241948456428647, 5.956012482254268, 11.931438830153683, 25.4873931568199, 9.462338661296139, 18.80163403084672, 16.527915413589, 56.80302056128345, 87.48222602800261, 11.607046481404478, 68.77505695998275, 20.3999294327125, 11.048965142832433, 7.336472542040575, 7.485193241438548, 74.06495920189043, 6.675559750492203, 30.47759480502255, 14.214330614693859, 24.998681371054897, 7.465384817209268, 44.1127598380352, 9.651764881971099, 42.94303270561549, 5.562413805080329, 31.70189350522852, 67.16729406562163, 7.793780425206226, 93.16001720248589, 10.138260449308413, 35.329244473919005, 53.587956603866274, 13.001321552945038, 18.98486982225364, 63.42760201473784, 53.81980079045574, 8.091214974471502, 12.491980831058832, 7.457934344218052, 35.641658431211525, 23.549574780019217, 11.586340232352633, 75.51749047085718, 12.694267099149416, 64.2353066104251, 31.159322563785402, 48.61340894256978, 6.3853237440382955, 5.4645512708129695, 14.913518468447855, 12.722075906675606, 63.10203067593844, 14.93907425134072, 16.982220071130982, 62.25125677164811, 39.55107645773781, 14.280186173130968, 6.180138256344099, 17.901649278148554, 57.12498352521888, 19.306654353952332, 7.227523319325769, 26.962197612336986, 125.3514787146684, 57.260362666414586, 41.51786992803147, 29.733917871886003, 19.264780612353576, 5.326654239259991, 15.053148124190784, 159.5550851195598, 20.59911384514211, 7.038339798268997, 5.277008651888208, 13.892055156567844, 76.28892784086351, 25.500475927730786, 18.767605493461108, 49.15456309851142, 6.419309532191531, 6.542158237643279, 10.589306134383989, 31.575888996772825, 42.161614983925645, 64.34595077070601, 29.00456473821115, 36.19836649802296, 88.46192527936898, 47.79340910155912, 12.284255081436244, 62.82395439806711, 123.0845764120979, 11.079415956255493, 12.281451164149104, 9.35214931773127, 7.8734732079958665, 122.23824694802207, 30.96271798228404, 28.793013306766593, 27.22289972249125, 8.45287229259346, 24.36753010952978, 5.381399838575695, 45.617859329488596, 48.7673973316033, 70.17024426365903, 27.40965850451994, 18.381978325427603, 32.91812984162873, 106.90871921883641, 9.778101447363529, 43.341517529291465, 35.47153109523381, 19.125602435978593, 142.32855845384674, 7.279195306892297, 18.67901631771509, 37.467414449526494, 26.123688221196, 16.503457743071053, 12.193262634669374, 31.98223262864473, 73.46138210912936, 50.65192995382454, 23.654152584764724, 22.686721910270006, 212.4606581408741, 65.84785324836949, 80.41714092903715, 17.558886617504793, 29.639028786358075, 9.843829189144227, 12.959149467952003, 20.62090330293467, 78.98088403267097, 5.69934389405961, 5.340781578493584, 9.706704989230598, 15.909181233120458, 58.09139292650805, 17.4485378442879, 9.196835279661881, 46.03709369230211, 20.2670225328873, 89.43461952976031, 19.66943933587731, 34.96514035051314, 22.774291478370913, 84.41045111147247, 29.20596797142728, 46.423685478579976, 50.572204356482274, 6.36995744010295, 42.72297667543314, 13.448494464350619, 93.89110683329622, 20.69873629928123, 43.26530526955826, 82.19013037547266, 24.59210894073253, 60.46961089112091, 8.675358489572396, 35.43731095488766, 73.14142633489483, 104.97116666422198, 10.777650298607389, 30.94848123465257, 8.10869243951407, 64.78922116555013, 24.162048976907975, 38.465564836281, 22.55126891610883, 19.676166727636563, 19.79435073416711, 48.12936960084649, 89.21827770504306, 51.88141415634807, 15.301176917660705, 30.533513785229758, 39.56199924300063, 39.69141749129856, 12.281145782794784, 5.817571659361525, 61.17055894194604, 48.22591120082947, 16.901914572047286, 47.65348223808544, 19.511940512952645, 54.571098950178275, 34.32236387652001, 30.844894621599895, 72.67785667174873, 18.484953626703003, 13.039526810450715, 15.517889800628692, 30.435187884145193, 6.772125414129021, 24.75235353400151, 36.01228248587473, 14.055140189175367, 43.08673719075191, 8.547710702803517, 6.90034262417286, 45.725322460973786, 165.20697433869842, 16.788252425764483, 51.90609975926991, 16.285028625997537, 5.734173604064786, 5.561080200342416, 32.92988358824165, 27.118160025630438, 13.899041071986414, 5.908535181630372, 86.27848774161859, 87.20280717346685, 9.423378034365394, 13.653386651497373, 6.571897559654115, 6.768281839322427, 20.707531212127236, 83.74034431416757, 95.40755739817223, 21.283983796510537, 8.595809511858306, 32.43189502497857, 137.3523553226237, 51.55667280437777, 49.93802744262617, 31.317022694760908, 31.95999454932736, 60.473078190563484, 24.346124834182366, 33.695818866752944, 63.388324587388325, 49.73156654985981, 8.742754231377287, 27.944471480000548, 22.058048815230663, 54.6767128471776, 11.479922909089936, 6.8001500784711935, 94.27796787804331, 8.348650893350888, 77.63037817130834, 18.92012555517789, 43.24138869526932, 11.316166328721023, 86.44083252581923, 6.060157594906135, 104.14578784862411, 12.116994090264926, 5.542876583243554, 15.470407111263974, 17.368352742421518, 15.93896753849822, 12.384560158763184, 6.904173212543638, 5.5129233880005, 5.698536588331347, 110.4328300504257, 74.11753057867911, 24.932073913081368, 201.9487506025565, 42.07939752712338, 12.43572151715728, 51.71704052347994, 28.13878732198408, 12.042756592276767, 49.08524388852624, 12.044951435238868, 113.11671793859585, 31.12125002843412, 7.42673794775578, 9.36517350693576, 17.72094812818981, 10.145948931483526, 10.540477184282203, 105.22442328221886, 35.5053646944135, 47.29201598834821, 5.939928773605218, 16.43920450435194, 6.8303557924546245, 104.24347785059193, 81.66083387303789, 17.296171530802177, 11.897028070157605, 28.964321982733185, 13.685662533351042, 6.710862084917227, 6.631623430134139, 39.11650458242414, 20.296868950122697, 72.44212919689713, 25.998775094310652, 14.988766154566914, 27.487703668485878, 17.13468721169664, 71.92102517512936, 46.36102127244823, 8.60262777430108, 28.84502826063975, 33.71459778804297, 10.90537147352695, 74.44948759878673, 9.803087149149945, 93.75601683361087, 10.280661271302272, 14.325776105404195, 13.207335489016511, 55.90166108432437, 111.43080571391334, 31.56478010576704, 14.609848264960169, 13.756846544487189, 7.254896026040043, 83.8320627524339, 32.64220196005144, 95.67527643303535, 26.766562467460083, 12.770288219448375, 42.440106717063735, 19.18248833743437, 26.54503782501882, 65.12710137603092, 40.92602823787551, 8.74604955824043, 28.059332361726447, 111.438729742916, 97.14238564429782, 97.31980886615867, 18.58967828772301, 20.04058916019423, 9.429097003088069, 8.211964498798821, 52.22564420288066, 51.36130533526837, 14.052185668513818, 24.172839905667193, 11.927290338137011, 5.508955219543054, 66.60030571347919, 58.30357782843204, 33.47261228426993, 47.961353997041265, 24.292195795333324, 30.676880670188613, 76.8744581212963, 22.546989541941656, 47.95128520483094, 61.76403462358772, 41.6611548929606, 78.78220600427504, 69.92093215790189, 69.00549991625276, 28.175180545196604, 33.18118048398571, 24.302243772048897, 32.6883279003525, 39.767894577510205, 8.175148158051924, 88.58344804676467, 37.64910951550274, 78.39516809465732, 5.297097095358458, 41.08078537874222, 8.346884804139949, 13.179518150936511, 61.30395938507971, 87.7092424276866, 30.278579578959565, 59.450764025251274, 77.81523862395753, 20.203139273332297, 155.039627661263, 91.4951301689859, 13.622924409803856, 16.85058935858505, 69.50235818762583, 22.573158927626558, 24.16429002316809, 52.975647964595254, 11.832038886380595, 33.26786573295432, 11.435656869960434, 25.806436429991003, 14.784869637380563, 114.53886939084353, 47.5174476209319, 6.571444922615294, 88.09349821095395, 9.356210284871453, 15.359232056675847, 36.78100957217274, 150.1502866292629, 65.10642952265007, 7.002609807188147, 29.194191599493355, 16.143226048932494, 12.880889986803767, 29.78820281859159, 109.53031259343027, 9.965022290578524, 98.66276843593212, 6.2888216981041305, 47.19166226032253, 7.4007372066530435, 12.598513859314064, 20.472027447620896, 6.667819114886728, 45.53241690413845, 24.7131666828117, 80.36329635336575, 6.350328372817864, 31.164929083102543, 56.524914783943196, 13.013312906728485, 56.21333818732625, 12.981311263472476, 8.833086311923623, 6.274665431263286, 69.86206470482873, 38.70186292269607, 12.072619438724052, 16.69780193219936, 18.804926675505804, 41.34836533551406, 5.121197799634698, 38.22439776195731, 18.866130720468373, 19.79481132962618, 74.94682120976708, 57.47756163584593, 53.98528084364248, 91.63910798791935, 25.328900231966667, 39.34705477307614, 30.48204632315243, 9.757521800063294, 97.99863918491337, 7.182647008448343, 15.410106464298796, 97.22784385624973, 40.750737298812226, 6.251788124765306, 14.655940737491985, 14.885209717228586, 19.35637959208231, 85.17051175622302, 6.107513402931716, 7.31140291935736, 42.1796353938051, 24.00596646674867, 30.57048925955976, 59.652959411938966, 60.31171276438647, 20.38575021011037, 22.15347679170643, 59.32819215003417, 15.057529398661332, 16.713809982161187, 91.19907300588605, 82.7569334510009, 75.1709081808377, 105.61869807109262, 8.588983989324602, 153.89697296608682, 27.591999892576425, 12.854668302019066, 63.59834754533455, 32.182282963326614, 5.3868130438931665, 69.08595502052549, 8.63891447199616, 15.72896127864509, 45.80783315439815, 5.659108048573549, 19.904490295836858, 64.3095163016903, 42.441736937706715, 35.780664695461255, 50.8079223045401, 21.82345864606857, 22.33279969656546, 54.2367527372651, 11.848512477749178, 51.89447788628196, 48.18543498020521, 98.0778517887959, 80.27393623051437, 14.380982898590524, 5.9214330635110475, 101.03308975943365, 113.07274071177216, 33.86262902190991, 65.3983508242896, 27.255145287568006, 7.221070887285844, 14.949030549124016, 19.97706771980451, 20.874010526382317, 57.721601109222945, 10.807600955300192, 92.23144513487956, 9.5134281035854, 14.620577374202696, 21.321973423165268, 14.063411508102854, 6.938473423169307, 192.3852200938898, 55.546253772312326, 20.162272766585957, 88.21024775224852, 43.63277308501733, 81.96168171712912, 10.697744714919228, 62.45150031067783, 24.111927962741348, 27.8223201184663, 46.041331478976694, 13.092247692879589, 7.170053793958792, 22.299791192178272, 137.1847906271821, 8.495457101216699, 6.529708006449231, 18.904304655600246, 7.034597598753268, 72.41894883323505, 103.10323929601674, 21.715449798277724, 5.135653624588958, 44.09679578338417, 7.218224889304558, 13.525570983178758, 19.163140326619214, 77.25590115406277, 21.794249608779406, 54.37395338387814, 11.77036582053601, 20.466542116305114, 20.516096993704, 48.191176380379666, 12.227188671718924, 24.30671714366828, 10.60649363088939, 36.033108431330476, 62.23982630767485, 110.45514385999476, 22.4319195832188, 103.14613940042686, 12.826190789281208, 80.83937021440656, 13.362415503395502, 48.05108979656883, 20.384218229991372, 36.43246660038503, 11.043027014439854, 134.01487334759938, 15.058528031910138, 12.809499277188094, 8.500432730955849, 7.741298189904778, 58.428141183634665, 17.816061374236405, 6.193332993137408, 13.148358739054128, 40.70997652178394, 9.43663163561044, 33.137646780124115, 18.32763959588428, 12.885654523642392, 50.48949559715793, 15.51162700569188, 34.44320211127956, 37.05914346114708, 11.723552905084807, 7.6617856608385955, 9.230317071435898, 26.863356140841898, 46.48739551069643, 49.77106335921479, 7.133981226619455, 53.23095465206276, 14.808391903143146, 130.8882064810849, 47.79412608199959, 73.28873571229676, 26.8289702945113, 74.8045705708033, 6.941971874449923, 35.601521175952726, 28.26134699162061, 79.29855428353379, 56.397754744635705, 19.58575199099757, 18.543737818969554, 57.21174888048607, 63.13011335687912, 6.0807122525287, 59.30201607458227, 6.88044277192505, 68.17872613629083, 13.700856074127637, 5.489970344703043, 23.732191144635067, 120.58655111322976, 79.37252920088103, 66.41675076004785, 16.99605327474192, 30.175457966253582, 7.245432488564343, 92.6252070805198, 5.186793752101209, 20.08545906448566, 58.719884275630605, 55.72833692024495, 5.869864213074002, 106.29049606669246, 28.592246348250278, 142.87752654152746, 8.397189196526078, 37.54776907534021, 6.188274386484477, 16.50781052223907, 12.598732011379452, 17.276073976717306, 26.0563477231687, 55.124726202207896, 24.63094951035179, 47.095504665294214, 29.52256160776921, 6.492396762738451, 25.016539601274488, 27.638453570493123, 19.352440193769986, 7.305453072662256, 17.756444118457452, 45.7654266143129, 5.068143871960007, 7.421921459264899, 31.26648334257405, 48.57549650613181, 16.05265586313973, 40.430719130861675, 80.80400680591767, 47.05747161993371, 5.900255082467164, 100.47018320971709, 10.672409540118373, 18.469545173391452, 11.54129721269032, 387.64122801512354, 7.302152444962949, 48.41756804342694, 40.36217613138773, 5.512174002889739, 61.687486395945456, 34.03576380217626, 15.627763206329062, 11.201309066904264, 6.862441635575355, 20.604591995828244, 37.6459337433924, 72.2902500651029, 66.76287546700536, 25.838523727490852, 8.76183803287705, 6.4383729467976085, 86.84763101928122, 34.62910665288685, 13.141409689705352, 35.07387007252384, 72.40299524939644, 9.246356050389672, 8.587496479287342, 31.40973773454877, 39.91055883923139, 21.991383646338303, 101.43806264974381, 14.758288441656685, 9.170455979654689, 111.03256189360593, 16.721878721218687, 8.02089285920974, 48.896357812843455, 8.171870376419719, 38.03124766433565, 25.275510812261473, 58.87964206538491, 14.584709453704264, 133.03483447151936, 66.1631473877565, 105.57605043177412, 28.621902147959176, 17.37042998540572, 49.47871398500984, 55.7066860335251, 25.101568312451825, 7.6717940144042664, 7.646664224371724, 22.17627420969518, 29.79452795563083, 10.362211879134296, 7.327439279688538, 66.39608381647251, 81.13891712800992, 5.041043293792083, 39.98502922198521, 30.3865648253619, 12.858518408686509, 10.340752234565537, 32.65558077269106, 20.357285528113003, 6.0355448845397754, 7.6103337367455435, 11.733787863542906, 42.05552833265298, 7.0500847426894095, 7.685694034070659, 16.11121812717408, 59.63417064413499, 7.8592104814905595, 90.11498998428074, 63.05826743582787, 48.165061235957616, 57.88408716210857, 10.832454088732923, 14.303203107457467, 12.318390943225543, 74.16467396427285, 12.352448726208346, 22.07798717373861, 18.16076399632731, 30.75239050608078, 21.54032896288912, 45.22918065883398, 23.688130424990746, 30.208053264343253, 7.638630903357476, 25.14067500837553, 9.882023436729105, 14.032032440983158, 68.65443047514924, 127.07998983900757, 91.64766249967711, 81.35999055582818, 11.627379030230975, 104.96213317625404, 6.896694001467725, 49.80787231340811, 12.483539784787062, 6.229776107454668, 29.015015124903602, 49.1438918773219, 134.56395945172295, 31.175323988064694, 86.27228181541497, 13.349588029740186, 13.411178950520496, 33.31090954868682, 17.646464347296828, 5.570575228729357, 5.595923765338806, 6.921779379546344, 75.92207725499863, 42.859013768679176, 5.566300664746369, 93.8552559836843, 13.999368386027516, 86.58882292969001, 96.15432032363276, 21.213352834559256, 50.20293985573825, 36.201197463933795, 34.109103609700625, 108.04066915068624, 40.0478855209055, 36.19794834542415, 18.206785983699312, 94.1147410687222, 12.544848649610037, 56.883436272741456, 32.670750265526344, 5.819632027847173, 192.14169573486157, 110.86210869088721, 83.11900472465939, 8.826508567759817, 6.885864828783603, 92.2533867792045, 14.919011611343093, 51.37606813517367, 8.863493675890469, 24.414783685504936, 91.12022463831838, 39.22145721684601, 11.203265312554143, 49.55724043199001, 78.25494186272232, 67.72221151998434, 96.3892703759288, 75.0869912009641, 28.11534477815159, 10.66624960686438, 129.8608390924675, 15.967523941784636, 11.626514413010884, 12.534775205017482, 9.086438263614902, 25.370147062753823, 8.017279028756805, 13.041708169426824, 11.092921566715749, 12.31372479579799, 56.38858252341982, 63.40789337594254, 15.295271342117355, 20.539945868202437, 91.66638622232207, 18.977938563433618, 14.07502273419526, 5.647556392145065, 15.402810193605509, 39.68921637012615, 19.74939019130308, 35.14028480010033, 9.408968377746449, 21.213416985785244, 29.323105790134008, 12.57290714092241, 79.40751568092381, 77.81940400308808, 19.475812847529625, 64.57554301562381, 6.629549732641203, 64.8038650613732, 34.007994183834526, 78.79624327858713, 84.34480766355483, 70.79115217975884, 40.97341732889351, 83.62389895936528, 32.908603066187865, 6.319554841287105, 55.568220716811794, 89.90451982056584, 8.73381066363458, 20.115895508969924, 10.703410284964365, 18.34144495240052, 8.15318169803612, 37.14314107592902, 79.51330452739786, 21.287767790351328, 25.612708010563537, 47.35564480145775, 28.621934963612638, 10.472322788404467, 43.065156004582, 96.92148337030403, 17.043667465041157, 69.77884426334766, 39.43581711156298, 15.641501964706569, 37.06242845261597, 10.007147610874815, 16.042627616826618, 59.71817415643895, 14.777458174818568, 11.225862186973153, 7.073560674409322, 19.95042818785362, 42.349939240680236, 75.93463031386773, 54.772366369355154, 89.99024944473592, 27.03810811606352, 22.782507985147472, 54.5944395535642, 79.17700131741097, 5.725224231652832, 25.662677441449787, 24.662834781872448, 57.14138287004934, 13.737713616736126, 11.149303249349998, 42.77521258481368, 47.69883761134932, 43.24912514959319, 19.611545205280258, 62.04881321982681, 12.992462757271507, 15.431758959215209, 7.061108203276464, 26.633964953497024, 13.32478819821214, 6.427927395481974, 8.229114353401739, 65.59139963583564, 9.766440340584378, 47.53581819622143, 144.2108523165711, 12.780297464114577, 73.56357140732528, 17.225174448124015, 37.058186368000904, 24.778885236536944, 19.526492154858175, 19.584144672281205, 80.48572090939845, 44.74094142040889, 27.89200990385213, 27.62054702468179, 28.741622613166793, 11.408873505256782, 9.471476330093125, 49.948711457911415, 5.194417049627684, 91.64022007621512, 6.160697601871624, 24.92066473023778, 257.27327129294457, 52.69772712623854, 8.723267859686702, 23.630318836278374, 40.47800389172416, 19.887148799691765, 6.7292691495877754, 14.388493913604298, 72.90713108248211, 31.84367422715309, 52.5557931478412, 13.765591927944216, 14.774622075581853, 38.54937854818661, 20.404041576803333, 12.195384353539131, 22.39720488574083, 12.801263088602413, 12.26629731155304, 72.40682288504493, 49.6524141507241, 18.692541748783324, 7.306813167221083, 41.82261291283586, 6.295754447563651, 5.889723310202171, 84.44003868747419, 22.12863697212076, 73.58689155368258, 21.64932575489739, 91.15691371573769, 50.79104410773626, 12.019202766814141, 46.74979893647207, 53.729937912987026, 74.47070549063943, 13.093802332953778, 17.849178131551533, 7.144803037927964, 77.06855284835578, 19.705551924637955, ...])
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);
([5070460.9375, 5215787.393618365, 5367219.541028576, 5448015.625, 5451879.463537301, 5608511.135762243, 6520713.616369924, 6569522.731252979, 6905983.002077185, 7221098.391403784, 7243590.625, 7244824.392101433, 7244881.688947889, 7244892.9449966345, 7245073.4375, 7247053.501837572, 7248445.646024158, 7316639.37833467, 7386943.04798743, 7416551.42748123, 7418600.762891336, 7426894.020877612, 7450798.293480774, 7451111.736553305, 7451972.3594608335, 7453443.696792748, 7504797.440772329, 7506217.1875, 7507073.4375, 7508504.274487494, 7512306.301639069, 7574817.406275298, 7594127.430746653, 7631646.706159428, 7643195.72917014, 7652135.9375, 7661079.035824593, 7661089.251240696, 7661222.334788303, 7663409.199793166, 7666636.088395809, 7719180.470229714, 7722595.674553191, 7722615.439629221, 7736996.875, 7743622.161448758, 7794253.125, 7795691.570457213, 7799817.655801363, 7799955.446850067, 7800063.723889173, 7800201.5625, 7801152.667915466, 7801848.4375, 7818345.107671302, 7826541.979296097, 7828388.66456534, 7828401.106574721, 7828795.668541639, 7829115.23715533, 7829527.152435956, 7829818.75, 7829939.0625, 7830427.060288581, 7830668.530991223, 7831536.759028912, 7832496.875, 7834698.743068432, 7834700.9394906135, 7834716.393008528, 7834731.221582325, 7835569.123912062, 7835571.48634555, 7835960.101814254, 7839665.204557224, 7843921.875, 7852771.559086482, 7859134.649857675, 7873238.772289084, 7876833.626882441, 7877724.384087129, 7896571.064712193, 7904906.25, 7904916.506057326, 7910462.564720085, 7921660.930136811, 7957238.477294019, 8096385.9375, 8099817.186860958, 8102361.386503978, 8110784.375, 8110984.375, 8111218.564954903, 8111432.09088387, 8111482.975548319, 8111485.9375, 8111538.721629927, 8111544.138710073, 8111554.603228234, 8111617.1875, 8111631.25, 8111640.986054002, 8111701.5625, 8111714.868278435, 8111732.360078576, 8111739.091484605, 8111765.427527215, 8111775.9679556675, 8111779.361603156, 8111844.849902123, 8111907.506924464, 8111926.5625, 8111984.20065555, 8112002.3001818545, 8112006.25, 8112013.616034214, 8112044.092515269, 8112057.438389344, 8112087.353644867, 8112090.625, 8112120.010275244, 8112152.615191953, 8112173.547957111, 8112179.952058575, 8112220.3125, 8112231.882252449, 8112254.6875, 8112256.25, 8112332.781383758, 8112375.630942215, 8112404.711934009, 8112405.377577927, 8112414.0625, 8112443.296945578, 8112478.544561426, 8112494.392558802, 8112567.489262607, 8112568.496799331, 8112579.233573941, 8112626.10155264, 8112660.9375, 8112675.0, 8112676.503519694, 8112725.681543901, 8112760.9375, 8112807.8125, 8112933.297423102, 8112959.375, 8112973.4375, 8112980.474677065, 8113073.4375, 8113081.817917068, 8113132.208535111, 8113267.1875, 8113285.803036466, 8113290.982187968, 8113347.464255617, 8113357.8125, 8113477.701717746, 8113496.875, 8113506.5726716425, 8113554.299371814, 8113587.327116787, 8113635.9375, 8113636.465999925, 8113648.988268335, 8113685.6600928055, 8113711.487136518, 8113736.294000358, 8113816.595383452, 8113818.75, 8113840.507870333, 8113840.591690407, 8113870.72533357, 8113964.295151598, 8114006.25, 8114013.719143653, 8114162.336446661, 8114314.0625, 8114338.8781795725, 8114389.0625, 8114511.795443438, 8114514.0625, 8114591.713061398, 8114608.916047371, 8114632.285474193, 8114653.329937646, 8115326.5625, 8115358.584736733, 8115590.625, 8115660.481608563, 8115668.75, 8115698.468045064, 8115907.8125, 8117079.376316426, 8118756.274243798, 8124985.9375, 8125970.981816211, 8126404.555723857, 8126758.366743944, 8128059.375, 8132195.076373672, 8133018.117493172, 8133737.147754852, 8134101.5625, 8134196.606531736, 8135303.125, 8135552.222180053, 8135552.421287416, 8136667.616355583, 8137292.1875, 8137317.1875, 8137320.3125, 8137674.797766724, 8138415.338050036, 8139176.304777334, 8139800.0, 8140055.318299458, 8140482.860920266, 8147060.9375, 8196617.165077563, 8197240.814889537, 8200190.625, 8201280.525470765, 8203268.75, 8206453.127030509, 8210923.0172679415, 8212704.6875, 8213951.424276945, 8213971.266939663, 8214457.955925107, 8215430.464364012, 8215725.043018692, 8218289.527016553, 8218687.045783583, 8219162.246241704, 8220023.4375, 8222202.025687322, 8222370.961326903, 8222431.25, 8222654.365220945, 8222750.412656075, 8222775.0, 8222951.87535387, 8223028.5473249005, 8223192.751228352, 8223240.460842052, 8223275.404695955, 8223340.321680342, 8223473.076058484, 8223492.1875, 8224117.007057401, 8224345.419307678, 8224710.552822049, 8224948.957975741, 8224975.023872173, 8226182.229971629, 8227990.567268225, 8228881.04636466, 8229918.228778405, 8230830.229809085, 8232160.763127763, 8233663.565151722, 8233717.1875, 8233910.447422828, 8234085.672863947, 8234630.386944135, 8235068.75, 8235117.998678548, 8235228.203814385, 8235262.5, 8235765.625, 8239255.460831217, 8239617.15749074, 8239888.7910956675, 8240548.4375, 8241118.964226573, 8242918.930816011, 8243434.375, 8248245.428066, 8249417.1875, 8249663.259065764, 8249787.5, 8252084.492315056, 8254842.1875, 8256815.351952439, 8257047.9141038265, 8257752.114941555, 8257837.700203403, 8259090.757170897, 8259431.768141071, 8259583.051697291, 8260250.678523206, 8261417.853495158, 8261443.327556934, 8262293.6200393755, 8263453.525127516, 8268866.849719075, 8272762.936225195, 8273150.284858259, 8277164.720803135, 8300169.451682595, 8314424.729331815, 8349129.102992362, 8388569.265908025, 8392985.9375, 8394394.266998239, 8398620.3125, 8415533.285566231, 8518385.421633326, 8523270.352170387, 8545944.59859476, 8591510.203259613, 8593419.90124883, 8602226.5625, 8609196.875, 8630212.5, 8726096.881006444, 8746358.156812755, 8769842.513369812, 8773153.07004514, 8774400.0, 8775620.818030104, 8777439.504606094, 8777753.125, 8778215.251255464, 8778488.792959541, 8779047.73894515, 8779248.269937674, 8779658.746095788, 8779725.0, 8780127.982726837, 8780254.24935366, 8781887.445330845, 8781911.414301652, 8782456.25, 8785437.5, 8787203.67838064, 8822966.207509777, 8849917.908280673, 8849999.852942368, 8850044.841280924, 8850114.572206557, 8850150.340766992, 8850313.443365235, 8850632.640997734, 8850646.331075406, 8850704.6875, 8850994.858097397, 8851078.30308076, 8851446.785175674, 8851540.275104135, 8851623.921933549, 8851710.9375, 8852816.910093162, 8853259.621301653, 8853368.654353475, 8853533.658705456, 8854180.625823209, 8854282.044822093, 8861840.937751463, 8863209.375, 8863326.5625, 8863836.715835517, 8863898.413542405, 8864249.227452904, 8864389.0625, 8864435.9375, 8864446.719312623, 8864450.386329448, 8864462.613321546, 8864488.918689728, 8864554.6875, 8864575.0, 8864618.495318431, 8864687.582136177, 8864733.270165069, 8864832.305183094, 8864845.3125, 8864854.6875, 8864856.25, 8864903.125, 8864920.05373837, 8864925.878785955, 8864935.029030465, 8864984.511772724, 8865000.0, 8865033.447800724, 8865037.5, 8865048.42227548, 8865050.797322832, 8865108.432856327, 8865111.386853008, 8865117.530698013, 8865139.435524765, 8865193.75, 8865195.862139713, 8865209.158169372, 8865212.5, 8865268.75, 8865268.75, 8865279.88084343, 8865296.67659655, 8865301.674827412, 8865340.070612045, 8865376.537054762, 8865393.75, 8865402.444676226, 8865434.375, 8865467.1875, 8865522.797674468, 8865530.77092633, 8865581.25, 8865594.917433288, 8865597.299460363, 8865607.444976985, 8865610.653068328, 8865641.919199957, 8865653.125, 8865716.033268096, 8865735.9375, 8865754.875970757, 8865774.845524041, 8865788.700636016, 8865809.375, 8865810.9375, 8865844.267802646, 8865884.469782764, 8865893.779193224, 8865946.980441233, 8865967.131878996, 8865972.964359576, 8865984.90085162, 8866043.277754458, 8866082.8125, 8866153.408194369, 8866161.828992967, 8866201.5625, 8866230.201856218, 8866242.852496762, 8866305.557101095, 8866362.669252664, 8866403.125, 8866447.84061748, 8866460.148466066, 8866468.141165033, 8866468.25103405, 8866579.6875, 8866624.771786124, 8866628.94729106, 8866636.56831276, 8866835.9375, 8866986.773293832, 8867315.006696796, 8867365.526823102, 8867433.744108211, 8868149.34535483, 8868182.871373944, 8868256.25, 8868735.9375, 8868771.041536143, 8869261.332816428, 8869261.680456093, 8869542.1875, 8881847.996981464, 8882746.875, 8891564.814046811, 8920700.41652891, 8924195.189346462, 8924510.551623223, 8924551.5625, 8924677.376983866, 8924856.0642603, 8924878.125, 8924979.6875, 8925005.151838463, 8925032.8125, 8925097.102792192, 8925154.805239502, 8925360.425212288, 8925459.278565641, 8925563.939546997, 8925768.102139842, 8925769.195138505, 8925805.76491259, 8926082.8125, 8926217.37214427, 8926222.551469017, 8926362.5, 8926396.594721364, 8926503.125, 8926608.877705572, 8926642.153729929, 8926725.943834336, 8926735.501245987, 8926798.4375, 8926815.6551098, 8926837.898403678, 8926900.0, 8926990.253700355, 8927046.875, 8927067.806588132, 8927147.406190183, 8927176.412515951, 8927182.949678523, 8927377.44336247, 8927430.719688237, 8927451.5625, 8927509.06658433, 8927573.4375, 8927580.299212985, 8927870.504817285, 8928046.875, 8928130.474317484, 8928234.501542117, 8928705.897431612, 8928860.9375, 8928981.25, 8929265.399439827, 8929627.657491237, 8930223.727003606, 8930301.983828288, 8930336.354400815, 8930339.0625, 8930753.125, 8931237.5, 8931587.5, 8932013.907232758, 8933287.291283997, 8933370.3125, 8934034.571452744, 8934282.292973615, 8934440.625, 8934456.182397902, 8934942.55338107, 8934956.251971858, 8935368.335238185, 8935804.123115927, 8935832.8125, 8935835.722575875, 8935846.438788062, 8935851.770203387, 8936037.413172133, 8936210.576650374, 8936245.061323464, 8936285.19247201, 8936302.514059812, 8936343.75, 8936429.042872231, 8936627.859635182, 8936629.6875, 8936710.9375, 8936832.518831305, 8936834.375, 8936891.915259525, 8937420.741054501, 8937448.4375, 8937591.599854203, 8937643.931719508, 8937660.514735421, 8937765.555783536, 8937794.125156993, 8937811.20407985, 8937925.756868426, 8938019.971456962, 8938101.946031569, 8938156.762912305, 8938302.647004317, 8938323.676984686, 8938445.509897253, 8938455.043279309, 8938566.758770334, 8938571.104728453, 8938574.661017573, 8938630.77966804, 8938706.690499045, 8938811.313109582, 8939194.703043148, 8939227.521146, 8939526.5625, 8939594.064550163, 8939622.137739895, 8939819.951324936, 8940104.708384626, 8940201.11362608, 8940428.125, 8940432.401729537, 8940540.625, 8940605.807975555, 8940656.25, 8940747.950726008, 8940925.92437305, 8941685.318658823, 8941931.25, 8941934.320140468, 8942017.64972554, 8942059.40536614, 8942127.424896274, 8942262.883634482, 8942420.678739332, 8942446.875, 8943338.093344579, 8943393.14210162, 8943724.433813138, 8944279.091363253, 8944520.434381144, 8945482.8125, 8946051.323972732, 8946479.018417548, 8947084.375, 8947215.766946193, 8949562.5, 8950586.787569573, 8950898.7879561, 8951365.784026489, 8951524.877980854, 8952129.597506015, 8952743.75, 8953265.21395358, 8953300.04745111, 8953687.873078417, 8953860.902131101, 8954192.781994548, 8954715.535186922, 8954976.112092597, 8955024.908003528, 8955289.13366875, 8955430.52019777, 8955448.31530875, 8956227.725529222, 8956460.623101061, 8956607.103258457, 8956850.847382283, 8957030.39296321, 8957101.5625, 8957267.1875, 8957318.678664666, 8957371.875, 8957402.121306127, 8957639.0625, 8958048.068876168, 8958085.016042473, 8958706.741524456, 8958911.035451282, 8959001.5625, 8959322.855565075, 8959523.889053654, 8959560.9375, 8959577.014042912, 8960139.0625, 8960191.522063876, 8960257.158778382, 8960289.0625, 8960367.1875, 8960433.540251683, 8960641.410961518, 8960935.132942101, 8961359.678659024, 8961551.765971122, 8962004.990974609, 8962202.473695977, 8962226.67687261, 8962341.398560362, 8962433.314493768, 8962512.585656084, 8962596.875, 8962917.105759347, 8963107.763864247, 8963735.9375, 8964384.408761919, 8965220.10552931, 8966653.078576384, 8967191.538548177, 8967195.969093109, 8973869.333620014, 8979968.394091204, 8980099.958580028, 8982326.03172864, 8982663.456750298, 8984583.11470828, 8985790.888874944, 8986315.625, 8987099.281223655, 8987379.485090708, 8987452.664185008, 8987454.6875, 8987513.750283657, 8987699.132060347, 8988034.624413095, 8989878.733846445, 9000099.083032724, 9002270.287554033, 9002281.25, 9003679.249072462, 9004476.5625, 9004720.6193983, 9005215.794104066, 9005364.109083585, 9005573.913652755, 9005760.788051028, 9005831.125570407, 9005996.112320963, 9006304.6875, 9006417.03507497, 9006482.052208591, 9006630.932011774, 9006653.125, 9006734.375, 9006804.118670402, 9006842.1875, 9006927.784825958, 9007251.460176552, 9007284.903762262, 9007419.822479635, 9007463.098944215, 9007491.500821756, 9007498.910214609, 9007568.701084737, 9007684.178317895, 9007878.611198336, 9007956.341735598, 9007977.586358622, 9007991.273962788, 9007991.964100366, 9008032.613310669, 9008073.248176329, 9008129.6875, 9008151.465630252, 9008257.390839001, 9008275.0, 9008285.9375, 9008314.0625, 9008531.768501924, 9008664.0625, 9008700.0, 9008754.024112735, 9008765.810652167, 9008928.243492853, 9008934.185733834, 9008937.225638028, 9008968.198045738, 9009375.7296459, 9009595.3125, 9009622.683076529, 9009693.720270865, 9009789.0625, 9009908.711020494, 9010033.694927434, 9010122.868044438, 9010258.84216265, 9010763.428645242, 9011630.728996165, 9015245.332077019, 9017361.886949249, 9023096.875, 9024143.4713684, 9030950.222367054, 9031051.838900752, 9031131.25, 9032699.09380282, 9034098.275224185, 9034194.470969696, 9034829.6875, 9070081.25, 9083598.240021093, 9089698.259307742, 9091770.96062987, 9101190.625, 9101780.351336211, 9105184.767354645, 9105533.460426848, 9117693.75, 9122428.676592391, 9140889.0625, 9145202.899327682, 9146084.375, 9148303.221808216, 9154662.712217035, 9154756.83653665, 9155704.426505644, 9157260.9375, 9163917.024166182, 9166289.0625, 9169925.0, 9170386.235266583, 9174592.1875, 9174947.507426426, 9179627.312612975, 9180461.660565676, 9187552.822949525, 9213581.25, 9213681.25, 9213949.618867503, 9214223.287488, 9214407.636932997, 9215055.758573392, 9215344.843292812, 9215556.67696672, 9215672.4404519, 9216888.24908793, 9217974.667746453, 9221936.681749698, 9222665.625, 9223793.75, 9227302.228495153, 9228265.053098138, 9228784.0832295, 9228820.243418556, 9228840.69275588, 9228938.53399181, 9228940.625, 9229256.25, 9229267.1875, 9229286.179239731, 9229351.5625, 9229392.1875, 9229615.466761513, 9229615.625, 9229724.187616926, 9229725.0, 9229732.8125, 9229790.701092938, 9229846.875, 9230187.686037801, 9230298.4375, 9230522.773241892, 9230870.89597312, 9230952.707373388, 9230954.681584887, 9231039.0625, 9231980.639430128, 9232388.812766157, 9233698.101388901, 9235712.432361009, 9247412.547808088, 9255984.76114649, 9263398.55868432, 9263496.875, 9263874.841583975, 9265681.031327475, 9267268.728972321, 9267280.933251588, 9268253.06057122, 9270114.30794123, 9270620.912031004, 9270921.058200007, 9270952.820350934, 9271501.379516695, 9271794.765996022, 9272115.017789232, 9273823.415130911, 9274480.333467549, 9274503.125, 9274620.3125, 9276176.7058364, 9277647.479972862, 9277718.75, 9277841.392054932, 9277926.314940326, 9278147.465280179, 9278895.828490295, 9279119.565633222, 9279335.242925936, 9279592.1875, 9280157.902830044, 9281863.533998456, 9281885.9375, 9282321.169926144, 9282636.998987706, 9282907.8125, 9284193.866925742, 9284884.375, 9285607.102319619, 9287002.864245104, 9287976.5625, 9290596.875, 9291075.0, 9291885.9375, 9294171.875, 9294354.517630186, 9295350.0, 9295405.090959905, 9295939.0625, 9298353.125, 9299010.134711664, 9299022.787392294, 9299652.83545882, 9301820.987963673, 9302891.926430808, 9303192.511496091, 9303387.5, 9303743.229167065, 9303946.636342213, 9306698.4375, 9307693.15534017, 9309347.973420558, 9309535.9375, 9309543.75, 9310442.647787258, 9310493.75, 9311175.729421211, 9311829.859779898, 9311984.375, 9312016.328939827, 9312167.449217448, 9313031.25, 9313601.518782971, 9313685.999402093, 9313824.814627064, 9314622.767575406, 9314703.125, 9318204.6875, 9318918.614457281, 9320764.0625, 9324073.327687062, 9326294.932721794, 9330443.709286124, 9332094.058662647, 9334692.47379687, 9335127.19688034, 9336209.143200388, 9341627.122141678, 9342569.956229549, 9347362.513772938, 9352620.3125, 9353532.8125, 9354284.375, 9356535.225649664, 9359272.020410223, 9359733.748505475, 9360393.872939516, 9360923.202859476, 9360967.084030407, 9361016.306466162, 9361062.111904219, 9361098.327232648, 9361309.91417212, 9361411.410778323, 9361421.86121036, 9361643.75, 9361688.350352712, 9361710.9375, 9361891.117988225, 9361917.562886178, 9361962.890550338, 9361982.52465393, 9361985.104483703, 9361986.587202094, 9362003.125, 9362102.676035186, 9362160.890102541, 9362182.8125, 9362201.735230533, 9362220.473639209, 9362250.0, 9362296.517839346, 9362303.944914335, 9362306.920338918, 9362317.479338098, 9362338.75570347, 9362389.0625, 9362397.618585428, 9362403.321467, 9362414.552377786, 9362416.50988539, 9362438.888552407, 9362462.34692779, 9362493.75, 9362500.0, 9362506.25, 9362518.40300925, 9362535.893015113, 9362540.625, 9362541.57092733, 9362566.215269534, 9362573.884696987, 9362582.109007875, 9362631.873844983, 9362681.334480813, 9362694.966937372, 9362728.851990787, 9362730.348643625, 9362735.9375, 9362750.222726632, 9362757.223757375, 9362778.125, 9362790.186433854, 9362790.625, 9362796.390519552, 9362799.706880786, 9362832.8125, 9362847.379169248, 9362872.452143706, 9362873.121543242, 9362892.1875, 9362894.13559691, 9362916.2237094, 9362920.40059395, 9362925.0, 9362949.299965242, ...], [44.0672262209433, 80.40059815075732, 7.9168000649105785, 65.15375998014837, 64.0932184770716, 9.504866840176946, 8.063952314147242, 19.655982330217476, 15.716921485809369, 52.167770019938274, 51.23012102002287, 13.039942087251454, 11.890914785761685, 12.561734526328229, 73.1540980022033, 16.602844168706895, 23.503815743702088, 11.660075214896802, 12.804857478612215, 119.86466432181143, 18.947751942700464, 5.29952845689708, 8.211858139025338, 7.92028977227413, 17.177345177371052, 11.045546578195122, 17.64838843272528, 69.71389427765243, 57.39302848786589, 13.570769809883563, 15.142055360444411, 15.846539887463528, 7.370060714270678, 14.33478550046729, 16.80938038714609, 72.56413792131625, 10.241948456428647, 5.956012482254268, 11.931438830153683, 25.4873931568199, 9.462338661296139, 18.80163403084672, 16.527915413589, 56.80302056128345, 87.48222602800261, 11.607046481404478, 68.77505695998275, 20.3999294327125, 11.048965142832433, 7.336472542040575, 7.485193241438548, 74.06495920189043, 6.675559750492203, 30.47759480502255, 14.214330614693859, 24.998681371054897, 7.465384817209268, 44.1127598380352, 9.651764881971099, 42.94303270561549, 5.562413805080329, 31.70189350522852, 67.16729406562163, 7.793780425206226, 93.16001720248589, 10.138260449308413, 35.329244473919005, 53.587956603866274, 13.001321552945038, 18.98486982225364, 63.42760201473784, 53.81980079045574, 8.091214974471502, 12.491980831058832, 7.457934344218052, 35.641658431211525, 23.549574780019217, 11.586340232352633, 75.51749047085718, 12.694267099149416, 64.2353066104251, 31.159322563785402, 48.61340894256978, 6.3853237440382955, 5.4645512708129695, 14.913518468447855, 12.722075906675606, 63.10203067593844, 14.93907425134072, 16.982220071130982, 62.25125677164811, 39.55107645773781, 14.280186173130968, 6.180138256344099, 17.901649278148554, 57.12498352521888, 19.306654353952332, 7.227523319325769, 26.962197612336986, 125.3514787146684, 57.260362666414586, 41.51786992803147, 29.733917871886003, 19.264780612353576, 5.326654239259991, 15.053148124190784, 159.5550851195598, 20.59911384514211, 7.038339798268997, 5.277008651888208, 13.892055156567844, 76.28892784086351, 25.500475927730786, 18.767605493461108, 49.15456309851142, 6.419309532191531, 6.542158237643279, 10.589306134383989, 31.575888996772825, 42.161614983925645, 64.34595077070601, 29.00456473821115, 36.19836649802296, 88.46192527936898, 47.79340910155912, 12.284255081436244, 62.82395439806711, 123.0845764120979, 11.079415956255493, 12.281451164149104, 9.35214931773127, 7.8734732079958665, 122.23824694802207, 30.96271798228404, 28.793013306766593, 27.22289972249125, 8.45287229259346, 24.36753010952978, 5.381399838575695, 45.617859329488596, 48.7673973316033, 70.17024426365903, 27.40965850451994, 18.381978325427603, 32.91812984162873, 106.90871921883641, 9.778101447363529, 43.341517529291465, 35.47153109523381, 19.125602435978593, 142.32855845384674, 7.279195306892297, 18.67901631771509, 37.467414449526494, 26.123688221196, 16.503457743071053, 12.193262634669374, 31.98223262864473, 73.46138210912936, 50.65192995382454, 23.654152584764724, 22.686721910270006, 212.4606581408741, 65.84785324836949, 80.41714092903715, 17.558886617504793, 29.639028786358075, 9.843829189144227, 12.959149467952003, 20.62090330293467, 78.98088403267097, 5.69934389405961, 5.340781578493584, 9.706704989230598, 15.909181233120458, 58.09139292650805, 17.4485378442879, 9.196835279661881, 46.03709369230211, 20.2670225328873, 89.43461952976031, 19.66943933587731, 34.96514035051314, 22.774291478370913, 84.41045111147247, 29.20596797142728, 46.423685478579976, 50.572204356482274, 6.36995744010295, 42.72297667543314, 13.448494464350619, 93.89110683329622, 20.69873629928123, 43.26530526955826, 82.19013037547266, 24.59210894073253, 60.46961089112091, 8.675358489572396, 35.43731095488766, 73.14142633489483, 104.97116666422198, 10.777650298607389, 30.94848123465257, 8.10869243951407, 64.78922116555013, 24.162048976907975, 38.465564836281, 22.55126891610883, 19.676166727636563, 19.79435073416711, 48.12936960084649, 89.21827770504306, 51.88141415634807, 15.301176917660705, 30.533513785229758, 39.56199924300063, 39.69141749129856, 12.281145782794784, 5.817571659361525, 61.17055894194604, 48.22591120082947, 16.901914572047286, 47.65348223808544, 19.511940512952645, 54.571098950178275, 34.32236387652001, 30.844894621599895, 72.67785667174873, 18.484953626703003, 13.039526810450715, 15.517889800628692, 30.435187884145193, 6.772125414129021, 24.75235353400151, 36.01228248587473, 14.055140189175367, 43.08673719075191, 8.547710702803517, 6.90034262417286, 45.725322460973786, 165.20697433869842, 16.788252425764483, 51.90609975926991, 16.285028625997537, 5.734173604064786, 5.561080200342416, 32.92988358824165, 27.118160025630438, 13.899041071986414, 5.908535181630372, 86.27848774161859, 87.20280717346685, 9.423378034365394, 13.653386651497373, 6.571897559654115, 6.768281839322427, 20.707531212127236, 83.74034431416757, 95.40755739817223, 21.283983796510537, 8.595809511858306, 32.43189502497857, 137.3523553226237, 51.55667280437777, 49.93802744262617, 31.317022694760908, 31.95999454932736, 60.473078190563484, 24.346124834182366, 33.695818866752944, 63.388324587388325, 49.73156654985981, 8.742754231377287, 27.944471480000548, 22.058048815230663, 54.6767128471776, 11.479922909089936, 6.8001500784711935, 94.27796787804331, 8.348650893350888, 77.63037817130834, 18.92012555517789, 43.24138869526932, 11.316166328721023, 86.44083252581923, 6.060157594906135, 104.14578784862411, 12.116994090264926, 5.542876583243554, 15.470407111263974, 17.368352742421518, 15.93896753849822, 12.384560158763184, 6.904173212543638, 5.5129233880005, 5.698536588331347, 110.4328300504257, 74.11753057867911, 24.932073913081368, 201.9487506025565, 42.07939752712338, 12.43572151715728, 51.71704052347994, 28.13878732198408, 12.042756592276767, 49.08524388852624, 12.044951435238868, 113.11671793859585, 31.12125002843412, 7.42673794775578, 9.36517350693576, 17.72094812818981, 10.145948931483526, 10.540477184282203, 105.22442328221886, 35.5053646944135, 47.29201598834821, 5.939928773605218, 16.43920450435194, 6.8303557924546245, 104.24347785059193, 81.66083387303789, 17.296171530802177, 11.897028070157605, 28.964321982733185, 13.685662533351042, 6.710862084917227, 6.631623430134139, 39.11650458242414, 20.296868950122697, 72.44212919689713, 25.998775094310652, 14.988766154566914, 27.487703668485878, 17.13468721169664, 71.92102517512936, 46.36102127244823, 8.60262777430108, 28.84502826063975, 33.71459778804297, 10.90537147352695, 74.44948759878673, 9.803087149149945, 93.75601683361087, 10.280661271302272, 14.325776105404195, 13.207335489016511, 55.90166108432437, 111.43080571391334, 31.56478010576704, 14.609848264960169, 13.756846544487189, 7.254896026040043, 83.8320627524339, 32.64220196005144, 95.67527643303535, 26.766562467460083, 12.770288219448375, 42.440106717063735, 19.18248833743437, 26.54503782501882, 65.12710137603092, 40.92602823787551, 8.74604955824043, 28.059332361726447, 111.438729742916, 97.14238564429782, 97.31980886615867, 18.58967828772301, 20.04058916019423, 9.429097003088069, 8.211964498798821, 52.22564420288066, 51.36130533526837, 14.052185668513818, 24.172839905667193, 11.927290338137011, 5.508955219543054, 66.60030571347919, 58.30357782843204, 33.47261228426993, 47.961353997041265, 24.292195795333324, 30.676880670188613, 76.8744581212963, 22.546989541941656, 47.95128520483094, 61.76403462358772, 41.6611548929606, 78.78220600427504, 69.92093215790189, 69.00549991625276, 28.175180545196604, 33.18118048398571, 24.302243772048897, 32.6883279003525, 39.767894577510205, 8.175148158051924, 88.58344804676467, 37.64910951550274, 78.39516809465732, 5.297097095358458, 41.08078537874222, 8.346884804139949, 13.179518150936511, 61.30395938507971, 87.7092424276866, 30.278579578959565, 59.450764025251274, 77.81523862395753, 20.203139273332297, 155.039627661263, 91.4951301689859, 13.622924409803856, 16.85058935858505, 69.50235818762583, 22.573158927626558, 24.16429002316809, 52.975647964595254, 11.832038886380595, 33.26786573295432, 11.435656869960434, 25.806436429991003, 14.784869637380563, 114.53886939084353, 47.5174476209319, 6.571444922615294, 88.09349821095395, 9.356210284871453, 15.359232056675847, 36.78100957217274, 150.1502866292629, 65.10642952265007, 7.002609807188147, 29.194191599493355, 16.143226048932494, 12.880889986803767, 29.78820281859159, 109.53031259343027, 9.965022290578524, 98.66276843593212, 6.2888216981041305, 47.19166226032253, 7.4007372066530435, 12.598513859314064, 20.472027447620896, 6.667819114886728, 45.53241690413845, 24.7131666828117, 80.36329635336575, 6.350328372817864, 31.164929083102543, 56.524914783943196, 13.013312906728485, 56.21333818732625, 12.981311263472476, 8.833086311923623, 6.274665431263286, 69.86206470482873, 38.70186292269607, 12.072619438724052, 16.69780193219936, 18.804926675505804, 41.34836533551406, 5.121197799634698, 38.22439776195731, 18.866130720468373, 19.79481132962618, 74.94682120976708, 57.47756163584593, 53.98528084364248, 91.63910798791935, 25.328900231966667, 39.34705477307614, 30.48204632315243, 9.757521800063294, 97.99863918491337, 7.182647008448343, 15.410106464298796, 97.22784385624973, 40.750737298812226, 6.251788124765306, 14.655940737491985, 14.885209717228586, 19.35637959208231, 85.17051175622302, 6.107513402931716, 7.31140291935736, 42.1796353938051, 24.00596646674867, 30.57048925955976, 59.652959411938966, 60.31171276438647, 20.38575021011037, 22.15347679170643, 59.32819215003417, 15.057529398661332, 16.713809982161187, 91.19907300588605, 82.7569334510009, 75.1709081808377, 105.61869807109262, 8.588983989324602, 153.89697296608682, 27.591999892576425, 12.854668302019066, 63.59834754533455, 32.182282963326614, 5.3868130438931665, 69.08595502052549, 8.63891447199616, 15.72896127864509, 45.80783315439815, 5.659108048573549, 19.904490295836858, 64.3095163016903, 42.441736937706715, 35.780664695461255, 50.8079223045401, 21.82345864606857, 22.33279969656546, 54.2367527372651, 11.848512477749178, 51.89447788628196, 48.18543498020521, 98.0778517887959, 80.27393623051437, 14.380982898590524, 5.9214330635110475, 101.03308975943365, 113.07274071177216, 33.86262902190991, 65.3983508242896, 27.255145287568006, 7.221070887285844, 14.949030549124016, 19.97706771980451, 20.874010526382317, 57.721601109222945, 10.807600955300192, 92.23144513487956, 9.5134281035854, 14.620577374202696, 21.321973423165268, 14.063411508102854, 6.938473423169307, 192.3852200938898, 55.546253772312326, 20.162272766585957, 88.21024775224852, 43.63277308501733, 81.96168171712912, 10.697744714919228, 62.45150031067783, 24.111927962741348, 27.8223201184663, 46.041331478976694, 13.092247692879589, 7.170053793958792, 22.299791192178272, 137.1847906271821, 8.495457101216699, 6.529708006449231, 18.904304655600246, 7.034597598753268, 72.41894883323505, 103.10323929601674, 21.715449798277724, 5.135653624588958, 44.09679578338417, 7.218224889304558, 13.525570983178758, 19.163140326619214, 77.25590115406277, 21.794249608779406, 54.37395338387814, 11.77036582053601, 20.466542116305114, 20.516096993704, 48.191176380379666, 12.227188671718924, 24.30671714366828, 10.60649363088939, 36.033108431330476, 62.23982630767485, 110.45514385999476, 22.4319195832188, 103.14613940042686, 12.826190789281208, 80.83937021440656, 13.362415503395502, 48.05108979656883, 20.384218229991372, 36.43246660038503, 11.043027014439854, 134.01487334759938, 15.058528031910138, 12.809499277188094, 8.500432730955849, 7.741298189904778, 58.428141183634665, 17.816061374236405, 6.193332993137408, 13.148358739054128, 40.70997652178394, 9.43663163561044, 33.137646780124115, 18.32763959588428, 12.885654523642392, 50.48949559715793, 15.51162700569188, 34.44320211127956, 37.05914346114708, 11.723552905084807, 7.6617856608385955, 9.230317071435898, 26.863356140841898, 46.48739551069643, 49.77106335921479, 7.133981226619455, 53.23095465206276, 14.808391903143146, 130.8882064810849, 47.79412608199959, 73.28873571229676, 26.8289702945113, 74.8045705708033, 6.941971874449923, 35.601521175952726, 28.26134699162061, 79.29855428353379, 56.397754744635705, 19.58575199099757, 18.543737818969554, 57.21174888048607, 63.13011335687912, 6.0807122525287, 59.30201607458227, 6.88044277192505, 68.17872613629083, 13.700856074127637, 5.489970344703043, 23.732191144635067, 120.58655111322976, 79.37252920088103, 66.41675076004785, 16.99605327474192, 30.175457966253582, 7.245432488564343, 92.6252070805198, 5.186793752101209, 20.08545906448566, 58.719884275630605, 55.72833692024495, 5.869864213074002, 106.29049606669246, 28.592246348250278, 142.87752654152746, 8.397189196526078, 37.54776907534021, 6.188274386484477, 16.50781052223907, 12.598732011379452, 17.276073976717306, 26.0563477231687, 55.124726202207896, 24.63094951035179, 47.095504665294214, 29.52256160776921, 6.492396762738451, 25.016539601274488, 27.638453570493123, 19.352440193769986, 7.305453072662256, 17.756444118457452, 45.7654266143129, 5.068143871960007, 7.421921459264899, 31.26648334257405, 48.57549650613181, 16.05265586313973, 40.430719130861675, 80.80400680591767, 47.05747161993371, 5.900255082467164, 100.47018320971709, 10.672409540118373, 18.469545173391452, 11.54129721269032, 387.64122801512354, 7.302152444962949, 48.41756804342694, 40.36217613138773, 5.512174002889739, 61.687486395945456, 34.03576380217626, 15.627763206329062, 11.201309066904264, 6.862441635575355, 20.604591995828244, 37.6459337433924, 72.2902500651029, 66.76287546700536, 25.838523727490852, 8.76183803287705, 6.4383729467976085, 86.84763101928122, 34.62910665288685, 13.141409689705352, 35.07387007252384, 72.40299524939644, 9.246356050389672, 8.587496479287342, 31.40973773454877, 39.91055883923139, 21.991383646338303, 101.43806264974381, 14.758288441656685, 9.170455979654689, 111.03256189360593, 16.721878721218687, 8.02089285920974, 48.896357812843455, 8.171870376419719, 38.03124766433565, 25.275510812261473, 58.87964206538491, 14.584709453704264, 133.03483447151936, 66.1631473877565, 105.57605043177412, 28.621902147959176, 17.37042998540572, 49.47871398500984, 55.7066860335251, 25.101568312451825, 7.6717940144042664, 7.646664224371724, 22.17627420969518, 29.79452795563083, 10.362211879134296, 7.327439279688538, 66.39608381647251, 81.13891712800992, 5.041043293792083, 39.98502922198521, 30.3865648253619, 12.858518408686509, 10.340752234565537, 32.65558077269106, 20.357285528113003, 6.0355448845397754, 7.6103337367455435, 11.733787863542906, 42.05552833265298, 7.0500847426894095, 7.685694034070659, 16.11121812717408, 59.63417064413499, 7.8592104814905595, 90.11498998428074, 63.05826743582787, 48.165061235957616, 57.88408716210857, 10.832454088732923, 14.303203107457467, 12.318390943225543, 74.16467396427285, 12.352448726208346, 22.07798717373861, 18.16076399632731, 30.75239050608078, 21.54032896288912, 45.22918065883398, 23.688130424990746, 30.208053264343253, 7.638630903357476, 25.14067500837553, 9.882023436729105, 14.032032440983158, 68.65443047514924, 127.07998983900757, 91.64766249967711, 81.35999055582818, 11.627379030230975, 104.96213317625404, 6.896694001467725, 49.80787231340811, 12.483539784787062, 6.229776107454668, 29.015015124903602, 49.1438918773219, 134.56395945172295, 31.175323988064694, 86.27228181541497, 13.349588029740186, 13.411178950520496, 33.31090954868682, 17.646464347296828, 5.570575228729357, 5.595923765338806, 6.921779379546344, 75.92207725499863, 42.859013768679176, 5.566300664746369, 93.8552559836843, 13.999368386027516, 86.58882292969001, 96.15432032363276, 21.213352834559256, 50.20293985573825, 36.201197463933795, 34.109103609700625, 108.04066915068624, 40.0478855209055, 36.19794834542415, 18.206785983699312, 94.1147410687222, 12.544848649610037, 56.883436272741456, 32.670750265526344, 5.819632027847173, 192.14169573486157, 110.86210869088721, 83.11900472465939, 8.826508567759817, 6.885864828783603, 92.2533867792045, 14.919011611343093, 51.37606813517367, 8.863493675890469, 24.414783685504936, 91.12022463831838, 39.22145721684601, 11.203265312554143, 49.55724043199001, 78.25494186272232, 67.72221151998434, 96.3892703759288, 75.0869912009641, 28.11534477815159, 10.66624960686438, 129.8608390924675, 15.967523941784636, 11.626514413010884, 12.534775205017482, 9.086438263614902, 25.370147062753823, 8.017279028756805, 13.041708169426824, 11.092921566715749, 12.31372479579799, 56.38858252341982, 63.40789337594254, 15.295271342117355, 20.539945868202437, 91.66638622232207, 18.977938563433618, 14.07502273419526, 5.647556392145065, 15.402810193605509, 39.68921637012615, 19.74939019130308, 35.14028480010033, 9.408968377746449, 21.213416985785244, 29.323105790134008, 12.57290714092241, 79.40751568092381, 77.81940400308808, 19.475812847529625, 64.57554301562381, 6.629549732641203, 64.8038650613732, 34.007994183834526, 78.79624327858713, 84.34480766355483, 70.79115217975884, 40.97341732889351, 83.62389895936528, 32.908603066187865, 6.319554841287105, 55.568220716811794, 89.90451982056584, 8.73381066363458, 20.115895508969924, 10.703410284964365, 18.34144495240052, 8.15318169803612, 37.14314107592902, 79.51330452739786, 21.287767790351328, 25.612708010563537, 47.35564480145775, 28.621934963612638, 10.472322788404467, 43.065156004582, 96.92148337030403, 17.043667465041157, 69.77884426334766, 39.43581711156298, 15.641501964706569, 37.06242845261597, 10.007147610874815, 16.042627616826618, 59.71817415643895, 14.777458174818568, 11.225862186973153, 7.073560674409322, 19.95042818785362, 42.349939240680236, 75.93463031386773, 54.772366369355154, 89.99024944473592, 27.03810811606352, 22.782507985147472, 54.5944395535642, 79.17700131741097, 5.725224231652832, 25.662677441449787, 24.662834781872448, 57.14138287004934, 13.737713616736126, 11.149303249349998, 42.77521258481368, 47.69883761134932, 43.24912514959319, 19.611545205280258, 62.04881321982681, 12.992462757271507, 15.431758959215209, 7.061108203276464, 26.633964953497024, 13.32478819821214, 6.427927395481974, 8.229114353401739, 65.59139963583564, 9.766440340584378, 47.53581819622143, 144.2108523165711, 12.780297464114577, 73.56357140732528, 17.225174448124015, 37.058186368000904, 24.778885236536944, 19.526492154858175, 19.584144672281205, 80.48572090939845, 44.74094142040889, 27.89200990385213, 27.62054702468179, 28.741622613166793, 11.408873505256782, 9.471476330093125, 49.948711457911415, 5.194417049627684, 91.64022007621512, 6.160697601871624, 24.92066473023778, 257.27327129294457, 52.69772712623854, 8.723267859686702, 23.630318836278374, 40.47800389172416, 19.887148799691765, 6.7292691495877754, 14.388493913604298, 72.90713108248211, 31.84367422715309, 52.5557931478412, 13.765591927944216, 14.774622075581853, 38.54937854818661, 20.404041576803333, 12.195384353539131, 22.39720488574083, 12.801263088602413, 12.26629731155304, 72.40682288504493, 49.6524141507241, 18.692541748783324, 7.306813167221083, 41.82261291283586, 6.295754447563651, 5.889723310202171, 84.44003868747419, 22.12863697212076, 73.58689155368258, 21.64932575489739, 91.15691371573769, 50.79104410773626, 12.019202766814141, 46.74979893647207, 53.729937912987026, 74.47070549063943, 13.093802332953778, 17.849178131551533, 7.144803037927964, 77.06855284835578, 19.705551924637955, ...])
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)