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 = 44820
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
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
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);
([2026455.8456080677, 2361374.9535060204, 2362272.200320935, 2418310.4803910004, 2437397.164296221, 2441223.233190988, 2455632.7422125316, 2471703.105028092, 2471967.4755774867, 2500739.2942514676, 2527347.357642588, 2544590.8512441143, 2552850.9081802364, 2570257.8125, 2570260.8792490116, 2589698.728365965, 2638486.304285793, 2645560.9375, 2647719.4993255623, 2658424.9848451307, 2677406.3172409767, 2684224.394279855, 2749210.9375, 2749536.8970785816, 2760928.3853838523, 2761967.1875, 2808126.3314968063, 2808617.2124191658, 2829812.383118915, 2838707.3346652207, 2844401.430815456, 2846987.8795383, 2890337.22259261, 2913994.8369487626, 2987478.125, 2996910.081366824, 3001070.1907543084, 3039178.125, 3046450.0772042233, 3046995.3125, 3047036.732152476, 3083958.5513868122, 3083964.8699654313, 3103089.343230247, 3116597.8749075104, 3151073.775960992, 3157301.2366170953, 3158070.7186325714, 3176821.1642179047, 3260309.375, 3263680.8532323353, 3274684.174212237, 3279705.079533824, 3280411.292030699, 3300936.2805238008, 3313807.361689792, 3314730.740503156, 3322527.803435019, 3330597.9060010193, 3334837.5, 3376808.185434945, 3380625.585894415, 3430592.2197575076, 3437439.184309538, 3438933.810991443, 3439660.4399984, 3439903.7316513117, 3443435.301453109, 3443741.482949531, 3448088.7663258435, 3456071.2095493274, 3456370.3125, 3484784.4454133483, 3494325.495730551, 3499101.0437337733, 3499852.6308134366, 3499959.4742477955, 3511548.4375, 3513364.651107095, 3513424.9882879737, 3546279.9411676447, 3546540.453348952, 3547431.3142765136, 3574112.981523615, 3574308.872349341, 3603253.3559198915, 3615360.064356614, 3639511.793041712, 3645706.396367228, 3649676.539964828, 3652654.0342472377, 3655370.3125, 3655664.685621836, 3656365.9861336923, 3659408.9998704344, 4800515.625, 5001018.4939798955, 5040489.0625, 5166387.106639041, 5176829.434717454, 5232532.130498648, 5284392.664688296, 5312247.201896965, 5371128.125, 5399139.0625, 5413843.75, 5415115.238707487, 5415169.411213063, 5415427.520654505, 5420692.1875, 5421368.75, 5421451.89590958, 5421564.475750988, 5421925.0, 5422811.576337117, 5422878.263101298, 5430435.876445758, 5436979.792248728, 5441285.430633029, 5442431.17861093, 5473931.152108496, 5504205.751017337, 5585247.327549388, 5585407.441014807, 5587996.533112423, 5594132.525826101, 5598326.47992387, 5604142.661813054, 5605441.194302148, 5605448.125151545, 5607051.5625, 5607090.625, 5607357.2183582615, 5607365.316442285, 5608170.3125, 5608207.52035351, 5608271.875, 5610495.408365605, 5612050.0, 5612423.632695404, 5613890.625, 5617775.0, 5620707.017206574, 5622100.7640054, 5648283.362254042, 5661960.601446051, 5681990.716081961, 5682017.301331026, 5686389.915369564, 5689772.338872404, 5694429.175005436, 5723352.207774766, 5723815.632784198, 5723849.413771117, 5725536.7573266225, 5727162.939457005, 5738743.65109123, 5744716.8987019695, 5745611.954975154, 5745885.9375, 5747702.903806783, 5748303.125, 5748327.868115984, 5748505.2343216045, 5750847.006855379, 5752481.992036193, 5757806.613051035, 5759634.016952106, 5760125.342205478, 5760868.3775957795, 5760874.128766123, 5763635.9375, 5765339.900753337, 5768449.528731331, 5768497.141443779, 5774106.296997841, 5774803.115042458, 5776821.577098801, 5781617.1875, 5789810.722487424, 5792553.182675421, 5793418.271176183, 5793712.5, 5794005.309463967, 5795081.067214208, 5795130.119073913, 5796065.995623803, 5796130.607719233, 5796270.3125, 5796377.679384346, 5796737.5, 5797199.767656951, 5797283.105235974, 5797302.760381066, 5797508.614983307, 5797936.381382206, 5798003.246402345, 5798025.0, 5798474.813982248, 5798559.372953899, 5798610.9375, 5798665.625, 5798776.5625, 5798878.8320853915, 5798895.144886801, 5798955.304482237, 5798965.222953953, 5798969.255604334, 5799057.473156256, 5799070.188334332, 5799118.040587618, 5799164.031663738, 5799641.535369509, 5799730.82051654, 5799762.027779492, 5799863.547146064, 5799969.149539215, 5800051.5625, 5800458.486938187, 5800769.769537984, 5800893.665678798, 5801307.254979651, 5801373.042096031, 5801753.257347383, 5801775.183124728, 5801931.967595102, 5804362.421555589, 5804834.206056404, 5805177.935415348, 5805274.9329010025, 5806054.975264619, 5806082.448930526, 5806423.4375, 5806838.183576176, 5806950.380310461, 5807062.5, 5808072.24972759, 5808085.252068794, 5808117.1875, 5808464.0625, 5808613.467018958, 5809337.466551398, 5809710.850720234, 5810042.827710288, 5810351.5625, 5810996.870752668, 5811773.091479234, 5811852.903631699, 5812315.625, 5812701.556469771, 5813043.640404838, 5813562.767033694, 5813692.063847876, 5817012.5, 5817210.1431463165, 5818135.157973692, 5818173.4375, 5819292.480145332, 5819346.730448722, 5819863.4373471085, 5820784.324167171, 5820897.638672642, 5820906.235921738, 5820945.3125, 5821382.624584968, 5822291.810705032, 5822320.3125, 5822693.002031679, 5822853.125, 5822858.965129413, 5823020.1573200235, 5823335.8024331005, 5824259.813688985, 5825205.634947464, 5825259.5398267135, 5825432.525313503, 5826245.846949891, 5826382.1302116485, 5826807.8125, 5826979.6875, 5828549.0912735695, 5828842.008363178, 5829270.2299927715, 5830898.989650919, 5831252.354066336, 5832691.927106967, 5834271.875, 5835901.181500979, 5836714.0625, 5837689.649792807, 5837812.400421058, 5837884.936138422, 5838786.519238592, 5838796.749723181, 5838876.318138843, 5840203.125, 5841847.001693769, 5842301.71747106, 5842582.11819103, 5843997.985586501, 5845093.522943102, 5846344.79103017, 5846345.104476523, 5848148.4375, 5848290.80641947, 5849952.399603769, 5850026.5625, 5851131.606289588, 5855104.6875, 5855322.110590184, 5856826.485677482, 5857184.351384229, 5857583.017406125, 5858819.74023319, 5859075.817376174, 5859826.255046249, 5860484.066792197, 5860570.3125, 5860744.37241762, 5861020.047159306, 5861186.449020965, 5861195.3125, 5861608.758153994, 5861662.14580031, 5862070.973993571, 5862092.536829073, 5862304.219447138, 5862327.740373181, 5862500.277334445, 5862521.875, 5862612.5, 5862635.103866865, 5862925.061428546, 5863563.616783249, 5863649.952671683, 5863765.625, 5863839.93011407, 5863983.885273416, 5864635.808764001, 5865550.662222315, 5865767.1875, 5866546.249374738, 5867060.299606072, 5867280.984215762, 5868217.1875, 5868296.289122925, 5868850.0, 5869686.665065977, 5869791.880803826, 5869848.4375, 5870470.3125, 5870698.078424263, 5871660.9375, 5871723.006047935, 5872655.764975988, 5872856.669485834, 5874145.769668554, 5874152.525811267, 5877646.172327514, 5877677.404595549, 5878801.428686543, 5879058.968944126, 5879752.663366219, 5880015.625, 5880060.9375, 5880812.068271251, 5880843.75, 5881346.875, 5881389.60567463, 5881557.537908779, 5881584.851082089, 5882276.515878186, 5882288.892720507, 5882625.929708337, 5883115.366813713, 5883157.8125, 5883351.236809184, 5883851.5625, 5883867.459888633, 5884222.314579598, 5885239.0625, 5885250.150295519, 5885270.971033342, 5885484.651606124, 5885533.544196565, 5886010.9375, 5887319.478882596, 5887571.875, 5887797.737492392, 5888078.644378307, 5888469.851061484, 5889168.910079917, 5889833.723207136, 5890020.007684121, 5890022.797509535, 5890076.572219372, 5890425.469218981, 5890511.697904991, 5890527.266607913, 5891205.557352547, 5891526.20964686, 5891621.83878372, 5892175.0, 5892353.125, 5892450.390133842, 5892675.65616635, 5892761.076516864, 5893273.4375, 5893752.745806561, 5894180.826397537, 5894277.934131082, 5894685.9375, 5895075.396073964, 5895313.097884234, 5896552.3522748845, 5896879.6875, 5897160.513418248, 5897271.5569480015, 5898696.875, 5899192.557400469, 5899235.359322503, 5900348.506784509, 5901006.211038191, 5901044.199253534, 5901864.777971891, 5901958.774998389, 5901998.533660974, 5902206.18031236, 5902290.918695794, 5902620.797294494, 5903079.245426995, 5903190.206173364, 5903363.388567906, 5903537.5, 5905321.611026831, 5905321.908461391, 5906240.815955799, 5906737.846087738, 5907595.008070869, 5908591.280457076, 5908609.192725811, 5908938.710067064, 5910166.21302975, 5910872.464074096, 5910946.57393792, 5911200.0, 5912434.720681007, 5915227.116713303, 5915949.512579476, 5916685.116388489, 5916710.9375, 5917012.243541321, 5918060.9375, 5918487.699968645, 5919405.798255105, 5919705.531110811, 5920590.282934387, 5922008.7079677405, 5922710.817678295, 5923917.883898522, 5924845.768501954, 5925894.815770559, 5928071.875, 5929377.0864690505, 5929758.995551755, 5930168.354935385, 5931204.6875, 5931464.809878368, 5931703.052343797, 5931719.873496703, 5931920.2894809935, 5932455.5905021755, 5934325.652546072, 5934409.375, 5934498.182112553, 5935242.989557142, 5935468.75, 5935703.365895669, 5937303.40599742, 5937758.049399934, 5937844.089938167, 5938474.998017654, 5938872.301755357, 5939291.102865273, 5941023.91312143, 5941790.0951614855, 5941962.364065261, 5944071.782246535, 5944075.508261286, 5944181.707476841, 5944857.636142522, 5945045.3125, 5946705.993077971, 5947621.875, 5947968.190152936, 5949144.642897341, 5949519.896894002, 5953241.816456553, 5954883.319598505, 5956090.625, 5957259.79848581, 5957462.060967241, 5958124.5557944365, 5960323.032196887, 5960894.355685106, 5960956.017966983, 5961667.620112162, 5962319.85782257, 5962978.125, 5963134.907796404, 5963698.867041273, 5963850.914976877, 5964013.496427406, 5964113.771526755, 5964329.476305785, 5964840.918386045, 5964970.299360135, 5965024.433929004, 5965077.786307821, 5965417.360471709, 5965532.220260356, 5965633.665304173, 5965884.375, 5966930.081183209, 5968064.306804422, 5968351.686820409, 5968746.875, 5969164.0625, 5969361.717131103, 5969455.702193142, 5970166.778323863, 5970854.165330588, 5971636.135113193, 5971901.5625, 5972458.557703616, 5972472.81051371, 5972533.810890495, 5972598.123919385, 5972798.846480317, 5972855.980450956, 5973252.93578954, 5973336.931257145, 5973670.170745988, 5973772.238589148, 5974405.025059403, 5974519.7199240215, 5974687.5, 5974977.817975063, 5975943.525578104, 5976511.97466621, 5976873.052758163, 5976983.817271054, 5977357.8125, 5977358.543873929, 5977580.474310035, 5977626.338862366, 5977724.078319744, 5977887.5, 5977946.3444081815, 5978215.625, 5978409.34815051, 5978741.218845032, 5978767.8518964, 5980092.1875, 5980229.788016538, 5980401.004311693, 5980828.125, 5981030.432694233, 5981182.8125, 5981201.940639591, 5981331.010009667, 5981351.857153143, 5981638.5190056, 5981675.0, 5981911.269845308, 5982032.68232122, 5982095.3125, 5982210.377212518, 5982945.559061598, 5983147.7495738985, 5983199.224445647, 5983244.661112979, 5983290.967301917, 5983360.42823076, 5983395.4893064955, 5983395.579338136, 5983551.744982327, 5983568.587734826, 5983596.1305171745, 5983603.125, 5983656.6611062065, 5983666.748615413, 5983734.375, 5984051.686389794, 5984239.839640216, 5984240.625, 5984307.644535534, 5984378.125, 5984459.195885227, 5984660.642096224, 5984689.058733637, 5984781.25, 5984929.6875, 5984937.5, 5985037.820755029, 5985064.31577547, 5985161.353260408, 5985209.171576229, 5985245.3125, 5985327.372904437, 5985444.249024883, 5985568.75, 5985600.714547518, 5985609.99772812, 5985939.010483641, 5986210.9375, 5986220.847359944, 5986227.097574093, 5986267.261047581, 5986400.0, 5986419.030258973, 5986480.464675634, 5986512.991780535, 5986518.75, 5986541.962595561, 5986618.75, 5986709.118240141, 5986726.3765844265, 5986775.159427421, 5986880.165666111, 5986992.1875, 5987000.833735556, 5987086.982348909, 5987089.761809945, 5987120.53614084, 5987144.831607497, 5987160.15041282, 5987334.005867085, 5987441.86310166, 5987476.5625, 5987593.5641153455, 5987628.949899172, 5987708.625909371, 5987729.503150633, 5987746.222473296, 5987823.696964588, 5987868.9677440245, 5987894.623673147, 5987914.197336691, 5987939.0625, 5987946.875, 5987968.302184937, 5987999.781018667, 5988011.959452316, 5988026.325300333, 5988029.345968937, 5988065.014261035, 5988084.483583977, 5988099.436519868, 5988121.686697651, 5988149.402629017, 5988185.655756231, 5988226.5625, 5988386.18325598, 5988398.4375, 5988426.963741709, 5988500.0, 5988521.285290529, 5988558.941492124, 5988583.970897227, 5988615.127718249, 5988655.83620401, 5988659.642732904, 5988763.644974099, 5988896.273392067, 5988937.5, 5989027.558227827, 5989049.569314273, 5989224.424777355, 5989241.511495619, 5989242.1875, 5989267.34832821, 5989340.162180507, 5989368.922084348, 5989371.875, 5989407.8125, 5989450.837747563, 5989539.0625, 5989551.791282342, 5989629.94458033, 5989677.684635074, 5989708.631072276, 5989821.875, 5989886.074157457, 5989913.882963599, 5989987.84137946, 5990000.546770925, 5990077.434984088, 5990120.980006765, 5990293.75, 5990341.70847784, 5990342.036733913, 5990404.403496441, 5990410.9375, 5990436.716873504, 5990455.951268561, 5990457.407059957, 5990694.304037479, 5990728.125, 5990757.8125, 5990765.428106611, 5990889.0625, 5990947.744883394, 5991029.47022304, 5991115.625, 5991269.042645332, 5991294.163961304, 5991433.7536828015, 5991462.5, 5991470.3155458635, 5991616.204064092, 5991634.454648815, 5991635.860017888, 5991680.921622783, 5991718.951655586, 5991719.293655454, 5991778.125, 5991921.078986025, 5992050.0, 5992074.581860508, 5992311.499282648, 5992357.549526296, 5992501.01481506, 5992555.483722485, 5992647.713429845, 5992715.625, 5992975.401971978, 5993381.25, 5993460.683591779, 5993474.723880672, 5993650.424970832, 5993892.008339667, 5993918.118146023, 5994006.749669934, 5994012.5, 5994068.689421948, 5994257.249177184, 5994265.12692388, 5994603.370946425, 5994791.81118133, 5994872.896556216, 5995599.000092213, 5995951.297835155, 5996102.519141214, 5996191.793724069, 5996243.167727183, 5996908.002893608, 5997329.760784285, 5997456.25, 5997824.05161238, 5998290.505717173, 5998612.686066962, 5998635.235446115, 5998870.411158922, 5999190.625, 5999455.901024293, 5999809.375, 5999887.5, 6000010.9375, 6000211.122239958, 6000448.4375, 6000514.438046187, 6000584.775576839, 6000733.48970379, 6001013.240182362, 6001808.352180785, 6002261.631596241, 6002262.6649074145, 6002622.04937865, 6002766.153124126, 6002821.313552417, 6002911.77082255, 6002964.482500425, 6003300.403659989, 6003312.543145902, 6003331.928462695, 6003360.772191991, 6003551.000203114, 6003602.284880802, 6003710.86555755, 6003748.738318076, 6003822.974807838, 6003875.0, 6003936.92430864, 6004054.964987418, 6004164.006906349, 6004176.384423964, 6004276.5625, 6004280.096081102, 6004301.329553262, 6004347.1568898605, 6004522.551778404, 6004629.322085481, 6004853.344737565, 6004919.868551333, 6005079.6875, 6005386.480641862, 6005614.113682216, 6006104.6875, 6006185.298824218, 6006267.075175615, 6006298.341141401, 6006629.082379453, 6006723.4375, 6006809.214252557, 6006865.625, 6006878.849876979, 6007100.594529506, 6007292.1875, 6007621.831715662, 6007679.384245, 6007681.075452139, 6007731.1746031465, 6007767.015258335, 6007810.9375, 6007960.167309945, 6008276.345212599, 6008396.245580508, 6008413.8520455025, 6008794.968006686, 6009083.498169915, 6009391.918061544, 6010103.125, 6010505.343191386, 6010542.318635869, 6010580.849706654, 6010726.140444669, 6010822.774715261, 6010860.9375, 6010878.125, 6011366.763319072, 6011511.748136937, 6011575.522278973, 6011919.2924378645, 6011982.933517391, 6012085.877816398, 6012415.925879536, 6012759.375, 6012763.329573739, 6012828.246398165, 6013040.826085264, 6013340.625, 6014071.792037, 6014827.34977749, 6014834.517599951, 6014841.820222995, 6014878.125, 6014983.420736865, 6015219.622183871, 6015220.274228385, 6015568.75, 6015908.608736934, 6016150.324194265, 6016260.9375, 6016636.072373593, 6016652.924385197, 6017038.969419152, 6017056.611903903, 6017135.9375, 6017627.53455389, 6017667.1875, 6018056.64202706, 6018122.835545889, 6018375.0, 6019159.201553253, 6020231.25, 6020259.87266044, 6020409.394758021, 6020895.430128827, 6022125.0, 6022161.099348112, 6022723.4375, 6022754.8389817625, 6022807.698606436, 6022864.0625, 6023048.37256437, 6023325.888718995, 6023492.069182215, 6023973.520650782, 6024090.75847743, 6024222.818794209, 6024307.230743833, 6024466.346709027, 6024492.340792901, 6024788.554799003, 6024963.154164249, 6025129.408339874, 6025226.0532420445, 6025320.123613577, 6025743.75, 6025767.106396096, 6025850.673545739, 6026127.891560879, 6026337.490342609, 6026397.6159750065, 6026555.205939221, 6026932.586584772, 6026951.896895778, 6027179.6875, 6027262.5, 6027428.863660548, 6027706.282680953, 6027805.862402384, 6027992.1827792665, 6028471.529124935, 6028522.1381703615, 6028643.138446329, 6028865.625, 6029022.02251828, 6029139.711114574, 6029204.6875, 6029300.879110271, 6029326.564068364, 6029374.8584481245, 6029402.791557526, 6029415.625, 6029474.522021536, 6029500.0, 6029720.757444152, 6029853.089884482, 6029989.42223829, 6030001.923246425, 6030130.740286538, 6030237.5, 6030323.103777787, 6030550.998178243, 6030647.549005894, 6030667.389261297, 6030670.311163705, 6030744.790720118, 6030746.669975027, 6030777.885787534, 6030795.198785003, 6030887.5, 6030887.750334689, 6031107.8125, 6031353.306929014, 6031478.125, 6031480.664432664, 6031545.795020223, 6031692.564399897, 6031699.4016160425, 6031726.752934362, 6031794.800203078, 6032003.250982745, 6032138.6251277905, 6032165.5609135935, 6032242.638392659, 6032247.312205374, 6032462.905004686, 6032557.582995102, 6032633.499638186, 6032699.917006133, 6032775.252590613, 6032796.4752309, 6032933.503825198, 6032967.395190232, 6033013.855709061, 6033051.057345779, 6033056.998240627, 6033114.107287439, 6033132.8125, 6033146.875, 6033317.943349664, 6033372.962775555, 6033404.6875, 6033550.0, 6033974.319251849, 6034105.053888952, 6034246.700667808, 6034260.829059018, 6034297.858070192, 6034366.135088102, 6034371.301499391, 6034393.75, 6034466.090869953, 6034598.442208333, 6034624.156326175, 6034662.893381462, 6034798.920555579, 6034805.099316269, 6034920.829511688, 6034942.1875, 6034948.412651765, 6034948.4375, 6034954.753633181, 6035249.1873866115, 6035291.347500013, 6035335.9375, 6035344.999111429, ...], [28.35806250554142, 8.262142619026168, 40.23579550553045, 47.7112529150077, 9.588615666133348, 29.137534996221, 27.207441879293565, 51.302637691304845, 49.752038868211635, 5.959845177425398, 17.769590249415486, 49.65295576862945, 5.884379410643866, 50.17553962993148, 8.256011585377603, 59.64969734783417, 31.66809331091094, 40.51365778278069, 26.67832030813567, 28.228417973378356, 50.87855794896607, 20.499557944099774, 36.0351226419406, 13.967521153222336, 73.9380788039802, 34.78082097411913, 7.521771274743853, 8.299799104037866, 26.41025717364762, 50.0753871255739, 6.250703111584808, 37.84929305284885, 34.536653679976425, 8.050149475695363, 45.851088414983394, 12.446148626458829, 7.559789967638422, 88.52868977790365, 6.096164742549264, 40.742807002699486, 18.562178534087938, 18.77611494879546, 10.122261234531209, 6.820876942617438, 6.031485364507779, 7.73041897970737, 39.00325619150548, 7.757044691563382, 38.0955240183702, 37.02955768742927, 55.71818918339392, 9.16720671322558, 5.413675621253402, 5.412202594624003, 75.71935920185446, 27.45200769875128, 131.68531717761232, 53.462839822285154, 111.7943641266568, 75.13549660518363, 26.60565281128686, 25.452772611452854, 7.129957070591974, 5.100861220091895, 61.575500006130625, 34.591615272053204, 13.24174835151258, 67.70683756210543, 29.960611926693304, 5.597866541080413, 19.987480589931643, 48.362228176570575, 26.10347880703445, 27.04353766243282, 20.620521578320933, 21.55128905139117, 9.416756782233909, 52.44957837570981, 60.639805160665276, 6.265719770519158, 11.548789779270459, 18.481706482379252, 39.876057273979214, 7.787203949160003, 62.818755315773736, 30.713666412777098, 22.650927311531674, 17.798630844046944, 5.101347924351606, 73.87350417307785, 33.4066117610895, 94.47087931319507, 5.995572063484824, 16.523285523693364, 68.40996130330035, 29.387104855535355, 10.749798967864715, 121.64402233357947, 22.627200002101603, 62.58370047001906, 15.557272423235299, 5.850152466482212, 97.78585157587185, 45.768034470373905, 66.28730201685337, 49.49988831980551, 34.26906539808914, 38.22331933702049, 27.358116407598686, 33.48263417143982, 54.59484221267319, 100.45128408161689, 16.791379222709498, 56.7072116846083, 8.655998615492676, 14.910005407157414, 91.78019872511602, 33.906219722196006, 71.2749061281282, 6.74933749653312, 26.72835000836187, 136.02164148697383, 41.9005020206701, 22.87863549254998, 29.206028082283233, 36.64718205246289, 91.92698848220958, 9.767474498655401, 37.95266664006143, 13.871142233440976, 85.61854963273605, 30.436323501012627, 68.44186659148491, 65.02228807357895, 41.08103842188098, 10.699832971688402, 32.63752116961977, 100.18178057535987, 35.22897466288521, 23.657974371069535, 73.50641596005497, 78.21411319232486, 8.738727858177212, 50.924409392792484, 5.308376296453393, 21.339808053549824, 11.273122113840447, 12.647051657006372, 7.365272259199053, 17.063316954308103, 81.18721022153062, 19.885673722004857, 78.5589308757012, 84.24959221397899, 26.231145984817665, 6.558259529766156, 26.711077654118018, 23.80062939219701, 96.32804033632135, 37.442295236319765, 10.798716147517503, 32.58801435253014, 46.95786335952268, 7.813758697319444, 5.5395143041957695, 7.3312006403559575, 9.658484836713484, 9.045954589091327, 11.70832589190418, 103.49710821297121, 32.52851031794656, 34.5395658524093, 87.16403177271506, 166.1139829859435, 13.245513807071585, 15.123720959234609, 28.329386388848924, 17.506098071437272, 46.8639586732779, 24.900637203119555, 32.162379583346734, 44.73469518471057, 43.83370738168906, 12.684326636579623, 25.37310888854394, 7.767163080405918, 68.42996688704433, 23.407281704207605, 90.18444566537707, 10.495972269803639, 76.8481814004826, 41.81592970145187, 76.95705153954607, 200.43216366246494, 25.28089827691432, 12.016278307363077, 15.464569096838641, 58.15282794010915, 155.368662390729, 63.49441692843377, 128.35190380764763, 38.93141717309475, 70.87828219864471, 134.02307144761903, 70.07574239117461, 13.903363559999686, 20.038996278523463, 6.868826628366073, 104.62600122610176, 63.06902718635957, 12.786911064946208, 27.928861279069565, 27.047901304064105, 5.443629711389855, 19.774944704039584, 21.341291786081847, 11.815455093202393, 77.63031499409306, 12.375602934241154, 55.252243576902785, 14.62956994946684, 8.900642155812308, 10.561218046203656, 16.86813431526162, 15.688670139177843, 95.14694843597282, 8.245525711538974, 20.090892868103353, 25.27163365198806, 7.1039243748769625, 63.181705908654415, 27.5140152227689, 32.532523512151236, 7.313536237365419, 7.7468357142030175, 83.50844025860903, 16.592094272200598, 7.95457423646199, 105.98734104243404, 48.781143096963746, 85.03064101754816, 71.44240694233807, 33.82403774428764, 66.21988407075844, 99.00102123900942, 11.12107443410201, 87.50610559526847, 14.159939448842882, 40.522309041593786, 50.10592949880459, 37.024181053060154, 16.067369060995663, 22.015612635425338, 37.99180268095165, 10.07799476497847, 5.223839454960724, 37.456943499693615, 7.712626662070615, 111.82905422895215, 12.995870881588294, 52.93501053691035, 6.368757902080746, 6.086636423938532, 76.18427038882447, 77.60087314241926, 10.585751293028505, 69.6109716500419, 19.331184065283928, 55.8448702164398, 22.441911132076186, 64.12946818309253, 26.113986198267412, 16.926563525553707, 101.71140821657634, 7.663960793179143, 13.52388386016613, 5.559593758296061, 12.853068181382033, 34.076071616187626, 47.6062096513606, 196.0252589509919, 49.054089966600905, 51.04011863135155, 35.85900531832871, 88.07956317514643, 18.817968881795533, 114.84345333107046, 31.532158175545543, 42.794178792524306, 17.778898407803155, 37.57154637947701, 17.62061720002017, 12.177568198931477, 8.221421573700692, 67.28193525325634, 46.58451457636271, 11.331685183005714, 43.320353248496886, 96.40252957128051, 7.007517104331485, 24.729460049790365, 6.663681008846352, 77.55860969600752, 80.57644623926345, 6.290394775572706, 59.74706077240552, 62.76656911133341, 16.49895228263927, 36.23116315354959, 11.517061169429887, 47.36056667631481, 28.065853539478496, 15.784604668189628, 6.978729071077025, 38.67111275287906, 66.5344441887421, 92.84007566054353, 92.57705683962422, 12.263256618728972, 15.607643681124014, 27.15108283945203, 78.95607621636347, 26.476447823864532, 10.61580106675763, 7.861394973054968, 7.216410582138413, 75.1397913753768, 21.754465853393874, 16.115606907327457, 42.14503126102717, 39.01939217349067, 18.705657455185463, 9.383890269578169, 62.854733549326156, 34.621684870658754, 69.61206877505332, 13.998813868677516, 8.94901222826422, 61.41790755910659, 30.66436068048105, 30.573605168369237, 20.325226313460327, 7.387741338820398, 154.56233804840903, 116.83419575326248, 13.096845530113763, 46.525911241374274, 91.11988434663013, 56.14061605423655, 61.41811453296928, 34.034290443895294, 40.72572256494303, 46.39024156241778, 109.48082221039205, 11.93053977620626, 7.2362676623150595, 5.84859935923643, 5.669656477403545, 27.38138422119282, 56.207680684223114, 6.074293466355187, 30.118183097106403, 258.51025242384134, 82.78316465008426, 32.76956616328496, 13.516996559888375, 33.21865263145689, 67.28399202212941, 13.611575773827948, 82.43764284070113, 82.32199687132552, 27.634806953634843, 53.59872719748897, 20.263379148634726, 15.152890741519013, 62.45018317996809, 23.42803188993095, 60.04815406874308, 52.11228025654981, 11.892136782588677, 61.967334555379644, 47.869628621010776, 7.306032832853241, 180.3755820087315, 103.50090666305339, 98.72957045925038, 35.28024166497492, 53.618571979358485, 19.70576926718908, 148.1556197310411, 18.462415102330397, 11.387493413176049, 53.661236321291796, 23.689419781412074, 7.974847485925069, 23.17561827253938, 58.837904509484986, 19.876931081813925, 18.534472824799018, 19.7649166995329, 13.74796079334755, 15.031764778557111, 66.85495763456306, 44.5468169201122, 16.671022026733166, 18.21433624047658, 67.00841221760581, 37.685546046428506, 6.220449957273622, 54.32887816794465, 84.14694911487572, 47.57032911978972, 8.507755332079773, 38.645525389339795, 7.345781699587894, 56.82184544895052, 31.28879148388018, 92.07827737954929, 81.49314509825614, 6.546683014313742, 5.8905877184437205, 9.390682390906063, 41.30376929703621, 147.43802259257654, 5.182366259511596, 13.060262575896706, 6.7828574196320375, 27.218080093051675, 9.592731964521105, 85.22981420860104, 54.445261418713926, 5.9037430153372, 20.915086916544386, 36.75498734098495, 47.273808282175224, 184.10692892231543, 71.16586247345107, 6.311937218754938, 23.694330046529565, 18.209708302446007, 43.27444000222042, 17.5666820052843, 9.883580055223419, 8.624758484950096, 25.81292514751454, 48.200427680778574, 5.301885877359541, 19.12494557916647, 72.90260609111164, 61.653044458606814, 91.90392596245516, 14.046503871150575, 39.38572536043463, 7.6772003960015835, 76.58396662762337, 179.52518167896517, 18.816097514565627, 10.223853377632356, 10.94544415542339, 56.63789577762462, 9.749231530805933, 5.778118558849786, 38.05760727637338, 29.092422255488323, 14.41223917553873, 13.622930539270785, 78.20141953318138, 8.72574301017211, 73.92877964072927, 28.93439599897942, 71.50975370955106, 20.03705477071739, 235.3207817176474, 45.97070554459541, 5.600070022721063, 10.116132000866157, 30.78359606381969, 11.526344098517281, 16.132856169372246, 7.691228146770972, 43.024449659083025, 8.285529306109497, 85.46787344838107, 7.785728202942051, 38.12506188251267, 22.13918804624518, 11.287820438336036, 41.04090979468176, 55.11967390983632, 17.847085053060596, 14.309383763976422, 35.02795675451842, 5.333194314590953, 48.10083794878433, 20.91616944659808, 19.95308855165171, 56.238297147270245, 34.233774432619015, 92.9537073899446, 42.62478163976994, 7.763939841014462, 111.12231783782497, 13.919848133785269, 32.456805922292546, 5.993946887608707, 28.8031578700966, 31.695816163559186, 29.787367600312173, 74.80773640233143, 12.076897557203408, 23.59769173469992, 20.137735176341582, 71.63803250545551, 5.124331870858295, 24.95550631180378, 6.823527255098785, 14.891661816564183, 5.032131906221716, 164.5188845173428, 19.38781620739853, 5.322029265889699, 12.786225152227773, 32.60521126302881, 57.30795551447111, 15.962314334306608, 63.551935415653574, 184.6948326336074, 67.7681292304608, 7.3426715683224435, 21.029098997014746, 31.18259183553567, 21.274762916158583, 9.504279319559114, 150.31888486966326, 26.94694714516111, 87.89911216765628, 20.876555775588713, 89.819431767649, 18.895308784232995, 24.14766279971747, 77.6506948525786, 56.80575474219091, 31.719387330599183, 15.332229146069388, 9.634126935782541, 32.07448427557961, 44.43244460141958, 9.084622237258777, 14.149963008290035, 10.395148930709764, 22.72544795208718, 20.935925167712774, 66.64048205350024, 12.502271913638198, 21.146547590540266, 51.85096639603103, 38.22094403573845, 75.34773083559337, 13.243035902456594, 56.724882852609205, 37.51650076577512, 17.819143783545154, 8.672221761233844, 67.98233720457655, 5.345377854855057, 34.74225316273249, 50.60218896355586, 62.74222009895956, 116.60375248167254, 16.609487084615726, 29.827109455357323, 16.19760982533414, 147.45681243642306, 143.967374261069, 11.690210499279148, 26.19283575399264, 60.51788411769887, 27.097942039718518, 69.6805929009652, 5.577087251880593, 8.751730868340683, 187.15280366790356, 13.52801229150762, 6.6659226785219, 11.41578970018426, 109.06912332540037, 67.17648836186507, 38.247279097296186, 34.86881889388088, 72.3466311620401, 6.848453234326219, 22.125221304173103, 36.79384751423405, 32.027463257137015, 12.60702242050739, 59.79215166436889, 23.761135826703303, 29.92172939699132, 59.98503109612437, 65.07384352142273, 25.722723591510317, 66.21914677781831, 45.10984240957616, 65.28279449259941, 6.829278108328533, 7.697485896423489, 23.750105650122542, 59.38443595959511, 29.613613737380238, 8.76728446394678, 48.35494620561222, 58.99631591019059, 29.763847683930962, 5.7475703999718695, 14.746885895739725, 47.0958291620995, 8.591234313633196, 90.68557519336562, 15.22944957456369, 43.03926401294842, 28.00695275534381, 18.31895329921424, 8.564966902588008, 61.823595282953434, 24.759841930561976, 41.68732368324888, 63.49505851749798, 10.849033136096399, 140.7401297226519, 129.31816477713693, 49.64104181373313, 163.90264350555898, 13.27796242327715, 18.501770133010062, 15.868426898914596, 21.685849114169475, 74.34355479932032, 48.75931040076187, 138.25755768401746, 62.276996983948706, 10.849077580363746, 12.71923815944616, 10.1290125362118, 64.59557667310327, 20.09550964878337, 9.560873967689686, 76.4696256449377, 193.45105251202895, 15.481617890191405, 57.56800821432007, 35.530421836332, 15.190170279384677, 59.824205405893686, 31.562896336610798, 49.21274128224382, 31.66141173020597, 7.396333953397821, 5.620079643105862, 14.66628967649676, 5.9231730762571635, 20.573817903908818, 16.18920449668167, 65.89582973870412, 185.48492791473151, 84.49222084214995, 16.728562387186223, 57.23326648950417, 78.82089468992102, 40.59643191788348, 43.440922268952136, 27.34352086093349, 29.991190239590587, 11.573671004533853, 20.882962582001937, 13.056121495256068, 37.805271012160055, 138.44837463262388, 22.213583873269688, 77.47217355629675, 19.900356524687485, 41.505964591386046, 9.471198423112105, 21.872190826025975, 8.37972423830408, 83.95465533454004, 59.9524916787558, 12.749948785506719, 40.01516992811964, 13.331107960936368, 15.833014589482321, 10.502731034507443, 26.032682671905334, 46.975347610861554, 11.348247765068418, 56.678270162642804, 16.424660818212104, 7.273002182251246, 14.383495704190263, 58.193470947098234, 71.43753962794172, 10.453315837687922, 25.729882107827788, 35.40960462849483, 151.80167917284786, 12.612202814640156, 5.236860633897304, 20.323807093929787, 17.57828501394434, 34.26573817249729, 86.74770532286973, 40.71767027358645, 121.86136998643158, 6.950555758348521, 24.86823617526958, 97.38511497803665, 7.712626662070615, 11.84289496167218, 23.565212056450353, 53.87803828170756, 76.91367338884764, 23.66444020144201, 94.6291353185768, 27.08060825860158, 105.06579994151346, 41.309789382633305, 25.860919440339394, 50.24353260376519, 84.02573253341625, 55.12921831829405, 69.88839046839934, 6.578915467747976, 10.740120633685095, 6.0329382766176165, 66.46384909063265, 6.943291382755483, 72.37597857636943, 8.511236253081575, 50.436751143620064, 5.795429099873187, 25.027156334090705, 8.524865513951738, 58.96155404706145, 124.39115795455304, 22.73788818788161, 50.013033686373994, 100.53693465669194, 18.69560981345768, 68.91747046967637, 11.535203659108209, 83.88245109708475, 6.986161513469215, 9.857179174114087, 36.81342938949132, 20.49833056353841, 113.35469514631174, 5.670676325793412, 8.389893999599265, 13.424101822737011, 51.37913556350311, 12.245610218591478, 35.61078816759954, 65.53999414975809, 20.093443507817515, 7.147629856600044, 78.93949113186696, 23.14467439939056, 102.75192502114255, 71.83351439868812, 91.07295523821246, 71.94401846068826, 69.05556980330441, 99.85134030054027, 72.6519890652562, 12.38166489264734, 7.8948455944351625, 49.12409199165147, 96.49558959493477, 15.609659485847443, 9.48333500636955, 70.5928487909477, 10.350552413370771, 83.53454620953784, 52.43675048167042, 23.36264821199564, 5.246354464631609, 18.361408426325163, 23.97251631806029, 67.39280685963372, 6.004884457882365, 20.555195780616863, 6.535304199675603, 5.511038249765479, 48.213055606178294, 10.333142944682995, 6.1174387787215965, 124.32718281663071, 32.204921636753475, 41.1412099324687, 16.766876967881252, 27.753936476491543, 30.980034362785688, 18.350189666170156, 14.694489500437223, 34.92152772771731, 68.21129752470361, 53.319528620205865, 16.56340667781403, 21.38066276484961, 57.17268223665347, 113.00281497913082, 26.485759121687458, 10.980359904071179, 27.889050584475044, 106.92806818527407, 7.546114683034098, 33.51564269501064, 12.487616292544285, 12.76127230074825, 31.21325347923654, 14.779057001784293, 5.195764135464444, 5.1989976580296, 39.48064853415634, 45.89646413265403, 76.40316857889377, 10.10511819600557, 20.375164832116354, 136.82800830749233, 103.5808254864415, 9.056165337955175, 16.27205798286726, 24.14913386676445, 113.28556457191749, 8.666682794726125, 17.86042531874938, 13.60767390876785, 25.561869820896796, 20.009643208476852, 49.3817036790487, 63.326061792531696, 151.83708654082, 17.29004869311367, 38.29610364951408, 27.091945066063488, 6.506230585972285, 59.83305397229082, 12.667813468963335, 49.51191845735881, 19.446685918530438, 15.425332059855311, 16.28857581177603, 120.55847791156972, 26.984926300035486, 19.126346858945865, 15.514394623268997, 6.050720625207667, 34.833602302252594, 17.90839350901766, 26.465206735557814, 30.139556721650372, 62.7411978495907, 94.71314096781381, 11.675302249865956, 46.89444335980717, 9.44811100878654, 25.109071277287867, 110.28298679090233, 15.503149677751075, 37.689171555353646, 269.8607405618853, 67.9873811451102, 16.680791365641095, 29.845539701494047, 58.56397736448602, 14.319204614983656, 53.32100339351986, 91.00973926500387, 15.01735634317625, 6.505690037330844, 49.04195410358312, 39.8156460886416, 29.656496829728045, 31.20668958259077, 9.236921336863517, 165.29965799361787, 30.756759844157216, 47.92713274060102, 37.25096536475933, 11.260212671532809, 6.790450118133947, 25.888975280321525, 145.5080220446233, 8.709046329717182, 11.376076253809357, 21.416621121240436, 119.3062168314056, 24.020642939807292, 13.300761987737785, 40.14397325234101, 38.677441961783416, 5.395382531830979, 46.333929381805206, 69.18677699972179, 6.7615800754288555, 26.462299727075315, 88.7824763405381, 20.514321910451258, 11.693970348874146, 49.4582509048219, 108.64635888886937, 6.006421797843645, 15.067554393128422, 13.644805349528108, 33.98254217837123, 50.7367226005037, 18.099523831298477, 21.08319643659852, 34.611691709044756, 24.324866384609226, 19.03557846212806, 68.26156339124182, 72.50130803830582, 43.03438816698064, 10.913432949400798, 16.13739547898208, 49.60815560409172, 8.957498792940704, 32.61542087886828, 17.989305818916662, 16.437140023482605, 11.740759102806955, 22.676930983242855, 127.55668467897786, 47.86284435157674, 150.90112968316902, 13.15326962397049, 38.53252873098315, 9.508036490526417, 51.605626277647076, 10.39957338432964, 7.068579966136215, 58.20900320762118, 24.992698931302577, 119.91349728366409, 15.990002420699453, 42.08245659974247, 23.532856933795568, 117.18841900186035, 92.20104323938455, 17.166510033046045, 6.547842489784401, 49.5211709550045, 14.906849249642097, 21.371302723158095, 11.330506240234909, 30.66517654594317, 35.72717575061263, 17.78483015537582, 80.36592813572422, 126.83809945218661, 14.133401133320476, 169.8153744124487, 43.1382317664031, 66.24464484502602, 23.038692933478323, 27.38042840705441, 42.07823136249184, 76.35220069117922, 31.036020679038646, 80.23301053889246, 26.615251525979485, 73.14548288906826, 64.80428060246547, 27.099714369963507, 22.004168809026503, 95.94030790179838, 76.66453988171908, 19.86151046047081, 16.549794459264653, 25.500661992249714, 10.962334005306463, 20.735723718817148, 9.803473601420542, 10.33581402985839, 103.41872496320946, 12.859459446949565, 8.289068741156967, 15.18978917159739, 92.44302808133921, 21.47633668114026, 16.783841175908826, 9.810495736152637, 86.38638543259805, 60.13966545971084, 82.06698509715399, 77.364496386774, 15.96579432853259, 12.482267539652968, 44.17807785510699, 13.867938746607965, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2026455.8456080677, 2361374.9535060204, 2362272.200320935, 2418310.4803910004, 2437397.164296221, 2441223.233190988, 2455632.7422125316, 2471703.105028092, 2471967.4755774867, 2500739.2942514676, 2527347.357642588, 2544590.8512441143, 2552850.9081802364, 2570257.8125, 2570260.8792490116, 2589698.728365965, 2638486.304285793, 2645560.9375, 2647719.4993255623, 2658424.9848451307, 2677406.3172409767, 2684224.394279855, 2749210.9375, 2749536.8970785816, 2760928.3853838523, 2761967.1875, 2808126.3314968063, 2808617.2124191658, 2829812.383118915, 2838707.3346652207, 2844401.430815456, 2846987.8795383, 2890337.22259261, 2913994.8369487626, 2987478.125, 2996910.081366824, 3001070.1907543084, 3039178.125, 3046450.0772042233, 3046995.3125, 3047036.732152476, 3083958.5513868122, 3083964.8699654313, 3103089.343230247, 3116597.8749075104, 3151073.775960992, 3157301.2366170953, 3158070.7186325714, 3176821.1642179047, 3260309.375, 3263680.8532323353, 3274684.174212237, 3279705.079533824, 3280411.292030699, 3300936.2805238008, 3313807.361689792, 3314730.740503156, 3322527.803435019, 3330597.9060010193, 3334837.5, 3376808.185434945, 3380625.585894415, 3430592.2197575076, 3437439.184309538, 3438933.810991443, 3439660.4399984, 3439903.7316513117, 3443435.301453109, 3443741.482949531, 3448088.7663258435, 3456071.2095493274, 3456370.3125, 3484784.4454133483, 3494325.495730551, 3499101.0437337733, 3499852.6308134366, 3499959.4742477955, 3511548.4375, 3513364.651107095, 3513424.9882879737, 3546279.9411676447, 3546540.453348952, 3547431.3142765136, 3574112.981523615, 3574308.872349341, 3603253.3559198915, 3615360.064356614, 3639511.793041712, 3645706.396367228, 3649676.539964828, 3652654.0342472377, 3655370.3125, 3655664.685621836, 3656365.9861336923, 3659408.9998704344, 4800515.625, 5001018.4939798955, 5040489.0625, 5166387.106639041, 5176829.434717454, 5232532.130498648, 5284392.664688296, 5312247.201896965, 5371128.125, 5399139.0625, 5413843.75, 5415115.238707487, 5415169.411213063, 5415427.520654505, 5420692.1875, 5421368.75, 5421451.89590958, 5421564.475750988, 5421925.0, 5422811.576337117, 5422878.263101298, 5430435.876445758, 5436979.792248728, 5441285.430633029, 5442431.17861093, 5473931.152108496, 5504205.751017337, 5585247.327549388, 5585407.441014807, 5587996.533112423, 5594132.525826101, 5598326.47992387, 5604142.661813054, 5605441.194302148, 5605448.125151545, 5607051.5625, 5607090.625, 5607357.2183582615, 5607365.316442285, 5608170.3125, 5608207.52035351, 5608271.875, 5610495.408365605, 5612050.0, 5612423.632695404, 5613890.625, 5617775.0, 5620707.017206574, 5622100.7640054, 5648283.362254042, 5661960.601446051, 5681990.716081961, 5682017.301331026, 5686389.915369564, 5689772.338872404, 5694429.175005436, 5723352.207774766, 5723815.632784198, 5723849.413771117, 5725536.7573266225, 5727162.939457005, 5738743.65109123, 5744716.8987019695, 5745611.954975154, 5745885.9375, 5747702.903806783, 5748303.125, 5748327.868115984, 5748505.2343216045, 5750847.006855379, 5752481.992036193, 5757806.613051035, 5759634.016952106, 5760125.342205478, 5760868.3775957795, 5760874.128766123, 5763635.9375, 5765339.900753337, 5768449.528731331, 5768497.141443779, 5774106.296997841, 5774803.115042458, 5776821.577098801, 5781617.1875, 5789810.722487424, 5792553.182675421, 5793418.271176183, 5793712.5, 5794005.309463967, 5795081.067214208, 5795130.119073913, 5796065.995623803, 5796130.607719233, 5796270.3125, 5796377.679384346, 5796737.5, 5797199.767656951, 5797283.105235974, 5797302.760381066, 5797508.614983307, 5797936.381382206, 5798003.246402345, 5798025.0, 5798474.813982248, 5798559.372953899, 5798610.9375, 5798665.625, 5798776.5625, 5798878.8320853915, 5798895.144886801, 5798955.304482237, 5798965.222953953, 5798969.255604334, 5799057.473156256, 5799070.188334332, 5799118.040587618, 5799164.031663738, 5799641.535369509, 5799730.82051654, 5799762.027779492, 5799863.547146064, 5799969.149539215, 5800051.5625, 5800458.486938187, 5800769.769537984, 5800893.665678798, 5801307.254979651, 5801373.042096031, 5801753.257347383, 5801775.183124728, 5801931.967595102, 5804362.421555589, 5804834.206056404, 5805177.935415348, 5805274.9329010025, 5806054.975264619, 5806082.448930526, 5806423.4375, 5806838.183576176, 5806950.380310461, 5807062.5, 5808072.24972759, 5808085.252068794, 5808117.1875, 5808464.0625, 5808613.467018958, 5809337.466551398, 5809710.850720234, 5810042.827710288, 5810351.5625, 5810996.870752668, 5811773.091479234, 5811852.903631699, 5812315.625, 5812701.556469771, 5813043.640404838, 5813562.767033694, 5813692.063847876, 5817012.5, 5817210.1431463165, 5818135.157973692, 5818173.4375, 5819292.480145332, 5819346.730448722, 5819863.4373471085, 5820784.324167171, 5820897.638672642, 5820906.235921738, 5820945.3125, 5821382.624584968, 5822291.810705032, 5822320.3125, 5822693.002031679, 5822853.125, 5822858.965129413, 5823020.1573200235, 5823335.8024331005, 5824259.813688985, 5825205.634947464, 5825259.5398267135, 5825432.525313503, 5826245.846949891, 5826382.1302116485, 5826807.8125, 5826979.6875, 5828549.0912735695, 5828842.008363178, 5829270.2299927715, 5830898.989650919, 5831252.354066336, 5832691.927106967, 5834271.875, 5835901.181500979, 5836714.0625, 5837689.649792807, 5837812.400421058, 5837884.936138422, 5838786.519238592, 5838796.749723181, 5838876.318138843, 5840203.125, 5841847.001693769, 5842301.71747106, 5842582.11819103, 5843997.985586501, 5845093.522943102, 5846344.79103017, 5846345.104476523, 5848148.4375, 5848290.80641947, 5849952.399603769, 5850026.5625, 5851131.606289588, 5855104.6875, 5855322.110590184, 5856826.485677482, 5857184.351384229, 5857583.017406125, 5858819.74023319, 5859075.817376174, 5859826.255046249, 5860484.066792197, 5860570.3125, 5860744.37241762, 5861020.047159306, 5861186.449020965, 5861195.3125, 5861608.758153994, 5861662.14580031, 5862070.973993571, 5862092.536829073, 5862304.219447138, 5862327.740373181, 5862500.277334445, 5862521.875, 5862612.5, 5862635.103866865, 5862925.061428546, 5863563.616783249, 5863649.952671683, 5863765.625, 5863839.93011407, 5863983.885273416, 5864635.808764001, 5865550.662222315, 5865767.1875, 5866546.249374738, 5867060.299606072, 5867280.984215762, 5868217.1875, 5868296.289122925, 5868850.0, 5869686.665065977, 5869791.880803826, 5869848.4375, 5870470.3125, 5870698.078424263, 5871660.9375, 5871723.006047935, 5872655.764975988, 5872856.669485834, 5874145.769668554, 5874152.525811267, 5877646.172327514, 5877677.404595549, 5878801.428686543, 5879058.968944126, 5879752.663366219, 5880015.625, 5880060.9375, 5880812.068271251, 5880843.75, 5881346.875, 5881389.60567463, 5881557.537908779, 5881584.851082089, 5882276.515878186, 5882288.892720507, 5882625.929708337, 5883115.366813713, 5883157.8125, 5883351.236809184, 5883851.5625, 5883867.459888633, 5884222.314579598, 5885239.0625, 5885250.150295519, 5885270.971033342, 5885484.651606124, 5885533.544196565, 5886010.9375, 5887319.478882596, 5887571.875, 5887797.737492392, 5888078.644378307, 5888469.851061484, 5889168.910079917, 5889833.723207136, 5890020.007684121, 5890022.797509535, 5890076.572219372, 5890425.469218981, 5890511.697904991, 5890527.266607913, 5891205.557352547, 5891526.20964686, 5891621.83878372, 5892175.0, 5892353.125, 5892450.390133842, 5892675.65616635, 5892761.076516864, 5893273.4375, 5893752.745806561, 5894180.826397537, 5894277.934131082, 5894685.9375, 5895075.396073964, 5895313.097884234, 5896552.3522748845, 5896879.6875, 5897160.513418248, 5897271.5569480015, 5898696.875, 5899192.557400469, 5899235.359322503, 5900348.506784509, 5901006.211038191, 5901044.199253534, 5901864.777971891, 5901958.774998389, 5901998.533660974, 5902206.18031236, 5902290.918695794, 5902620.797294494, 5903079.245426995, 5903190.206173364, 5903363.388567906, 5903537.5, 5905321.611026831, 5905321.908461391, 5906240.815955799, 5906737.846087738, 5907595.008070869, 5908591.280457076, 5908609.192725811, 5908938.710067064, 5910166.21302975, 5910872.464074096, 5910946.57393792, 5911200.0, 5912434.720681007, 5915227.116713303, 5915949.512579476, 5916685.116388489, 5916710.9375, 5917012.243541321, 5918060.9375, 5918487.699968645, 5919405.798255105, 5919705.531110811, 5920590.282934387, 5922008.7079677405, 5922710.817678295, 5923917.883898522, 5924845.768501954, 5925894.815770559, 5928071.875, 5929377.0864690505, 5929758.995551755, 5930168.354935385, 5931204.6875, 5931464.809878368, 5931703.052343797, 5931719.873496703, 5931920.2894809935, 5932455.5905021755, 5934325.652546072, 5934409.375, 5934498.182112553, 5935242.989557142, 5935468.75, 5935703.365895669, 5937303.40599742, 5937758.049399934, 5937844.089938167, 5938474.998017654, 5938872.301755357, 5939291.102865273, 5941023.91312143, 5941790.0951614855, 5941962.364065261, 5944071.782246535, 5944075.508261286, 5944181.707476841, 5944857.636142522, 5945045.3125, 5946705.993077971, 5947621.875, 5947968.190152936, 5949144.642897341, 5949519.896894002, 5953241.816456553, 5954883.319598505, 5956090.625, 5957259.79848581, 5957462.060967241, 5958124.5557944365, 5960323.032196887, 5960894.355685106, 5960956.017966983, 5961667.620112162, 5962319.85782257, 5962978.125, 5963134.907796404, 5963698.867041273, 5963850.914976877, 5964013.496427406, 5964113.771526755, 5964329.476305785, 5964840.918386045, 5964970.299360135, 5965024.433929004, 5965077.786307821, 5965417.360471709, 5965532.220260356, 5965633.665304173, 5965884.375, 5966930.081183209, 5968064.306804422, 5968351.686820409, 5968746.875, 5969164.0625, 5969361.717131103, 5969455.702193142, 5970166.778323863, 5970854.165330588, 5971636.135113193, 5971901.5625, 5972458.557703616, 5972472.81051371, 5972533.810890495, 5972598.123919385, 5972798.846480317, 5972855.980450956, 5973252.93578954, 5973336.931257145, 5973670.170745988, 5973772.238589148, 5974405.025059403, 5974519.7199240215, 5974687.5, 5974977.817975063, 5975943.525578104, 5976511.97466621, 5976873.052758163, 5976983.817271054, 5977357.8125, 5977358.543873929, 5977580.474310035, 5977626.338862366, 5977724.078319744, 5977887.5, 5977946.3444081815, 5978215.625, 5978409.34815051, 5978741.218845032, 5978767.8518964, 5980092.1875, 5980229.788016538, 5980401.004311693, 5980828.125, 5981030.432694233, 5981182.8125, 5981201.940639591, 5981331.010009667, 5981351.857153143, 5981638.5190056, 5981675.0, 5981911.269845308, 5982032.68232122, 5982095.3125, 5982210.377212518, 5982945.559061598, 5983147.7495738985, 5983199.224445647, 5983244.661112979, 5983290.967301917, 5983360.42823076, 5983395.4893064955, 5983395.579338136, 5983551.744982327, 5983568.587734826, 5983596.1305171745, 5983603.125, 5983656.6611062065, 5983666.748615413, 5983734.375, 5984051.686389794, 5984239.839640216, 5984240.625, 5984307.644535534, 5984378.125, 5984459.195885227, 5984660.642096224, 5984689.058733637, 5984781.25, 5984929.6875, 5984937.5, 5985037.820755029, 5985064.31577547, 5985161.353260408, 5985209.171576229, 5985245.3125, 5985327.372904437, 5985444.249024883, 5985568.75, 5985600.714547518, 5985609.99772812, 5985939.010483641, 5986210.9375, 5986220.847359944, 5986227.097574093, 5986267.261047581, 5986400.0, 5986419.030258973, 5986480.464675634, 5986512.991780535, 5986518.75, 5986541.962595561, 5986618.75, 5986709.118240141, 5986726.3765844265, 5986775.159427421, 5986880.165666111, 5986992.1875, 5987000.833735556, 5987086.982348909, 5987089.761809945, 5987120.53614084, 5987144.831607497, 5987160.15041282, 5987334.005867085, 5987441.86310166, 5987476.5625, 5987593.5641153455, 5987628.949899172, 5987708.625909371, 5987729.503150633, 5987746.222473296, 5987823.696964588, 5987868.9677440245, 5987894.623673147, 5987914.197336691, 5987939.0625, 5987946.875, 5987968.302184937, 5987999.781018667, 5988011.959452316, 5988026.325300333, 5988029.345968937, 5988065.014261035, 5988084.483583977, 5988099.436519868, 5988121.686697651, 5988149.402629017, 5988185.655756231, 5988226.5625, 5988386.18325598, 5988398.4375, 5988426.963741709, 5988500.0, 5988521.285290529, 5988558.941492124, 5988583.970897227, 5988615.127718249, 5988655.83620401, 5988659.642732904, 5988763.644974099, 5988896.273392067, 5988937.5, 5989027.558227827, 5989049.569314273, 5989224.424777355, 5989241.511495619, 5989242.1875, 5989267.34832821, 5989340.162180507, 5989368.922084348, 5989371.875, 5989407.8125, 5989450.837747563, 5989539.0625, 5989551.791282342, 5989629.94458033, 5989677.684635074, 5989708.631072276, 5989821.875, 5989886.074157457, 5989913.882963599, 5989987.84137946, 5990000.546770925, 5990077.434984088, 5990120.980006765, 5990293.75, 5990341.70847784, 5990342.036733913, 5990404.403496441, 5990410.9375, 5990436.716873504, 5990455.951268561, 5990457.407059957, 5990694.304037479, 5990728.125, 5990757.8125, 5990765.428106611, 5990889.0625, 5990947.744883394, 5991029.47022304, 5991115.625, 5991269.042645332, 5991294.163961304, 5991433.7536828015, 5991462.5, 5991470.3155458635, 5991616.204064092, 5991634.454648815, 5991635.860017888, 5991680.921622783, 5991718.951655586, 5991719.293655454, 5991778.125, 5991921.078986025, 5992050.0, 5992074.581860508, 5992311.499282648, 5992357.549526296, 5992501.01481506, 5992555.483722485, 5992647.713429845, 5992715.625, 5992975.401971978, 5993381.25, 5993460.683591779, 5993474.723880672, 5993650.424970832, 5993892.008339667, 5993918.118146023, 5994006.749669934, 5994012.5, 5994068.689421948, 5994257.249177184, 5994265.12692388, 5994603.370946425, 5994791.81118133, 5994872.896556216, 5995599.000092213, 5995951.297835155, 5996102.519141214, 5996191.793724069, 5996243.167727183, 5996908.002893608, 5997329.760784285, 5997456.25, 5997824.05161238, 5998290.505717173, 5998612.686066962, 5998635.235446115, 5998870.411158922, 5999190.625, 5999455.901024293, 5999809.375, 5999887.5, 6000010.9375, 6000211.122239958, 6000448.4375, 6000514.438046187, 6000584.775576839, 6000733.48970379, 6001013.240182362, 6001808.352180785, 6002261.631596241, 6002262.6649074145, 6002622.04937865, 6002766.153124126, 6002821.313552417, 6002911.77082255, 6002964.482500425, 6003300.403659989, 6003312.543145902, 6003331.928462695, 6003360.772191991, 6003551.000203114, 6003602.284880802, 6003710.86555755, 6003748.738318076, 6003822.974807838, 6003875.0, 6003936.92430864, 6004054.964987418, 6004164.006906349, 6004176.384423964, 6004276.5625, 6004280.096081102, 6004301.329553262, 6004347.1568898605, 6004522.551778404, 6004629.322085481, 6004853.344737565, 6004919.868551333, 6005079.6875, 6005386.480641862, 6005614.113682216, 6006104.6875, 6006185.298824218, 6006267.075175615, 6006298.341141401, 6006629.082379453, 6006723.4375, 6006809.214252557, 6006865.625, 6006878.849876979, 6007100.594529506, 6007292.1875, 6007621.831715662, 6007679.384245, 6007681.075452139, 6007731.1746031465, 6007767.015258335, 6007810.9375, 6007960.167309945, 6008276.345212599, 6008396.245580508, 6008413.8520455025, 6008794.968006686, 6009083.498169915, 6009391.918061544, 6010103.125, 6010505.343191386, 6010542.318635869, 6010580.849706654, 6010726.140444669, 6010822.774715261, 6010860.9375, 6010878.125, 6011366.763319072, 6011511.748136937, 6011575.522278973, 6011919.2924378645, 6011982.933517391, 6012085.877816398, 6012415.925879536, 6012759.375, 6012763.329573739, 6012828.246398165, 6013040.826085264, 6013340.625, 6014071.792037, 6014827.34977749, 6014834.517599951, 6014841.820222995, 6014878.125, 6014983.420736865, 6015219.622183871, 6015220.274228385, 6015568.75, 6015908.608736934, 6016150.324194265, 6016260.9375, 6016636.072373593, 6016652.924385197, 6017038.969419152, 6017056.611903903, 6017135.9375, 6017627.53455389, 6017667.1875, 6018056.64202706, 6018122.835545889, 6018375.0, 6019159.201553253, 6020231.25, 6020259.87266044, 6020409.394758021, 6020895.430128827, 6022125.0, 6022161.099348112, 6022723.4375, 6022754.8389817625, 6022807.698606436, 6022864.0625, 6023048.37256437, 6023325.888718995, 6023492.069182215, 6023973.520650782, 6024090.75847743, 6024222.818794209, 6024307.230743833, 6024466.346709027, 6024492.340792901, 6024788.554799003, 6024963.154164249, 6025129.408339874, 6025226.0532420445, 6025320.123613577, 6025743.75, 6025767.106396096, 6025850.673545739, 6026127.891560879, 6026337.490342609, 6026397.6159750065, 6026555.205939221, 6026932.586584772, 6026951.896895778, 6027179.6875, 6027262.5, 6027428.863660548, 6027706.282680953, 6027805.862402384, 6027992.1827792665, 6028471.529124935, 6028522.1381703615, 6028643.138446329, 6028865.625, 6029022.02251828, 6029139.711114574, 6029204.6875, 6029300.879110271, 6029326.564068364, 6029374.8584481245, 6029402.791557526, 6029415.625, 6029474.522021536, 6029500.0, 6029720.757444152, 6029853.089884482, 6029989.42223829, 6030001.923246425, 6030130.740286538, 6030237.5, 6030323.103777787, 6030550.998178243, 6030647.549005894, 6030667.389261297, 6030670.311163705, 6030744.790720118, 6030746.669975027, 6030777.885787534, 6030795.198785003, 6030887.5, 6030887.750334689, 6031107.8125, 6031353.306929014, 6031478.125, 6031480.664432664, 6031545.795020223, 6031692.564399897, 6031699.4016160425, 6031726.752934362, 6031794.800203078, 6032003.250982745, 6032138.6251277905, 6032165.5609135935, 6032242.638392659, 6032247.312205374, 6032462.905004686, 6032557.582995102, 6032633.499638186, 6032699.917006133, 6032775.252590613, 6032796.4752309, 6032933.503825198, 6032967.395190232, 6033013.855709061, 6033051.057345779, 6033056.998240627, 6033114.107287439, 6033132.8125, 6033146.875, 6033317.943349664, 6033372.962775555, 6033404.6875, 6033550.0, 6033974.319251849, 6034105.053888952, 6034246.700667808, 6034260.829059018, 6034297.858070192, 6034366.135088102, 6034371.301499391, 6034393.75, 6034466.090869953, 6034598.442208333, 6034624.156326175, 6034662.893381462, 6034798.920555579, 6034805.099316269, 6034920.829511688, 6034942.1875, 6034948.412651765, 6034948.4375, 6034954.753633181, 6035249.1873866115, 6035291.347500013, 6035335.9375, 6035344.999111429, ...], [28.35806250554142, 8.262142619026168, 40.23579550553045, 47.7112529150077, 9.588615666133348, 29.137534996221, 27.207441879293565, 51.302637691304845, 49.752038868211635, 5.959845177425398, 17.769590249415486, 49.65295576862945, 5.884379410643866, 50.17553962993148, 8.256011585377603, 59.64969734783417, 31.66809331091094, 40.51365778278069, 26.67832030813567, 28.228417973378356, 50.87855794896607, 20.499557944099774, 36.0351226419406, 13.967521153222336, 73.9380788039802, 34.78082097411913, 7.521771274743853, 8.299799104037866, 26.41025717364762, 50.0753871255739, 6.250703111584808, 37.84929305284885, 34.536653679976425, 8.050149475695363, 45.851088414983394, 12.446148626458829, 7.559789967638422, 88.52868977790365, 6.096164742549264, 40.742807002699486, 18.562178534087938, 18.77611494879546, 10.122261234531209, 6.820876942617438, 6.031485364507779, 7.73041897970737, 39.00325619150548, 7.757044691563382, 38.0955240183702, 37.02955768742927, 55.71818918339392, 9.16720671322558, 5.413675621253402, 5.412202594624003, 75.71935920185446, 27.45200769875128, 131.68531717761232, 53.462839822285154, 111.7943641266568, 75.13549660518363, 26.60565281128686, 25.452772611452854, 7.129957070591974, 5.100861220091895, 61.575500006130625, 34.591615272053204, 13.24174835151258, 67.70683756210543, 29.960611926693304, 5.597866541080413, 19.987480589931643, 48.362228176570575, 26.10347880703445, 27.04353766243282, 20.620521578320933, 21.55128905139117, 9.416756782233909, 52.44957837570981, 60.639805160665276, 6.265719770519158, 11.548789779270459, 18.481706482379252, 39.876057273979214, 7.787203949160003, 62.818755315773736, 30.713666412777098, 22.650927311531674, 17.798630844046944, 5.101347924351606, 73.87350417307785, 33.4066117610895, 94.47087931319507, 5.995572063484824, 16.523285523693364, 68.40996130330035, 29.387104855535355, 10.749798967864715, 121.64402233357947, 22.627200002101603, 62.58370047001906, 15.557272423235299, 5.850152466482212, 97.78585157587185, 45.768034470373905, 66.28730201685337, 49.49988831980551, 34.26906539808914, 38.22331933702049, 27.358116407598686, 33.48263417143982, 54.59484221267319, 100.45128408161689, 16.791379222709498, 56.7072116846083, 8.655998615492676, 14.910005407157414, 91.78019872511602, 33.906219722196006, 71.2749061281282, 6.74933749653312, 26.72835000836187, 136.02164148697383, 41.9005020206701, 22.87863549254998, 29.206028082283233, 36.64718205246289, 91.92698848220958, 9.767474498655401, 37.95266664006143, 13.871142233440976, 85.61854963273605, 30.436323501012627, 68.44186659148491, 65.02228807357895, 41.08103842188098, 10.699832971688402, 32.63752116961977, 100.18178057535987, 35.22897466288521, 23.657974371069535, 73.50641596005497, 78.21411319232486, 8.738727858177212, 50.924409392792484, 5.308376296453393, 21.339808053549824, 11.273122113840447, 12.647051657006372, 7.365272259199053, 17.063316954308103, 81.18721022153062, 19.885673722004857, 78.5589308757012, 84.24959221397899, 26.231145984817665, 6.558259529766156, 26.711077654118018, 23.80062939219701, 96.32804033632135, 37.442295236319765, 10.798716147517503, 32.58801435253014, 46.95786335952268, 7.813758697319444, 5.5395143041957695, 7.3312006403559575, 9.658484836713484, 9.045954589091327, 11.70832589190418, 103.49710821297121, 32.52851031794656, 34.5395658524093, 87.16403177271506, 166.1139829859435, 13.245513807071585, 15.123720959234609, 28.329386388848924, 17.506098071437272, 46.8639586732779, 24.900637203119555, 32.162379583346734, 44.73469518471057, 43.83370738168906, 12.684326636579623, 25.37310888854394, 7.767163080405918, 68.42996688704433, 23.407281704207605, 90.18444566537707, 10.495972269803639, 76.8481814004826, 41.81592970145187, 76.95705153954607, 200.43216366246494, 25.28089827691432, 12.016278307363077, 15.464569096838641, 58.15282794010915, 155.368662390729, 63.49441692843377, 128.35190380764763, 38.93141717309475, 70.87828219864471, 134.02307144761903, 70.07574239117461, 13.903363559999686, 20.038996278523463, 6.868826628366073, 104.62600122610176, 63.06902718635957, 12.786911064946208, 27.928861279069565, 27.047901304064105, 5.443629711389855, 19.774944704039584, 21.341291786081847, 11.815455093202393, 77.63031499409306, 12.375602934241154, 55.252243576902785, 14.62956994946684, 8.900642155812308, 10.561218046203656, 16.86813431526162, 15.688670139177843, 95.14694843597282, 8.245525711538974, 20.090892868103353, 25.27163365198806, 7.1039243748769625, 63.181705908654415, 27.5140152227689, 32.532523512151236, 7.313536237365419, 7.7468357142030175, 83.50844025860903, 16.592094272200598, 7.95457423646199, 105.98734104243404, 48.781143096963746, 85.03064101754816, 71.44240694233807, 33.82403774428764, 66.21988407075844, 99.00102123900942, 11.12107443410201, 87.50610559526847, 14.159939448842882, 40.522309041593786, 50.10592949880459, 37.024181053060154, 16.067369060995663, 22.015612635425338, 37.99180268095165, 10.07799476497847, 5.223839454960724, 37.456943499693615, 7.712626662070615, 111.82905422895215, 12.995870881588294, 52.93501053691035, 6.368757902080746, 6.086636423938532, 76.18427038882447, 77.60087314241926, 10.585751293028505, 69.6109716500419, 19.331184065283928, 55.8448702164398, 22.441911132076186, 64.12946818309253, 26.113986198267412, 16.926563525553707, 101.71140821657634, 7.663960793179143, 13.52388386016613, 5.559593758296061, 12.853068181382033, 34.076071616187626, 47.6062096513606, 196.0252589509919, 49.054089966600905, 51.04011863135155, 35.85900531832871, 88.07956317514643, 18.817968881795533, 114.84345333107046, 31.532158175545543, 42.794178792524306, 17.778898407803155, 37.57154637947701, 17.62061720002017, 12.177568198931477, 8.221421573700692, 67.28193525325634, 46.58451457636271, 11.331685183005714, 43.320353248496886, 96.40252957128051, 7.007517104331485, 24.729460049790365, 6.663681008846352, 77.55860969600752, 80.57644623926345, 6.290394775572706, 59.74706077240552, 62.76656911133341, 16.49895228263927, 36.23116315354959, 11.517061169429887, 47.36056667631481, 28.065853539478496, 15.784604668189628, 6.978729071077025, 38.67111275287906, 66.5344441887421, 92.84007566054353, 92.57705683962422, 12.263256618728972, 15.607643681124014, 27.15108283945203, 78.95607621636347, 26.476447823864532, 10.61580106675763, 7.861394973054968, 7.216410582138413, 75.1397913753768, 21.754465853393874, 16.115606907327457, 42.14503126102717, 39.01939217349067, 18.705657455185463, 9.383890269578169, 62.854733549326156, 34.621684870658754, 69.61206877505332, 13.998813868677516, 8.94901222826422, 61.41790755910659, 30.66436068048105, 30.573605168369237, 20.325226313460327, 7.387741338820398, 154.56233804840903, 116.83419575326248, 13.096845530113763, 46.525911241374274, 91.11988434663013, 56.14061605423655, 61.41811453296928, 34.034290443895294, 40.72572256494303, 46.39024156241778, 109.48082221039205, 11.93053977620626, 7.2362676623150595, 5.84859935923643, 5.669656477403545, 27.38138422119282, 56.207680684223114, 6.074293466355187, 30.118183097106403, 258.51025242384134, 82.78316465008426, 32.76956616328496, 13.516996559888375, 33.21865263145689, 67.28399202212941, 13.611575773827948, 82.43764284070113, 82.32199687132552, 27.634806953634843, 53.59872719748897, 20.263379148634726, 15.152890741519013, 62.45018317996809, 23.42803188993095, 60.04815406874308, 52.11228025654981, 11.892136782588677, 61.967334555379644, 47.869628621010776, 7.306032832853241, 180.3755820087315, 103.50090666305339, 98.72957045925038, 35.28024166497492, 53.618571979358485, 19.70576926718908, 148.1556197310411, 18.462415102330397, 11.387493413176049, 53.661236321291796, 23.689419781412074, 7.974847485925069, 23.17561827253938, 58.837904509484986, 19.876931081813925, 18.534472824799018, 19.7649166995329, 13.74796079334755, 15.031764778557111, 66.85495763456306, 44.5468169201122, 16.671022026733166, 18.21433624047658, 67.00841221760581, 37.685546046428506, 6.220449957273622, 54.32887816794465, 84.14694911487572, 47.57032911978972, 8.507755332079773, 38.645525389339795, 7.345781699587894, 56.82184544895052, 31.28879148388018, 92.07827737954929, 81.49314509825614, 6.546683014313742, 5.8905877184437205, 9.390682390906063, 41.30376929703621, 147.43802259257654, 5.182366259511596, 13.060262575896706, 6.7828574196320375, 27.218080093051675, 9.592731964521105, 85.22981420860104, 54.445261418713926, 5.9037430153372, 20.915086916544386, 36.75498734098495, 47.273808282175224, 184.10692892231543, 71.16586247345107, 6.311937218754938, 23.694330046529565, 18.209708302446007, 43.27444000222042, 17.5666820052843, 9.883580055223419, 8.624758484950096, 25.81292514751454, 48.200427680778574, 5.301885877359541, 19.12494557916647, 72.90260609111164, 61.653044458606814, 91.90392596245516, 14.046503871150575, 39.38572536043463, 7.6772003960015835, 76.58396662762337, 179.52518167896517, 18.816097514565627, 10.223853377632356, 10.94544415542339, 56.63789577762462, 9.749231530805933, 5.778118558849786, 38.05760727637338, 29.092422255488323, 14.41223917553873, 13.622930539270785, 78.20141953318138, 8.72574301017211, 73.92877964072927, 28.93439599897942, 71.50975370955106, 20.03705477071739, 235.3207817176474, 45.97070554459541, 5.600070022721063, 10.116132000866157, 30.78359606381969, 11.526344098517281, 16.132856169372246, 7.691228146770972, 43.024449659083025, 8.285529306109497, 85.46787344838107, 7.785728202942051, 38.12506188251267, 22.13918804624518, 11.287820438336036, 41.04090979468176, 55.11967390983632, 17.847085053060596, 14.309383763976422, 35.02795675451842, 5.333194314590953, 48.10083794878433, 20.91616944659808, 19.95308855165171, 56.238297147270245, 34.233774432619015, 92.9537073899446, 42.62478163976994, 7.763939841014462, 111.12231783782497, 13.919848133785269, 32.456805922292546, 5.993946887608707, 28.8031578700966, 31.695816163559186, 29.787367600312173, 74.80773640233143, 12.076897557203408, 23.59769173469992, 20.137735176341582, 71.63803250545551, 5.124331870858295, 24.95550631180378, 6.823527255098785, 14.891661816564183, 5.032131906221716, 164.5188845173428, 19.38781620739853, 5.322029265889699, 12.786225152227773, 32.60521126302881, 57.30795551447111, 15.962314334306608, 63.551935415653574, 184.6948326336074, 67.7681292304608, 7.3426715683224435, 21.029098997014746, 31.18259183553567, 21.274762916158583, 9.504279319559114, 150.31888486966326, 26.94694714516111, 87.89911216765628, 20.876555775588713, 89.819431767649, 18.895308784232995, 24.14766279971747, 77.6506948525786, 56.80575474219091, 31.719387330599183, 15.332229146069388, 9.634126935782541, 32.07448427557961, 44.43244460141958, 9.084622237258777, 14.149963008290035, 10.395148930709764, 22.72544795208718, 20.935925167712774, 66.64048205350024, 12.502271913638198, 21.146547590540266, 51.85096639603103, 38.22094403573845, 75.34773083559337, 13.243035902456594, 56.724882852609205, 37.51650076577512, 17.819143783545154, 8.672221761233844, 67.98233720457655, 5.345377854855057, 34.74225316273249, 50.60218896355586, 62.74222009895956, 116.60375248167254, 16.609487084615726, 29.827109455357323, 16.19760982533414, 147.45681243642306, 143.967374261069, 11.690210499279148, 26.19283575399264, 60.51788411769887, 27.097942039718518, 69.6805929009652, 5.577087251880593, 8.751730868340683, 187.15280366790356, 13.52801229150762, 6.6659226785219, 11.41578970018426, 109.06912332540037, 67.17648836186507, 38.247279097296186, 34.86881889388088, 72.3466311620401, 6.848453234326219, 22.125221304173103, 36.79384751423405, 32.027463257137015, 12.60702242050739, 59.79215166436889, 23.761135826703303, 29.92172939699132, 59.98503109612437, 65.07384352142273, 25.722723591510317, 66.21914677781831, 45.10984240957616, 65.28279449259941, 6.829278108328533, 7.697485896423489, 23.750105650122542, 59.38443595959511, 29.613613737380238, 8.76728446394678, 48.35494620561222, 58.99631591019059, 29.763847683930962, 5.7475703999718695, 14.746885895739725, 47.0958291620995, 8.591234313633196, 90.68557519336562, 15.22944957456369, 43.03926401294842, 28.00695275534381, 18.31895329921424, 8.564966902588008, 61.823595282953434, 24.759841930561976, 41.68732368324888, 63.49505851749798, 10.849033136096399, 140.7401297226519, 129.31816477713693, 49.64104181373313, 163.90264350555898, 13.27796242327715, 18.501770133010062, 15.868426898914596, 21.685849114169475, 74.34355479932032, 48.75931040076187, 138.25755768401746, 62.276996983948706, 10.849077580363746, 12.71923815944616, 10.1290125362118, 64.59557667310327, 20.09550964878337, 9.560873967689686, 76.4696256449377, 193.45105251202895, 15.481617890191405, 57.56800821432007, 35.530421836332, 15.190170279384677, 59.824205405893686, 31.562896336610798, 49.21274128224382, 31.66141173020597, 7.396333953397821, 5.620079643105862, 14.66628967649676, 5.9231730762571635, 20.573817903908818, 16.18920449668167, 65.89582973870412, 185.48492791473151, 84.49222084214995, 16.728562387186223, 57.23326648950417, 78.82089468992102, 40.59643191788348, 43.440922268952136, 27.34352086093349, 29.991190239590587, 11.573671004533853, 20.882962582001937, 13.056121495256068, 37.805271012160055, 138.44837463262388, 22.213583873269688, 77.47217355629675, 19.900356524687485, 41.505964591386046, 9.471198423112105, 21.872190826025975, 8.37972423830408, 83.95465533454004, 59.9524916787558, 12.749948785506719, 40.01516992811964, 13.331107960936368, 15.833014589482321, 10.502731034507443, 26.032682671905334, 46.975347610861554, 11.348247765068418, 56.678270162642804, 16.424660818212104, 7.273002182251246, 14.383495704190263, 58.193470947098234, 71.43753962794172, 10.453315837687922, 25.729882107827788, 35.40960462849483, 151.80167917284786, 12.612202814640156, 5.236860633897304, 20.323807093929787, 17.57828501394434, 34.26573817249729, 86.74770532286973, 40.71767027358645, 121.86136998643158, 6.950555758348521, 24.86823617526958, 97.38511497803665, 7.712626662070615, 11.84289496167218, 23.565212056450353, 53.87803828170756, 76.91367338884764, 23.66444020144201, 94.6291353185768, 27.08060825860158, 105.06579994151346, 41.309789382633305, 25.860919440339394, 50.24353260376519, 84.02573253341625, 55.12921831829405, 69.88839046839934, 6.578915467747976, 10.740120633685095, 6.0329382766176165, 66.46384909063265, 6.943291382755483, 72.37597857636943, 8.511236253081575, 50.436751143620064, 5.795429099873187, 25.027156334090705, 8.524865513951738, 58.96155404706145, 124.39115795455304, 22.73788818788161, 50.013033686373994, 100.53693465669194, 18.69560981345768, 68.91747046967637, 11.535203659108209, 83.88245109708475, 6.986161513469215, 9.857179174114087, 36.81342938949132, 20.49833056353841, 113.35469514631174, 5.670676325793412, 8.389893999599265, 13.424101822737011, 51.37913556350311, 12.245610218591478, 35.61078816759954, 65.53999414975809, 20.093443507817515, 7.147629856600044, 78.93949113186696, 23.14467439939056, 102.75192502114255, 71.83351439868812, 91.07295523821246, 71.94401846068826, 69.05556980330441, 99.85134030054027, 72.6519890652562, 12.38166489264734, 7.8948455944351625, 49.12409199165147, 96.49558959493477, 15.609659485847443, 9.48333500636955, 70.5928487909477, 10.350552413370771, 83.53454620953784, 52.43675048167042, 23.36264821199564, 5.246354464631609, 18.361408426325163, 23.97251631806029, 67.39280685963372, 6.004884457882365, 20.555195780616863, 6.535304199675603, 5.511038249765479, 48.213055606178294, 10.333142944682995, 6.1174387787215965, 124.32718281663071, 32.204921636753475, 41.1412099324687, 16.766876967881252, 27.753936476491543, 30.980034362785688, 18.350189666170156, 14.694489500437223, 34.92152772771731, 68.21129752470361, 53.319528620205865, 16.56340667781403, 21.38066276484961, 57.17268223665347, 113.00281497913082, 26.485759121687458, 10.980359904071179, 27.889050584475044, 106.92806818527407, 7.546114683034098, 33.51564269501064, 12.487616292544285, 12.76127230074825, 31.21325347923654, 14.779057001784293, 5.195764135464444, 5.1989976580296, 39.48064853415634, 45.89646413265403, 76.40316857889377, 10.10511819600557, 20.375164832116354, 136.82800830749233, 103.5808254864415, 9.056165337955175, 16.27205798286726, 24.14913386676445, 113.28556457191749, 8.666682794726125, 17.86042531874938, 13.60767390876785, 25.561869820896796, 20.009643208476852, 49.3817036790487, 63.326061792531696, 151.83708654082, 17.29004869311367, 38.29610364951408, 27.091945066063488, 6.506230585972285, 59.83305397229082, 12.667813468963335, 49.51191845735881, 19.446685918530438, 15.425332059855311, 16.28857581177603, 120.55847791156972, 26.984926300035486, 19.126346858945865, 15.514394623268997, 6.050720625207667, 34.833602302252594, 17.90839350901766, 26.465206735557814, 30.139556721650372, 62.7411978495907, 94.71314096781381, 11.675302249865956, 46.89444335980717, 9.44811100878654, 25.109071277287867, 110.28298679090233, 15.503149677751075, 37.689171555353646, 269.8607405618853, 67.9873811451102, 16.680791365641095, 29.845539701494047, 58.56397736448602, 14.319204614983656, 53.32100339351986, 91.00973926500387, 15.01735634317625, 6.505690037330844, 49.04195410358312, 39.8156460886416, 29.656496829728045, 31.20668958259077, 9.236921336863517, 165.29965799361787, 30.756759844157216, 47.92713274060102, 37.25096536475933, 11.260212671532809, 6.790450118133947, 25.888975280321525, 145.5080220446233, 8.709046329717182, 11.376076253809357, 21.416621121240436, 119.3062168314056, 24.020642939807292, 13.300761987737785, 40.14397325234101, 38.677441961783416, 5.395382531830979, 46.333929381805206, 69.18677699972179, 6.7615800754288555, 26.462299727075315, 88.7824763405381, 20.514321910451258, 11.693970348874146, 49.4582509048219, 108.64635888886937, 6.006421797843645, 15.067554393128422, 13.644805349528108, 33.98254217837123, 50.7367226005037, 18.099523831298477, 21.08319643659852, 34.611691709044756, 24.324866384609226, 19.03557846212806, 68.26156339124182, 72.50130803830582, 43.03438816698064, 10.913432949400798, 16.13739547898208, 49.60815560409172, 8.957498792940704, 32.61542087886828, 17.989305818916662, 16.437140023482605, 11.740759102806955, 22.676930983242855, 127.55668467897786, 47.86284435157674, 150.90112968316902, 13.15326962397049, 38.53252873098315, 9.508036490526417, 51.605626277647076, 10.39957338432964, 7.068579966136215, 58.20900320762118, 24.992698931302577, 119.91349728366409, 15.990002420699453, 42.08245659974247, 23.532856933795568, 117.18841900186035, 92.20104323938455, 17.166510033046045, 6.547842489784401, 49.5211709550045, 14.906849249642097, 21.371302723158095, 11.330506240234909, 30.66517654594317, 35.72717575061263, 17.78483015537582, 80.36592813572422, 126.83809945218661, 14.133401133320476, 169.8153744124487, 43.1382317664031, 66.24464484502602, 23.038692933478323, 27.38042840705441, 42.07823136249184, 76.35220069117922, 31.036020679038646, 80.23301053889246, 26.615251525979485, 73.14548288906826, 64.80428060246547, 27.099714369963507, 22.004168809026503, 95.94030790179838, 76.66453988171908, 19.86151046047081, 16.549794459264653, 25.500661992249714, 10.962334005306463, 20.735723718817148, 9.803473601420542, 10.33581402985839, 103.41872496320946, 12.859459446949565, 8.289068741156967, 15.18978917159739, 92.44302808133921, 21.47633668114026, 16.783841175908826, 9.810495736152637, 86.38638543259805, 60.13966545971084, 82.06698509715399, 77.364496386774, 15.96579432853259, 12.482267539652968, 44.17807785510699, 13.867938746607965, ...])
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);
([2026455.8456080677, 2361374.9535060204, 2362272.200320935, 2418310.4803910004, 2437397.164296221, 2441223.233190988, 2455632.7422125316, 2471703.105028092, 2471967.4755774867, 2500739.2942514676, 2527347.357642588, 2544590.8512441143, 2552850.9081802364, 2570257.8125, 2570260.8792490116, 2589698.728365965, 2638486.304285793, 2645560.9375, 2647719.4993255623, 2658424.9848451307, 2677406.3172409767, 2684224.394279855, 2749210.9375, 2749536.8970785816, 2760928.3853838523, 2761967.1875, 2808126.3314968063, 2808617.2124191658, 2829812.383118915, 2838707.3346652207, 2844401.430815456, 2846987.8795383, 2890337.22259261, 2913994.8369487626, 2987478.125, 2996910.081366824, 3001070.1907543084, 3039178.125, 3046450.0772042233, 3046995.3125, 3047036.732152476, 3083958.5513868122, 3083964.8699654313, 3103089.343230247, 3116597.8749075104, 3151073.775960992, 3157301.2366170953, 3158070.7186325714, 3176821.1642179047, 3260309.375, 3263680.8532323353, 3274684.174212237, 3279705.079533824, 3280411.292030699, 3300936.2805238008, 3313807.361689792, 3314730.740503156, 3322527.803435019, 3330597.9060010193, 3334837.5, 3376808.185434945, 3380625.585894415, 3430592.2197575076, 3437439.184309538, 3438933.810991443, 3439660.4399984, 3439903.7316513117, 3443435.301453109, 3443741.482949531, 3448088.7663258435, 3456071.2095493274, 3456370.3125, 3484784.4454133483, 3494325.495730551, 3499101.0437337733, 3499852.6308134366, 3499959.4742477955, 3511548.4375, 3513364.651107095, 3513424.9882879737, 3546279.9411676447, 3546540.453348952, 3547431.3142765136, 3574112.981523615, 3574308.872349341, 3603253.3559198915, 3615360.064356614, 3639511.793041712, 3645706.396367228, 3649676.539964828, 3652654.0342472377, 3655370.3125, 3655664.685621836, 3656365.9861336923, 3659408.9998704344, 4800515.625, 5001018.4939798955, 5040489.0625, 5166387.106639041, 5176829.434717454, 5232532.130498648, 5284392.664688296, 5312247.201896965, 5371128.125, 5399139.0625, 5413843.75, 5415115.238707487, 5415169.411213063, 5415427.520654505, 5420692.1875, 5421368.75, 5421451.89590958, 5421564.475750988, 5421925.0, 5422811.576337117, 5422878.263101298, 5430435.876445758, 5436979.792248728, 5441285.430633029, 5442431.17861093, 5473931.152108496, 5504205.751017337, 5585247.327549388, 5585407.441014807, 5587996.533112423, 5594132.525826101, 5598326.47992387, 5604142.661813054, 5605441.194302148, 5605448.125151545, 5607051.5625, 5607090.625, 5607357.2183582615, 5607365.316442285, 5608170.3125, 5608207.52035351, 5608271.875, 5610495.408365605, 5612050.0, 5612423.632695404, 5613890.625, 5617775.0, 5620707.017206574, 5622100.7640054, 5648283.362254042, 5661960.601446051, 5681990.716081961, 5682017.301331026, 5686389.915369564, 5689772.338872404, 5694429.175005436, 5723352.207774766, 5723815.632784198, 5723849.413771117, 5725536.7573266225, 5727162.939457005, 5738743.65109123, 5744716.8987019695, 5745611.954975154, 5745885.9375, 5747702.903806783, 5748303.125, 5748327.868115984, 5748505.2343216045, 5750847.006855379, 5752481.992036193, 5757806.613051035, 5759634.016952106, 5760125.342205478, 5760868.3775957795, 5760874.128766123, 5763635.9375, 5765339.900753337, 5768449.528731331, 5768497.141443779, 5774106.296997841, 5774803.115042458, 5776821.577098801, 5781617.1875, 5789810.722487424, 5792553.182675421, 5793418.271176183, 5793712.5, 5794005.309463967, 5795081.067214208, 5795130.119073913, 5796065.995623803, 5796130.607719233, 5796270.3125, 5796377.679384346, 5796737.5, 5797199.767656951, 5797283.105235974, 5797302.760381066, 5797508.614983307, 5797936.381382206, 5798003.246402345, 5798025.0, 5798474.813982248, 5798559.372953899, 5798610.9375, 5798665.625, 5798776.5625, 5798878.8320853915, 5798895.144886801, 5798955.304482237, 5798965.222953953, 5798969.255604334, 5799057.473156256, 5799070.188334332, 5799118.040587618, 5799164.031663738, 5799641.535369509, 5799730.82051654, 5799762.027779492, 5799863.547146064, 5799969.149539215, 5800051.5625, 5800458.486938187, 5800769.769537984, 5800893.665678798, 5801307.254979651, 5801373.042096031, 5801753.257347383, 5801775.183124728, 5801931.967595102, 5804362.421555589, 5804834.206056404, 5805177.935415348, 5805274.9329010025, 5806054.975264619, 5806082.448930526, 5806423.4375, 5806838.183576176, 5806950.380310461, 5807062.5, 5808072.24972759, 5808085.252068794, 5808117.1875, 5808464.0625, 5808613.467018958, 5809337.466551398, 5809710.850720234, 5810042.827710288, 5810351.5625, 5810996.870752668, 5811773.091479234, 5811852.903631699, 5812315.625, 5812701.556469771, 5813043.640404838, 5813562.767033694, 5813692.063847876, 5817012.5, 5817210.1431463165, 5818135.157973692, 5818173.4375, 5819292.480145332, 5819346.730448722, 5819863.4373471085, 5820784.324167171, 5820897.638672642, 5820906.235921738, 5820945.3125, 5821382.624584968, 5822291.810705032, 5822320.3125, 5822693.002031679, 5822853.125, 5822858.965129413, 5823020.1573200235, 5823335.8024331005, 5824259.813688985, 5825205.634947464, 5825259.5398267135, 5825432.525313503, 5826245.846949891, 5826382.1302116485, 5826807.8125, 5826979.6875, 5828549.0912735695, 5828842.008363178, 5829270.2299927715, 5830898.989650919, 5831252.354066336, 5832691.927106967, 5834271.875, 5835901.181500979, 5836714.0625, 5837689.649792807, 5837812.400421058, 5837884.936138422, 5838786.519238592, 5838796.749723181, 5838876.318138843, 5840203.125, 5841847.001693769, 5842301.71747106, 5842582.11819103, 5843997.985586501, 5845093.522943102, 5846344.79103017, 5846345.104476523, 5848148.4375, 5848290.80641947, 5849952.399603769, 5850026.5625, 5851131.606289588, 5855104.6875, 5855322.110590184, 5856826.485677482, 5857184.351384229, 5857583.017406125, 5858819.74023319, 5859075.817376174, 5859826.255046249, 5860484.066792197, 5860570.3125, 5860744.37241762, 5861020.047159306, 5861186.449020965, 5861195.3125, 5861608.758153994, 5861662.14580031, 5862070.973993571, 5862092.536829073, 5862304.219447138, 5862327.740373181, 5862500.277334445, 5862521.875, 5862612.5, 5862635.103866865, 5862925.061428546, 5863563.616783249, 5863649.952671683, 5863765.625, 5863839.93011407, 5863983.885273416, 5864635.808764001, 5865550.662222315, 5865767.1875, 5866546.249374738, 5867060.299606072, 5867280.984215762, 5868217.1875, 5868296.289122925, 5868850.0, 5869686.665065977, 5869791.880803826, 5869848.4375, 5870470.3125, 5870698.078424263, 5871660.9375, 5871723.006047935, 5872655.764975988, 5872856.669485834, 5874145.769668554, 5874152.525811267, 5877646.172327514, 5877677.404595549, 5878801.428686543, 5879058.968944126, 5879752.663366219, 5880015.625, 5880060.9375, 5880812.068271251, 5880843.75, 5881346.875, 5881389.60567463, 5881557.537908779, 5881584.851082089, 5882276.515878186, 5882288.892720507, 5882625.929708337, 5883115.366813713, 5883157.8125, 5883351.236809184, 5883851.5625, 5883867.459888633, 5884222.314579598, 5885239.0625, 5885250.150295519, 5885270.971033342, 5885484.651606124, 5885533.544196565, 5886010.9375, 5887319.478882596, 5887571.875, 5887797.737492392, 5888078.644378307, 5888469.851061484, 5889168.910079917, 5889833.723207136, 5890020.007684121, 5890022.797509535, 5890076.572219372, 5890425.469218981, 5890511.697904991, 5890527.266607913, 5891205.557352547, 5891526.20964686, 5891621.83878372, 5892175.0, 5892353.125, 5892450.390133842, 5892675.65616635, 5892761.076516864, 5893273.4375, 5893752.745806561, 5894180.826397537, 5894277.934131082, 5894685.9375, 5895075.396073964, 5895313.097884234, 5896552.3522748845, 5896879.6875, 5897160.513418248, 5897271.5569480015, 5898696.875, 5899192.557400469, 5899235.359322503, 5900348.506784509, 5901006.211038191, 5901044.199253534, 5901864.777971891, 5901958.774998389, 5901998.533660974, 5902206.18031236, 5902290.918695794, 5902620.797294494, 5903079.245426995, 5903190.206173364, 5903363.388567906, 5903537.5, 5905321.611026831, 5905321.908461391, 5906240.815955799, 5906737.846087738, 5907595.008070869, 5908591.280457076, 5908609.192725811, 5908938.710067064, 5910166.21302975, 5910872.464074096, 5910946.57393792, 5911200.0, 5912434.720681007, 5915227.116713303, 5915949.512579476, 5916685.116388489, 5916710.9375, 5917012.243541321, 5918060.9375, 5918487.699968645, 5919405.798255105, 5919705.531110811, 5920590.282934387, 5922008.7079677405, 5922710.817678295, 5923917.883898522, 5924845.768501954, 5925894.815770559, 5928071.875, 5929377.0864690505, 5929758.995551755, 5930168.354935385, 5931204.6875, 5931464.809878368, 5931703.052343797, 5931719.873496703, 5931920.2894809935, 5932455.5905021755, 5934325.652546072, 5934409.375, 5934498.182112553, 5935242.989557142, 5935468.75, 5935703.365895669, 5937303.40599742, 5937758.049399934, 5937844.089938167, 5938474.998017654, 5938872.301755357, 5939291.102865273, 5941023.91312143, 5941790.0951614855, 5941962.364065261, 5944071.782246535, 5944075.508261286, 5944181.707476841, 5944857.636142522, 5945045.3125, 5946705.993077971, 5947621.875, 5947968.190152936, 5949144.642897341, 5949519.896894002, 5953241.816456553, 5954883.319598505, 5956090.625, 5957259.79848581, 5957462.060967241, 5958124.5557944365, 5960323.032196887, 5960894.355685106, 5960956.017966983, 5961667.620112162, 5962319.85782257, 5962978.125, 5963134.907796404, 5963698.867041273, 5963850.914976877, 5964013.496427406, 5964113.771526755, 5964329.476305785, 5964840.918386045, 5964970.299360135, 5965024.433929004, 5965077.786307821, 5965417.360471709, 5965532.220260356, 5965633.665304173, 5965884.375, 5966930.081183209, 5968064.306804422, 5968351.686820409, 5968746.875, 5969164.0625, 5969361.717131103, 5969455.702193142, 5970166.778323863, 5970854.165330588, 5971636.135113193, 5971901.5625, 5972458.557703616, 5972472.81051371, 5972533.810890495, 5972598.123919385, 5972798.846480317, 5972855.980450956, 5973252.93578954, 5973336.931257145, 5973670.170745988, 5973772.238589148, 5974405.025059403, 5974519.7199240215, 5974687.5, 5974977.817975063, 5975943.525578104, 5976511.97466621, 5976873.052758163, 5976983.817271054, 5977357.8125, 5977358.543873929, 5977580.474310035, 5977626.338862366, 5977724.078319744, 5977887.5, 5977946.3444081815, 5978215.625, 5978409.34815051, 5978741.218845032, 5978767.8518964, 5980092.1875, 5980229.788016538, 5980401.004311693, 5980828.125, 5981030.432694233, 5981182.8125, 5981201.940639591, 5981331.010009667, 5981351.857153143, 5981638.5190056, 5981675.0, 5981911.269845308, 5982032.68232122, 5982095.3125, 5982210.377212518, 5982945.559061598, 5983147.7495738985, 5983199.224445647, 5983244.661112979, 5983290.967301917, 5983360.42823076, 5983395.4893064955, 5983395.579338136, 5983551.744982327, 5983568.587734826, 5983596.1305171745, 5983603.125, 5983656.6611062065, 5983666.748615413, 5983734.375, 5984051.686389794, 5984239.839640216, 5984240.625, 5984307.644535534, 5984378.125, 5984459.195885227, 5984660.642096224, 5984689.058733637, 5984781.25, 5984929.6875, 5984937.5, 5985037.820755029, 5985064.31577547, 5985161.353260408, 5985209.171576229, 5985245.3125, 5985327.372904437, 5985444.249024883, 5985568.75, 5985600.714547518, 5985609.99772812, 5985939.010483641, 5986210.9375, 5986220.847359944, 5986227.097574093, 5986267.261047581, 5986400.0, 5986419.030258973, 5986480.464675634, 5986512.991780535, 5986518.75, 5986541.962595561, 5986618.75, 5986709.118240141, 5986726.3765844265, 5986775.159427421, 5986880.165666111, 5986992.1875, 5987000.833735556, 5987086.982348909, 5987089.761809945, 5987120.53614084, 5987144.831607497, 5987160.15041282, 5987334.005867085, 5987441.86310166, 5987476.5625, 5987593.5641153455, 5987628.949899172, 5987708.625909371, 5987729.503150633, 5987746.222473296, 5987823.696964588, 5987868.9677440245, 5987894.623673147, 5987914.197336691, 5987939.0625, 5987946.875, 5987968.302184937, 5987999.781018667, 5988011.959452316, 5988026.325300333, 5988029.345968937, 5988065.014261035, 5988084.483583977, 5988099.436519868, 5988121.686697651, 5988149.402629017, 5988185.655756231, 5988226.5625, 5988386.18325598, 5988398.4375, 5988426.963741709, 5988500.0, 5988521.285290529, 5988558.941492124, 5988583.970897227, 5988615.127718249, 5988655.83620401, 5988659.642732904, 5988763.644974099, 5988896.273392067, 5988937.5, 5989027.558227827, 5989049.569314273, 5989224.424777355, 5989241.511495619, 5989242.1875, 5989267.34832821, 5989340.162180507, 5989368.922084348, 5989371.875, 5989407.8125, 5989450.837747563, 5989539.0625, 5989551.791282342, 5989629.94458033, 5989677.684635074, 5989708.631072276, 5989821.875, 5989886.074157457, 5989913.882963599, 5989987.84137946, 5990000.546770925, 5990077.434984088, 5990120.980006765, 5990293.75, 5990341.70847784, 5990342.036733913, 5990404.403496441, 5990410.9375, 5990436.716873504, 5990455.951268561, 5990457.407059957, 5990694.304037479, 5990728.125, 5990757.8125, 5990765.428106611, 5990889.0625, 5990947.744883394, 5991029.47022304, 5991115.625, 5991269.042645332, 5991294.163961304, 5991433.7536828015, 5991462.5, 5991470.3155458635, 5991616.204064092, 5991634.454648815, 5991635.860017888, 5991680.921622783, 5991718.951655586, 5991719.293655454, 5991778.125, 5991921.078986025, 5992050.0, 5992074.581860508, 5992311.499282648, 5992357.549526296, 5992501.01481506, 5992555.483722485, 5992647.713429845, 5992715.625, 5992975.401971978, 5993381.25, 5993460.683591779, 5993474.723880672, 5993650.424970832, 5993892.008339667, 5993918.118146023, 5994006.749669934, 5994012.5, 5994068.689421948, 5994257.249177184, 5994265.12692388, 5994603.370946425, 5994791.81118133, 5994872.896556216, 5995599.000092213, 5995951.297835155, 5996102.519141214, 5996191.793724069, 5996243.167727183, 5996908.002893608, 5997329.760784285, 5997456.25, 5997824.05161238, 5998290.505717173, 5998612.686066962, 5998635.235446115, 5998870.411158922, 5999190.625, 5999455.901024293, 5999809.375, 5999887.5, 6000010.9375, 6000211.122239958, 6000448.4375, 6000514.438046187, 6000584.775576839, 6000733.48970379, 6001013.240182362, 6001808.352180785, 6002261.631596241, 6002262.6649074145, 6002622.04937865, 6002766.153124126, 6002821.313552417, 6002911.77082255, 6002964.482500425, 6003300.403659989, 6003312.543145902, 6003331.928462695, 6003360.772191991, 6003551.000203114, 6003602.284880802, 6003710.86555755, 6003748.738318076, 6003822.974807838, 6003875.0, 6003936.92430864, 6004054.964987418, 6004164.006906349, 6004176.384423964, 6004276.5625, 6004280.096081102, 6004301.329553262, 6004347.1568898605, 6004522.551778404, 6004629.322085481, 6004853.344737565, 6004919.868551333, 6005079.6875, 6005386.480641862, 6005614.113682216, 6006104.6875, 6006185.298824218, 6006267.075175615, 6006298.341141401, 6006629.082379453, 6006723.4375, 6006809.214252557, 6006865.625, 6006878.849876979, 6007100.594529506, 6007292.1875, 6007621.831715662, 6007679.384245, 6007681.075452139, 6007731.1746031465, 6007767.015258335, 6007810.9375, 6007960.167309945, 6008276.345212599, 6008396.245580508, 6008413.8520455025, 6008794.968006686, 6009083.498169915, 6009391.918061544, 6010103.125, 6010505.343191386, 6010542.318635869, 6010580.849706654, 6010726.140444669, 6010822.774715261, 6010860.9375, 6010878.125, 6011366.763319072, 6011511.748136937, 6011575.522278973, 6011919.2924378645, 6011982.933517391, 6012085.877816398, 6012415.925879536, 6012759.375, 6012763.329573739, 6012828.246398165, 6013040.826085264, 6013340.625, 6014071.792037, 6014827.34977749, 6014834.517599951, 6014841.820222995, 6014878.125, 6014983.420736865, 6015219.622183871, 6015220.274228385, 6015568.75, 6015908.608736934, 6016150.324194265, 6016260.9375, 6016636.072373593, 6016652.924385197, 6017038.969419152, 6017056.611903903, 6017135.9375, 6017627.53455389, 6017667.1875, 6018056.64202706, 6018122.835545889, 6018375.0, 6019159.201553253, 6020231.25, 6020259.87266044, 6020409.394758021, 6020895.430128827, 6022125.0, 6022161.099348112, 6022723.4375, 6022754.8389817625, 6022807.698606436, 6022864.0625, 6023048.37256437, 6023325.888718995, 6023492.069182215, 6023973.520650782, 6024090.75847743, 6024222.818794209, 6024307.230743833, 6024466.346709027, 6024492.340792901, 6024788.554799003, 6024963.154164249, 6025129.408339874, 6025226.0532420445, 6025320.123613577, 6025743.75, 6025767.106396096, 6025850.673545739, 6026127.891560879, 6026337.490342609, 6026397.6159750065, 6026555.205939221, 6026932.586584772, 6026951.896895778, 6027179.6875, 6027262.5, 6027428.863660548, 6027706.282680953, 6027805.862402384, 6027992.1827792665, 6028471.529124935, 6028522.1381703615, 6028643.138446329, 6028865.625, 6029022.02251828, 6029139.711114574, 6029204.6875, 6029300.879110271, 6029326.564068364, 6029374.8584481245, 6029402.791557526, 6029415.625, 6029474.522021536, 6029500.0, 6029720.757444152, 6029853.089884482, 6029989.42223829, 6030001.923246425, 6030130.740286538, 6030237.5, 6030323.103777787, 6030550.998178243, 6030647.549005894, 6030667.389261297, 6030670.311163705, 6030744.790720118, 6030746.669975027, 6030777.885787534, 6030795.198785003, 6030887.5, 6030887.750334689, 6031107.8125, 6031353.306929014, 6031478.125, 6031480.664432664, 6031545.795020223, 6031692.564399897, 6031699.4016160425, 6031726.752934362, 6031794.800203078, 6032003.250982745, 6032138.6251277905, 6032165.5609135935, 6032242.638392659, 6032247.312205374, 6032462.905004686, 6032557.582995102, 6032633.499638186, 6032699.917006133, 6032775.252590613, 6032796.4752309, 6032933.503825198, 6032967.395190232, 6033013.855709061, 6033051.057345779, 6033056.998240627, 6033114.107287439, 6033132.8125, 6033146.875, 6033317.943349664, 6033372.962775555, 6033404.6875, 6033550.0, 6033974.319251849, 6034105.053888952, 6034246.700667808, 6034260.829059018, 6034297.858070192, 6034366.135088102, 6034371.301499391, 6034393.75, 6034466.090869953, 6034598.442208333, 6034624.156326175, 6034662.893381462, 6034798.920555579, 6034805.099316269, 6034920.829511688, 6034942.1875, 6034948.412651765, 6034948.4375, 6034954.753633181, 6035249.1873866115, 6035291.347500013, 6035335.9375, 6035344.999111429, ...], [28.35806250554142, 8.262142619026168, 40.23579550553045, 47.7112529150077, 9.588615666133348, 29.137534996221, 27.207441879293565, 51.302637691304845, 49.752038868211635, 5.959845177425398, 17.769590249415486, 49.65295576862945, 5.884379410643866, 50.17553962993148, 8.256011585377603, 59.64969734783417, 31.66809331091094, 40.51365778278069, 26.67832030813567, 28.228417973378356, 50.87855794896607, 20.499557944099774, 36.0351226419406, 13.967521153222336, 73.9380788039802, 34.78082097411913, 7.521771274743853, 8.299799104037866, 26.41025717364762, 50.0753871255739, 6.250703111584808, 37.84929305284885, 34.536653679976425, 8.050149475695363, 45.851088414983394, 12.446148626458829, 7.559789967638422, 88.52868977790365, 6.096164742549264, 40.742807002699486, 18.562178534087938, 18.77611494879546, 10.122261234531209, 6.820876942617438, 6.031485364507779, 7.73041897970737, 39.00325619150548, 7.757044691563382, 38.0955240183702, 37.02955768742927, 55.71818918339392, 9.16720671322558, 5.413675621253402, 5.412202594624003, 75.71935920185446, 27.45200769875128, 131.68531717761232, 53.462839822285154, 111.7943641266568, 75.13549660518363, 26.60565281128686, 25.452772611452854, 7.129957070591974, 5.100861220091895, 61.575500006130625, 34.591615272053204, 13.24174835151258, 67.70683756210543, 29.960611926693304, 5.597866541080413, 19.987480589931643, 48.362228176570575, 26.10347880703445, 27.04353766243282, 20.620521578320933, 21.55128905139117, 9.416756782233909, 52.44957837570981, 60.639805160665276, 6.265719770519158, 11.548789779270459, 18.481706482379252, 39.876057273979214, 7.787203949160003, 62.818755315773736, 30.713666412777098, 22.650927311531674, 17.798630844046944, 5.101347924351606, 73.87350417307785, 33.4066117610895, 94.47087931319507, 5.995572063484824, 16.523285523693364, 68.40996130330035, 29.387104855535355, 10.749798967864715, 121.64402233357947, 22.627200002101603, 62.58370047001906, 15.557272423235299, 5.850152466482212, 97.78585157587185, 45.768034470373905, 66.28730201685337, 49.49988831980551, 34.26906539808914, 38.22331933702049, 27.358116407598686, 33.48263417143982, 54.59484221267319, 100.45128408161689, 16.791379222709498, 56.7072116846083, 8.655998615492676, 14.910005407157414, 91.78019872511602, 33.906219722196006, 71.2749061281282, 6.74933749653312, 26.72835000836187, 136.02164148697383, 41.9005020206701, 22.87863549254998, 29.206028082283233, 36.64718205246289, 91.92698848220958, 9.767474498655401, 37.95266664006143, 13.871142233440976, 85.61854963273605, 30.436323501012627, 68.44186659148491, 65.02228807357895, 41.08103842188098, 10.699832971688402, 32.63752116961977, 100.18178057535987, 35.22897466288521, 23.657974371069535, 73.50641596005497, 78.21411319232486, 8.738727858177212, 50.924409392792484, 5.308376296453393, 21.339808053549824, 11.273122113840447, 12.647051657006372, 7.365272259199053, 17.063316954308103, 81.18721022153062, 19.885673722004857, 78.5589308757012, 84.24959221397899, 26.231145984817665, 6.558259529766156, 26.711077654118018, 23.80062939219701, 96.32804033632135, 37.442295236319765, 10.798716147517503, 32.58801435253014, 46.95786335952268, 7.813758697319444, 5.5395143041957695, 7.3312006403559575, 9.658484836713484, 9.045954589091327, 11.70832589190418, 103.49710821297121, 32.52851031794656, 34.5395658524093, 87.16403177271506, 166.1139829859435, 13.245513807071585, 15.123720959234609, 28.329386388848924, 17.506098071437272, 46.8639586732779, 24.900637203119555, 32.162379583346734, 44.73469518471057, 43.83370738168906, 12.684326636579623, 25.37310888854394, 7.767163080405918, 68.42996688704433, 23.407281704207605, 90.18444566537707, 10.495972269803639, 76.8481814004826, 41.81592970145187, 76.95705153954607, 200.43216366246494, 25.28089827691432, 12.016278307363077, 15.464569096838641, 58.15282794010915, 155.368662390729, 63.49441692843377, 128.35190380764763, 38.93141717309475, 70.87828219864471, 134.02307144761903, 70.07574239117461, 13.903363559999686, 20.038996278523463, 6.868826628366073, 104.62600122610176, 63.06902718635957, 12.786911064946208, 27.928861279069565, 27.047901304064105, 5.443629711389855, 19.774944704039584, 21.341291786081847, 11.815455093202393, 77.63031499409306, 12.375602934241154, 55.252243576902785, 14.62956994946684, 8.900642155812308, 10.561218046203656, 16.86813431526162, 15.688670139177843, 95.14694843597282, 8.245525711538974, 20.090892868103353, 25.27163365198806, 7.1039243748769625, 63.181705908654415, 27.5140152227689, 32.532523512151236, 7.313536237365419, 7.7468357142030175, 83.50844025860903, 16.592094272200598, 7.95457423646199, 105.98734104243404, 48.781143096963746, 85.03064101754816, 71.44240694233807, 33.82403774428764, 66.21988407075844, 99.00102123900942, 11.12107443410201, 87.50610559526847, 14.159939448842882, 40.522309041593786, 50.10592949880459, 37.024181053060154, 16.067369060995663, 22.015612635425338, 37.99180268095165, 10.07799476497847, 5.223839454960724, 37.456943499693615, 7.712626662070615, 111.82905422895215, 12.995870881588294, 52.93501053691035, 6.368757902080746, 6.086636423938532, 76.18427038882447, 77.60087314241926, 10.585751293028505, 69.6109716500419, 19.331184065283928, 55.8448702164398, 22.441911132076186, 64.12946818309253, 26.113986198267412, 16.926563525553707, 101.71140821657634, 7.663960793179143, 13.52388386016613, 5.559593758296061, 12.853068181382033, 34.076071616187626, 47.6062096513606, 196.0252589509919, 49.054089966600905, 51.04011863135155, 35.85900531832871, 88.07956317514643, 18.817968881795533, 114.84345333107046, 31.532158175545543, 42.794178792524306, 17.778898407803155, 37.57154637947701, 17.62061720002017, 12.177568198931477, 8.221421573700692, 67.28193525325634, 46.58451457636271, 11.331685183005714, 43.320353248496886, 96.40252957128051, 7.007517104331485, 24.729460049790365, 6.663681008846352, 77.55860969600752, 80.57644623926345, 6.290394775572706, 59.74706077240552, 62.76656911133341, 16.49895228263927, 36.23116315354959, 11.517061169429887, 47.36056667631481, 28.065853539478496, 15.784604668189628, 6.978729071077025, 38.67111275287906, 66.5344441887421, 92.84007566054353, 92.57705683962422, 12.263256618728972, 15.607643681124014, 27.15108283945203, 78.95607621636347, 26.476447823864532, 10.61580106675763, 7.861394973054968, 7.216410582138413, 75.1397913753768, 21.754465853393874, 16.115606907327457, 42.14503126102717, 39.01939217349067, 18.705657455185463, 9.383890269578169, 62.854733549326156, 34.621684870658754, 69.61206877505332, 13.998813868677516, 8.94901222826422, 61.41790755910659, 30.66436068048105, 30.573605168369237, 20.325226313460327, 7.387741338820398, 154.56233804840903, 116.83419575326248, 13.096845530113763, 46.525911241374274, 91.11988434663013, 56.14061605423655, 61.41811453296928, 34.034290443895294, 40.72572256494303, 46.39024156241778, 109.48082221039205, 11.93053977620626, 7.2362676623150595, 5.84859935923643, 5.669656477403545, 27.38138422119282, 56.207680684223114, 6.074293466355187, 30.118183097106403, 258.51025242384134, 82.78316465008426, 32.76956616328496, 13.516996559888375, 33.21865263145689, 67.28399202212941, 13.611575773827948, 82.43764284070113, 82.32199687132552, 27.634806953634843, 53.59872719748897, 20.263379148634726, 15.152890741519013, 62.45018317996809, 23.42803188993095, 60.04815406874308, 52.11228025654981, 11.892136782588677, 61.967334555379644, 47.869628621010776, 7.306032832853241, 180.3755820087315, 103.50090666305339, 98.72957045925038, 35.28024166497492, 53.618571979358485, 19.70576926718908, 148.1556197310411, 18.462415102330397, 11.387493413176049, 53.661236321291796, 23.689419781412074, 7.974847485925069, 23.17561827253938, 58.837904509484986, 19.876931081813925, 18.534472824799018, 19.7649166995329, 13.74796079334755, 15.031764778557111, 66.85495763456306, 44.5468169201122, 16.671022026733166, 18.21433624047658, 67.00841221760581, 37.685546046428506, 6.220449957273622, 54.32887816794465, 84.14694911487572, 47.57032911978972, 8.507755332079773, 38.645525389339795, 7.345781699587894, 56.82184544895052, 31.28879148388018, 92.07827737954929, 81.49314509825614, 6.546683014313742, 5.8905877184437205, 9.390682390906063, 41.30376929703621, 147.43802259257654, 5.182366259511596, 13.060262575896706, 6.7828574196320375, 27.218080093051675, 9.592731964521105, 85.22981420860104, 54.445261418713926, 5.9037430153372, 20.915086916544386, 36.75498734098495, 47.273808282175224, 184.10692892231543, 71.16586247345107, 6.311937218754938, 23.694330046529565, 18.209708302446007, 43.27444000222042, 17.5666820052843, 9.883580055223419, 8.624758484950096, 25.81292514751454, 48.200427680778574, 5.301885877359541, 19.12494557916647, 72.90260609111164, 61.653044458606814, 91.90392596245516, 14.046503871150575, 39.38572536043463, 7.6772003960015835, 76.58396662762337, 179.52518167896517, 18.816097514565627, 10.223853377632356, 10.94544415542339, 56.63789577762462, 9.749231530805933, 5.778118558849786, 38.05760727637338, 29.092422255488323, 14.41223917553873, 13.622930539270785, 78.20141953318138, 8.72574301017211, 73.92877964072927, 28.93439599897942, 71.50975370955106, 20.03705477071739, 235.3207817176474, 45.97070554459541, 5.600070022721063, 10.116132000866157, 30.78359606381969, 11.526344098517281, 16.132856169372246, 7.691228146770972, 43.024449659083025, 8.285529306109497, 85.46787344838107, 7.785728202942051, 38.12506188251267, 22.13918804624518, 11.287820438336036, 41.04090979468176, 55.11967390983632, 17.847085053060596, 14.309383763976422, 35.02795675451842, 5.333194314590953, 48.10083794878433, 20.91616944659808, 19.95308855165171, 56.238297147270245, 34.233774432619015, 92.9537073899446, 42.62478163976994, 7.763939841014462, 111.12231783782497, 13.919848133785269, 32.456805922292546, 5.993946887608707, 28.8031578700966, 31.695816163559186, 29.787367600312173, 74.80773640233143, 12.076897557203408, 23.59769173469992, 20.137735176341582, 71.63803250545551, 5.124331870858295, 24.95550631180378, 6.823527255098785, 14.891661816564183, 5.032131906221716, 164.5188845173428, 19.38781620739853, 5.322029265889699, 12.786225152227773, 32.60521126302881, 57.30795551447111, 15.962314334306608, 63.551935415653574, 184.6948326336074, 67.7681292304608, 7.3426715683224435, 21.029098997014746, 31.18259183553567, 21.274762916158583, 9.504279319559114, 150.31888486966326, 26.94694714516111, 87.89911216765628, 20.876555775588713, 89.819431767649, 18.895308784232995, 24.14766279971747, 77.6506948525786, 56.80575474219091, 31.719387330599183, 15.332229146069388, 9.634126935782541, 32.07448427557961, 44.43244460141958, 9.084622237258777, 14.149963008290035, 10.395148930709764, 22.72544795208718, 20.935925167712774, 66.64048205350024, 12.502271913638198, 21.146547590540266, 51.85096639603103, 38.22094403573845, 75.34773083559337, 13.243035902456594, 56.724882852609205, 37.51650076577512, 17.819143783545154, 8.672221761233844, 67.98233720457655, 5.345377854855057, 34.74225316273249, 50.60218896355586, 62.74222009895956, 116.60375248167254, 16.609487084615726, 29.827109455357323, 16.19760982533414, 147.45681243642306, 143.967374261069, 11.690210499279148, 26.19283575399264, 60.51788411769887, 27.097942039718518, 69.6805929009652, 5.577087251880593, 8.751730868340683, 187.15280366790356, 13.52801229150762, 6.6659226785219, 11.41578970018426, 109.06912332540037, 67.17648836186507, 38.247279097296186, 34.86881889388088, 72.3466311620401, 6.848453234326219, 22.125221304173103, 36.79384751423405, 32.027463257137015, 12.60702242050739, 59.79215166436889, 23.761135826703303, 29.92172939699132, 59.98503109612437, 65.07384352142273, 25.722723591510317, 66.21914677781831, 45.10984240957616, 65.28279449259941, 6.829278108328533, 7.697485896423489, 23.750105650122542, 59.38443595959511, 29.613613737380238, 8.76728446394678, 48.35494620561222, 58.99631591019059, 29.763847683930962, 5.7475703999718695, 14.746885895739725, 47.0958291620995, 8.591234313633196, 90.68557519336562, 15.22944957456369, 43.03926401294842, 28.00695275534381, 18.31895329921424, 8.564966902588008, 61.823595282953434, 24.759841930561976, 41.68732368324888, 63.49505851749798, 10.849033136096399, 140.7401297226519, 129.31816477713693, 49.64104181373313, 163.90264350555898, 13.27796242327715, 18.501770133010062, 15.868426898914596, 21.685849114169475, 74.34355479932032, 48.75931040076187, 138.25755768401746, 62.276996983948706, 10.849077580363746, 12.71923815944616, 10.1290125362118, 64.59557667310327, 20.09550964878337, 9.560873967689686, 76.4696256449377, 193.45105251202895, 15.481617890191405, 57.56800821432007, 35.530421836332, 15.190170279384677, 59.824205405893686, 31.562896336610798, 49.21274128224382, 31.66141173020597, 7.396333953397821, 5.620079643105862, 14.66628967649676, 5.9231730762571635, 20.573817903908818, 16.18920449668167, 65.89582973870412, 185.48492791473151, 84.49222084214995, 16.728562387186223, 57.23326648950417, 78.82089468992102, 40.59643191788348, 43.440922268952136, 27.34352086093349, 29.991190239590587, 11.573671004533853, 20.882962582001937, 13.056121495256068, 37.805271012160055, 138.44837463262388, 22.213583873269688, 77.47217355629675, 19.900356524687485, 41.505964591386046, 9.471198423112105, 21.872190826025975, 8.37972423830408, 83.95465533454004, 59.9524916787558, 12.749948785506719, 40.01516992811964, 13.331107960936368, 15.833014589482321, 10.502731034507443, 26.032682671905334, 46.975347610861554, 11.348247765068418, 56.678270162642804, 16.424660818212104, 7.273002182251246, 14.383495704190263, 58.193470947098234, 71.43753962794172, 10.453315837687922, 25.729882107827788, 35.40960462849483, 151.80167917284786, 12.612202814640156, 5.236860633897304, 20.323807093929787, 17.57828501394434, 34.26573817249729, 86.74770532286973, 40.71767027358645, 121.86136998643158, 6.950555758348521, 24.86823617526958, 97.38511497803665, 7.712626662070615, 11.84289496167218, 23.565212056450353, 53.87803828170756, 76.91367338884764, 23.66444020144201, 94.6291353185768, 27.08060825860158, 105.06579994151346, 41.309789382633305, 25.860919440339394, 50.24353260376519, 84.02573253341625, 55.12921831829405, 69.88839046839934, 6.578915467747976, 10.740120633685095, 6.0329382766176165, 66.46384909063265, 6.943291382755483, 72.37597857636943, 8.511236253081575, 50.436751143620064, 5.795429099873187, 25.027156334090705, 8.524865513951738, 58.96155404706145, 124.39115795455304, 22.73788818788161, 50.013033686373994, 100.53693465669194, 18.69560981345768, 68.91747046967637, 11.535203659108209, 83.88245109708475, 6.986161513469215, 9.857179174114087, 36.81342938949132, 20.49833056353841, 113.35469514631174, 5.670676325793412, 8.389893999599265, 13.424101822737011, 51.37913556350311, 12.245610218591478, 35.61078816759954, 65.53999414975809, 20.093443507817515, 7.147629856600044, 78.93949113186696, 23.14467439939056, 102.75192502114255, 71.83351439868812, 91.07295523821246, 71.94401846068826, 69.05556980330441, 99.85134030054027, 72.6519890652562, 12.38166489264734, 7.8948455944351625, 49.12409199165147, 96.49558959493477, 15.609659485847443, 9.48333500636955, 70.5928487909477, 10.350552413370771, 83.53454620953784, 52.43675048167042, 23.36264821199564, 5.246354464631609, 18.361408426325163, 23.97251631806029, 67.39280685963372, 6.004884457882365, 20.555195780616863, 6.535304199675603, 5.511038249765479, 48.213055606178294, 10.333142944682995, 6.1174387787215965, 124.32718281663071, 32.204921636753475, 41.1412099324687, 16.766876967881252, 27.753936476491543, 30.980034362785688, 18.350189666170156, 14.694489500437223, 34.92152772771731, 68.21129752470361, 53.319528620205865, 16.56340667781403, 21.38066276484961, 57.17268223665347, 113.00281497913082, 26.485759121687458, 10.980359904071179, 27.889050584475044, 106.92806818527407, 7.546114683034098, 33.51564269501064, 12.487616292544285, 12.76127230074825, 31.21325347923654, 14.779057001784293, 5.195764135464444, 5.1989976580296, 39.48064853415634, 45.89646413265403, 76.40316857889377, 10.10511819600557, 20.375164832116354, 136.82800830749233, 103.5808254864415, 9.056165337955175, 16.27205798286726, 24.14913386676445, 113.28556457191749, 8.666682794726125, 17.86042531874938, 13.60767390876785, 25.561869820896796, 20.009643208476852, 49.3817036790487, 63.326061792531696, 151.83708654082, 17.29004869311367, 38.29610364951408, 27.091945066063488, 6.506230585972285, 59.83305397229082, 12.667813468963335, 49.51191845735881, 19.446685918530438, 15.425332059855311, 16.28857581177603, 120.55847791156972, 26.984926300035486, 19.126346858945865, 15.514394623268997, 6.050720625207667, 34.833602302252594, 17.90839350901766, 26.465206735557814, 30.139556721650372, 62.7411978495907, 94.71314096781381, 11.675302249865956, 46.89444335980717, 9.44811100878654, 25.109071277287867, 110.28298679090233, 15.503149677751075, 37.689171555353646, 269.8607405618853, 67.9873811451102, 16.680791365641095, 29.845539701494047, 58.56397736448602, 14.319204614983656, 53.32100339351986, 91.00973926500387, 15.01735634317625, 6.505690037330844, 49.04195410358312, 39.8156460886416, 29.656496829728045, 31.20668958259077, 9.236921336863517, 165.29965799361787, 30.756759844157216, 47.92713274060102, 37.25096536475933, 11.260212671532809, 6.790450118133947, 25.888975280321525, 145.5080220446233, 8.709046329717182, 11.376076253809357, 21.416621121240436, 119.3062168314056, 24.020642939807292, 13.300761987737785, 40.14397325234101, 38.677441961783416, 5.395382531830979, 46.333929381805206, 69.18677699972179, 6.7615800754288555, 26.462299727075315, 88.7824763405381, 20.514321910451258, 11.693970348874146, 49.4582509048219, 108.64635888886937, 6.006421797843645, 15.067554393128422, 13.644805349528108, 33.98254217837123, 50.7367226005037, 18.099523831298477, 21.08319643659852, 34.611691709044756, 24.324866384609226, 19.03557846212806, 68.26156339124182, 72.50130803830582, 43.03438816698064, 10.913432949400798, 16.13739547898208, 49.60815560409172, 8.957498792940704, 32.61542087886828, 17.989305818916662, 16.437140023482605, 11.740759102806955, 22.676930983242855, 127.55668467897786, 47.86284435157674, 150.90112968316902, 13.15326962397049, 38.53252873098315, 9.508036490526417, 51.605626277647076, 10.39957338432964, 7.068579966136215, 58.20900320762118, 24.992698931302577, 119.91349728366409, 15.990002420699453, 42.08245659974247, 23.532856933795568, 117.18841900186035, 92.20104323938455, 17.166510033046045, 6.547842489784401, 49.5211709550045, 14.906849249642097, 21.371302723158095, 11.330506240234909, 30.66517654594317, 35.72717575061263, 17.78483015537582, 80.36592813572422, 126.83809945218661, 14.133401133320476, 169.8153744124487, 43.1382317664031, 66.24464484502602, 23.038692933478323, 27.38042840705441, 42.07823136249184, 76.35220069117922, 31.036020679038646, 80.23301053889246, 26.615251525979485, 73.14548288906826, 64.80428060246547, 27.099714369963507, 22.004168809026503, 95.94030790179838, 76.66453988171908, 19.86151046047081, 16.549794459264653, 25.500661992249714, 10.962334005306463, 20.735723718817148, 9.803473601420542, 10.33581402985839, 103.41872496320946, 12.859459446949565, 8.289068741156967, 15.18978917159739, 92.44302808133921, 21.47633668114026, 16.783841175908826, 9.810495736152637, 86.38638543259805, 60.13966545971084, 82.06698509715399, 77.364496386774, 15.96579432853259, 12.482267539652968, 44.17807785510699, 13.867938746607965, ...])
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)