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 = 45334
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);
([3908323.4375, 3915319.2119768513, 3926193.75, 3933785.9375, 3934178.125, 3956443.75, 3961271.552313882, 4124739.0625, 4158917.3330675126, 4172905.317637388, 4176667.1875, 4179321.2794608665, 4186270.7198983785, 4224945.019081927, 4227666.58508912, 4232561.348545522, 4236370.500787577, 4241724.615406326, 4249818.736894733, 4249993.245466971, 4251706.25, 4252292.1875, 4252842.162327762, 4333993.422525106, 4345533.92681601, 4367009.828287975, 4367381.00903524, 4367558.934331903, 4367943.28964652, 4368003.125, 4369009.375, 4369041.296254978, 4379052.9132627, 4394226.139477064, 4395126.5625, 4402738.678062454, 4421379.297491675, 4423677.702393552, 4425331.070997606, 4426049.6803895775, 4438940.967681626, 4439155.549719789, 4439562.5, 4439805.546133031, 4440143.125990236, 4441226.2491710875, 4450176.5625, 4612867.963852973, 4660912.211416018, 4663929.670744762, 4715513.896636887, 4720422.148762026, 4721939.674682057, 4723757.8125, 4723867.273212791, 4741123.4375, 4760058.228789652, 4761799.087859717, 4766640.625, 4772775.712568165, 4773019.449665925, 4778853.125, 4782467.781796019, 4782501.248787356, 4782851.50310568, 4784004.445068049, 4784005.711225186, 4784792.800747808, 4784990.9316469785, 4788043.303534214, 4789051.5625, 4789275.778328457, 4790042.013165584, 4792603.670555479, 4792899.871195155, 4799816.035861504, 4799925.0, 4809866.005794882, 4810106.162183967, 4810375.0, 4810771.875, 4810853.116051984, 4810943.75, 4811176.5625, 4812263.269393464, 4812601.437802298, 4812912.646335993, 4813009.274867595, 4813124.04537806, 4814046.777549616, 4814709.870608831, 4814903.125, 4815779.423006589, 4816335.218464069, 4817818.75, 4821184.375, 4821691.599865169, 4844971.515036745, 4986246.177418023, 4988067.70841037, 5003434.723165031, 5016842.164270249, 5018035.61602155, 5019780.822074091, 5030050.938695481, 5032066.66557528, 5045960.305037446, 5047869.40646098, 5048796.467459866, 5053117.491818199, 5055417.1875, 5059286.886266277, 5079271.06057522, 5079582.25598882, 5079794.431719267, 5080088.658480305, 5084431.075922108, 5084666.89129178, 5086460.293982141, 5086474.257608811, 5086638.040087134, 5090538.779686211, 5092578.320718271, 5094410.510565554, 5095217.1875, 5097260.344082091, 5101766.518374672, 5122534.136207014, 5124656.936234236, 5132475.0, 5134229.040513124, 5139256.752829106, 5143075.572946464, 5144186.744795531, 5155853.125, 5156157.083418177, 5161696.872111151, 5181710.512923279, 5185891.803993282, 5187068.743257564, 5193543.028199475, 5196823.4375, 5200632.8125, 5200635.132092478, 5202908.243031632, 5205187.567523499, 5205439.293598083, 5207421.007424018, 5207958.756217306, 5232105.303744882, 5237477.877503427, 5237749.201659301, 5237849.75030868, 5240312.5, 5242121.875, 5242507.411232634, 5243995.806129265, 5246957.618377384, 5250049.81538974, 5254600.0, 5257882.11933224, 5261624.725979523, 5265084.856349426, 5267872.426196176, 5272125.037424084, 5283370.3125, 5287362.670614037, 5296284.807346332, 5299207.8125, 5304599.707340872, 5312388.916060706, 5312440.553423989, 5313420.832401881, 5313620.3125, 5314898.4375, 5315140.625, 5316799.369145023, 5317872.900627456, 5322498.410483751, 5322807.718175149, 5322913.8407712625, 5323412.758257552, 5325529.6875, 5329137.215567501, 5331426.38581709, 5331914.0625, 5334214.226080864, 5335777.082783383, 5342760.9375, 5343559.375, 5344674.495373902, 5345669.392383016, 5345822.6857506335, 5349916.922804154, 5350508.289320423, 5352267.808565544, 5353313.932204772, 5353315.075944569, 5353342.1875, 5355399.414168848, 5356707.871030524, 5356715.548208882, 5357208.668555486, 5357210.424386005, 5357670.3125, 5360035.9375, 5360047.928397135, 5366193.75, 5368543.479335327, 5370945.530401528, 5371347.246465045, 5372009.239163871, 5372179.51958908, 5373501.120325954, 5374250.071066981, 5374299.04957608, 5375198.985222656, 5375685.793753278, 5376076.410891488, 5376602.199613859, 5376874.418277787, 5380272.3586640535, 5380449.293149967, 5380667.306283181, 5385156.669432682, 5385165.427910455, 5386924.483034343, 5387135.9375, 5387719.719534425, 5388347.779028028, 5388601.5625, 5388911.929540121, 5388926.341623735, 5391521.7720970465, 5393176.534527781, 5393789.0625, 5393925.914831091, 5394021.06521828, 5394561.115894081, 5395568.75, 5396567.86841621, 5396584.375, 5403385.735478598, 5405118.540391298, 5406888.654749696, 5408266.82477092, 5408868.144974683, 5408892.907337563, 5409119.527233739, 5409123.103875529, 5411021.875, 5411421.003613715, 5413639.329753349, 5417474.210788413, 5419181.25, 5426489.0625, 5431813.977178174, 5431817.903250963, 5431837.843851321, 5433884.375, 5434479.6875, 5435954.30848307, 5443305.605868858, 5443414.0625, 5443724.459864356, 5446390.625, 5448457.277462705, 5449896.567897869, 5450465.441075883, 5456313.561545975, 5457358.42556221, 5458104.025860676, 5460390.33856691, 5460685.9375, 5460707.8125, 5462290.625, 5463159.428240404, 5464029.211172639, 5464185.9375, 5464943.068770899, 5466338.619715562, 5466545.267743576, 5466600.771668412, 5466772.293835911, 5467273.4375, 5467889.12230626, 5468051.937266761, 5468310.9375, 5470210.434536352, 5470404.6875, 5473390.668746593, 5473404.6875, 5475866.646027786, 5478457.8125, 5478486.78669955, 5481180.248489535, 5482450.997689111, 5486175.25199765, 5486454.527905002, 5490050.150350508, 5490209.377126241, 5495027.285137775, 5496429.684259895, 5497044.909336072, 5497045.345932247, 5499727.229529712, 5500014.835232917, 5501753.649467861, 5501846.128133882, 5502304.879757768, 5504600.694924244, 5504913.0556362355, 5505426.598362416, 5506779.394506207, 5509338.741488639, 5509662.5, 5513706.1290723495, 5518596.875, 5519501.234250977, 5531878.025710096, 5532446.670198702, 5533326.5625, 5533343.384901901, 5534400.537421644, 5534886.898982134, 5537310.9375, 5537503.465368249, 5538941.261621049, 5540842.1875, 5543423.883587754, 5544935.528465614, 5545257.8125, 5545988.433133546, 5546687.782319181, 5549075.252000092, 5551648.9909477355, 5551712.924739919, 5554658.287099628, 5555010.9375, 5555262.185427009, 5556943.869682827, 5557144.8648678195, 5559158.1679493245, 5565084.71120546, 5565335.689599083, 5566042.997503053, 5567238.329297041, 5569739.239827028, 5570821.875, 5570864.368503372, 5572293.817412597, 5572792.1875, 5574318.233482995, 5576665.222716622, 5579271.875, 5580334.125551398, 5581436.245718526, 5582682.8125, 5583078.125, 5586987.744906959, 5589734.917904439, 5590109.024198075, 5590389.1920437785, 5591004.546572578, 5591196.19580801, 5593706.023669275, 5594785.188870822, 5600000.0, 5600462.613217486, 5601145.234231345, 5601780.415515713, 5601888.762206589, 5602798.623626981, 5603282.404734755, 5603298.6634948375, 5603485.474582662, 5603625.762194284, 5604022.738835864, 5604846.875, 5605532.099227529, 5606217.1875, 5609469.24616118, 5610623.4375, 5610775.779096608, 5613194.522355553, 5615415.26361085, 5615828.727814721, 5616303.035949979, 5617118.056277828, 5617304.6875, 5619232.659649666, 5619549.747585522, 5619563.4363246225, 5619817.886920725, 5619820.600007948, 5622663.809309291, 5624650.776841618, 5626376.387140726, 5626864.0625, 5626958.730949981, 5628024.624726858, 5628388.486544292, 5630829.6875, 5631112.385680309, 5635332.5907126125, 5635835.633828099, 5636180.992659372, 5637734.132706235, 5640747.835943558, 5641203.49909887, 5642134.484265663, 5642458.252173666, 5642502.548459447, 5642912.252413234, 5643237.060598335, 5644624.2292793915, 5644828.125, 5645471.371398136, 5646231.25, 5646537.5, 5646835.670312014, 5646869.419058359, 5646871.56696383, 5647222.825293628, 5647327.217638434, 5647798.666959522, 5650053.117480418, 5650666.467927212, 5651702.403162684, 5652663.131652411, 5654809.375, 5655717.1875, 5656906.904933351, 5659893.708985762, 5660298.054964798, 5660331.25, 5660361.991942675, 5660881.941768015, 5661826.98926287, 5662809.375, 5663302.684432992, 5663397.104466731, 5663667.189223729, 5664267.386567435, 5664903.631537001, 5666290.625, 5668992.1875, 5671882.330126785, 5673375.6158743035, 5676379.542320701, 5676404.2555649, 5677149.070723217, 5677443.032266749, 5678528.078312485, 5678733.537297595, 5678908.186665595, 5679568.256656315, 5679878.437464735, 5683133.721452714, 5683786.709138518, 5684915.625, 5685762.5, 5685874.559611427, 5688277.474904097, 5690656.25, 5696631.25, 5697025.886263938, 5697382.400824259, 5698257.8125, 5698410.9375, 5698772.150963059, 5698775.0, 5699834.375, 5699920.3125, 5701588.475349698, 5702113.688545843, 5702364.658422611, 5702579.501733433, 5702580.828864904, 5702797.218319684, 5702958.692341378, 5703033.446244956, 5703152.860670555, 5703440.713977443, 5703480.33376078, 5703673.849959236, 5703785.9375, 5704933.380696481, 5704944.8415200645, 5705028.036657799, 5705704.608090923, 5706401.5625, 5706846.821556838, 5707593.75, 5708885.012708541, 5709617.902348656, 5709835.2111414755, 5709848.817398139, 5709988.438796286, 5710492.957533946, 5711522.076900208, 5711534.631659809, 5712429.6875, 5713536.252338748, 5713565.795141451, 5714047.315767278, 5714084.692223526, 5714638.168948252, 5716556.25, 5716732.8125, 5718379.6875, 5720056.25, 5721376.5625, 5721512.501590717, 5725698.066209882, 5726768.75, 5728024.48278014, 5730139.975195067, 5731377.999939192, 5734263.519814064, 5736610.7169044055, 5736649.051767544, 5736815.524364075, 5736890.368585611, 5738061.43258748, 5738345.291374084, 5738401.5625, 5738521.525514957, 5738914.4832851365, 5739753.125, 5739842.173410272, 5739982.8125, 5739989.0625, 5740949.845921441, 5741660.9375, 5742021.091647488, 5742412.5, 5742454.706831034, 5742457.8125, 5742781.892025936, 5744868.980561522, 5745024.271022303, 5745045.385163089, 5746055.898555507, 5746802.871204836, 5749248.031069204, 5751632.028971309, 5753438.630974102, 5753836.228187351, 5754064.422313151, 5754691.741357071, 5754696.875, 5755922.888556499, 5755924.443189259, 5757090.920924505, 5757366.956578574, 5758076.922103171, 5758128.125, 5758190.419738574, 5759135.647484515, 5759162.165296101, 5760190.733596876, 5760243.750272311, 5760822.17541956, 5760907.040049924, 5761237.5, 5761347.591101834, 5761754.226563324, 5762769.225473213, 5763703.2972606495, 5763909.467957402, 5763931.997338871, 5764301.626415061, 5764306.25, 5764490.670246316, 5764882.471009481, 5765008.555749819, 5765711.386257395, 5766223.37098111, 5766380.74359384, 5766719.986669507, 5767422.352084493, 5767493.073927444, 5767504.882845784, 5768444.606496865, 5768992.292278587, 5770805.424787274, 5771094.997295975, 5771903.125, 5771980.242334629, 5772655.9101373, 5773442.1875, 5775050.545030161, 5775287.222592962, 5775742.1875, 5777229.86296309, 5779740.376753165, 5780893.75, 5782286.133034765, 5782810.076181404, 5783888.326577239, 5786635.796575863, 5789137.5, 5792429.6875, 5792765.625, 5794560.460354361, 5794620.733352577, 5795085.389447095, 5795332.408256829, 5795574.553366029, 5796133.761014768, 5796246.247507045, 5796269.752165749, 5796689.029698918, 5797334.510211769, 5798007.284054197, 5798271.875, 5798537.5, 5798917.1875, 5798939.605914226, 5799004.654968361, 5799090.143128824, 5799482.368980707, 5802404.908170337, 5803741.61409738, 5803777.469269849, 5804444.516511478, 5806375.0, 5806445.600351157, 5806821.148059574, 5807689.0625, 5811016.815289443, 5812509.422804692, 5813039.0625, 5813977.1579892235, 5816389.018887292, 5816557.8125, 5816571.733587297, 5816806.705660004, 5817615.625, 5817940.625, 5818752.774944015, 5818856.326555764, 5820668.75, 5821252.901395571, 5824254.6875, 5824718.75, 5826110.637240644, 5829882.559959965, 5830124.439653795, 5830125.078186371, 5830693.024896336, 5830992.1875, 5835800.933707652, 5836258.652177354, 5836590.063149172, 5837309.096177743, 5838906.096072319, 5839089.0625, 5839157.6903875, 5839214.531110152, 5840214.8342963075, 5842759.984545851, 5844086.31239218, 5846043.75, 5847017.412846066, 5849021.875, 5852645.3125, 5852656.251877454, 5852856.8674857905, 5853008.538205352, 5854128.125, 5854170.832993491, 5854640.625, 5854648.4375, 5856409.375, 5857490.625, 5859143.465061058, 5860119.618828184, 5861415.625, 5861535.9375, 5862272.763680539, 5862646.875, 5863436.680943059, 5863560.853404388, 5863572.152736003, 5863716.589063828, 5863928.125, 5864069.562086887, 5864455.390805184, 5865221.783931269, 5865225.0, 5865614.0625, 5867222.05241752, 5867360.5243462175, 5867522.253594676, 5867888.414651313, 5867976.5625, 5868032.385236698, 5868063.667291117, 5868393.75, 5868909.375, 5869129.139244722, 5869234.375, 5870392.1875, 5871358.789414889, 5874209.375, 5875090.106179196, 5875469.280371832, 5876739.36924868, 5878619.853702898, 5879299.635638452, 5879761.496297978, 5880247.9470858695, 5882010.459151744, 5882344.465070238, 5884965.312619886, 5885541.645706177, 5885572.42750309, 5887338.455809987, 5888043.75, 5888528.04467709, 5892385.202793553, 5892745.213946295, 5892848.4375, 5893037.5, 5893291.197208227, 5893419.9808579, 5898883.898162716, 5900076.4982827585, 5901206.160431988, 5902421.875, 5903079.841287716, 5904519.740913599, 5904956.331988757, 5905057.357045659, 5905410.9375, 5906136.330940038, 5906757.693701799, 5908327.177632705, 5909274.573120764, 5910301.974645887, 5911881.25, 5912189.890535799, 5913707.868449706, 5915424.274606765, 5915450.0, 5916604.791734117, 5916896.875, 5918271.828859415, 5920545.058260324, 5920989.0625, 5921638.985934999, 5921939.864477131, 5923221.280792983, 5925404.6875, 5925422.402875292, 5929083.987717976, 5930240.800417328, 5930700.455081762, 5930779.562062904, 5930982.200677184, 5931420.3125, 5931510.323593304, 5935937.5, 5944743.072065098, 5945755.24576577, 5946944.1248988155, 5952189.115157973, 5955261.384099526, 5955810.696142848, 5956242.1875, 5956665.732470058, 5957718.291323276, 5959757.8125, 5961524.82848686, 5969056.107561689, 5984719.4343288755, 5987699.662888042, 5988853.125, 5989132.168365231, 5990434.33619892, 5990478.125, 5990495.711282346, 5990547.116636847, 5990803.378634166, 5991021.875, 5994439.647095009, 5994490.5539036235, 5994509.375, 5995071.525730842, 5995139.844814406, 5999146.875, 6000953.843135419, 6001062.756561057, 6004149.335780886, 6004329.609258164, 6020045.195065107, 6022239.662824847, 6026445.244097588, 6027763.992513274, 6027945.149214834, 6027950.144399258, 6029120.3125, 6030684.375, 6034883.346944163, 6041667.012164844, 6042018.584642884, 6042879.152279412, 6043836.355041101, 6044128.125, 6045406.126546667, 6045834.068572685, 6047634.29078882, 6049810.634452161, 6050055.664242625, 6051871.875, 6052920.748106812, 6054224.513085367, 6054248.7606194345, 6054999.07141262, 6055612.331664186, 6056587.4640203845, 6060293.75, 6060393.75, 6061045.240255019, 6061691.407663702, 6061865.02093236, 6062876.5625, 6066987.865135457, 6071927.335715333, 6073431.437412371, 6077409.946886259, 6077846.659351018, 6080135.666572923, 6080145.362187406, 6080460.10385627, 6082515.625, 6083690.625, 6084394.812974489, 6089655.485877374, 6089927.089003077, 6091392.1875, 6092467.1875, 6093568.4291042555, 6094418.742921057, 6095795.3125, 6095861.466594224, 6096581.8200909365, 6096583.601934497, 6099767.1875, 6101572.278770645, 6101793.683124719, 6102456.104027172, 6103220.75865982, 6104973.36030626, 6105291.145502264, 6110634.73226982, 6114431.650865195, 6117832.8125, 6118784.969166985, 6120241.9258635035, 6120263.534401389, 6120748.4375, 6121518.75, 6121954.005742837, 6121981.25, 6122782.664940772, 6122977.211715187, 6124800.953554091, 6125052.083068066, 6125279.59827516, 6126496.09993431, 6126964.0625, 6130607.8125, 6131941.385238759, 6135035.408760713, 6138963.574880886, 6142090.885240494, 6144644.593963201, 6146659.531098703, 6149565.625, 6151617.750475752, 6152767.003641632, 6153550.0, 6154108.49384867, 6154531.813962049, 6154670.516137402, 6154983.4393214965, 6156879.020959358, 6157008.564654247, 6158458.500870351, 6175289.872737739, 6175734.375, 6177372.804169987, 6178347.010709077, 6179788.669036047, 6181760.85472776, 6182654.625822177, 6182898.4375, 6183112.910870079, 6187168.72161444, 6189533.656501916, 6191463.8518057335, 6192653.125, 6195432.8125, 6200365.782764462, 6202755.168924846, 6202774.485048799, 6205120.334863463, 6206453.125, 6208887.084856524, 6210115.108546155, 6210195.406089336, 6210638.777178678, 6214443.75, 6216993.75, 6217343.75, 6218405.46636145, 6219885.930294615, 6220132.8125, 6221199.5538009545, 6223056.25, 6225205.168022108, 6227057.17792826, 6231928.014403854, 6238007.406549219, 6238411.843249659, 6238632.650145808, 6239155.944394895, 6239467.785973335, 6239593.559264532, 6239931.433130404, 6240050.864609439, 6244013.678408938, 6247179.109757404, 6247648.210349375, 6249439.520030977, 6249537.168354357, 6249583.603139856, 6249667.073603932, 6249667.1875, 6249681.25, 6250314.085913898, 6250345.3125, 6250460.9375, 6250982.561440576, 6253493.75, 6255121.860390597, 6261845.555795065, 6261947.085539654, 6271953.976457535, 6278468.061077995, 6278931.504877547, 6285195.3125, 6291967.1875, 6294310.100302063, 6297395.3125, 6299126.2105292, 6303156.25, 6321145.829775766, 6321632.8125, 6321656.25, 6322408.508585047, 6347142.1875, 6348451.486788207, 6348516.386962884, 6353219.950980335, 6357703.125, 6359398.149304067, 6372290.625, 6372440.10868653, 6380235.9375, 6382423.354980859, 6383062.5, 6389237.5, 6429815.579862931, 6431582.8125, 6436773.301043859, 6518620.753579473, 6543022.550635222, 6549493.75, 6560803.125, 6591449.9338482935, 6593900.813267946, 6596054.6875, 6596559.375, 6601209.220665015, 6601230.573213848, 6604207.892874781, 6605778.29138514, 6606960.9375, 6610001.304527822, 6610002.0921346, 6610100.0, 6610957.8125, 6610966.251208285, 6628352.33308725, 6639168.297131525, 6642546.875, ...], [50.31644107106969, 7.248427965685223, 80.95464429104568, 69.36515045301637, 58.11730304333373, 45.49576402328926, 23.465219701704207, 53.27029920825554, 5.044005575571676, 9.92784171005718, 50.500476698515875, 111.31556053267838, 59.31533605361865, 23.83518233987679, 20.528910144671165, 57.63220510399681, 7.171842253161006, 13.653634590895617, 93.48023460543314, 8.938360698461214, 39.275234706222335, 76.67983015155355, 21.403323348069023, 23.406019492778913, 8.979162299748529, 11.918752409889915, 14.09626593502922, 27.47163672233335, 13.435956078847052, 45.098550543696575, 31.106748104747425, 12.368636918152118, 16.737022091036906, 22.296966318542914, 44.497802961303876, 9.026201309264307, 8.090568199860307, 79.78698411372991, 31.995555825637283, 82.7293860485766, 5.21224121050876, 8.802030329883308, 77.81919038613903, 55.85775722075476, 10.274829311956085, 5.281505880485441, 65.4282811529857, 48.574835061775545, 13.944926427811247, 76.98452573376625, 85.92331861474418, 11.584389069030602, 25.940099693210705, 158.48655669564786, 5.4017608914052175, 30.528832072267875, 22.543222971012753, 6.353018811924852, 56.17563627154223, 6.604911759225409, 154.27164515344123, 108.23022705321517, 12.203821482187644, 10.670374459504806, 27.402191254879426, 10.768796264230495, 17.215940675142637, 17.93974640892166, 93.60029427493582, 6.419309532191531, 63.97386039676098, 97.09611523804813, 10.865722776360816, 12.102892135316704, 5.9282663696335485, 9.70477820023274, 45.31049400927617, 16.623056735696295, 68.32808029555207, 85.51995141514851, 80.41433981909726, 73.01050956373305, 46.74512502624703, 38.01158067108582, 18.994947987149, 77.85785789258536, 11.364411610341369, 58.52352124219039, 9.904356073019187, 35.56787269911035, 17.23994481668943, 57.09519324069477, 51.32765638991056, 19.55493565102328, 54.88601091681507, 76.39528006490737, 13.092276183867645, 10.608108599816237, 64.34841593447116, 12.052837728216828, 8.479693812037006, 33.80580185973441, 13.843095746415123, 15.978686079411432, 54.5661602298799, 21.2771424499517, 6.964562034958597, 70.24348371369136, 47.637062324209076, 11.639201104934411, 48.239513981632875, 20.2186234168206, 18.841335349227005, 21.072362800179324, 9.983034367383269, 38.883967679644265, 51.475396387386226, 51.395706697561124, 63.30326933733705, 19.373802030526093, 7.811001102223749, 5.036809986686547, 32.882129366523415, 94.6485421175172, 92.85251495725043, 13.07727646291256, 22.647433718221862, 52.771150934596925, 55.49428907315486, 37.51503873049751, 64.11970304802271, 6.5689128272153745, 17.691613145832815, 32.66980232473807, 31.479068234157626, 19.476491856280834, 36.71312651366236, 22.27999604175081, 67.01257892168172, 14.915872538324741, 45.620808215045415, 71.2916944457658, 66.80888600345983, 25.424867366297683, 100.47806727765523, 5.40106168072266, 11.50922012459618, 15.465455214881977, 16.730814013132044, 9.913160661378999, 14.07522555632262, 5.6577659238221445, 101.52117264927979, 108.43679397604573, 36.73907915773866, 13.604837403758141, 110.00888290151975, 134.55921027925393, 9.180035151115213, 62.50768349237892, 12.82640863248075, 9.109974609613644, 7.254006024400053, 12.114439893289289, 8.306467456172804, 31.67840682030979, 8.378909776093623, 39.957145506971194, 45.2845178992588, 23.844966226931838, 9.210575704730337, 27.18462239663633, 17.378495084705897, 94.68257610292508, 36.706404467701496, 82.99058196410682, 8.849448144896492, 49.92179440541268, 14.839526364839136, 71.99293444658416, 14.158760803867528, 73.0118732253018, 53.1355688304207, 6.708019984308255, 9.18634628707659, 32.46133270715353, 45.424096745441375, 7.80291725016139, 72.29959863759038, 59.86094354304142, 6.0371488768336885, 12.306001616630123, 19.302428130289005, 86.88917289746092, 17.134791410384114, 5.6493524843856715, 26.19095070553226, 21.017316724801216, 70.47371837805497, 20.67758715244645, 8.317773684964267, 27.092728613957192, 12.794099751987744, 21.36327107782012, 115.25591448857537, 41.89020230567963, 6.03671013336855, 35.004876419436975, 8.1484502411917, 11.486284028216987, 117.60753873321507, 55.27946161301986, 75.84361222029808, 106.31483460230459, 5.247138674479734, 5.9945421833181936, 9.841862553534437, 14.420529734911531, 17.275776497810273, 28.731354813357257, 72.91543055258, 76.2292705216766, 10.17744826835929, 99.67505779545293, 16.823962680380436, 8.185032303101801, 21.32551192961686, 85.42364010095272, 13.078447840239056, 33.529194211121336, 32.49150574556821, 54.08945567884061, 9.151371201922279, 8.2328999692183, 104.01685759862107, 32.63625897131116, 20.136501673194807, 82.00792435636853, 15.668046497863461, 73.26349050028674, 51.3793197928817, 52.61822055416194, 67.61232989042958, 24.97837595559888, 9.008888496065, 13.71840753873417, 29.46831519445061, 18.64275230669376, 76.21615202599833, 13.853737781453768, 58.66953411905711, 12.412293372074727, 16.06839356860638, 19.023365994504555, 78.46174853113943, 40.40470588672616, 26.943994705756456, 5.265629231372012, 7.732524628219088, 32.677614801109776, 31.866021270169906, 13.670070344907373, 25.310481949700016, 63.81250306460479, 10.376790543003475, 53.75843622973031, 10.383101330772089, 37.70763586425012, 25.356050511829505, 10.425631065084044, 30.285561317162177, 53.466947030047535, 23.933460325592744, 33.43931069566476, 99.31846824173982, 94.33163593726137, 8.314933847656896, 13.39135080065413, 67.99857656715434, 19.857582857268653, 22.083496815644363, 14.773619516226546, 19.011532900510197, 6.3216063917447896, 117.22164303984934, 5.535990185627157, 7.744651909152941, 52.00281628260835, 76.03384544884281, 66.38012079350737, 11.196781017022053, 72.92721846731128, 5.189842894931263, 47.770948059933716, 28.10180279562828, 6.880921776984496, 20.87005548624616, 9.553975941947508, 7.5465171039238275, 15.547310613362333, 77.67427978064862, 88.15928309804634, 86.28440956918847, 72.4277535802994, 29.30282987302961, 5.424601235815223, 6.615453514112347, 20.05681739475576, 5.574020055954121, 21.927482035224084, 35.289700957211565, 7.817374686320239, 5.463307901933047, 99.73265526491679, 94.28147130984526, 33.201537399169595, 10.943807437858965, 41.528980042163084, 17.233975613271102, 14.57610244429817, 5.7989805518495485, 74.87918829825914, 7.02867552574652, 8.592806577981381, 20.541297668521928, 33.78041731313983, 21.51529139903496, 111.45233181845221, 30.556520657448193, 46.5686447098833, 26.654780380235145, 99.10702149133309, 12.985176268069607, 29.772203270079064, 11.545851242857658, 26.243954194017263, 93.35090864728387, 11.960504653330036, 79.09717337773009, 9.078861990054975, 9.434694427827885, 22.031902910571826, 9.651197803746395, 16.39909242034667, 6.448920293589308, 25.670788841016442, 19.444545202335515, 6.799432548102326, 31.125897164691825, 6.306649627532842, 11.234737654899146, 62.929572346626614, 33.193405132482376, 18.70784563468745, 92.44295306424311, 7.515441073547623, 18.651419913265762, 57.22608045076151, 48.455680145112936, 8.420478284376058, 17.512455915539594, 6.433470969471291, 5.823627981642734, 13.914757707329871, 7.957344453126346, 31.589476717370072, 6.013561038831637, 77.06936391077707, 6.7863220334189505, 16.841922740071603, 18.699704064156574, 13.908428693250777, 8.387519559780552, 6.4250154016411125, 11.500333068122979, 57.023519165436106, 36.37585612575193, 7.368685638231421, 43.47799845333059, 87.68089200337944, 68.71155099799728, 17.24306230733754, 47.781190859631195, 10.090254687762053, 22.573486729794663, 22.997023572162263, 34.019211189371696, 10.991311372593882, 6.6324865600112775, 49.26826774424221, 5.066127296026026, 5.917721103982527, 137.11975193559897, 6.911664070401427, 57.1504712494272, 6.06215950473852, 8.74506531075116, 25.485082259279523, 79.52082542316477, 20.16717820393527, 13.681136587055123, 13.12272614565614, 74.26376958590828, 9.236574548339917, 31.19951608786863, 13.897949586691583, 14.043686564168384, 32.64797165963396, 20.53650607811801, 16.548854826688714, 11.30290189020679, 11.892318784707104, 20.762099442962086, 31.64394456794356, 22.89084028702659, 6.618811185654171, 102.62079403296615, 101.48208454942161, 64.30488888701558, 62.164755518391246, 99.18838896601186, 12.363836956419172, 7.495500478357559, 8.862357311335668, 19.632886137608487, 15.894711041700834, 11.115973518277626, 75.67492674130575, 16.408644819088025, 36.50144464413469, 45.50022635135611, 74.70488641049488, 38.4194607942621, 11.064198409772462, 13.659694564126282, 54.40516389042846, 43.189315063384804, 121.99442408322739, 5.977452705439823, 30.587056738575715, 27.142628581429072, 24.381173871568322, 74.85986100316875, 6.803910417948919, 29.93575894465374, 46.70586038198762, 82.45438866596919, 62.74126652816529, 37.089191250266296, 82.71803057364806, 34.723370402419974, 15.276572299487597, 21.90024550263476, 99.3342649583436, 7.888255691503768, 9.669175340801065, 21.55975851095855, 11.653954717768444, 5.578883330636317, 10.081898948336399, 105.75590179543241, 48.05696887506109, 33.02576123364541, 20.11599509865274, 31.65855785667828, 92.90963055433267, 26.94783357378676, 22.421879173444673, 41.95590891485154, 56.21511885426291, 35.013350085644205, 38.9948728318375, 41.13614689761019, 116.82238079735549, 45.667193423697555, 22.849912207654175, 107.83248933743337, 71.0220083951175, 28.079962623705143, 24.96596856298266, 19.8459205980941, 5.111137007139433, 13.348850070759223, 14.64019754530517, 12.31435725194176, 77.89562762829175, 34.17003929137166, 7.279277314272318, 30.574375348065892, 35.77256774621281, 6.257217465735338, 51.55011513098941, 26.87821463998693, 123.77028027389908, 5.748582151991308, 17.814915950605503, 44.599917742999, 9.674705975766585, 7.98216918836482, 66.47034251839463, 42.326850300178435, 5.545668077073041, 87.36975993701208, 59.34153354100815, 11.404487296516226, 7.242345376498829, 5.137340224499669, 5.264261617869409, 76.23917622730713, 39.23643442053902, 62.99703048068198, 80.80845757740734, 48.29626297578171, 14.947575955414319, 22.88090874095996, 62.069179833490985, 8.929273042915206, 62.79697308166254, 33.843681338004096, 51.868841507387444, 14.162467182273904, 34.405835175279314, 26.681812896893668, 49.610283571688605, 12.001078772509114, 47.244558530746914, 75.69680350297182, 67.41536390575726, 29.071440225855, 43.06186968139063, 28.512587181814734, 33.174649394569514, 34.39222111240323, 14.385048969856403, 85.68812514438142, 12.611678244798664, 66.7702744326903, 11.158057487297388, 49.19602661864673, 18.122650457633156, 22.259277584641787, 48.706390329700156, 8.325380235647375, 13.08605267250008, 24.3594493502061, 13.589829605290644, 6.173033037683963, 22.20448864028891, 9.589916527592733, 22.73673515389652, 7.008913169241446, 61.80508771466673, 17.59338302880561, 13.173101913308876, 16.203674653265775, 49.94158426131861, 16.515586786693884, 92.98513108432351, 62.30530830178624, 7.501607225926873, 13.802759783337986, 94.53156824742202, 32.73901545946863, 16.225167398014467, 12.63705805298659, 64.97663155337816, 27.252075466926833, 21.89183410249587, 17.127317268694533, 21.960607695678277, 15.308065899937233, 18.836086945991504, 11.22910171491397, 59.93639170541839, 8.310650146870726, 79.23816555597182, 41.81715857218979, 76.63422780883977, 62.96815007432826, 21.429432516625727, 18.934045852802743, 52.26386017016465, 101.18985428853286, 34.87231771483421, 8.798165957063002, 80.31004248560174, 10.043724444377785, 7.040987950892544, 53.604184581630435, 9.849177735474436, 23.254564392657183, 60.87417022065267, 17.52497459441339, 24.043690116263036, 39.6512883862301, 24.899301551231957, 24.435120316009318, 40.74252794835956, 7.1738182552911205, 6.360047657148422, 26.222970738079205, 43.33880049463913, 114.39909073415009, 89.14846773861446, 40.27919596893938, 21.7241550083163, 43.16573024616297, 28.264791527692566, 6.685399676724924, 22.042502184620307, 48.697515410229, 12.989928207257336, 5.189377535432976, 9.30382115911773, 24.71500766953639, 88.03476468076684, 38.447796998097324, 49.715426665519345, 68.6355945006519, 18.336690788684237, 27.896924379133587, 120.3140398276521, 5.3817851328201955, 11.491084152277066, 61.719030034956404, 8.83234293840028, 32.38926983280095, 30.286526129197814, 16.165267079374445, 35.74132974717874, 49.33977717905564, 22.870187562698415, 15.126903821543564, 50.44130086842684, 17.82928066126781, 9.29479642640039, 40.496834103302106, 14.428579753746567, 24.997425153757113, 70.98181777859084, 62.05557707434003, 23.131732340837065, 78.37459794086307, 57.96480602940891, 24.778235422602418, 44.11785041775202, 76.87891516129999, 22.08996303043405, 9.1266207550924, 26.535574499411368, 9.398400903585191, 53.80966640593343, 41.39937241305996, 79.84882863109884, 151.28696589795578, 20.897523547064512, 57.02834183064496, 91.20352375739677, 30.10831582244719, 87.91397824569731, 17.089377028389766, 58.00857934069204, 7.839654489176635, 11.769022449947482, 59.377251502440544, 15.876117353910029, 78.05436625468738, 40.75412789131446, 9.332991172674324, 23.142088002858337, 6.36345697422348, 83.23811316558339, 19.929966253204185, 165.4290735054245, 69.11594278188782, 35.34056256042514, 80.30119245096033, 102.65362022855861, 84.08679076067229, 122.42431517071287, 69.62574704687964, 154.29465911589907, 56.257266010336046, 44.63737551582854, 26.96525412907202, 16.955242510355447, 6.028002149638585, 43.74387783945676, 14.078317566762223, 122.63794283633965, 14.605399136390844, 29.668602192659197, 153.371136506456, 33.084051425803644, 47.290424837766736, 11.775960763623962, 98.78078264705485, 66.21979790968517, 5.034416524660053, 46.649963205369005, 77.90254893035028, 87.37372957075038, 10.36676712947948, 34.91479194888961, 70.83090514293339, 8.880913891300583, 76.22593418222176, 110.1040395015535, 74.01674535570801, 7.20449074652579, 8.057997064380316, 10.602250990104167, 83.46056160244513, 45.07465246481132, 27.398014523750543, 18.609761059783818, 60.68055295676414, 125.12493020402063, 31.226522552147433, 16.51388925099347, 53.41353449001929, 5.529194874820234, 5.6615421432426, 146.51925395512077, 105.5537591866827, 45.75365256598819, 114.5831239178858, 19.573277728258706, 21.72731499676239, 20.23602131789289, 41.651474948792156, 29.042915792993842, 19.620249873455435, 20.80752340533375, 6.0966670275443295, 95.11021541409981, 88.45690787794155, 37.02763951031645, 103.07155039080405, 5.179939553239306, 22.254907106883383, 44.175807479778086, 33.54710831736432, 33.073887989355754, 62.695392785093986, 19.50520022990709, 45.64512493210642, 8.342478103378808, 77.11315240718021, 27.643662954470177, 36.43059778973495, 64.73677394223654, 5.932765403565762, 12.665002344705822, 27.23995433430889, 28.927025818750177, 17.424620580177912, 107.66872386642554, 11.413431006424211, 56.50141760990272, 26.26987069094566, 63.37957992318105, 108.43550311307061, 20.427400871716834, 34.80623798780885, 43.59752730292727, 9.85271386926546, 82.66608402350961, 23.234297405902456, 30.515698298559002, 24.529885171649905, 59.50692578892388, 43.40247766639996, 21.915470167045005, 62.451934499031054, 8.197914076126432, 27.42892676681994, 18.400622601405026, 10.63871888994781, 50.059457267112386, 20.166458436880212, 27.779570231861, 50.500127850106225, 5.47914706575452, 22.701834100410334, 11.548730760121403, 46.53266371793763, 159.45714773693282, 27.19311117632601, 103.91100499745845, 6.695724987343963, 12.619034513316176, 39.28063366769416, 48.27608729301614, 24.002963750361204, 7.9640097579644715, 5.60973022912841, 21.252650119189596, 6.889582317399101, 11.022446569128553, 27.212774440263996, 25.669696311976647, 15.964810477365273, 47.28838970508252, 47.61248131837468, 64.38142956262467, 7.541029525106554, 25.637787294976118, 127.15760162119717, 16.81397414410682, 28.55510075133894, 194.00656579089983, 29.026470328483505, 26.96324876845008, 34.39406308299248, 107.68019321790985, 144.54244103573836, 39.205640547926635, 22.014825907632353, 62.583399341137515, 7.849818662627188, 20.438796548282017, 11.071930232194099, 121.7118584341028, 70.00740130874016, 79.94348344729855, 19.092223130775306, 20.514201859716454, 64.30000610269626, 7.740864534329656, 43.9708292117765, 14.990276199070767, 7.280360687035685, 9.155481801701203, 24.027713661252974, 5.46390322683376, 103.9538195208692, 29.778722867782697, 50.3463000933324, 73.52398126315441, 45.32403542567663, 36.81721229694854, 53.37868089881991, 52.75424792958943, 39.599984185063136, 16.50640695736682, 37.846464225210596, 15.568882292912704, 47.31883680313725, 10.101877108718563, 29.28285662044952, 7.756108346176998, 89.08054133172777, 25.940098484184237, 11.904889315210607, 35.39664891541395, 38.95831629666246, 16.50386840475708, 11.817969562534858, 72.45527500566082, 12.203550824201942, 24.253471762253685, 176.887771910798, 56.25295626075528, 56.43715472829341, 8.814583939373586, 35.13788626043451, 176.54928250860104, 7.856232067546376, 20.471048615229332, 29.333191410843185, 59.41338051483566, 7.34506349739804, 54.585625551719204, 80.9008057231412, 5.657533972521744, 21.211122386706737, 122.83278775387265, 16.03577249489809, 5.1489584517452975, 15.571848200844228, 79.31491195586105, 7.820391287613129, 7.073945287590284, 143.87746798059922, 18.380673192666773, 13.15225885084901, 15.778972223230216, 12.272645654164927, 7.962974702821578, 69.73902244972876, 41.37702361524276, 142.18788706086883, 94.55737358342286, 20.25875241992014, 13.512664745031358, 33.06352584697491, 76.39709978625774, 37.19751203431969, 63.853736133989344, 11.836996569842844, 11.083626330029718, 63.742326489225874, 52.06841342708375, 44.464662998798644, 52.76938488696376, 15.578978990495472, 9.774593026764864, 74.41700952150723, 88.71250002533904, 47.42014197441166, 12.369756204533601, 6.035990194879703, 15.310644525214254, 26.611439948560097, 58.948380307369476, 54.378026837929795, 138.64754077098462, 19.064219677861097, 28.38319887687017, 97.08966334504714, 33.730417656127926, 29.19238369458207, 8.558155513004618, 62.24379665503161, 14.536083869760269, 35.02808237652512, 10.235956335617699, 96.86899156599404, 5.092488474252268, 23.690710152692073, 25.254554141222965, 9.491204140054565, 5.880849098530318, 93.00920482805837, 19.63732505016736, 14.14106507641114, 7.247150846931284, 30.96213197676132, 19.151314612792618, 45.65710497898016, 55.6158610389694, 47.60299889429834, 27.643043350149725, 35.61357686113411, 97.87097510341184, 105.023966255181, 40.45313039453381, 105.34030530809716, 11.530550173145658, 9.516005582966281, 142.96906564139925, 20.512769949247335, 62.508098249910375, 105.05480269307161, 170.7698254115856, 41.19593893617247, 36.06280203121883, 15.902838048435523, 45.72293293893115, 9.810763929420917, 66.35317432871284, 77.88943756356186, 8.692505363121924, 55.52080409584699, 19.06390213777801, 60.05993165183424, 9.043346385907927, 72.15334131565082, 67.83198441803117, 85.75081968227222, 28.834722820604764, 37.35201444599881, 82.70037692412676, 31.222890018918374, 82.72966112201009, 76.13295893418494, 42.918056289090686, 40.85269704436265, 11.895039772691991, 12.378225608631974, 59.69190339604643, 63.13889306652491, 5.395951122497295, 5.876709778393195, 97.43669855423722, 140.6007249309859, 25.808638953013944, 7.958413780467943, 20.835469507493944, 46.55490969633031, 47.66833387012479, 24.302855975079364, 28.361769480802295, 72.12661354364428, 90.52028260340332, 42.80609454823564, 25.290769455572203, 10.486660731909907, 81.91025243955309, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3908323.4375, 3915319.2119768513, 3926193.75, 3933785.9375, 3934178.125, 3956443.75, 3961271.552313882, 4124739.0625, 4158917.3330675126, 4172905.317637388, 4176667.1875, 4179321.2794608665, 4186270.7198983785, 4224945.019081927, 4227666.58508912, 4232561.348545522, 4236370.500787577, 4241724.615406326, 4249818.736894733, 4249993.245466971, 4251706.25, 4252292.1875, 4252842.162327762, 4333993.422525106, 4345533.92681601, 4367009.828287975, 4367381.00903524, 4367558.934331903, 4367943.28964652, 4368003.125, 4369009.375, 4369041.296254978, 4379052.9132627, 4394226.139477064, 4395126.5625, 4402738.678062454, 4421379.297491675, 4423677.702393552, 4425331.070997606, 4426049.6803895775, 4438940.967681626, 4439155.549719789, 4439562.5, 4439805.546133031, 4440143.125990236, 4441226.2491710875, 4450176.5625, 4612867.963852973, 4660912.211416018, 4663929.670744762, 4715513.896636887, 4720422.148762026, 4721939.674682057, 4723757.8125, 4723867.273212791, 4741123.4375, 4760058.228789652, 4761799.087859717, 4766640.625, 4772775.712568165, 4773019.449665925, 4778853.125, 4782467.781796019, 4782501.248787356, 4782851.50310568, 4784004.445068049, 4784005.711225186, 4784792.800747808, 4784990.9316469785, 4788043.303534214, 4789051.5625, 4789275.778328457, 4790042.013165584, 4792603.670555479, 4792899.871195155, 4799816.035861504, 4799925.0, 4809866.005794882, 4810106.162183967, 4810375.0, 4810771.875, 4810853.116051984, 4810943.75, 4811176.5625, 4812263.269393464, 4812601.437802298, 4812912.646335993, 4813009.274867595, 4813124.04537806, 4814046.777549616, 4814709.870608831, 4814903.125, 4815779.423006589, 4816335.218464069, 4817818.75, 4821184.375, 4821691.599865169, 4844971.515036745, 4986246.177418023, 4988067.70841037, 5003434.723165031, 5016842.164270249, 5018035.61602155, 5019780.822074091, 5030050.938695481, 5032066.66557528, 5045960.305037446, 5047869.40646098, 5048796.467459866, 5053117.491818199, 5055417.1875, 5059286.886266277, 5079271.06057522, 5079582.25598882, 5079794.431719267, 5080088.658480305, 5084431.075922108, 5084666.89129178, 5086460.293982141, 5086474.257608811, 5086638.040087134, 5090538.779686211, 5092578.320718271, 5094410.510565554, 5095217.1875, 5097260.344082091, 5101766.518374672, 5122534.136207014, 5124656.936234236, 5132475.0, 5134229.040513124, 5139256.752829106, 5143075.572946464, 5144186.744795531, 5155853.125, 5156157.083418177, 5161696.872111151, 5181710.512923279, 5185891.803993282, 5187068.743257564, 5193543.028199475, 5196823.4375, 5200632.8125, 5200635.132092478, 5202908.243031632, 5205187.567523499, 5205439.293598083, 5207421.007424018, 5207958.756217306, 5232105.303744882, 5237477.877503427, 5237749.201659301, 5237849.75030868, 5240312.5, 5242121.875, 5242507.411232634, 5243995.806129265, 5246957.618377384, 5250049.81538974, 5254600.0, 5257882.11933224, 5261624.725979523, 5265084.856349426, 5267872.426196176, 5272125.037424084, 5283370.3125, 5287362.670614037, 5296284.807346332, 5299207.8125, 5304599.707340872, 5312388.916060706, 5312440.553423989, 5313420.832401881, 5313620.3125, 5314898.4375, 5315140.625, 5316799.369145023, 5317872.900627456, 5322498.410483751, 5322807.718175149, 5322913.8407712625, 5323412.758257552, 5325529.6875, 5329137.215567501, 5331426.38581709, 5331914.0625, 5334214.226080864, 5335777.082783383, 5342760.9375, 5343559.375, 5344674.495373902, 5345669.392383016, 5345822.6857506335, 5349916.922804154, 5350508.289320423, 5352267.808565544, 5353313.932204772, 5353315.075944569, 5353342.1875, 5355399.414168848, 5356707.871030524, 5356715.548208882, 5357208.668555486, 5357210.424386005, 5357670.3125, 5360035.9375, 5360047.928397135, 5366193.75, 5368543.479335327, 5370945.530401528, 5371347.246465045, 5372009.239163871, 5372179.51958908, 5373501.120325954, 5374250.071066981, 5374299.04957608, 5375198.985222656, 5375685.793753278, 5376076.410891488, 5376602.199613859, 5376874.418277787, 5380272.3586640535, 5380449.293149967, 5380667.306283181, 5385156.669432682, 5385165.427910455, 5386924.483034343, 5387135.9375, 5387719.719534425, 5388347.779028028, 5388601.5625, 5388911.929540121, 5388926.341623735, 5391521.7720970465, 5393176.534527781, 5393789.0625, 5393925.914831091, 5394021.06521828, 5394561.115894081, 5395568.75, 5396567.86841621, 5396584.375, 5403385.735478598, 5405118.540391298, 5406888.654749696, 5408266.82477092, 5408868.144974683, 5408892.907337563, 5409119.527233739, 5409123.103875529, 5411021.875, 5411421.003613715, 5413639.329753349, 5417474.210788413, 5419181.25, 5426489.0625, 5431813.977178174, 5431817.903250963, 5431837.843851321, 5433884.375, 5434479.6875, 5435954.30848307, 5443305.605868858, 5443414.0625, 5443724.459864356, 5446390.625, 5448457.277462705, 5449896.567897869, 5450465.441075883, 5456313.561545975, 5457358.42556221, 5458104.025860676, 5460390.33856691, 5460685.9375, 5460707.8125, 5462290.625, 5463159.428240404, 5464029.211172639, 5464185.9375, 5464943.068770899, 5466338.619715562, 5466545.267743576, 5466600.771668412, 5466772.293835911, 5467273.4375, 5467889.12230626, 5468051.937266761, 5468310.9375, 5470210.434536352, 5470404.6875, 5473390.668746593, 5473404.6875, 5475866.646027786, 5478457.8125, 5478486.78669955, 5481180.248489535, 5482450.997689111, 5486175.25199765, 5486454.527905002, 5490050.150350508, 5490209.377126241, 5495027.285137775, 5496429.684259895, 5497044.909336072, 5497045.345932247, 5499727.229529712, 5500014.835232917, 5501753.649467861, 5501846.128133882, 5502304.879757768, 5504600.694924244, 5504913.0556362355, 5505426.598362416, 5506779.394506207, 5509338.741488639, 5509662.5, 5513706.1290723495, 5518596.875, 5519501.234250977, 5531878.025710096, 5532446.670198702, 5533326.5625, 5533343.384901901, 5534400.537421644, 5534886.898982134, 5537310.9375, 5537503.465368249, 5538941.261621049, 5540842.1875, 5543423.883587754, 5544935.528465614, 5545257.8125, 5545988.433133546, 5546687.782319181, 5549075.252000092, 5551648.9909477355, 5551712.924739919, 5554658.287099628, 5555010.9375, 5555262.185427009, 5556943.869682827, 5557144.8648678195, 5559158.1679493245, 5565084.71120546, 5565335.689599083, 5566042.997503053, 5567238.329297041, 5569739.239827028, 5570821.875, 5570864.368503372, 5572293.817412597, 5572792.1875, 5574318.233482995, 5576665.222716622, 5579271.875, 5580334.125551398, 5581436.245718526, 5582682.8125, 5583078.125, 5586987.744906959, 5589734.917904439, 5590109.024198075, 5590389.1920437785, 5591004.546572578, 5591196.19580801, 5593706.023669275, 5594785.188870822, 5600000.0, 5600462.613217486, 5601145.234231345, 5601780.415515713, 5601888.762206589, 5602798.623626981, 5603282.404734755, 5603298.6634948375, 5603485.474582662, 5603625.762194284, 5604022.738835864, 5604846.875, 5605532.099227529, 5606217.1875, 5609469.24616118, 5610623.4375, 5610775.779096608, 5613194.522355553, 5615415.26361085, 5615828.727814721, 5616303.035949979, 5617118.056277828, 5617304.6875, 5619232.659649666, 5619549.747585522, 5619563.4363246225, 5619817.886920725, 5619820.600007948, 5622663.809309291, 5624650.776841618, 5626376.387140726, 5626864.0625, 5626958.730949981, 5628024.624726858, 5628388.486544292, 5630829.6875, 5631112.385680309, 5635332.5907126125, 5635835.633828099, 5636180.992659372, 5637734.132706235, 5640747.835943558, 5641203.49909887, 5642134.484265663, 5642458.252173666, 5642502.548459447, 5642912.252413234, 5643237.060598335, 5644624.2292793915, 5644828.125, 5645471.371398136, 5646231.25, 5646537.5, 5646835.670312014, 5646869.419058359, 5646871.56696383, 5647222.825293628, 5647327.217638434, 5647798.666959522, 5650053.117480418, 5650666.467927212, 5651702.403162684, 5652663.131652411, 5654809.375, 5655717.1875, 5656906.904933351, 5659893.708985762, 5660298.054964798, 5660331.25, 5660361.991942675, 5660881.941768015, 5661826.98926287, 5662809.375, 5663302.684432992, 5663397.104466731, 5663667.189223729, 5664267.386567435, 5664903.631537001, 5666290.625, 5668992.1875, 5671882.330126785, 5673375.6158743035, 5676379.542320701, 5676404.2555649, 5677149.070723217, 5677443.032266749, 5678528.078312485, 5678733.537297595, 5678908.186665595, 5679568.256656315, 5679878.437464735, 5683133.721452714, 5683786.709138518, 5684915.625, 5685762.5, 5685874.559611427, 5688277.474904097, 5690656.25, 5696631.25, 5697025.886263938, 5697382.400824259, 5698257.8125, 5698410.9375, 5698772.150963059, 5698775.0, 5699834.375, 5699920.3125, 5701588.475349698, 5702113.688545843, 5702364.658422611, 5702579.501733433, 5702580.828864904, 5702797.218319684, 5702958.692341378, 5703033.446244956, 5703152.860670555, 5703440.713977443, 5703480.33376078, 5703673.849959236, 5703785.9375, 5704933.380696481, 5704944.8415200645, 5705028.036657799, 5705704.608090923, 5706401.5625, 5706846.821556838, 5707593.75, 5708885.012708541, 5709617.902348656, 5709835.2111414755, 5709848.817398139, 5709988.438796286, 5710492.957533946, 5711522.076900208, 5711534.631659809, 5712429.6875, 5713536.252338748, 5713565.795141451, 5714047.315767278, 5714084.692223526, 5714638.168948252, 5716556.25, 5716732.8125, 5718379.6875, 5720056.25, 5721376.5625, 5721512.501590717, 5725698.066209882, 5726768.75, 5728024.48278014, 5730139.975195067, 5731377.999939192, 5734263.519814064, 5736610.7169044055, 5736649.051767544, 5736815.524364075, 5736890.368585611, 5738061.43258748, 5738345.291374084, 5738401.5625, 5738521.525514957, 5738914.4832851365, 5739753.125, 5739842.173410272, 5739982.8125, 5739989.0625, 5740949.845921441, 5741660.9375, 5742021.091647488, 5742412.5, 5742454.706831034, 5742457.8125, 5742781.892025936, 5744868.980561522, 5745024.271022303, 5745045.385163089, 5746055.898555507, 5746802.871204836, 5749248.031069204, 5751632.028971309, 5753438.630974102, 5753836.228187351, 5754064.422313151, 5754691.741357071, 5754696.875, 5755922.888556499, 5755924.443189259, 5757090.920924505, 5757366.956578574, 5758076.922103171, 5758128.125, 5758190.419738574, 5759135.647484515, 5759162.165296101, 5760190.733596876, 5760243.750272311, 5760822.17541956, 5760907.040049924, 5761237.5, 5761347.591101834, 5761754.226563324, 5762769.225473213, 5763703.2972606495, 5763909.467957402, 5763931.997338871, 5764301.626415061, 5764306.25, 5764490.670246316, 5764882.471009481, 5765008.555749819, 5765711.386257395, 5766223.37098111, 5766380.74359384, 5766719.986669507, 5767422.352084493, 5767493.073927444, 5767504.882845784, 5768444.606496865, 5768992.292278587, 5770805.424787274, 5771094.997295975, 5771903.125, 5771980.242334629, 5772655.9101373, 5773442.1875, 5775050.545030161, 5775287.222592962, 5775742.1875, 5777229.86296309, 5779740.376753165, 5780893.75, 5782286.133034765, 5782810.076181404, 5783888.326577239, 5786635.796575863, 5789137.5, 5792429.6875, 5792765.625, 5794560.460354361, 5794620.733352577, 5795085.389447095, 5795332.408256829, 5795574.553366029, 5796133.761014768, 5796246.247507045, 5796269.752165749, 5796689.029698918, 5797334.510211769, 5798007.284054197, 5798271.875, 5798537.5, 5798917.1875, 5798939.605914226, 5799004.654968361, 5799090.143128824, 5799482.368980707, 5802404.908170337, 5803741.61409738, 5803777.469269849, 5804444.516511478, 5806375.0, 5806445.600351157, 5806821.148059574, 5807689.0625, 5811016.815289443, 5812509.422804692, 5813039.0625, 5813977.1579892235, 5816389.018887292, 5816557.8125, 5816571.733587297, 5816806.705660004, 5817615.625, 5817940.625, 5818752.774944015, 5818856.326555764, 5820668.75, 5821252.901395571, 5824254.6875, 5824718.75, 5826110.637240644, 5829882.559959965, 5830124.439653795, 5830125.078186371, 5830693.024896336, 5830992.1875, 5835800.933707652, 5836258.652177354, 5836590.063149172, 5837309.096177743, 5838906.096072319, 5839089.0625, 5839157.6903875, 5839214.531110152, 5840214.8342963075, 5842759.984545851, 5844086.31239218, 5846043.75, 5847017.412846066, 5849021.875, 5852645.3125, 5852656.251877454, 5852856.8674857905, 5853008.538205352, 5854128.125, 5854170.832993491, 5854640.625, 5854648.4375, 5856409.375, 5857490.625, 5859143.465061058, 5860119.618828184, 5861415.625, 5861535.9375, 5862272.763680539, 5862646.875, 5863436.680943059, 5863560.853404388, 5863572.152736003, 5863716.589063828, 5863928.125, 5864069.562086887, 5864455.390805184, 5865221.783931269, 5865225.0, 5865614.0625, 5867222.05241752, 5867360.5243462175, 5867522.253594676, 5867888.414651313, 5867976.5625, 5868032.385236698, 5868063.667291117, 5868393.75, 5868909.375, 5869129.139244722, 5869234.375, 5870392.1875, 5871358.789414889, 5874209.375, 5875090.106179196, 5875469.280371832, 5876739.36924868, 5878619.853702898, 5879299.635638452, 5879761.496297978, 5880247.9470858695, 5882010.459151744, 5882344.465070238, 5884965.312619886, 5885541.645706177, 5885572.42750309, 5887338.455809987, 5888043.75, 5888528.04467709, 5892385.202793553, 5892745.213946295, 5892848.4375, 5893037.5, 5893291.197208227, 5893419.9808579, 5898883.898162716, 5900076.4982827585, 5901206.160431988, 5902421.875, 5903079.841287716, 5904519.740913599, 5904956.331988757, 5905057.357045659, 5905410.9375, 5906136.330940038, 5906757.693701799, 5908327.177632705, 5909274.573120764, 5910301.974645887, 5911881.25, 5912189.890535799, 5913707.868449706, 5915424.274606765, 5915450.0, 5916604.791734117, 5916896.875, 5918271.828859415, 5920545.058260324, 5920989.0625, 5921638.985934999, 5921939.864477131, 5923221.280792983, 5925404.6875, 5925422.402875292, 5929083.987717976, 5930240.800417328, 5930700.455081762, 5930779.562062904, 5930982.200677184, 5931420.3125, 5931510.323593304, 5935937.5, 5944743.072065098, 5945755.24576577, 5946944.1248988155, 5952189.115157973, 5955261.384099526, 5955810.696142848, 5956242.1875, 5956665.732470058, 5957718.291323276, 5959757.8125, 5961524.82848686, 5969056.107561689, 5984719.4343288755, 5987699.662888042, 5988853.125, 5989132.168365231, 5990434.33619892, 5990478.125, 5990495.711282346, 5990547.116636847, 5990803.378634166, 5991021.875, 5994439.647095009, 5994490.5539036235, 5994509.375, 5995071.525730842, 5995139.844814406, 5999146.875, 6000953.843135419, 6001062.756561057, 6004149.335780886, 6004329.609258164, 6020045.195065107, 6022239.662824847, 6026445.244097588, 6027763.992513274, 6027945.149214834, 6027950.144399258, 6029120.3125, 6030684.375, 6034883.346944163, 6041667.012164844, 6042018.584642884, 6042879.152279412, 6043836.355041101, 6044128.125, 6045406.126546667, 6045834.068572685, 6047634.29078882, 6049810.634452161, 6050055.664242625, 6051871.875, 6052920.748106812, 6054224.513085367, 6054248.7606194345, 6054999.07141262, 6055612.331664186, 6056587.4640203845, 6060293.75, 6060393.75, 6061045.240255019, 6061691.407663702, 6061865.02093236, 6062876.5625, 6066987.865135457, 6071927.335715333, 6073431.437412371, 6077409.946886259, 6077846.659351018, 6080135.666572923, 6080145.362187406, 6080460.10385627, 6082515.625, 6083690.625, 6084394.812974489, 6089655.485877374, 6089927.089003077, 6091392.1875, 6092467.1875, 6093568.4291042555, 6094418.742921057, 6095795.3125, 6095861.466594224, 6096581.8200909365, 6096583.601934497, 6099767.1875, 6101572.278770645, 6101793.683124719, 6102456.104027172, 6103220.75865982, 6104973.36030626, 6105291.145502264, 6110634.73226982, 6114431.650865195, 6117832.8125, 6118784.969166985, 6120241.9258635035, 6120263.534401389, 6120748.4375, 6121518.75, 6121954.005742837, 6121981.25, 6122782.664940772, 6122977.211715187, 6124800.953554091, 6125052.083068066, 6125279.59827516, 6126496.09993431, 6126964.0625, 6130607.8125, 6131941.385238759, 6135035.408760713, 6138963.574880886, 6142090.885240494, 6144644.593963201, 6146659.531098703, 6149565.625, 6151617.750475752, 6152767.003641632, 6153550.0, 6154108.49384867, 6154531.813962049, 6154670.516137402, 6154983.4393214965, 6156879.020959358, 6157008.564654247, 6158458.500870351, 6175289.872737739, 6175734.375, 6177372.804169987, 6178347.010709077, 6179788.669036047, 6181760.85472776, 6182654.625822177, 6182898.4375, 6183112.910870079, 6187168.72161444, 6189533.656501916, 6191463.8518057335, 6192653.125, 6195432.8125, 6200365.782764462, 6202755.168924846, 6202774.485048799, 6205120.334863463, 6206453.125, 6208887.084856524, 6210115.108546155, 6210195.406089336, 6210638.777178678, 6214443.75, 6216993.75, 6217343.75, 6218405.46636145, 6219885.930294615, 6220132.8125, 6221199.5538009545, 6223056.25, 6225205.168022108, 6227057.17792826, 6231928.014403854, 6238007.406549219, 6238411.843249659, 6238632.650145808, 6239155.944394895, 6239467.785973335, 6239593.559264532, 6239931.433130404, 6240050.864609439, 6244013.678408938, 6247179.109757404, 6247648.210349375, 6249439.520030977, 6249537.168354357, 6249583.603139856, 6249667.073603932, 6249667.1875, 6249681.25, 6250314.085913898, 6250345.3125, 6250460.9375, 6250982.561440576, 6253493.75, 6255121.860390597, 6261845.555795065, 6261947.085539654, 6271953.976457535, 6278468.061077995, 6278931.504877547, 6285195.3125, 6291967.1875, 6294310.100302063, 6297395.3125, 6299126.2105292, 6303156.25, 6321145.829775766, 6321632.8125, 6321656.25, 6322408.508585047, 6347142.1875, 6348451.486788207, 6348516.386962884, 6353219.950980335, 6357703.125, 6359398.149304067, 6372290.625, 6372440.10868653, 6380235.9375, 6382423.354980859, 6383062.5, 6389237.5, 6429815.579862931, 6431582.8125, 6436773.301043859, 6518620.753579473, 6543022.550635222, 6549493.75, 6560803.125, 6591449.9338482935, 6593900.813267946, 6596054.6875, 6596559.375, 6601209.220665015, 6601230.573213848, 6604207.892874781, 6605778.29138514, 6606960.9375, 6610001.304527822, 6610002.0921346, 6610100.0, 6610957.8125, 6610966.251208285, 6628352.33308725, 6639168.297131525, 6642546.875, ...], [50.31644107106969, 7.248427965685223, 80.95464429104568, 69.36515045301637, 58.11730304333373, 45.49576402328926, 23.465219701704207, 53.27029920825554, 5.044005575571676, 9.92784171005718, 50.500476698515875, 111.31556053267838, 59.31533605361865, 23.83518233987679, 20.528910144671165, 57.63220510399681, 7.171842253161006, 13.653634590895617, 93.48023460543314, 8.938360698461214, 39.275234706222335, 76.67983015155355, 21.403323348069023, 23.406019492778913, 8.979162299748529, 11.918752409889915, 14.09626593502922, 27.47163672233335, 13.435956078847052, 45.098550543696575, 31.106748104747425, 12.368636918152118, 16.737022091036906, 22.296966318542914, 44.497802961303876, 9.026201309264307, 8.090568199860307, 79.78698411372991, 31.995555825637283, 82.7293860485766, 5.21224121050876, 8.802030329883308, 77.81919038613903, 55.85775722075476, 10.274829311956085, 5.281505880485441, 65.4282811529857, 48.574835061775545, 13.944926427811247, 76.98452573376625, 85.92331861474418, 11.584389069030602, 25.940099693210705, 158.48655669564786, 5.4017608914052175, 30.528832072267875, 22.543222971012753, 6.353018811924852, 56.17563627154223, 6.604911759225409, 154.27164515344123, 108.23022705321517, 12.203821482187644, 10.670374459504806, 27.402191254879426, 10.768796264230495, 17.215940675142637, 17.93974640892166, 93.60029427493582, 6.419309532191531, 63.97386039676098, 97.09611523804813, 10.865722776360816, 12.102892135316704, 5.9282663696335485, 9.70477820023274, 45.31049400927617, 16.623056735696295, 68.32808029555207, 85.51995141514851, 80.41433981909726, 73.01050956373305, 46.74512502624703, 38.01158067108582, 18.994947987149, 77.85785789258536, 11.364411610341369, 58.52352124219039, 9.904356073019187, 35.56787269911035, 17.23994481668943, 57.09519324069477, 51.32765638991056, 19.55493565102328, 54.88601091681507, 76.39528006490737, 13.092276183867645, 10.608108599816237, 64.34841593447116, 12.052837728216828, 8.479693812037006, 33.80580185973441, 13.843095746415123, 15.978686079411432, 54.5661602298799, 21.2771424499517, 6.964562034958597, 70.24348371369136, 47.637062324209076, 11.639201104934411, 48.239513981632875, 20.2186234168206, 18.841335349227005, 21.072362800179324, 9.983034367383269, 38.883967679644265, 51.475396387386226, 51.395706697561124, 63.30326933733705, 19.373802030526093, 7.811001102223749, 5.036809986686547, 32.882129366523415, 94.6485421175172, 92.85251495725043, 13.07727646291256, 22.647433718221862, 52.771150934596925, 55.49428907315486, 37.51503873049751, 64.11970304802271, 6.5689128272153745, 17.691613145832815, 32.66980232473807, 31.479068234157626, 19.476491856280834, 36.71312651366236, 22.27999604175081, 67.01257892168172, 14.915872538324741, 45.620808215045415, 71.2916944457658, 66.80888600345983, 25.424867366297683, 100.47806727765523, 5.40106168072266, 11.50922012459618, 15.465455214881977, 16.730814013132044, 9.913160661378999, 14.07522555632262, 5.6577659238221445, 101.52117264927979, 108.43679397604573, 36.73907915773866, 13.604837403758141, 110.00888290151975, 134.55921027925393, 9.180035151115213, 62.50768349237892, 12.82640863248075, 9.109974609613644, 7.254006024400053, 12.114439893289289, 8.306467456172804, 31.67840682030979, 8.378909776093623, 39.957145506971194, 45.2845178992588, 23.844966226931838, 9.210575704730337, 27.18462239663633, 17.378495084705897, 94.68257610292508, 36.706404467701496, 82.99058196410682, 8.849448144896492, 49.92179440541268, 14.839526364839136, 71.99293444658416, 14.158760803867528, 73.0118732253018, 53.1355688304207, 6.708019984308255, 9.18634628707659, 32.46133270715353, 45.424096745441375, 7.80291725016139, 72.29959863759038, 59.86094354304142, 6.0371488768336885, 12.306001616630123, 19.302428130289005, 86.88917289746092, 17.134791410384114, 5.6493524843856715, 26.19095070553226, 21.017316724801216, 70.47371837805497, 20.67758715244645, 8.317773684964267, 27.092728613957192, 12.794099751987744, 21.36327107782012, 115.25591448857537, 41.89020230567963, 6.03671013336855, 35.004876419436975, 8.1484502411917, 11.486284028216987, 117.60753873321507, 55.27946161301986, 75.84361222029808, 106.31483460230459, 5.247138674479734, 5.9945421833181936, 9.841862553534437, 14.420529734911531, 17.275776497810273, 28.731354813357257, 72.91543055258, 76.2292705216766, 10.17744826835929, 99.67505779545293, 16.823962680380436, 8.185032303101801, 21.32551192961686, 85.42364010095272, 13.078447840239056, 33.529194211121336, 32.49150574556821, 54.08945567884061, 9.151371201922279, 8.2328999692183, 104.01685759862107, 32.63625897131116, 20.136501673194807, 82.00792435636853, 15.668046497863461, 73.26349050028674, 51.3793197928817, 52.61822055416194, 67.61232989042958, 24.97837595559888, 9.008888496065, 13.71840753873417, 29.46831519445061, 18.64275230669376, 76.21615202599833, 13.853737781453768, 58.66953411905711, 12.412293372074727, 16.06839356860638, 19.023365994504555, 78.46174853113943, 40.40470588672616, 26.943994705756456, 5.265629231372012, 7.732524628219088, 32.677614801109776, 31.866021270169906, 13.670070344907373, 25.310481949700016, 63.81250306460479, 10.376790543003475, 53.75843622973031, 10.383101330772089, 37.70763586425012, 25.356050511829505, 10.425631065084044, 30.285561317162177, 53.466947030047535, 23.933460325592744, 33.43931069566476, 99.31846824173982, 94.33163593726137, 8.314933847656896, 13.39135080065413, 67.99857656715434, 19.857582857268653, 22.083496815644363, 14.773619516226546, 19.011532900510197, 6.3216063917447896, 117.22164303984934, 5.535990185627157, 7.744651909152941, 52.00281628260835, 76.03384544884281, 66.38012079350737, 11.196781017022053, 72.92721846731128, 5.189842894931263, 47.770948059933716, 28.10180279562828, 6.880921776984496, 20.87005548624616, 9.553975941947508, 7.5465171039238275, 15.547310613362333, 77.67427978064862, 88.15928309804634, 86.28440956918847, 72.4277535802994, 29.30282987302961, 5.424601235815223, 6.615453514112347, 20.05681739475576, 5.574020055954121, 21.927482035224084, 35.289700957211565, 7.817374686320239, 5.463307901933047, 99.73265526491679, 94.28147130984526, 33.201537399169595, 10.943807437858965, 41.528980042163084, 17.233975613271102, 14.57610244429817, 5.7989805518495485, 74.87918829825914, 7.02867552574652, 8.592806577981381, 20.541297668521928, 33.78041731313983, 21.51529139903496, 111.45233181845221, 30.556520657448193, 46.5686447098833, 26.654780380235145, 99.10702149133309, 12.985176268069607, 29.772203270079064, 11.545851242857658, 26.243954194017263, 93.35090864728387, 11.960504653330036, 79.09717337773009, 9.078861990054975, 9.434694427827885, 22.031902910571826, 9.651197803746395, 16.39909242034667, 6.448920293589308, 25.670788841016442, 19.444545202335515, 6.799432548102326, 31.125897164691825, 6.306649627532842, 11.234737654899146, 62.929572346626614, 33.193405132482376, 18.70784563468745, 92.44295306424311, 7.515441073547623, 18.651419913265762, 57.22608045076151, 48.455680145112936, 8.420478284376058, 17.512455915539594, 6.433470969471291, 5.823627981642734, 13.914757707329871, 7.957344453126346, 31.589476717370072, 6.013561038831637, 77.06936391077707, 6.7863220334189505, 16.841922740071603, 18.699704064156574, 13.908428693250777, 8.387519559780552, 6.4250154016411125, 11.500333068122979, 57.023519165436106, 36.37585612575193, 7.368685638231421, 43.47799845333059, 87.68089200337944, 68.71155099799728, 17.24306230733754, 47.781190859631195, 10.090254687762053, 22.573486729794663, 22.997023572162263, 34.019211189371696, 10.991311372593882, 6.6324865600112775, 49.26826774424221, 5.066127296026026, 5.917721103982527, 137.11975193559897, 6.911664070401427, 57.1504712494272, 6.06215950473852, 8.74506531075116, 25.485082259279523, 79.52082542316477, 20.16717820393527, 13.681136587055123, 13.12272614565614, 74.26376958590828, 9.236574548339917, 31.19951608786863, 13.897949586691583, 14.043686564168384, 32.64797165963396, 20.53650607811801, 16.548854826688714, 11.30290189020679, 11.892318784707104, 20.762099442962086, 31.64394456794356, 22.89084028702659, 6.618811185654171, 102.62079403296615, 101.48208454942161, 64.30488888701558, 62.164755518391246, 99.18838896601186, 12.363836956419172, 7.495500478357559, 8.862357311335668, 19.632886137608487, 15.894711041700834, 11.115973518277626, 75.67492674130575, 16.408644819088025, 36.50144464413469, 45.50022635135611, 74.70488641049488, 38.4194607942621, 11.064198409772462, 13.659694564126282, 54.40516389042846, 43.189315063384804, 121.99442408322739, 5.977452705439823, 30.587056738575715, 27.142628581429072, 24.381173871568322, 74.85986100316875, 6.803910417948919, 29.93575894465374, 46.70586038198762, 82.45438866596919, 62.74126652816529, 37.089191250266296, 82.71803057364806, 34.723370402419974, 15.276572299487597, 21.90024550263476, 99.3342649583436, 7.888255691503768, 9.669175340801065, 21.55975851095855, 11.653954717768444, 5.578883330636317, 10.081898948336399, 105.75590179543241, 48.05696887506109, 33.02576123364541, 20.11599509865274, 31.65855785667828, 92.90963055433267, 26.94783357378676, 22.421879173444673, 41.95590891485154, 56.21511885426291, 35.013350085644205, 38.9948728318375, 41.13614689761019, 116.82238079735549, 45.667193423697555, 22.849912207654175, 107.83248933743337, 71.0220083951175, 28.079962623705143, 24.96596856298266, 19.8459205980941, 5.111137007139433, 13.348850070759223, 14.64019754530517, 12.31435725194176, 77.89562762829175, 34.17003929137166, 7.279277314272318, 30.574375348065892, 35.77256774621281, 6.257217465735338, 51.55011513098941, 26.87821463998693, 123.77028027389908, 5.748582151991308, 17.814915950605503, 44.599917742999, 9.674705975766585, 7.98216918836482, 66.47034251839463, 42.326850300178435, 5.545668077073041, 87.36975993701208, 59.34153354100815, 11.404487296516226, 7.242345376498829, 5.137340224499669, 5.264261617869409, 76.23917622730713, 39.23643442053902, 62.99703048068198, 80.80845757740734, 48.29626297578171, 14.947575955414319, 22.88090874095996, 62.069179833490985, 8.929273042915206, 62.79697308166254, 33.843681338004096, 51.868841507387444, 14.162467182273904, 34.405835175279314, 26.681812896893668, 49.610283571688605, 12.001078772509114, 47.244558530746914, 75.69680350297182, 67.41536390575726, 29.071440225855, 43.06186968139063, 28.512587181814734, 33.174649394569514, 34.39222111240323, 14.385048969856403, 85.68812514438142, 12.611678244798664, 66.7702744326903, 11.158057487297388, 49.19602661864673, 18.122650457633156, 22.259277584641787, 48.706390329700156, 8.325380235647375, 13.08605267250008, 24.3594493502061, 13.589829605290644, 6.173033037683963, 22.20448864028891, 9.589916527592733, 22.73673515389652, 7.008913169241446, 61.80508771466673, 17.59338302880561, 13.173101913308876, 16.203674653265775, 49.94158426131861, 16.515586786693884, 92.98513108432351, 62.30530830178624, 7.501607225926873, 13.802759783337986, 94.53156824742202, 32.73901545946863, 16.225167398014467, 12.63705805298659, 64.97663155337816, 27.252075466926833, 21.89183410249587, 17.127317268694533, 21.960607695678277, 15.308065899937233, 18.836086945991504, 11.22910171491397, 59.93639170541839, 8.310650146870726, 79.23816555597182, 41.81715857218979, 76.63422780883977, 62.96815007432826, 21.429432516625727, 18.934045852802743, 52.26386017016465, 101.18985428853286, 34.87231771483421, 8.798165957063002, 80.31004248560174, 10.043724444377785, 7.040987950892544, 53.604184581630435, 9.849177735474436, 23.254564392657183, 60.87417022065267, 17.52497459441339, 24.043690116263036, 39.6512883862301, 24.899301551231957, 24.435120316009318, 40.74252794835956, 7.1738182552911205, 6.360047657148422, 26.222970738079205, 43.33880049463913, 114.39909073415009, 89.14846773861446, 40.27919596893938, 21.7241550083163, 43.16573024616297, 28.264791527692566, 6.685399676724924, 22.042502184620307, 48.697515410229, 12.989928207257336, 5.189377535432976, 9.30382115911773, 24.71500766953639, 88.03476468076684, 38.447796998097324, 49.715426665519345, 68.6355945006519, 18.336690788684237, 27.896924379133587, 120.3140398276521, 5.3817851328201955, 11.491084152277066, 61.719030034956404, 8.83234293840028, 32.38926983280095, 30.286526129197814, 16.165267079374445, 35.74132974717874, 49.33977717905564, 22.870187562698415, 15.126903821543564, 50.44130086842684, 17.82928066126781, 9.29479642640039, 40.496834103302106, 14.428579753746567, 24.997425153757113, 70.98181777859084, 62.05557707434003, 23.131732340837065, 78.37459794086307, 57.96480602940891, 24.778235422602418, 44.11785041775202, 76.87891516129999, 22.08996303043405, 9.1266207550924, 26.535574499411368, 9.398400903585191, 53.80966640593343, 41.39937241305996, 79.84882863109884, 151.28696589795578, 20.897523547064512, 57.02834183064496, 91.20352375739677, 30.10831582244719, 87.91397824569731, 17.089377028389766, 58.00857934069204, 7.839654489176635, 11.769022449947482, 59.377251502440544, 15.876117353910029, 78.05436625468738, 40.75412789131446, 9.332991172674324, 23.142088002858337, 6.36345697422348, 83.23811316558339, 19.929966253204185, 165.4290735054245, 69.11594278188782, 35.34056256042514, 80.30119245096033, 102.65362022855861, 84.08679076067229, 122.42431517071287, 69.62574704687964, 154.29465911589907, 56.257266010336046, 44.63737551582854, 26.96525412907202, 16.955242510355447, 6.028002149638585, 43.74387783945676, 14.078317566762223, 122.63794283633965, 14.605399136390844, 29.668602192659197, 153.371136506456, 33.084051425803644, 47.290424837766736, 11.775960763623962, 98.78078264705485, 66.21979790968517, 5.034416524660053, 46.649963205369005, 77.90254893035028, 87.37372957075038, 10.36676712947948, 34.91479194888961, 70.83090514293339, 8.880913891300583, 76.22593418222176, 110.1040395015535, 74.01674535570801, 7.20449074652579, 8.057997064380316, 10.602250990104167, 83.46056160244513, 45.07465246481132, 27.398014523750543, 18.609761059783818, 60.68055295676414, 125.12493020402063, 31.226522552147433, 16.51388925099347, 53.41353449001929, 5.529194874820234, 5.6615421432426, 146.51925395512077, 105.5537591866827, 45.75365256598819, 114.5831239178858, 19.573277728258706, 21.72731499676239, 20.23602131789289, 41.651474948792156, 29.042915792993842, 19.620249873455435, 20.80752340533375, 6.0966670275443295, 95.11021541409981, 88.45690787794155, 37.02763951031645, 103.07155039080405, 5.179939553239306, 22.254907106883383, 44.175807479778086, 33.54710831736432, 33.073887989355754, 62.695392785093986, 19.50520022990709, 45.64512493210642, 8.342478103378808, 77.11315240718021, 27.643662954470177, 36.43059778973495, 64.73677394223654, 5.932765403565762, 12.665002344705822, 27.23995433430889, 28.927025818750177, 17.424620580177912, 107.66872386642554, 11.413431006424211, 56.50141760990272, 26.26987069094566, 63.37957992318105, 108.43550311307061, 20.427400871716834, 34.80623798780885, 43.59752730292727, 9.85271386926546, 82.66608402350961, 23.234297405902456, 30.515698298559002, 24.529885171649905, 59.50692578892388, 43.40247766639996, 21.915470167045005, 62.451934499031054, 8.197914076126432, 27.42892676681994, 18.400622601405026, 10.63871888994781, 50.059457267112386, 20.166458436880212, 27.779570231861, 50.500127850106225, 5.47914706575452, 22.701834100410334, 11.548730760121403, 46.53266371793763, 159.45714773693282, 27.19311117632601, 103.91100499745845, 6.695724987343963, 12.619034513316176, 39.28063366769416, 48.27608729301614, 24.002963750361204, 7.9640097579644715, 5.60973022912841, 21.252650119189596, 6.889582317399101, 11.022446569128553, 27.212774440263996, 25.669696311976647, 15.964810477365273, 47.28838970508252, 47.61248131837468, 64.38142956262467, 7.541029525106554, 25.637787294976118, 127.15760162119717, 16.81397414410682, 28.55510075133894, 194.00656579089983, 29.026470328483505, 26.96324876845008, 34.39406308299248, 107.68019321790985, 144.54244103573836, 39.205640547926635, 22.014825907632353, 62.583399341137515, 7.849818662627188, 20.438796548282017, 11.071930232194099, 121.7118584341028, 70.00740130874016, 79.94348344729855, 19.092223130775306, 20.514201859716454, 64.30000610269626, 7.740864534329656, 43.9708292117765, 14.990276199070767, 7.280360687035685, 9.155481801701203, 24.027713661252974, 5.46390322683376, 103.9538195208692, 29.778722867782697, 50.3463000933324, 73.52398126315441, 45.32403542567663, 36.81721229694854, 53.37868089881991, 52.75424792958943, 39.599984185063136, 16.50640695736682, 37.846464225210596, 15.568882292912704, 47.31883680313725, 10.101877108718563, 29.28285662044952, 7.756108346176998, 89.08054133172777, 25.940098484184237, 11.904889315210607, 35.39664891541395, 38.95831629666246, 16.50386840475708, 11.817969562534858, 72.45527500566082, 12.203550824201942, 24.253471762253685, 176.887771910798, 56.25295626075528, 56.43715472829341, 8.814583939373586, 35.13788626043451, 176.54928250860104, 7.856232067546376, 20.471048615229332, 29.333191410843185, 59.41338051483566, 7.34506349739804, 54.585625551719204, 80.9008057231412, 5.657533972521744, 21.211122386706737, 122.83278775387265, 16.03577249489809, 5.1489584517452975, 15.571848200844228, 79.31491195586105, 7.820391287613129, 7.073945287590284, 143.87746798059922, 18.380673192666773, 13.15225885084901, 15.778972223230216, 12.272645654164927, 7.962974702821578, 69.73902244972876, 41.37702361524276, 142.18788706086883, 94.55737358342286, 20.25875241992014, 13.512664745031358, 33.06352584697491, 76.39709978625774, 37.19751203431969, 63.853736133989344, 11.836996569842844, 11.083626330029718, 63.742326489225874, 52.06841342708375, 44.464662998798644, 52.76938488696376, 15.578978990495472, 9.774593026764864, 74.41700952150723, 88.71250002533904, 47.42014197441166, 12.369756204533601, 6.035990194879703, 15.310644525214254, 26.611439948560097, 58.948380307369476, 54.378026837929795, 138.64754077098462, 19.064219677861097, 28.38319887687017, 97.08966334504714, 33.730417656127926, 29.19238369458207, 8.558155513004618, 62.24379665503161, 14.536083869760269, 35.02808237652512, 10.235956335617699, 96.86899156599404, 5.092488474252268, 23.690710152692073, 25.254554141222965, 9.491204140054565, 5.880849098530318, 93.00920482805837, 19.63732505016736, 14.14106507641114, 7.247150846931284, 30.96213197676132, 19.151314612792618, 45.65710497898016, 55.6158610389694, 47.60299889429834, 27.643043350149725, 35.61357686113411, 97.87097510341184, 105.023966255181, 40.45313039453381, 105.34030530809716, 11.530550173145658, 9.516005582966281, 142.96906564139925, 20.512769949247335, 62.508098249910375, 105.05480269307161, 170.7698254115856, 41.19593893617247, 36.06280203121883, 15.902838048435523, 45.72293293893115, 9.810763929420917, 66.35317432871284, 77.88943756356186, 8.692505363121924, 55.52080409584699, 19.06390213777801, 60.05993165183424, 9.043346385907927, 72.15334131565082, 67.83198441803117, 85.75081968227222, 28.834722820604764, 37.35201444599881, 82.70037692412676, 31.222890018918374, 82.72966112201009, 76.13295893418494, 42.918056289090686, 40.85269704436265, 11.895039772691991, 12.378225608631974, 59.69190339604643, 63.13889306652491, 5.395951122497295, 5.876709778393195, 97.43669855423722, 140.6007249309859, 25.808638953013944, 7.958413780467943, 20.835469507493944, 46.55490969633031, 47.66833387012479, 24.302855975079364, 28.361769480802295, 72.12661354364428, 90.52028260340332, 42.80609454823564, 25.290769455572203, 10.486660731909907, 81.91025243955309, ...])
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);
([3908323.4375, 3915319.2119768513, 3926193.75, 3933785.9375, 3934178.125, 3956443.75, 3961271.552313882, 4124739.0625, 4158917.3330675126, 4172905.317637388, 4176667.1875, 4179321.2794608665, 4186270.7198983785, 4224945.019081927, 4227666.58508912, 4232561.348545522, 4236370.500787577, 4241724.615406326, 4249818.736894733, 4249993.245466971, 4251706.25, 4252292.1875, 4252842.162327762, 4333993.422525106, 4345533.92681601, 4367009.828287975, 4367381.00903524, 4367558.934331903, 4367943.28964652, 4368003.125, 4369009.375, 4369041.296254978, 4379052.9132627, 4394226.139477064, 4395126.5625, 4402738.678062454, 4421379.297491675, 4423677.702393552, 4425331.070997606, 4426049.6803895775, 4438940.967681626, 4439155.549719789, 4439562.5, 4439805.546133031, 4440143.125990236, 4441226.2491710875, 4450176.5625, 4612867.963852973, 4660912.211416018, 4663929.670744762, 4715513.896636887, 4720422.148762026, 4721939.674682057, 4723757.8125, 4723867.273212791, 4741123.4375, 4760058.228789652, 4761799.087859717, 4766640.625, 4772775.712568165, 4773019.449665925, 4778853.125, 4782467.781796019, 4782501.248787356, 4782851.50310568, 4784004.445068049, 4784005.711225186, 4784792.800747808, 4784990.9316469785, 4788043.303534214, 4789051.5625, 4789275.778328457, 4790042.013165584, 4792603.670555479, 4792899.871195155, 4799816.035861504, 4799925.0, 4809866.005794882, 4810106.162183967, 4810375.0, 4810771.875, 4810853.116051984, 4810943.75, 4811176.5625, 4812263.269393464, 4812601.437802298, 4812912.646335993, 4813009.274867595, 4813124.04537806, 4814046.777549616, 4814709.870608831, 4814903.125, 4815779.423006589, 4816335.218464069, 4817818.75, 4821184.375, 4821691.599865169, 4844971.515036745, 4986246.177418023, 4988067.70841037, 5003434.723165031, 5016842.164270249, 5018035.61602155, 5019780.822074091, 5030050.938695481, 5032066.66557528, 5045960.305037446, 5047869.40646098, 5048796.467459866, 5053117.491818199, 5055417.1875, 5059286.886266277, 5079271.06057522, 5079582.25598882, 5079794.431719267, 5080088.658480305, 5084431.075922108, 5084666.89129178, 5086460.293982141, 5086474.257608811, 5086638.040087134, 5090538.779686211, 5092578.320718271, 5094410.510565554, 5095217.1875, 5097260.344082091, 5101766.518374672, 5122534.136207014, 5124656.936234236, 5132475.0, 5134229.040513124, 5139256.752829106, 5143075.572946464, 5144186.744795531, 5155853.125, 5156157.083418177, 5161696.872111151, 5181710.512923279, 5185891.803993282, 5187068.743257564, 5193543.028199475, 5196823.4375, 5200632.8125, 5200635.132092478, 5202908.243031632, 5205187.567523499, 5205439.293598083, 5207421.007424018, 5207958.756217306, 5232105.303744882, 5237477.877503427, 5237749.201659301, 5237849.75030868, 5240312.5, 5242121.875, 5242507.411232634, 5243995.806129265, 5246957.618377384, 5250049.81538974, 5254600.0, 5257882.11933224, 5261624.725979523, 5265084.856349426, 5267872.426196176, 5272125.037424084, 5283370.3125, 5287362.670614037, 5296284.807346332, 5299207.8125, 5304599.707340872, 5312388.916060706, 5312440.553423989, 5313420.832401881, 5313620.3125, 5314898.4375, 5315140.625, 5316799.369145023, 5317872.900627456, 5322498.410483751, 5322807.718175149, 5322913.8407712625, 5323412.758257552, 5325529.6875, 5329137.215567501, 5331426.38581709, 5331914.0625, 5334214.226080864, 5335777.082783383, 5342760.9375, 5343559.375, 5344674.495373902, 5345669.392383016, 5345822.6857506335, 5349916.922804154, 5350508.289320423, 5352267.808565544, 5353313.932204772, 5353315.075944569, 5353342.1875, 5355399.414168848, 5356707.871030524, 5356715.548208882, 5357208.668555486, 5357210.424386005, 5357670.3125, 5360035.9375, 5360047.928397135, 5366193.75, 5368543.479335327, 5370945.530401528, 5371347.246465045, 5372009.239163871, 5372179.51958908, 5373501.120325954, 5374250.071066981, 5374299.04957608, 5375198.985222656, 5375685.793753278, 5376076.410891488, 5376602.199613859, 5376874.418277787, 5380272.3586640535, 5380449.293149967, 5380667.306283181, 5385156.669432682, 5385165.427910455, 5386924.483034343, 5387135.9375, 5387719.719534425, 5388347.779028028, 5388601.5625, 5388911.929540121, 5388926.341623735, 5391521.7720970465, 5393176.534527781, 5393789.0625, 5393925.914831091, 5394021.06521828, 5394561.115894081, 5395568.75, 5396567.86841621, 5396584.375, 5403385.735478598, 5405118.540391298, 5406888.654749696, 5408266.82477092, 5408868.144974683, 5408892.907337563, 5409119.527233739, 5409123.103875529, 5411021.875, 5411421.003613715, 5413639.329753349, 5417474.210788413, 5419181.25, 5426489.0625, 5431813.977178174, 5431817.903250963, 5431837.843851321, 5433884.375, 5434479.6875, 5435954.30848307, 5443305.605868858, 5443414.0625, 5443724.459864356, 5446390.625, 5448457.277462705, 5449896.567897869, 5450465.441075883, 5456313.561545975, 5457358.42556221, 5458104.025860676, 5460390.33856691, 5460685.9375, 5460707.8125, 5462290.625, 5463159.428240404, 5464029.211172639, 5464185.9375, 5464943.068770899, 5466338.619715562, 5466545.267743576, 5466600.771668412, 5466772.293835911, 5467273.4375, 5467889.12230626, 5468051.937266761, 5468310.9375, 5470210.434536352, 5470404.6875, 5473390.668746593, 5473404.6875, 5475866.646027786, 5478457.8125, 5478486.78669955, 5481180.248489535, 5482450.997689111, 5486175.25199765, 5486454.527905002, 5490050.150350508, 5490209.377126241, 5495027.285137775, 5496429.684259895, 5497044.909336072, 5497045.345932247, 5499727.229529712, 5500014.835232917, 5501753.649467861, 5501846.128133882, 5502304.879757768, 5504600.694924244, 5504913.0556362355, 5505426.598362416, 5506779.394506207, 5509338.741488639, 5509662.5, 5513706.1290723495, 5518596.875, 5519501.234250977, 5531878.025710096, 5532446.670198702, 5533326.5625, 5533343.384901901, 5534400.537421644, 5534886.898982134, 5537310.9375, 5537503.465368249, 5538941.261621049, 5540842.1875, 5543423.883587754, 5544935.528465614, 5545257.8125, 5545988.433133546, 5546687.782319181, 5549075.252000092, 5551648.9909477355, 5551712.924739919, 5554658.287099628, 5555010.9375, 5555262.185427009, 5556943.869682827, 5557144.8648678195, 5559158.1679493245, 5565084.71120546, 5565335.689599083, 5566042.997503053, 5567238.329297041, 5569739.239827028, 5570821.875, 5570864.368503372, 5572293.817412597, 5572792.1875, 5574318.233482995, 5576665.222716622, 5579271.875, 5580334.125551398, 5581436.245718526, 5582682.8125, 5583078.125, 5586987.744906959, 5589734.917904439, 5590109.024198075, 5590389.1920437785, 5591004.546572578, 5591196.19580801, 5593706.023669275, 5594785.188870822, 5600000.0, 5600462.613217486, 5601145.234231345, 5601780.415515713, 5601888.762206589, 5602798.623626981, 5603282.404734755, 5603298.6634948375, 5603485.474582662, 5603625.762194284, 5604022.738835864, 5604846.875, 5605532.099227529, 5606217.1875, 5609469.24616118, 5610623.4375, 5610775.779096608, 5613194.522355553, 5615415.26361085, 5615828.727814721, 5616303.035949979, 5617118.056277828, 5617304.6875, 5619232.659649666, 5619549.747585522, 5619563.4363246225, 5619817.886920725, 5619820.600007948, 5622663.809309291, 5624650.776841618, 5626376.387140726, 5626864.0625, 5626958.730949981, 5628024.624726858, 5628388.486544292, 5630829.6875, 5631112.385680309, 5635332.5907126125, 5635835.633828099, 5636180.992659372, 5637734.132706235, 5640747.835943558, 5641203.49909887, 5642134.484265663, 5642458.252173666, 5642502.548459447, 5642912.252413234, 5643237.060598335, 5644624.2292793915, 5644828.125, 5645471.371398136, 5646231.25, 5646537.5, 5646835.670312014, 5646869.419058359, 5646871.56696383, 5647222.825293628, 5647327.217638434, 5647798.666959522, 5650053.117480418, 5650666.467927212, 5651702.403162684, 5652663.131652411, 5654809.375, 5655717.1875, 5656906.904933351, 5659893.708985762, 5660298.054964798, 5660331.25, 5660361.991942675, 5660881.941768015, 5661826.98926287, 5662809.375, 5663302.684432992, 5663397.104466731, 5663667.189223729, 5664267.386567435, 5664903.631537001, 5666290.625, 5668992.1875, 5671882.330126785, 5673375.6158743035, 5676379.542320701, 5676404.2555649, 5677149.070723217, 5677443.032266749, 5678528.078312485, 5678733.537297595, 5678908.186665595, 5679568.256656315, 5679878.437464735, 5683133.721452714, 5683786.709138518, 5684915.625, 5685762.5, 5685874.559611427, 5688277.474904097, 5690656.25, 5696631.25, 5697025.886263938, 5697382.400824259, 5698257.8125, 5698410.9375, 5698772.150963059, 5698775.0, 5699834.375, 5699920.3125, 5701588.475349698, 5702113.688545843, 5702364.658422611, 5702579.501733433, 5702580.828864904, 5702797.218319684, 5702958.692341378, 5703033.446244956, 5703152.860670555, 5703440.713977443, 5703480.33376078, 5703673.849959236, 5703785.9375, 5704933.380696481, 5704944.8415200645, 5705028.036657799, 5705704.608090923, 5706401.5625, 5706846.821556838, 5707593.75, 5708885.012708541, 5709617.902348656, 5709835.2111414755, 5709848.817398139, 5709988.438796286, 5710492.957533946, 5711522.076900208, 5711534.631659809, 5712429.6875, 5713536.252338748, 5713565.795141451, 5714047.315767278, 5714084.692223526, 5714638.168948252, 5716556.25, 5716732.8125, 5718379.6875, 5720056.25, 5721376.5625, 5721512.501590717, 5725698.066209882, 5726768.75, 5728024.48278014, 5730139.975195067, 5731377.999939192, 5734263.519814064, 5736610.7169044055, 5736649.051767544, 5736815.524364075, 5736890.368585611, 5738061.43258748, 5738345.291374084, 5738401.5625, 5738521.525514957, 5738914.4832851365, 5739753.125, 5739842.173410272, 5739982.8125, 5739989.0625, 5740949.845921441, 5741660.9375, 5742021.091647488, 5742412.5, 5742454.706831034, 5742457.8125, 5742781.892025936, 5744868.980561522, 5745024.271022303, 5745045.385163089, 5746055.898555507, 5746802.871204836, 5749248.031069204, 5751632.028971309, 5753438.630974102, 5753836.228187351, 5754064.422313151, 5754691.741357071, 5754696.875, 5755922.888556499, 5755924.443189259, 5757090.920924505, 5757366.956578574, 5758076.922103171, 5758128.125, 5758190.419738574, 5759135.647484515, 5759162.165296101, 5760190.733596876, 5760243.750272311, 5760822.17541956, 5760907.040049924, 5761237.5, 5761347.591101834, 5761754.226563324, 5762769.225473213, 5763703.2972606495, 5763909.467957402, 5763931.997338871, 5764301.626415061, 5764306.25, 5764490.670246316, 5764882.471009481, 5765008.555749819, 5765711.386257395, 5766223.37098111, 5766380.74359384, 5766719.986669507, 5767422.352084493, 5767493.073927444, 5767504.882845784, 5768444.606496865, 5768992.292278587, 5770805.424787274, 5771094.997295975, 5771903.125, 5771980.242334629, 5772655.9101373, 5773442.1875, 5775050.545030161, 5775287.222592962, 5775742.1875, 5777229.86296309, 5779740.376753165, 5780893.75, 5782286.133034765, 5782810.076181404, 5783888.326577239, 5786635.796575863, 5789137.5, 5792429.6875, 5792765.625, 5794560.460354361, 5794620.733352577, 5795085.389447095, 5795332.408256829, 5795574.553366029, 5796133.761014768, 5796246.247507045, 5796269.752165749, 5796689.029698918, 5797334.510211769, 5798007.284054197, 5798271.875, 5798537.5, 5798917.1875, 5798939.605914226, 5799004.654968361, 5799090.143128824, 5799482.368980707, 5802404.908170337, 5803741.61409738, 5803777.469269849, 5804444.516511478, 5806375.0, 5806445.600351157, 5806821.148059574, 5807689.0625, 5811016.815289443, 5812509.422804692, 5813039.0625, 5813977.1579892235, 5816389.018887292, 5816557.8125, 5816571.733587297, 5816806.705660004, 5817615.625, 5817940.625, 5818752.774944015, 5818856.326555764, 5820668.75, 5821252.901395571, 5824254.6875, 5824718.75, 5826110.637240644, 5829882.559959965, 5830124.439653795, 5830125.078186371, 5830693.024896336, 5830992.1875, 5835800.933707652, 5836258.652177354, 5836590.063149172, 5837309.096177743, 5838906.096072319, 5839089.0625, 5839157.6903875, 5839214.531110152, 5840214.8342963075, 5842759.984545851, 5844086.31239218, 5846043.75, 5847017.412846066, 5849021.875, 5852645.3125, 5852656.251877454, 5852856.8674857905, 5853008.538205352, 5854128.125, 5854170.832993491, 5854640.625, 5854648.4375, 5856409.375, 5857490.625, 5859143.465061058, 5860119.618828184, 5861415.625, 5861535.9375, 5862272.763680539, 5862646.875, 5863436.680943059, 5863560.853404388, 5863572.152736003, 5863716.589063828, 5863928.125, 5864069.562086887, 5864455.390805184, 5865221.783931269, 5865225.0, 5865614.0625, 5867222.05241752, 5867360.5243462175, 5867522.253594676, 5867888.414651313, 5867976.5625, 5868032.385236698, 5868063.667291117, 5868393.75, 5868909.375, 5869129.139244722, 5869234.375, 5870392.1875, 5871358.789414889, 5874209.375, 5875090.106179196, 5875469.280371832, 5876739.36924868, 5878619.853702898, 5879299.635638452, 5879761.496297978, 5880247.9470858695, 5882010.459151744, 5882344.465070238, 5884965.312619886, 5885541.645706177, 5885572.42750309, 5887338.455809987, 5888043.75, 5888528.04467709, 5892385.202793553, 5892745.213946295, 5892848.4375, 5893037.5, 5893291.197208227, 5893419.9808579, 5898883.898162716, 5900076.4982827585, 5901206.160431988, 5902421.875, 5903079.841287716, 5904519.740913599, 5904956.331988757, 5905057.357045659, 5905410.9375, 5906136.330940038, 5906757.693701799, 5908327.177632705, 5909274.573120764, 5910301.974645887, 5911881.25, 5912189.890535799, 5913707.868449706, 5915424.274606765, 5915450.0, 5916604.791734117, 5916896.875, 5918271.828859415, 5920545.058260324, 5920989.0625, 5921638.985934999, 5921939.864477131, 5923221.280792983, 5925404.6875, 5925422.402875292, 5929083.987717976, 5930240.800417328, 5930700.455081762, 5930779.562062904, 5930982.200677184, 5931420.3125, 5931510.323593304, 5935937.5, 5944743.072065098, 5945755.24576577, 5946944.1248988155, 5952189.115157973, 5955261.384099526, 5955810.696142848, 5956242.1875, 5956665.732470058, 5957718.291323276, 5959757.8125, 5961524.82848686, 5969056.107561689, 5984719.4343288755, 5987699.662888042, 5988853.125, 5989132.168365231, 5990434.33619892, 5990478.125, 5990495.711282346, 5990547.116636847, 5990803.378634166, 5991021.875, 5994439.647095009, 5994490.5539036235, 5994509.375, 5995071.525730842, 5995139.844814406, 5999146.875, 6000953.843135419, 6001062.756561057, 6004149.335780886, 6004329.609258164, 6020045.195065107, 6022239.662824847, 6026445.244097588, 6027763.992513274, 6027945.149214834, 6027950.144399258, 6029120.3125, 6030684.375, 6034883.346944163, 6041667.012164844, 6042018.584642884, 6042879.152279412, 6043836.355041101, 6044128.125, 6045406.126546667, 6045834.068572685, 6047634.29078882, 6049810.634452161, 6050055.664242625, 6051871.875, 6052920.748106812, 6054224.513085367, 6054248.7606194345, 6054999.07141262, 6055612.331664186, 6056587.4640203845, 6060293.75, 6060393.75, 6061045.240255019, 6061691.407663702, 6061865.02093236, 6062876.5625, 6066987.865135457, 6071927.335715333, 6073431.437412371, 6077409.946886259, 6077846.659351018, 6080135.666572923, 6080145.362187406, 6080460.10385627, 6082515.625, 6083690.625, 6084394.812974489, 6089655.485877374, 6089927.089003077, 6091392.1875, 6092467.1875, 6093568.4291042555, 6094418.742921057, 6095795.3125, 6095861.466594224, 6096581.8200909365, 6096583.601934497, 6099767.1875, 6101572.278770645, 6101793.683124719, 6102456.104027172, 6103220.75865982, 6104973.36030626, 6105291.145502264, 6110634.73226982, 6114431.650865195, 6117832.8125, 6118784.969166985, 6120241.9258635035, 6120263.534401389, 6120748.4375, 6121518.75, 6121954.005742837, 6121981.25, 6122782.664940772, 6122977.211715187, 6124800.953554091, 6125052.083068066, 6125279.59827516, 6126496.09993431, 6126964.0625, 6130607.8125, 6131941.385238759, 6135035.408760713, 6138963.574880886, 6142090.885240494, 6144644.593963201, 6146659.531098703, 6149565.625, 6151617.750475752, 6152767.003641632, 6153550.0, 6154108.49384867, 6154531.813962049, 6154670.516137402, 6154983.4393214965, 6156879.020959358, 6157008.564654247, 6158458.500870351, 6175289.872737739, 6175734.375, 6177372.804169987, 6178347.010709077, 6179788.669036047, 6181760.85472776, 6182654.625822177, 6182898.4375, 6183112.910870079, 6187168.72161444, 6189533.656501916, 6191463.8518057335, 6192653.125, 6195432.8125, 6200365.782764462, 6202755.168924846, 6202774.485048799, 6205120.334863463, 6206453.125, 6208887.084856524, 6210115.108546155, 6210195.406089336, 6210638.777178678, 6214443.75, 6216993.75, 6217343.75, 6218405.46636145, 6219885.930294615, 6220132.8125, 6221199.5538009545, 6223056.25, 6225205.168022108, 6227057.17792826, 6231928.014403854, 6238007.406549219, 6238411.843249659, 6238632.650145808, 6239155.944394895, 6239467.785973335, 6239593.559264532, 6239931.433130404, 6240050.864609439, 6244013.678408938, 6247179.109757404, 6247648.210349375, 6249439.520030977, 6249537.168354357, 6249583.603139856, 6249667.073603932, 6249667.1875, 6249681.25, 6250314.085913898, 6250345.3125, 6250460.9375, 6250982.561440576, 6253493.75, 6255121.860390597, 6261845.555795065, 6261947.085539654, 6271953.976457535, 6278468.061077995, 6278931.504877547, 6285195.3125, 6291967.1875, 6294310.100302063, 6297395.3125, 6299126.2105292, 6303156.25, 6321145.829775766, 6321632.8125, 6321656.25, 6322408.508585047, 6347142.1875, 6348451.486788207, 6348516.386962884, 6353219.950980335, 6357703.125, 6359398.149304067, 6372290.625, 6372440.10868653, 6380235.9375, 6382423.354980859, 6383062.5, 6389237.5, 6429815.579862931, 6431582.8125, 6436773.301043859, 6518620.753579473, 6543022.550635222, 6549493.75, 6560803.125, 6591449.9338482935, 6593900.813267946, 6596054.6875, 6596559.375, 6601209.220665015, 6601230.573213848, 6604207.892874781, 6605778.29138514, 6606960.9375, 6610001.304527822, 6610002.0921346, 6610100.0, 6610957.8125, 6610966.251208285, 6628352.33308725, 6639168.297131525, 6642546.875, ...], [50.31644107106969, 7.248427965685223, 80.95464429104568, 69.36515045301637, 58.11730304333373, 45.49576402328926, 23.465219701704207, 53.27029920825554, 5.044005575571676, 9.92784171005718, 50.500476698515875, 111.31556053267838, 59.31533605361865, 23.83518233987679, 20.528910144671165, 57.63220510399681, 7.171842253161006, 13.653634590895617, 93.48023460543314, 8.938360698461214, 39.275234706222335, 76.67983015155355, 21.403323348069023, 23.406019492778913, 8.979162299748529, 11.918752409889915, 14.09626593502922, 27.47163672233335, 13.435956078847052, 45.098550543696575, 31.106748104747425, 12.368636918152118, 16.737022091036906, 22.296966318542914, 44.497802961303876, 9.026201309264307, 8.090568199860307, 79.78698411372991, 31.995555825637283, 82.7293860485766, 5.21224121050876, 8.802030329883308, 77.81919038613903, 55.85775722075476, 10.274829311956085, 5.281505880485441, 65.4282811529857, 48.574835061775545, 13.944926427811247, 76.98452573376625, 85.92331861474418, 11.584389069030602, 25.940099693210705, 158.48655669564786, 5.4017608914052175, 30.528832072267875, 22.543222971012753, 6.353018811924852, 56.17563627154223, 6.604911759225409, 154.27164515344123, 108.23022705321517, 12.203821482187644, 10.670374459504806, 27.402191254879426, 10.768796264230495, 17.215940675142637, 17.93974640892166, 93.60029427493582, 6.419309532191531, 63.97386039676098, 97.09611523804813, 10.865722776360816, 12.102892135316704, 5.9282663696335485, 9.70477820023274, 45.31049400927617, 16.623056735696295, 68.32808029555207, 85.51995141514851, 80.41433981909726, 73.01050956373305, 46.74512502624703, 38.01158067108582, 18.994947987149, 77.85785789258536, 11.364411610341369, 58.52352124219039, 9.904356073019187, 35.56787269911035, 17.23994481668943, 57.09519324069477, 51.32765638991056, 19.55493565102328, 54.88601091681507, 76.39528006490737, 13.092276183867645, 10.608108599816237, 64.34841593447116, 12.052837728216828, 8.479693812037006, 33.80580185973441, 13.843095746415123, 15.978686079411432, 54.5661602298799, 21.2771424499517, 6.964562034958597, 70.24348371369136, 47.637062324209076, 11.639201104934411, 48.239513981632875, 20.2186234168206, 18.841335349227005, 21.072362800179324, 9.983034367383269, 38.883967679644265, 51.475396387386226, 51.395706697561124, 63.30326933733705, 19.373802030526093, 7.811001102223749, 5.036809986686547, 32.882129366523415, 94.6485421175172, 92.85251495725043, 13.07727646291256, 22.647433718221862, 52.771150934596925, 55.49428907315486, 37.51503873049751, 64.11970304802271, 6.5689128272153745, 17.691613145832815, 32.66980232473807, 31.479068234157626, 19.476491856280834, 36.71312651366236, 22.27999604175081, 67.01257892168172, 14.915872538324741, 45.620808215045415, 71.2916944457658, 66.80888600345983, 25.424867366297683, 100.47806727765523, 5.40106168072266, 11.50922012459618, 15.465455214881977, 16.730814013132044, 9.913160661378999, 14.07522555632262, 5.6577659238221445, 101.52117264927979, 108.43679397604573, 36.73907915773866, 13.604837403758141, 110.00888290151975, 134.55921027925393, 9.180035151115213, 62.50768349237892, 12.82640863248075, 9.109974609613644, 7.254006024400053, 12.114439893289289, 8.306467456172804, 31.67840682030979, 8.378909776093623, 39.957145506971194, 45.2845178992588, 23.844966226931838, 9.210575704730337, 27.18462239663633, 17.378495084705897, 94.68257610292508, 36.706404467701496, 82.99058196410682, 8.849448144896492, 49.92179440541268, 14.839526364839136, 71.99293444658416, 14.158760803867528, 73.0118732253018, 53.1355688304207, 6.708019984308255, 9.18634628707659, 32.46133270715353, 45.424096745441375, 7.80291725016139, 72.29959863759038, 59.86094354304142, 6.0371488768336885, 12.306001616630123, 19.302428130289005, 86.88917289746092, 17.134791410384114, 5.6493524843856715, 26.19095070553226, 21.017316724801216, 70.47371837805497, 20.67758715244645, 8.317773684964267, 27.092728613957192, 12.794099751987744, 21.36327107782012, 115.25591448857537, 41.89020230567963, 6.03671013336855, 35.004876419436975, 8.1484502411917, 11.486284028216987, 117.60753873321507, 55.27946161301986, 75.84361222029808, 106.31483460230459, 5.247138674479734, 5.9945421833181936, 9.841862553534437, 14.420529734911531, 17.275776497810273, 28.731354813357257, 72.91543055258, 76.2292705216766, 10.17744826835929, 99.67505779545293, 16.823962680380436, 8.185032303101801, 21.32551192961686, 85.42364010095272, 13.078447840239056, 33.529194211121336, 32.49150574556821, 54.08945567884061, 9.151371201922279, 8.2328999692183, 104.01685759862107, 32.63625897131116, 20.136501673194807, 82.00792435636853, 15.668046497863461, 73.26349050028674, 51.3793197928817, 52.61822055416194, 67.61232989042958, 24.97837595559888, 9.008888496065, 13.71840753873417, 29.46831519445061, 18.64275230669376, 76.21615202599833, 13.853737781453768, 58.66953411905711, 12.412293372074727, 16.06839356860638, 19.023365994504555, 78.46174853113943, 40.40470588672616, 26.943994705756456, 5.265629231372012, 7.732524628219088, 32.677614801109776, 31.866021270169906, 13.670070344907373, 25.310481949700016, 63.81250306460479, 10.376790543003475, 53.75843622973031, 10.383101330772089, 37.70763586425012, 25.356050511829505, 10.425631065084044, 30.285561317162177, 53.466947030047535, 23.933460325592744, 33.43931069566476, 99.31846824173982, 94.33163593726137, 8.314933847656896, 13.39135080065413, 67.99857656715434, 19.857582857268653, 22.083496815644363, 14.773619516226546, 19.011532900510197, 6.3216063917447896, 117.22164303984934, 5.535990185627157, 7.744651909152941, 52.00281628260835, 76.03384544884281, 66.38012079350737, 11.196781017022053, 72.92721846731128, 5.189842894931263, 47.770948059933716, 28.10180279562828, 6.880921776984496, 20.87005548624616, 9.553975941947508, 7.5465171039238275, 15.547310613362333, 77.67427978064862, 88.15928309804634, 86.28440956918847, 72.4277535802994, 29.30282987302961, 5.424601235815223, 6.615453514112347, 20.05681739475576, 5.574020055954121, 21.927482035224084, 35.289700957211565, 7.817374686320239, 5.463307901933047, 99.73265526491679, 94.28147130984526, 33.201537399169595, 10.943807437858965, 41.528980042163084, 17.233975613271102, 14.57610244429817, 5.7989805518495485, 74.87918829825914, 7.02867552574652, 8.592806577981381, 20.541297668521928, 33.78041731313983, 21.51529139903496, 111.45233181845221, 30.556520657448193, 46.5686447098833, 26.654780380235145, 99.10702149133309, 12.985176268069607, 29.772203270079064, 11.545851242857658, 26.243954194017263, 93.35090864728387, 11.960504653330036, 79.09717337773009, 9.078861990054975, 9.434694427827885, 22.031902910571826, 9.651197803746395, 16.39909242034667, 6.448920293589308, 25.670788841016442, 19.444545202335515, 6.799432548102326, 31.125897164691825, 6.306649627532842, 11.234737654899146, 62.929572346626614, 33.193405132482376, 18.70784563468745, 92.44295306424311, 7.515441073547623, 18.651419913265762, 57.22608045076151, 48.455680145112936, 8.420478284376058, 17.512455915539594, 6.433470969471291, 5.823627981642734, 13.914757707329871, 7.957344453126346, 31.589476717370072, 6.013561038831637, 77.06936391077707, 6.7863220334189505, 16.841922740071603, 18.699704064156574, 13.908428693250777, 8.387519559780552, 6.4250154016411125, 11.500333068122979, 57.023519165436106, 36.37585612575193, 7.368685638231421, 43.47799845333059, 87.68089200337944, 68.71155099799728, 17.24306230733754, 47.781190859631195, 10.090254687762053, 22.573486729794663, 22.997023572162263, 34.019211189371696, 10.991311372593882, 6.6324865600112775, 49.26826774424221, 5.066127296026026, 5.917721103982527, 137.11975193559897, 6.911664070401427, 57.1504712494272, 6.06215950473852, 8.74506531075116, 25.485082259279523, 79.52082542316477, 20.16717820393527, 13.681136587055123, 13.12272614565614, 74.26376958590828, 9.236574548339917, 31.19951608786863, 13.897949586691583, 14.043686564168384, 32.64797165963396, 20.53650607811801, 16.548854826688714, 11.30290189020679, 11.892318784707104, 20.762099442962086, 31.64394456794356, 22.89084028702659, 6.618811185654171, 102.62079403296615, 101.48208454942161, 64.30488888701558, 62.164755518391246, 99.18838896601186, 12.363836956419172, 7.495500478357559, 8.862357311335668, 19.632886137608487, 15.894711041700834, 11.115973518277626, 75.67492674130575, 16.408644819088025, 36.50144464413469, 45.50022635135611, 74.70488641049488, 38.4194607942621, 11.064198409772462, 13.659694564126282, 54.40516389042846, 43.189315063384804, 121.99442408322739, 5.977452705439823, 30.587056738575715, 27.142628581429072, 24.381173871568322, 74.85986100316875, 6.803910417948919, 29.93575894465374, 46.70586038198762, 82.45438866596919, 62.74126652816529, 37.089191250266296, 82.71803057364806, 34.723370402419974, 15.276572299487597, 21.90024550263476, 99.3342649583436, 7.888255691503768, 9.669175340801065, 21.55975851095855, 11.653954717768444, 5.578883330636317, 10.081898948336399, 105.75590179543241, 48.05696887506109, 33.02576123364541, 20.11599509865274, 31.65855785667828, 92.90963055433267, 26.94783357378676, 22.421879173444673, 41.95590891485154, 56.21511885426291, 35.013350085644205, 38.9948728318375, 41.13614689761019, 116.82238079735549, 45.667193423697555, 22.849912207654175, 107.83248933743337, 71.0220083951175, 28.079962623705143, 24.96596856298266, 19.8459205980941, 5.111137007139433, 13.348850070759223, 14.64019754530517, 12.31435725194176, 77.89562762829175, 34.17003929137166, 7.279277314272318, 30.574375348065892, 35.77256774621281, 6.257217465735338, 51.55011513098941, 26.87821463998693, 123.77028027389908, 5.748582151991308, 17.814915950605503, 44.599917742999, 9.674705975766585, 7.98216918836482, 66.47034251839463, 42.326850300178435, 5.545668077073041, 87.36975993701208, 59.34153354100815, 11.404487296516226, 7.242345376498829, 5.137340224499669, 5.264261617869409, 76.23917622730713, 39.23643442053902, 62.99703048068198, 80.80845757740734, 48.29626297578171, 14.947575955414319, 22.88090874095996, 62.069179833490985, 8.929273042915206, 62.79697308166254, 33.843681338004096, 51.868841507387444, 14.162467182273904, 34.405835175279314, 26.681812896893668, 49.610283571688605, 12.001078772509114, 47.244558530746914, 75.69680350297182, 67.41536390575726, 29.071440225855, 43.06186968139063, 28.512587181814734, 33.174649394569514, 34.39222111240323, 14.385048969856403, 85.68812514438142, 12.611678244798664, 66.7702744326903, 11.158057487297388, 49.19602661864673, 18.122650457633156, 22.259277584641787, 48.706390329700156, 8.325380235647375, 13.08605267250008, 24.3594493502061, 13.589829605290644, 6.173033037683963, 22.20448864028891, 9.589916527592733, 22.73673515389652, 7.008913169241446, 61.80508771466673, 17.59338302880561, 13.173101913308876, 16.203674653265775, 49.94158426131861, 16.515586786693884, 92.98513108432351, 62.30530830178624, 7.501607225926873, 13.802759783337986, 94.53156824742202, 32.73901545946863, 16.225167398014467, 12.63705805298659, 64.97663155337816, 27.252075466926833, 21.89183410249587, 17.127317268694533, 21.960607695678277, 15.308065899937233, 18.836086945991504, 11.22910171491397, 59.93639170541839, 8.310650146870726, 79.23816555597182, 41.81715857218979, 76.63422780883977, 62.96815007432826, 21.429432516625727, 18.934045852802743, 52.26386017016465, 101.18985428853286, 34.87231771483421, 8.798165957063002, 80.31004248560174, 10.043724444377785, 7.040987950892544, 53.604184581630435, 9.849177735474436, 23.254564392657183, 60.87417022065267, 17.52497459441339, 24.043690116263036, 39.6512883862301, 24.899301551231957, 24.435120316009318, 40.74252794835956, 7.1738182552911205, 6.360047657148422, 26.222970738079205, 43.33880049463913, 114.39909073415009, 89.14846773861446, 40.27919596893938, 21.7241550083163, 43.16573024616297, 28.264791527692566, 6.685399676724924, 22.042502184620307, 48.697515410229, 12.989928207257336, 5.189377535432976, 9.30382115911773, 24.71500766953639, 88.03476468076684, 38.447796998097324, 49.715426665519345, 68.6355945006519, 18.336690788684237, 27.896924379133587, 120.3140398276521, 5.3817851328201955, 11.491084152277066, 61.719030034956404, 8.83234293840028, 32.38926983280095, 30.286526129197814, 16.165267079374445, 35.74132974717874, 49.33977717905564, 22.870187562698415, 15.126903821543564, 50.44130086842684, 17.82928066126781, 9.29479642640039, 40.496834103302106, 14.428579753746567, 24.997425153757113, 70.98181777859084, 62.05557707434003, 23.131732340837065, 78.37459794086307, 57.96480602940891, 24.778235422602418, 44.11785041775202, 76.87891516129999, 22.08996303043405, 9.1266207550924, 26.535574499411368, 9.398400903585191, 53.80966640593343, 41.39937241305996, 79.84882863109884, 151.28696589795578, 20.897523547064512, 57.02834183064496, 91.20352375739677, 30.10831582244719, 87.91397824569731, 17.089377028389766, 58.00857934069204, 7.839654489176635, 11.769022449947482, 59.377251502440544, 15.876117353910029, 78.05436625468738, 40.75412789131446, 9.332991172674324, 23.142088002858337, 6.36345697422348, 83.23811316558339, 19.929966253204185, 165.4290735054245, 69.11594278188782, 35.34056256042514, 80.30119245096033, 102.65362022855861, 84.08679076067229, 122.42431517071287, 69.62574704687964, 154.29465911589907, 56.257266010336046, 44.63737551582854, 26.96525412907202, 16.955242510355447, 6.028002149638585, 43.74387783945676, 14.078317566762223, 122.63794283633965, 14.605399136390844, 29.668602192659197, 153.371136506456, 33.084051425803644, 47.290424837766736, 11.775960763623962, 98.78078264705485, 66.21979790968517, 5.034416524660053, 46.649963205369005, 77.90254893035028, 87.37372957075038, 10.36676712947948, 34.91479194888961, 70.83090514293339, 8.880913891300583, 76.22593418222176, 110.1040395015535, 74.01674535570801, 7.20449074652579, 8.057997064380316, 10.602250990104167, 83.46056160244513, 45.07465246481132, 27.398014523750543, 18.609761059783818, 60.68055295676414, 125.12493020402063, 31.226522552147433, 16.51388925099347, 53.41353449001929, 5.529194874820234, 5.6615421432426, 146.51925395512077, 105.5537591866827, 45.75365256598819, 114.5831239178858, 19.573277728258706, 21.72731499676239, 20.23602131789289, 41.651474948792156, 29.042915792993842, 19.620249873455435, 20.80752340533375, 6.0966670275443295, 95.11021541409981, 88.45690787794155, 37.02763951031645, 103.07155039080405, 5.179939553239306, 22.254907106883383, 44.175807479778086, 33.54710831736432, 33.073887989355754, 62.695392785093986, 19.50520022990709, 45.64512493210642, 8.342478103378808, 77.11315240718021, 27.643662954470177, 36.43059778973495, 64.73677394223654, 5.932765403565762, 12.665002344705822, 27.23995433430889, 28.927025818750177, 17.424620580177912, 107.66872386642554, 11.413431006424211, 56.50141760990272, 26.26987069094566, 63.37957992318105, 108.43550311307061, 20.427400871716834, 34.80623798780885, 43.59752730292727, 9.85271386926546, 82.66608402350961, 23.234297405902456, 30.515698298559002, 24.529885171649905, 59.50692578892388, 43.40247766639996, 21.915470167045005, 62.451934499031054, 8.197914076126432, 27.42892676681994, 18.400622601405026, 10.63871888994781, 50.059457267112386, 20.166458436880212, 27.779570231861, 50.500127850106225, 5.47914706575452, 22.701834100410334, 11.548730760121403, 46.53266371793763, 159.45714773693282, 27.19311117632601, 103.91100499745845, 6.695724987343963, 12.619034513316176, 39.28063366769416, 48.27608729301614, 24.002963750361204, 7.9640097579644715, 5.60973022912841, 21.252650119189596, 6.889582317399101, 11.022446569128553, 27.212774440263996, 25.669696311976647, 15.964810477365273, 47.28838970508252, 47.61248131837468, 64.38142956262467, 7.541029525106554, 25.637787294976118, 127.15760162119717, 16.81397414410682, 28.55510075133894, 194.00656579089983, 29.026470328483505, 26.96324876845008, 34.39406308299248, 107.68019321790985, 144.54244103573836, 39.205640547926635, 22.014825907632353, 62.583399341137515, 7.849818662627188, 20.438796548282017, 11.071930232194099, 121.7118584341028, 70.00740130874016, 79.94348344729855, 19.092223130775306, 20.514201859716454, 64.30000610269626, 7.740864534329656, 43.9708292117765, 14.990276199070767, 7.280360687035685, 9.155481801701203, 24.027713661252974, 5.46390322683376, 103.9538195208692, 29.778722867782697, 50.3463000933324, 73.52398126315441, 45.32403542567663, 36.81721229694854, 53.37868089881991, 52.75424792958943, 39.599984185063136, 16.50640695736682, 37.846464225210596, 15.568882292912704, 47.31883680313725, 10.101877108718563, 29.28285662044952, 7.756108346176998, 89.08054133172777, 25.940098484184237, 11.904889315210607, 35.39664891541395, 38.95831629666246, 16.50386840475708, 11.817969562534858, 72.45527500566082, 12.203550824201942, 24.253471762253685, 176.887771910798, 56.25295626075528, 56.43715472829341, 8.814583939373586, 35.13788626043451, 176.54928250860104, 7.856232067546376, 20.471048615229332, 29.333191410843185, 59.41338051483566, 7.34506349739804, 54.585625551719204, 80.9008057231412, 5.657533972521744, 21.211122386706737, 122.83278775387265, 16.03577249489809, 5.1489584517452975, 15.571848200844228, 79.31491195586105, 7.820391287613129, 7.073945287590284, 143.87746798059922, 18.380673192666773, 13.15225885084901, 15.778972223230216, 12.272645654164927, 7.962974702821578, 69.73902244972876, 41.37702361524276, 142.18788706086883, 94.55737358342286, 20.25875241992014, 13.512664745031358, 33.06352584697491, 76.39709978625774, 37.19751203431969, 63.853736133989344, 11.836996569842844, 11.083626330029718, 63.742326489225874, 52.06841342708375, 44.464662998798644, 52.76938488696376, 15.578978990495472, 9.774593026764864, 74.41700952150723, 88.71250002533904, 47.42014197441166, 12.369756204533601, 6.035990194879703, 15.310644525214254, 26.611439948560097, 58.948380307369476, 54.378026837929795, 138.64754077098462, 19.064219677861097, 28.38319887687017, 97.08966334504714, 33.730417656127926, 29.19238369458207, 8.558155513004618, 62.24379665503161, 14.536083869760269, 35.02808237652512, 10.235956335617699, 96.86899156599404, 5.092488474252268, 23.690710152692073, 25.254554141222965, 9.491204140054565, 5.880849098530318, 93.00920482805837, 19.63732505016736, 14.14106507641114, 7.247150846931284, 30.96213197676132, 19.151314612792618, 45.65710497898016, 55.6158610389694, 47.60299889429834, 27.643043350149725, 35.61357686113411, 97.87097510341184, 105.023966255181, 40.45313039453381, 105.34030530809716, 11.530550173145658, 9.516005582966281, 142.96906564139925, 20.512769949247335, 62.508098249910375, 105.05480269307161, 170.7698254115856, 41.19593893617247, 36.06280203121883, 15.902838048435523, 45.72293293893115, 9.810763929420917, 66.35317432871284, 77.88943756356186, 8.692505363121924, 55.52080409584699, 19.06390213777801, 60.05993165183424, 9.043346385907927, 72.15334131565082, 67.83198441803117, 85.75081968227222, 28.834722820604764, 37.35201444599881, 82.70037692412676, 31.222890018918374, 82.72966112201009, 76.13295893418494, 42.918056289090686, 40.85269704436265, 11.895039772691991, 12.378225608631974, 59.69190339604643, 63.13889306652491, 5.395951122497295, 5.876709778393195, 97.43669855423722, 140.6007249309859, 25.808638953013944, 7.958413780467943, 20.835469507493944, 46.55490969633031, 47.66833387012479, 24.302855975079364, 28.361769480802295, 72.12661354364428, 90.52028260340332, 42.80609454823564, 25.290769455572203, 10.486660731909907, 81.91025243955309, ...])
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)