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 = 45127
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([3344733.491601843, 4672575.0, 4733033.791447305, 4904527.272245148, 5089848.038225953, 5098671.925637493, 5143492.682509106, 5143542.155565207, 5167661.394194812, 5167834.216671603, 5167853.525207044, 5171778.052336661, 5173526.5625, 5174906.4413101515, 5200341.5929061165, 5202721.875, 5216546.249771554, 5221717.6827121, 5222258.311194105, 5222313.9636986125, 5223138.61552637, 5223936.728173858, 5223940.625, 5224279.796640993, 5225298.4375, 5226224.286177138, 5226232.42941446, 5226311.661424932, 5227935.58122563, 5233421.871243554, 5236282.739682625, 5238985.9375, 5250241.220681425, 5254953.07873569, 5256854.824816142, 5262734.353088172, 5263657.8125, 5263658.920143183, 5269543.75, 5272365.617228526, 5272496.3951545805, 5272966.705156673, 5275054.587049872, 5285854.835585003, 5286977.908649327, 5287798.4375, 5287885.365111181, 5290523.4375, 5291444.787650248, 5293384.740384554, 5293936.651124346, 5293955.906376832, 5294124.841088086, 5294471.438887307, 5295120.10300097, 5297053.774776382, 5297323.266501106, 5298727.414160108, 5300448.534391763, 5301511.448532953, 5302282.8125, 5303022.1609556805, 5303575.0, 5304771.875, 5306029.569903335, 5319387.5, 5319550.0, 5323549.480215333, 5323606.25, 5328815.347593192, 5330959.196725399, 5345752.994113874, 5353877.745269153, 5379574.1478742575, 5379816.735340712, 5385854.7457192475, 5397406.692713615, 5398002.015893556, 5398414.217573665, 5398835.608255519, 5399262.408695977, 5400182.354831727, 5400845.082467927, 5401534.1308441665, 5408612.834625347, 5412811.451332202, 5414917.45872206, 5430412.3230116675, 5430679.6875, 5430740.625, 5431752.750865528, 5432120.3125, 5432124.6882265415, 5432182.080153751, 5432288.12171986, 5432298.5262086475, 5432505.295100333, 5433006.25, 5435334.448428806, 5435794.29529673, 5436696.484602225, 5437924.757309184, 5438140.4377906155, 5438421.875, 5438610.9375, 5438793.75, 5438910.116523244, 5439375.605572951, 5440429.2508510975, 5441094.29650239, 5441785.9279280845, 5441830.163015672, 5442299.396805956, 5442431.462165988, 5442707.8125, 5442922.321456866, 5443569.260156464, 5443600.220262645, 5444296.913337353, 5444837.052018804, 5444940.348903928, 5445393.484599452, 5445503.260512194, 5445534.758265746, 5446481.146643309, 5446637.833091203, 5446767.768309153, 5447173.565848952, 5447217.175826483, 5447358.365968228, 5447374.546025992, 5447421.96524124, 5447458.313681523, 5447487.362428029, 5447899.309289821, 5447981.25, 5448239.0625, 5448277.5452942755, 5448295.374102119, 5448512.692309077, 5448577.430431143, 5449120.3125, 5449207.962407607, 5449452.055265878, 5449837.084263863, 5450121.559037745, 5450389.384975439, 5450917.396486592, 5452010.381489517, 5461470.806693532, 5462667.420551669, 5463370.012391784, 5463556.230685977, 5464199.788730673, 5464632.299801964, 5464962.5, 5465005.92065854, 5466801.280846762, 5466854.06204953, 5466906.171118215, 5466945.3125, 5470567.174308027, 5470959.788759014, 5471471.461293016, 5471530.87296712, 5471855.960106754, 5471925.722318613, 5472094.996438756, 5472330.471119035, 5472505.94881465, 5472692.221077647, 5472838.006212574, 5472898.977680182, 5472983.005621817, 5473228.125, 5473277.905557745, 5473286.748072526, 5473467.60886476, 5473473.383702195, 5473516.323265404, 5473581.217933683, 5473655.4533140045, 5473821.25751152, 5473985.062062898, 5474291.376865892, 5474629.257321924, 5474637.139747525, 5474718.75, 5474805.891288877, 5475045.515919455, 5475177.470537108, 5475370.495264907, 5475470.292385449, 5475530.679211797, 5475643.750426234, 5476010.9375, 5476045.3125, 5476091.203800243, 5476152.150182726, 5476182.673060416, 5476448.4375, 5476690.625, 5476965.49155561, 5477076.858323448, 5477169.511281599, 5477248.236737161, 5477342.1875, 5477485.9375, 5477529.834086898, 5477530.699687144, 5477552.7831225945, 5477566.380153926, 5477699.32018029, 5477702.555224962, 5477746.875, 5477849.579187957, 5477979.6875, 5478015.877979576, 5478118.794161873, 5478482.444570115, 5480235.651653325, 5481232.691009061, 5481398.316751893, 5481543.75, 5481932.8125, 5482110.720439485, 5482262.5, 5482290.498984136, 5482391.311693418, 5482448.4375, 5482593.32021907, 5482645.04919477, 5482649.975998884, 5483291.581687173, 5483701.5625, 5483760.4255839195, 5484962.42223395, 5485604.551123954, 5487323.4375, 5487459.608988045, 5488357.086888135, 5489554.310932259, 5489782.716591015, 5490919.378003332, 5490988.713401018, 5490990.002948659, 5491278.081733715, 5491684.030063331, 5491706.483139759, 5492185.20325549, 5492456.111871937, 5492538.624138143, 5492783.871621594, 5494262.935864989, 5494364.510509531, 5494620.243958922, 5494880.946827772, 5494899.620577147, 5494915.001260898, 5494932.61009638, 5495038.511138388, 5495957.8125, 5496117.1875, 5496851.898085624, 5496853.643702743, 5496901.5625, 5496916.307126689, 5497085.9375, 5497557.870263075, 5497655.566610271, 5497729.703840771, 5497823.052307181, 5497823.448194487, 5497823.736679107, 5498088.640007586, 5498096.331449269, 5498165.625, 5498351.161824996, 5498925.323411276, 5499169.525226528, 5499187.472676075, 5499228.241277576, 5499367.1875, 5499444.71858301, 5499504.6875, 5499695.567870183, 5499781.58565718, 5499887.446808865, 5499906.375092483, 5499949.873783344, 5499964.0625, 5500072.755372904, 5500320.250817106, 5500402.355807973, 5500661.587406587, 5500919.076360446, 5501062.128632096, 5501204.291540382, 5501435.907803696, 5501663.064193186, 5501722.900690584, 5501901.130222054, 5504284.057015725, 5504385.7360254815, 5504420.0913692, 5507501.5625, 5509498.733475601, 5520781.25, 5523452.440542649, 5523651.386758862, 5525325.0841341335, 5525433.258955803, 5526668.75, 5526705.225454837, 5531394.809561271, 5531402.572214022, 5532730.823866952, 5532790.380673867, 5533060.457202177, 5536022.832953724, 5536840.612696932, 5537119.175365743, 5538042.569711146, 5538112.64319387, 5540265.440152129, 5542653.6532647405, 5544276.5625, 5544685.9375, 5547497.932002083, 5549603.125, 5550195.8920887895, 5551713.194350143, 5551888.18633127, 5553004.178398346, 5553166.000574305, 5553545.3125, 5554543.338459503, 5564276.324337374, 5564533.452273871, 5564535.9490055675, 5564890.2682577465, 5575137.794841608, 5576410.9375, 5579083.843968854, 5584271.82513241, 5592180.336624439, 5594063.332139985, 5600802.944205426, 5601074.9273573905, 5601523.4375, 5605140.625, 5606440.625, 5606675.256204959, 5606823.233426568, 5606862.5, 5606982.715519911, 5607186.197146452, 5607216.604774396, 5607265.291692685, 5607804.785208225, 5608184.375, 5608264.875844123, 5608381.25, 5608454.203422259, 5608492.543435517, 5608500.108585457, 5608680.480314557, 5608755.153729567, 5609832.8125, 5610515.599968457, 5611141.90651962, 5611363.183099615, 5611586.2368339, 5611967.736764692, 5612434.247893552, 5612488.669260987, 5612827.329303531, 5612926.5625, 5613580.625059961, 5613631.82010928, 5613641.064206909, 5614245.035092894, 5629586.434864221, 5631904.487669124, 5632152.327724374, 5632214.15118256, 5632875.978001677, 5633504.298286037, 5639213.412429638, 5639454.4156442005, 5641351.5625, 5641868.5877162665, 5642163.934222473, 5642257.288108566, 5643551.5625, 5643754.6875, 5643808.783931997, 5644414.429764132, 5645056.25, 5645056.91150417, 5645652.611211254, 5646145.3106102925, 5646389.0625, 5646909.375, 5647227.262307102, 5647414.856617491, 5647654.6875, 5647745.003405795, 5648207.8125, 5648291.352523863, 5648918.342113851, 5649441.383990674, 5649732.202627908, 5649761.656266026, 5650431.078459666, 5650459.375, 5650577.41519857, 5650839.16081345, 5650885.5452763615, 5650916.6787883965, 5651553.714486664, 5651710.278153618, 5651815.184143241, 5651822.540151254, 5651879.929605791, 5651892.645125882, 5652115.625, 5652336.670498478, 5652412.704187818, 5652441.591436714, 5652682.8125, 5652841.130885083, 5652865.182618707, 5653009.375, 5653144.282722974, 5653394.3377768155, 5653668.75, 5653779.017072843, 5653873.424939558, 5654171.826977703, 5655340.411435464, 5655502.648157836, 5655684.26704815, 5655925.948975978, 5656096.802453941, 5656156.25, 5656305.806650972, 5656543.273980137, 5656945.881204398, 5658024.651592853, 5658970.3125, 5660114.964905637, 5661264.0625, 5661845.3125, 5662176.5625, 5663005.789015209, 5663367.140869208, 5664263.572341971, 5664516.433027456, 5664542.425844058, 5665059.268775237, 5665570.190487463, 5666092.1875, 5666441.391159836, 5666939.326026574, 5667354.6875, 5668365.957820876, 5668504.988573632, 5669146.46548421, 5669265.190703359, 5669299.247637178, 5670117.7968372, 5670551.879030964, 5670907.8125, 5671093.519449947, 5671133.532876039, 5672329.59236188, 5673220.3125, 5674187.894801135, 5674839.0625, 5674992.1875, 5675120.041951891, 5675217.1875, 5675257.323680119, 5675958.53609036, 5676163.48538211, 5676329.6875, 5676610.502230948, 5676684.5965446355, 5676688.6430495465, 5676876.5625, 5677199.205898254, 5677819.719671174, 5678541.101634243, 5678944.215904992, 5678954.083758603, 5681087.206255476, 5682812.663032123, 5683983.484113899, 5685983.589195498, 5686055.357948006, 5687768.379848796, 5689310.857288092, 5689625.175417799, 5691582.792090092, 5691887.85882483, 5695032.029436005, 5695592.1875, 5695913.753287287, 5696551.42904939, 5696712.5, 5696825.5746417465, 5697763.46941592, 5698917.860761772, 5699333.130143155, 5699454.623136625, 5700410.9375, 5701901.436193915, 5702193.159410643, 5702203.622421852, 5702782.392862288, 5702911.405218596, 5703278.918844934, 5703874.461477544, 5706310.200299475, 5706313.21105659, 5709040.405996825, 5709107.577918851, 5709309.7852304885, 5713568.058543292, 5714168.186958004, 5715108.074370369, 5716154.983460917, 5721609.799535308, 5721854.48230776, 5723439.02132544, 5725683.337312126, 5730910.577803673, 5731710.9375, 5732643.781946389, 5732809.909087044, 5733737.387442925, 5733781.899095613, 5734579.600355979, 5736271.070427342, 5739676.9874281315, 5742663.283172758, 5744469.912849579, 5744679.179545819, 5745330.076809171, 5745465.625, 5745980.0367451785, 5746262.986353878, 5747012.227689354, 5747901.31684597, 5750107.310589998, 5753704.620688313, 5754798.007078992, 5755917.1875, 5755927.065532136, 5759181.25, 5759610.9375, 5760720.3125, 5762592.136537837, 5765294.898325396, 5773023.587571436, 5773891.944376685, 5776162.8617165685, 5778129.024526493, 5778864.016390336, 5794351.532769159, 5800394.37613422, 5804852.700423041, 5808387.203607134, 5809914.0625, 5810273.031819298, 5810957.8125, 5811493.802547435, 5811628.738705219, 5811664.723681836, 5811708.486366436, 5811710.9375, 5811831.25, 5812226.757776851, 5812282.8125, 5812451.279875211, 5812994.614689379, 5813073.4375, 5813074.091471884, 5813207.758984724, 5813369.979269771, 5813437.743420025, 5813544.101562484, 5813583.069828496, 5813592.125565259, 5813684.553667387, 5813691.80727112, 5813831.50354404, 5813834.67960122, 5813901.5625, 5814003.61063154, 5814302.919719883, 5814435.9375, 5814725.030284315, 5814732.517639246, 5814916.394251429, 5814971.875, 5815047.217410836, 5815250.5559353735, 5815434.375, 5815446.3030951405, 5815478.012191605, 5815663.561949598, 5815783.403637302, 5815980.832033039, 5816035.861326724, 5816084.248116342, 5816111.467885547, 5816112.024700531, 5816260.439962773, 5816402.675393907, 5816740.625, 5816867.219906587, 5817016.464095661, 5817046.875, 5817167.063821295, 5817263.969086041, 5817328.690896584, 5817372.571971094, 5817772.9548091395, 5818105.408918453, 5818936.718452747, 5819189.0625, 5819592.944873933, 5819747.942901281, 5820159.006936373, 5820443.522171616, 5820561.508452539, 5820608.625051357, 5820854.096837741, 5821674.656619881, 5821991.977788936, 5822133.084943926, 5822304.908669827, 5822743.469903316, 5822865.713980192, 5823463.699513239, 5823532.8125, 5823836.374865749, 5823839.012656676, 5823871.51003468, 5823885.660092986, 5824398.275633608, 5824707.595319196, 5824835.499597205, 5825406.25, 5828155.452124951, 5829626.8722890355, 5829949.911635683, 5829952.518103106, 5830008.650531082, 5830784.375, 5832407.256233835, 5833090.2534095775, 5839351.5625, 5840137.4651684025, 5840679.6875, 5842053.125, 5842200.0, 5842349.973310724, 5843072.34946844, 5843145.892708218, 5843305.832772111, 5843319.069890763, 5843517.1875, 5843834.585418509, 5843912.619453269, 5843949.067437761, 5844242.1875, 5844413.148226339, 5844417.837362127, 5844558.190036583, 5844587.465297427, 5844602.606667901, 5844772.275711404, 5844773.924306319, 5845069.901832564, 5845132.8125, 5845140.097769121, 5845185.8923637485, 5845306.25, 5845320.555787303, 5845429.669920436, 5845440.428152362, 5845468.934718129, 5845486.645401144, 5845677.615837337, 5845718.38239898, 5846078.955275113, 5846187.62585225, 5846715.936618848, 5847042.982645396, 5847316.843306417, 5847653.632763305, 5848264.103009754, 5848541.834322696, 5848599.936148206, 5848643.395215282, 5849373.371917645, 5849384.14070483, 5849568.75, 5850065.972306965, 5850385.737044236, 5850515.625, 5850518.968798216, 5850537.5, 5850784.773869914, 5851059.033855487, 5851572.6582550695, 5851579.6875, 5851686.033746718, 5851756.5050714435, 5852207.309136073, 5852278.6320762, 5852318.490406528, 5852565.935506961, 5852572.574034962, 5852686.208228356, 5852785.374198576, 5853114.276611868, 5853226.394049121, 5853307.654687893, 5853817.011537002, 5853910.767615978, 5854399.140343578, 5854562.5, 5854850.254111895, 5854970.233339853, 5854996.875, 5855020.14628194, 5855054.6875, 5855166.59819514, 5855178.125, 5855240.494883617, 5855369.482120827, 5855401.703749419, 5855489.982961537, 5855532.966974495, 5855814.639483349, 5855916.656796686, 5856103.125, 5856128.125, 5856421.849421277, 5856712.405001544, 5856890.947304158, 5857338.918317746, 5857732.8125, 5858406.167903478, 5858751.545635371, 5858919.143818705, 5858934.610108078, 5862726.5625, 5863666.635593504, 5863995.895663531, 5865324.501869785, 5872704.0008251835, 5873722.408288997, 5876164.0625, 5876687.817955914, 5878843.75, 5881234.375, 5881620.244762818, 5883271.066027779, 5883481.866898663, 5884199.700993824, 5891501.9123995425, 5892664.0625, 5893244.557948211, 5896825.025554787, 5899378.689991731, 5899846.7938728435, 5901468.75, 5903490.625, 5906068.882191199, 5906234.23295914, 5908960.49596627, 5910350.480927551, 5910381.671445562, 5916117.916363793, 5916466.340419313, 5917794.872914325, 5918771.184912061, 5920843.664812526, 5924653.125, 5929720.3125, 5931032.75027875, 5931733.2661849735, 5944003.370386036, 5945189.310129908, 5948896.923125508, 5949160.003136702, 5949227.274997586, 5949878.29988254, 5950485.15806692, 5960029.0486102, 5961535.9375, 5961598.4375, 5962630.857414758, 5963190.307699224, 5963499.8417832395, 5963918.468138201, 5964504.465841545, 5964953.809253577, 5965329.167524644, 5965637.5, 5966364.0625, 5966438.23867986, 5966616.3279908225, 5967869.260374119, 5968467.1875, 5968498.228533192, 5968680.586994875, 5968681.25, 5969032.720443289, 5969039.245950864, 5969172.777813039, 5969259.130592074, 5969373.201400322, 5969423.928417683, 5969515.625, 5969664.3409486, 5969691.608913214, 5969725.0, 5970310.730243537, 5971023.071198476, 5971289.424403903, 5971496.875, 5971654.9149593925, 5972213.0090880925, 5973218.188748925, 5973724.184909595, 5973730.975587277, 5974050.7386071095, 5974705.737850313, 5975644.979001943, 5976253.071906012, 5976343.889104948, 5977558.8776036585, 5978162.5, 5981780.872289492, 5981819.181423696, 5982818.342432182, 5986273.386880268, 5990197.41227257, 5995351.793815223, 5996202.5180647215, 5997401.954145218, 6000517.667123685, 6000695.912141164, 6002370.919548258, 6002889.0625, 6003020.627248106, 6003381.702769226, 6003518.897230403, 6004311.540935481, 6005273.940250716, 6009059.273159188, 6009375.002232445, 6009859.983306787, 6010209.834485122, 6010546.875, 6010698.344966404, 6010868.75, 6011772.043925171, 6012273.254961078, 6014261.9148672465, 6014657.774770146, 6016293.75, 6017455.644239536, 6023560.360921217, 6025716.6874783, 6026355.365527416, 6026835.807941691, 6031184.740308513, 6032348.4375, 6032427.100041715, 6032492.494929058, 6032529.833756391, 6032659.178639929, 6033512.5, 6034715.147185536, 6035605.508538299, 6038648.640823478, 6038743.077309158, 6039755.773662005, 6039917.761078606, 6040338.480915133, 6040821.875, 6040963.581503517, 6041868.752790203, 6042137.439586598, 6042244.418288424, 6042786.59366635, 6042812.005765898, 6042954.611965563, 6043141.257823289, 6043474.941894867, 6043514.707084845, 6043570.022162889, 6044507.8125, 6044690.625, 6045108.141515677, 6045262.8814627165, 6045330.4310654225, 6045508.9081262965, 6045870.3125, 6046169.600973981, 6046188.68233527, 6046415.625, 6046498.425243024, 6046616.752596441, 6046812.038366259, 6046878.07311562, 6047075.46790158, 6047084.375, 6047112.148515046, 6047182.690554914, 6047288.611826353, 6047406.036054781, 6047690.625, 6048197.329376055, 6048269.366485295, 6048306.011558998, 6048350.0, 6048543.580845882, 6048546.8217406245, 6048594.763560821, 6048610.247753343, 6048628.150281809, 6048703.1929022875, 6049070.931789077, 6049149.790767305, 6049362.269748034, 6049575.421776669, 6049630.995195856, 6050391.2033981765, 6050500.0, 6050814.673318399, 6050973.4375, 6050992.736625547, 6051222.195815681, 6051237.992546613, 6051315.501052992, 6051441.169541607, 6051486.1888679555, 6051509.375, 6051626.289313873, 6051631.309207657, 6052035.360627435, 6052481.994505641, 6052709.537933464, 6052874.311563384, 6053021.6205873005, 6053145.3125, 6053240.165194455, 6053307.23875644, 6053484.023407081, 6053603.125, 6053749.698987748, 6053790.625, 6053814.610303331, 6053984.109988234, 6054088.468970628, 6054128.328551439, 6054244.642535137, 6054470.3125, 6054493.75, 6054639.416940059, 6054790.926317057, 6054937.669728643, 6055248.4375, 6055273.147221682, 6055984.299587493, 6056259.375, 6056345.1573057445, 6056465.518014256, 6056967.804531244, 6057165.714166154, 6057217.084658791, 6057554.661587101, 6057647.285943493, 6057799.260357623, 6058062.510370447, 6058136.196598661, 6058233.115762021, 6058674.890192636, 6058815.975181988, 6060360.849765498, 6063618.035739461, 6063658.026894738, ...], [6.907105294879928, 72.21524448678761, 20.698232639362796, 45.75291770126072, 91.04475733583631, 11.207789789292615, 12.00092273628718, 17.49372999798309, 125.10914783603918, 27.655450793041457, 40.8585524945903, 36.706330460469, 29.024237125861237, 18.299424556687637, 22.25839500920066, 90.49998220155516, 11.989426909252144, 8.56704738425442, 6.332330144576671, 58.172161481389686, 63.380387252383116, 24.880710326853382, 110.63021909222309, 29.388673607763018, 49.1837660709406, 24.668484319453334, 18.185008312373487, 28.589033550324892, 5.235282127478783, 36.383526607715595, 11.015764641695297, 51.072007558490235, 142.53141069798295, 27.516236023178916, 63.23006952332246, 9.31294395676781, 40.40216776954581, 8.974292867811256, 83.34850280938348, 28.372110521175042, 13.38158571250632, 13.374665036516724, 42.85595795414455, 7.657690245764552, 7.526817806358466, 57.95311857918735, 20.800149092534667, 70.04093939745593, 6.0351686639921995, 104.99488950712419, 39.20246057939852, 41.069164748734195, 14.368536231772493, 13.504491542439382, 39.27668100305835, 17.868447079635736, 42.40371639725966, 58.32343013903646, 31.376795776196964, 44.87523031629716, 73.60723015010363, 17.08734631689885, 50.042033403358694, 40.546622820461614, 32.50161568783183, 43.87125638224528, 52.987034516486204, 21.29798217551618, 56.1404321686236, 104.82829667346672, 5.92402921837251, 30.345844259193107, 7.471436575642418, 5.654590924083748, 21.983991633874428, 11.219943151576132, 5.735524939534508, 37.335413726213204, 83.66772565318641, 5.236022916279894, 10.987930036821636, 21.926037765881876, 33.15393004398616, 9.133149586735804, 34.88648739315267, 6.143214464304864, 6.53046509989645, 25.46041818600769, 54.62660214136456, 43.462597355764515, 13.684507584309602, 172.94939285201332, 9.080996802979252, 85.58496071217444, 6.3490792725790826, 87.55140793563449, 12.231828731093938, 97.25689795203887, 65.64940208248979, 45.83742455251261, 56.15671359240986, 17.56863869374666, 9.177969504616277, 30.83492484179293, 34.68358211806022, 46.4926063099569, 65.7120020700851, 12.227547965211091, 22.149229483630364, 51.32117433203613, 94.0425780110756, 6.862303874120309, 20.521954086838758, 15.816941489309722, 56.76676207921549, 20.988640972825422, 43.4351662531048, 17.56746931243678, 25.467663792045318, 29.222268420485726, 13.984158600434942, 40.031449240174794, 8.359562471847118, 72.07549725213457, 10.969907406029275, 110.6038850654389, 30.71616906595512, 11.334431162636282, 34.942968444903634, 17.574903112809103, 72.58502718612846, 70.22711906817456, 73.68949567159507, 93.09587716298111, 12.832416232933266, 54.21246088172741, 80.34346530768637, 13.112925994687707, 27.81928411070669, 33.722362810310635, 19.74943211872669, 35.62665315641934, 14.226617017951973, 11.526555834164018, 21.188342332637664, 23.548965089434596, 36.693500139444836, 8.400273840447236, 72.80422064865657, 6.567455118165865, 6.112674542141419, 99.91180109336693, 6.759656789614803, 20.680248932332585, 87.95512056829128, 34.539111703335124, 49.02948144426321, 13.966660647807283, 12.9951147176927, 17.86678851214997, 49.22758224164011, 100.137613034129, 37.63814171344921, 37.70128361706355, 66.40858341443833, 24.718008943350313, 6.362985466490824, 48.434862837812375, 51.1151201244083, 97.95655961361635, 15.071055036089682, 17.300057307292885, 64.18879201773892, 17.6941519779205, 46.823976212618376, 20.537839663520188, 25.34105289710586, 64.50731235599038, 25.14976210636862, 6.359643037801839, 72.67450903647601, 10.075390259674887, 29.95527179784501, 116.34194389542029, 10.059863513219678, 6.421707130239987, 23.010447177262414, 54.92193043778623, 50.735137481704136, 43.687480195908726, 8.833211223918825, 103.90547443053711, 99.38979558250685, 13.136266619132773, 16.90136180276397, 59.36687265600579, 43.45650608409926, 93.38268704755659, 17.781286663811624, 101.59097267410968, 59.589866812486, 43.2199610948724, 26.140095505168457, 26.713216616845262, 12.570422071100657, 6.242162327729334, 32.983670471130914, 42.80054044098496, 15.53130268947039, 21.00546772086694, 28.546513205397204, 10.06351611148176, 19.869098067493987, 8.006624538885887, 55.30724091832536, 94.23432696887991, 41.7321969921323, 151.29539216432346, 9.369025786028876, 22.92015396025089, 13.95349865678337, 26.334396467801483, 14.500416483889039, 86.62082482289138, 35.337428555979585, 24.871328872657443, 51.934500607826095, 130.7756289887185, 17.44907521971355, 41.13870639127246, 13.522563581631962, 24.23106301108887, 86.89937145404674, 23.997373751208464, 74.92258170465385, 10.411887291922444, 27.075631593008048, 26.092965042804046, 35.96630352386471, 5.627121413668008, 63.7308740341371, 8.096998941913071, 15.313463604564754, 7.847348292574759, 63.204436069335614, 20.356249654597686, 6.754899421886402, 44.77155934922607, 11.512781782900383, 49.121720183083596, 16.99447168460277, 5.1552766209885075, 6.9951304923040825, 11.884956794149664, 46.47305905427562, 27.238442455315596, 12.761793607963247, 22.786606579209977, 20.341584096778604, 14.222356258903424, 58.57524334636784, 32.4577575668021, 55.857551019741464, 6.5410162079395, 6.335035178200979, 33.53717861385014, 18.385875765611956, 43.171841704800585, 15.166342821995391, 6.184552715774591, 5.16574232456251, 10.57465605442113, 9.340462367083289, 5.352279051949798, 38.50497033664732, 5.893427536052537, 38.73500755231976, 104.47067584849026, 7.209143456790859, 19.037547802604102, 66.79124655349506, 6.786944654437187, 59.225562821937096, 77.78426235674448, 39.41398626251296, 78.51375763075713, 65.67971718989283, 27.514582056734064, 15.44074857788451, 34.30148132622578, 56.27469385740572, 10.20617477799499, 27.361001061152926, 25.149964349610073, 18.173598234572815, 5.968339962910512, 10.592942546786526, 165.9045293951705, 11.081604667722237, 27.24760985235423, 6.033999793675193, 39.41742904107455, 13.85381001379227, 14.225434516247491, 14.160716237787222, 54.79419839127125, 24.438231250825268, 63.32022773575723, 7.955006349375759, 51.29034163731563, 8.331575682971359, 16.099723836691037, 41.37568395261916, 12.087386058583943, 21.463834856016, 13.183765765524225, 39.4838335390506, 24.488938670607702, 10.451698664273627, 13.04855664494656, 33.607922345178096, 6.851506503702395, 25.060089631158938, 76.97326109528049, 48.345279733640226, 24.148177872859918, 61.2475996691145, 41.514022483934255, 21.438430348645642, 62.47865382583759, 98.47948253039043, 5.752420777457836, 18.414058434428, 10.415409980152234, 54.3725527409035, 32.002712569064094, 13.575025740565469, 56.83964070669961, 12.300389389922907, 14.985545349812071, 36.15602511020782, 22.206931832039416, 73.78994020942388, 39.386036720889514, 30.937667286436568, 86.08640783436732, 43.00145118518334, 120.82621003019145, 19.75259526543031, 55.87579590763811, 41.201183457412874, 45.826744548373796, 16.017082848130315, 25.058616652809174, 46.456316402047214, 10.979430299923473, 16.033017569427674, 20.70573995829484, 7.486976321328371, 65.88850377824409, 35.373145752237136, 7.926521281852661, 57.30375916413898, 17.313958013453654, 16.497177499371524, 11.30178330274578, 34.475039991708165, 24.069552496452395, 59.39399930273136, 34.701763714097304, 73.38053351021323, 8.684170605622397, 25.350840982186906, 17.549983388468842, 44.331959786842134, 125.67045625764749, 18.976112328505046, 55.76296544449059, 8.853534674922509, 19.450506408118923, 41.061255007348336, 37.07647170274648, 5.642165126487857, 99.52475879972488, 5.757253447044581, 5.100205663079211, 81.90430902209681, 21.676365700564098, 12.933008324563811, 32.050533470805526, 77.30462753230762, 15.294402173637529, 7.088134781618144, 90.24799946922576, 74.45086452224145, 50.92094017923705, 7.402588700899557, 11.754768547991555, 47.39844949788675, 5.311967553357842, 33.57440496123316, 67.35153822740443, 37.35176015214822, 46.57097532271311, 18.505151727733416, 12.115879814917946, 33.641559413692484, 52.50555675680785, 48.42715389149398, 32.33257567367111, 92.49048327220514, 18.91958434511343, 34.97452491797548, 7.324144223731914, 5.924604690632178, 30.672717594031987, 6.946581816317433, 15.329959872092566, 28.410100166926306, 8.034714426039516, 8.625015628612763, 12.909838992769025, 33.04210176683825, 12.355313470032431, 9.544865752547903, 19.958883982724174, 28.802084363272396, 18.734626344256366, 15.781415092200486, 10.308417784937436, 39.36296488674346, 8.573531283478648, 22.087800986344213, 38.9377519112141, 12.076748458602768, 26.813036232442478, 56.78198496932745, 8.822297464290651, 37.854853333270974, 27.60907227133219, 30.3300882241616, 13.389920542760814, 13.902742915164751, 31.69872966551677, 27.167473338749076, 48.687724543767814, 29.45790213648609, 18.765539089205667, 27.5869643306172, 7.481904947504414, 67.93865430375516, 64.52427113460035, 60.202081076256455, 32.02130668078635, 61.05321807367778, 21.891331569657257, 57.463023811661714, 6.038568362704289, 24.33927541265011, 6.113240635120241, 6.077121999582141, 100.42156999450933, 33.65868169628999, 10.075776302986505, 57.868955393299736, 72.98897312100921, 8.470785990714914, 13.618628226413374, 13.58088606923095, 31.39620811668923, 45.9602105595916, 22.981174606825306, 7.2072204334578345, 72.73321487786102, 6.451547768253803, 49.261566345010195, 26.351223096438215, 63.86660298223792, 49.28747882469588, 64.75608623176186, 65.96623786452605, 9.112657657897433, 29.85550485128575, 13.356770398590257, 18.668830209403673, 70.53207741735406, 43.85791038241643, 79.16492092957479, 15.547356567122838, 105.98448583701173, 42.53229547461415, 55.24987434642881, 10.3123297852004, 22.033973602913427, 64.48051543917622, 16.581493830498395, 7.500341613745633, 64.05522551531662, 37.7901330630516, 38.35435487099895, 6.355791260148176, 74.76366186350805, 20.307227088113642, 90.58529138264593, 133.75816068691765, 7.738387529886062, 12.612347886990719, 108.62879378868105, 14.229210480094181, 105.28617877974975, 29.662279757736552, 83.54832623729595, 46.14150673716951, 18.326823783386214, 66.66592621485107, 27.312943921446053, 55.04347042946616, 10.935859296634689, 13.084606527363254, 19.25397312283538, 6.0455212857535825, 21.736317144253512, 12.645929033503773, 77.61170635955648, 26.69809280321391, 12.456614988924501, 14.16768052910572, 12.584532615824116, 15.332698108270792, 6.632891401737549, 8.896747162794194, 16.04333784870323, 32.8302647752845, 6.322367914860593, 90.57220548523787, 27.735446890557018, 35.36837136686131, 13.727463133476208, 85.32514041435121, 6.271243017873715, 74.50241456088175, 26.48189108060191, 130.4595577794459, 15.198774901779636, 97.7010309176681, 16.853072446115664, 16.937897377537926, 13.609547160417216, 8.935906566416868, 11.79611243095205, 113.51490051375023, 186.56380367142117, 27.981585386058146, 12.352945935015576, 48.8757135170203, 46.224457524964315, 140.3369896032981, 41.454652990992415, 30.793795000950247, 27.17525258568292, 44.04063440413703, 46.06985230767772, 95.52879745735055, 32.847575453198345, 13.5674126744747, 20.92982802795968, 24.505507229333038, 111.4025250935266, 7.379848191047894, 11.056391263590672, 9.3063899577719, 25.36247308199298, 5.5128232914297195, 107.52528550416753, 50.50974461214715, 22.488578168850662, 51.402723044789326, 15.145651007271542, 17.942615595300374, 8.670174697555277, 33.93273707478523, 66.55915836256597, 35.957512592531, 8.39261501315215, 35.915011956416826, 5.598597686041744, 19.72337708551472, 32.590380073134746, 60.059680753429014, 27.508682076335635, 32.259428009016695, 5.3503325654545355, 25.394991419057813, 11.555249284521036, 14.710583518228942, 9.487188216839977, 35.87292550236961, 5.961794048292523, 66.79657204207172, 32.01550081321888, 6.330568120550963, 10.821316626489152, 64.50327244104889, 15.12556512871733, 67.36925599008765, 18.993913760219357, 98.26783960578925, 16.42977053956517, 55.775061186643086, 62.757960691902554, 13.133337097718584, 26.47771484259555, 13.324538864654146, 9.886822610962474, 10.531729177019116, 14.244070039684697, 10.935006908704036, 37.71507373580987, 8.050267158164942, 7.4326818141087605, 63.08454648569668, 31.45247592751476, 15.066483740961555, 10.1583698544071, 44.859538662680166, 26.298576282360454, 5.931311550810088, 68.62086877002893, 103.69570861246638, 21.667523559836926, 18.65372621768165, 12.615869985115127, 84.11053186241917, 12.56145319719824, 21.547150635597248, 6.050642280752755, 39.314886941597756, 17.679571458376632, 112.81369288031776, 20.633983583107394, 7.034021094618742, 26.32011505234555, 16.0926555114774, 9.52568871372023, 28.51411716006779, 26.61877353408817, 5.787601824584488, 111.59965482912821, 16.919459180336872, 32.78920419439302, 95.34112313244725, 30.43490689341956, 36.61324941819613, 35.47962616550922, 85.35010582246615, 52.66070299513503, 27.627130089742312, 23.729709232881714, 77.66733493737743, 7.397553605016049, 12.750629001074934, 67.08501903313126, 20.949596060843042, 13.572886030682142, 30.874613784900962, 27.853736543281656, 59.9535443212601, 59.46361869297455, 36.54292704874278, 14.84074891912544, 27.56961420651521, 7.827494563314557, 51.42085873451014, 16.319173491164616, 84.06622798157912, 7.177885072390428, 36.392145728788485, 9.92763020495424, 63.902237368243746, 40.012392684507105, 25.75371657923416, 29.12573032058131, 105.95907764915276, 116.13162938525836, 9.694882965516966, 9.77999201150984, 14.337513745776345, 46.18269522302276, 21.225691577705565, 27.662167282971954, 67.62260507215149, 11.530536557451182, 5.812680672712037, 25.16430712125382, 18.62422641922025, 72.37770774273969, 8.93504029907961, 127.0647794866218, 25.161686577764847, 25.167932989008985, 24.397443219525744, 44.382248111837086, 65.84787948077584, 9.801119751555552, 62.25043204808888, 125.13935960620063, 14.703596069979854, 42.12853200415033, 14.697296447802445, 45.54839670150939, 72.40104399480289, 45.509885067438105, 25.111397248490555, 69.49554278619672, 40.23246120963767, 56.68965627135938, 9.693091622093409, 67.50078220358628, 26.4496971915799, 130.8696785969406, 8.338138545979232, 76.55581500076781, 23.309192443295913, 20.618604869201576, 58.70610960019318, 37.45690709446915, 73.70471139182189, 45.60959043719909, 8.00958224003422, 15.82563987672027, 10.874234367140264, 84.4451387653589, 40.17321395320552, 16.162594519861912, 17.063697944339822, 50.11002320744531, 7.189891431870526, 14.648134678842972, 54.34512053683072, 62.866565817627176, 36.02985337249816, 39.10554419195294, 37.996820971498536, 18.960366688421963, 6.005803894168728, 11.35590738942457, 8.841741837555736, 11.378061279155014, 7.826163060264211, 21.192190160252952, 60.43284321237374, 54.13154398350202, 40.506449546621724, 159.04237141658345, 16.38137689177143, 14.41902900762314, 58.48522497450347, 26.999999119854557, 6.265069991867014, 38.57408386181015, 8.414946722117392, 36.58459308908174, 67.70959204272579, 89.99601857832292, 6.037785905537427, 70.72623107406665, 49.805629570458635, 72.38542225301605, 117.85378483000802, 30.95057856369989, 49.49144823831506, 74.74339532321338, 18.880317553144874, 9.913849821767581, 24.33512170690209, 73.60047519564068, 29.830050954449515, 65.43612532643088, 5.708386314672389, 15.54683106126312, 126.39844380440002, 30.840382443319065, 30.373881411785007, 28.530956104625268, 5.337077907406292, 35.6007302583059, 11.972990540612658, 17.379866242262878, 35.43638797834342, 82.35658125146884, 15.091777275758663, 10.196893980981828, 26.946322071667073, 35.82468784025374, 95.04161239522196, 44.67009452698831, 121.51881255028844, 29.762859634125498, 59.263018139326796, 118.51235033993245, 18.033765072695058, 6.003952539393209, 88.77586404104095, 98.1691307923661, 300.26709223661595, 29.029898849592858, 45.573079155515615, 41.50028156119863, 36.742490846868904, 14.370907821170317, 27.987077736705086, 5.920331854030452, 7.313739728920817, 21.29612317753686, 28.71856891180395, 69.8071227858235, 12.518815486294333, 12.99028644848387, 17.32380236375397, 38.1859355604699, 40.29016332093604, 27.483202253383798, 57.635130871022916, 14.601869543917072, 9.491492737923341, 14.59474421016241, 44.65093903813604, 10.777687771104912, 64.33477977853224, 46.19263966945227, 16.56582417139429, 13.115847897806088, 61.04824609552445, 47.90315764787297, 5.9081281923545195, 19.675936757892654, 77.72759196398604, 7.182555641596388, 153.1174894328813, 43.744994389208415, 8.725763399927803, 73.48691673794171, 18.774138785060547, 17.670262580505597, 23.332077712970698, 7.584146714088729, 23.84923884943572, 21.51911249608386, 32.58838996433484, 29.117895579585387, 5.554391773386363, 18.602674726606473, 106.52563481528176, 5.741826487883545, 6.810582559723546, 28.19922390473104, 105.2884603000355, 18.822886036979238, 7.288535569724822, 17.900977729088872, 51.730993717040654, 6.537589225919284, 17.002658991375363, 23.160415157543362, 86.19081620471773, 33.67028016466619, 69.6053408138666, 89.61035625458187, 70.95206849776226, 29.14500038972752, 41.19237416267137, 114.95585747150072, 60.04090817357526, 8.37797465309086, 25.376812028278163, 87.63385678931628, 66.21267523951036, 28.612497610898153, 62.99278232012195, 44.28575629987951, 39.208989687311266, 5.566917809397568, 33.976082249624945, 7.2209094290148945, 43.81448780568044, 28.554821174526353, 11.644827934262034, 27.06896932603508, 10.83405454205332, 89.89107802404244, 13.38722047241043, 102.21354876311882, 6.519443411972173, 19.927606147256764, 71.10463385955487, 8.615122809284173, 21.078136037937625, 66.54750943797393, 89.1049032235033, 14.952155044357166, 5.530155654661707, 37.57203380391755, 18.21433624047658, 6.412309585806451, 101.57859908572225, 6.896782169115488, 174.60636677072483, 18.139152413985634, 73.25178137752283, 33.57216360601161, 40.37723454282115, 9.6260129983517, 19.03355639086943, 7.896297974267994, 13.417696110233363, 68.6657084672897, 5.662923097933347, 22.778051938906785, 38.79366455353711, 5.041337436934533, 13.50793713989102, 13.432364899990718, 84.32349681737136, 6.56302866071543, 71.56702316121509, 24.76218082024901, 33.92270168585057, 27.091744841555602, 112.76520127486786, 60.8603186973071, 17.011401475655866, 9.913414063990224, 24.570265386723047, 72.9724437746089, 53.26023609456334, 61.44945381249289, 131.6710309150527, 10.197291246879448, 80.18874578762623, 67.14104155306293, 17.977739074895105, 53.61029025536895, 9.144015935915005, 52.44523351349902, 47.507923705834706, 12.17061400907801, 51.19088030959905, 17.924527802123094, 60.13085106694357, 12.110196868383998, 172.25359784056394, 24.616149631833164, 26.294191412291273, 7.272350794657958, 15.994759920905052, 49.83867610793934, 18.184644299741496, 9.38197343825662, 22.598829939727935, 21.473991068073786, 9.473080257222788, 21.355170879469572, 10.752040391348611, 96.61714968330318, 7.444989693499825, 91.43858706609745, 23.113350096606297, 110.98970705526082, 34.12894741166414, 38.04777031821795, 100.01727196018834, 31.236302011793104, 13.08924707013086, 34.368985395546396, 19.950095484685683, 97.22239386435777, 58.812938840586874, 7.736668570699493, 82.02743818498477, 78.28582207443824, 54.80219662541163, 10.702397722564275, 90.78462410114359, 31.44199364314196, 25.795221140583653, 22.471727290788387, 17.963515082692805, 15.292621016370559, 78.16532100464732, 11.0874434069735, 11.83713654515878, 10.139776624723087, 14.981184584827982, 9.560535496221949, 7.203519070072574, 29.241957306893347, 180.67220146670707, 26.902281471011843, 12.775194247118652, 15.826905447556022, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3344733.491601843, 4672575.0, 4733033.791447305, 4904527.272245148, 5089848.038225953, 5098671.925637493, 5143492.682509106, 5143542.155565207, 5167661.394194812, 5167834.216671603, 5167853.525207044, 5171778.052336661, 5173526.5625, 5174906.4413101515, 5200341.5929061165, 5202721.875, 5216546.249771554, 5221717.6827121, 5222258.311194105, 5222313.9636986125, 5223138.61552637, 5223936.728173858, 5223940.625, 5224279.796640993, 5225298.4375, 5226224.286177138, 5226232.42941446, 5226311.661424932, 5227935.58122563, 5233421.871243554, 5236282.739682625, 5238985.9375, 5250241.220681425, 5254953.07873569, 5256854.824816142, 5262734.353088172, 5263657.8125, 5263658.920143183, 5269543.75, 5272365.617228526, 5272496.3951545805, 5272966.705156673, 5275054.587049872, 5285854.835585003, 5286977.908649327, 5287798.4375, 5287885.365111181, 5290523.4375, 5291444.787650248, 5293384.740384554, 5293936.651124346, 5293955.906376832, 5294124.841088086, 5294471.438887307, 5295120.10300097, 5297053.774776382, 5297323.266501106, 5298727.414160108, 5300448.534391763, 5301511.448532953, 5302282.8125, 5303022.1609556805, 5303575.0, 5304771.875, 5306029.569903335, 5319387.5, 5319550.0, 5323549.480215333, 5323606.25, 5328815.347593192, 5330959.196725399, 5345752.994113874, 5353877.745269153, 5379574.1478742575, 5379816.735340712, 5385854.7457192475, 5397406.692713615, 5398002.015893556, 5398414.217573665, 5398835.608255519, 5399262.408695977, 5400182.354831727, 5400845.082467927, 5401534.1308441665, 5408612.834625347, 5412811.451332202, 5414917.45872206, 5430412.3230116675, 5430679.6875, 5430740.625, 5431752.750865528, 5432120.3125, 5432124.6882265415, 5432182.080153751, 5432288.12171986, 5432298.5262086475, 5432505.295100333, 5433006.25, 5435334.448428806, 5435794.29529673, 5436696.484602225, 5437924.757309184, 5438140.4377906155, 5438421.875, 5438610.9375, 5438793.75, 5438910.116523244, 5439375.605572951, 5440429.2508510975, 5441094.29650239, 5441785.9279280845, 5441830.163015672, 5442299.396805956, 5442431.462165988, 5442707.8125, 5442922.321456866, 5443569.260156464, 5443600.220262645, 5444296.913337353, 5444837.052018804, 5444940.348903928, 5445393.484599452, 5445503.260512194, 5445534.758265746, 5446481.146643309, 5446637.833091203, 5446767.768309153, 5447173.565848952, 5447217.175826483, 5447358.365968228, 5447374.546025992, 5447421.96524124, 5447458.313681523, 5447487.362428029, 5447899.309289821, 5447981.25, 5448239.0625, 5448277.5452942755, 5448295.374102119, 5448512.692309077, 5448577.430431143, 5449120.3125, 5449207.962407607, 5449452.055265878, 5449837.084263863, 5450121.559037745, 5450389.384975439, 5450917.396486592, 5452010.381489517, 5461470.806693532, 5462667.420551669, 5463370.012391784, 5463556.230685977, 5464199.788730673, 5464632.299801964, 5464962.5, 5465005.92065854, 5466801.280846762, 5466854.06204953, 5466906.171118215, 5466945.3125, 5470567.174308027, 5470959.788759014, 5471471.461293016, 5471530.87296712, 5471855.960106754, 5471925.722318613, 5472094.996438756, 5472330.471119035, 5472505.94881465, 5472692.221077647, 5472838.006212574, 5472898.977680182, 5472983.005621817, 5473228.125, 5473277.905557745, 5473286.748072526, 5473467.60886476, 5473473.383702195, 5473516.323265404, 5473581.217933683, 5473655.4533140045, 5473821.25751152, 5473985.062062898, 5474291.376865892, 5474629.257321924, 5474637.139747525, 5474718.75, 5474805.891288877, 5475045.515919455, 5475177.470537108, 5475370.495264907, 5475470.292385449, 5475530.679211797, 5475643.750426234, 5476010.9375, 5476045.3125, 5476091.203800243, 5476152.150182726, 5476182.673060416, 5476448.4375, 5476690.625, 5476965.49155561, 5477076.858323448, 5477169.511281599, 5477248.236737161, 5477342.1875, 5477485.9375, 5477529.834086898, 5477530.699687144, 5477552.7831225945, 5477566.380153926, 5477699.32018029, 5477702.555224962, 5477746.875, 5477849.579187957, 5477979.6875, 5478015.877979576, 5478118.794161873, 5478482.444570115, 5480235.651653325, 5481232.691009061, 5481398.316751893, 5481543.75, 5481932.8125, 5482110.720439485, 5482262.5, 5482290.498984136, 5482391.311693418, 5482448.4375, 5482593.32021907, 5482645.04919477, 5482649.975998884, 5483291.581687173, 5483701.5625, 5483760.4255839195, 5484962.42223395, 5485604.551123954, 5487323.4375, 5487459.608988045, 5488357.086888135, 5489554.310932259, 5489782.716591015, 5490919.378003332, 5490988.713401018, 5490990.002948659, 5491278.081733715, 5491684.030063331, 5491706.483139759, 5492185.20325549, 5492456.111871937, 5492538.624138143, 5492783.871621594, 5494262.935864989, 5494364.510509531, 5494620.243958922, 5494880.946827772, 5494899.620577147, 5494915.001260898, 5494932.61009638, 5495038.511138388, 5495957.8125, 5496117.1875, 5496851.898085624, 5496853.643702743, 5496901.5625, 5496916.307126689, 5497085.9375, 5497557.870263075, 5497655.566610271, 5497729.703840771, 5497823.052307181, 5497823.448194487, 5497823.736679107, 5498088.640007586, 5498096.331449269, 5498165.625, 5498351.161824996, 5498925.323411276, 5499169.525226528, 5499187.472676075, 5499228.241277576, 5499367.1875, 5499444.71858301, 5499504.6875, 5499695.567870183, 5499781.58565718, 5499887.446808865, 5499906.375092483, 5499949.873783344, 5499964.0625, 5500072.755372904, 5500320.250817106, 5500402.355807973, 5500661.587406587, 5500919.076360446, 5501062.128632096, 5501204.291540382, 5501435.907803696, 5501663.064193186, 5501722.900690584, 5501901.130222054, 5504284.057015725, 5504385.7360254815, 5504420.0913692, 5507501.5625, 5509498.733475601, 5520781.25, 5523452.440542649, 5523651.386758862, 5525325.0841341335, 5525433.258955803, 5526668.75, 5526705.225454837, 5531394.809561271, 5531402.572214022, 5532730.823866952, 5532790.380673867, 5533060.457202177, 5536022.832953724, 5536840.612696932, 5537119.175365743, 5538042.569711146, 5538112.64319387, 5540265.440152129, 5542653.6532647405, 5544276.5625, 5544685.9375, 5547497.932002083, 5549603.125, 5550195.8920887895, 5551713.194350143, 5551888.18633127, 5553004.178398346, 5553166.000574305, 5553545.3125, 5554543.338459503, 5564276.324337374, 5564533.452273871, 5564535.9490055675, 5564890.2682577465, 5575137.794841608, 5576410.9375, 5579083.843968854, 5584271.82513241, 5592180.336624439, 5594063.332139985, 5600802.944205426, 5601074.9273573905, 5601523.4375, 5605140.625, 5606440.625, 5606675.256204959, 5606823.233426568, 5606862.5, 5606982.715519911, 5607186.197146452, 5607216.604774396, 5607265.291692685, 5607804.785208225, 5608184.375, 5608264.875844123, 5608381.25, 5608454.203422259, 5608492.543435517, 5608500.108585457, 5608680.480314557, 5608755.153729567, 5609832.8125, 5610515.599968457, 5611141.90651962, 5611363.183099615, 5611586.2368339, 5611967.736764692, 5612434.247893552, 5612488.669260987, 5612827.329303531, 5612926.5625, 5613580.625059961, 5613631.82010928, 5613641.064206909, 5614245.035092894, 5629586.434864221, 5631904.487669124, 5632152.327724374, 5632214.15118256, 5632875.978001677, 5633504.298286037, 5639213.412429638, 5639454.4156442005, 5641351.5625, 5641868.5877162665, 5642163.934222473, 5642257.288108566, 5643551.5625, 5643754.6875, 5643808.783931997, 5644414.429764132, 5645056.25, 5645056.91150417, 5645652.611211254, 5646145.3106102925, 5646389.0625, 5646909.375, 5647227.262307102, 5647414.856617491, 5647654.6875, 5647745.003405795, 5648207.8125, 5648291.352523863, 5648918.342113851, 5649441.383990674, 5649732.202627908, 5649761.656266026, 5650431.078459666, 5650459.375, 5650577.41519857, 5650839.16081345, 5650885.5452763615, 5650916.6787883965, 5651553.714486664, 5651710.278153618, 5651815.184143241, 5651822.540151254, 5651879.929605791, 5651892.645125882, 5652115.625, 5652336.670498478, 5652412.704187818, 5652441.591436714, 5652682.8125, 5652841.130885083, 5652865.182618707, 5653009.375, 5653144.282722974, 5653394.3377768155, 5653668.75, 5653779.017072843, 5653873.424939558, 5654171.826977703, 5655340.411435464, 5655502.648157836, 5655684.26704815, 5655925.948975978, 5656096.802453941, 5656156.25, 5656305.806650972, 5656543.273980137, 5656945.881204398, 5658024.651592853, 5658970.3125, 5660114.964905637, 5661264.0625, 5661845.3125, 5662176.5625, 5663005.789015209, 5663367.140869208, 5664263.572341971, 5664516.433027456, 5664542.425844058, 5665059.268775237, 5665570.190487463, 5666092.1875, 5666441.391159836, 5666939.326026574, 5667354.6875, 5668365.957820876, 5668504.988573632, 5669146.46548421, 5669265.190703359, 5669299.247637178, 5670117.7968372, 5670551.879030964, 5670907.8125, 5671093.519449947, 5671133.532876039, 5672329.59236188, 5673220.3125, 5674187.894801135, 5674839.0625, 5674992.1875, 5675120.041951891, 5675217.1875, 5675257.323680119, 5675958.53609036, 5676163.48538211, 5676329.6875, 5676610.502230948, 5676684.5965446355, 5676688.6430495465, 5676876.5625, 5677199.205898254, 5677819.719671174, 5678541.101634243, 5678944.215904992, 5678954.083758603, 5681087.206255476, 5682812.663032123, 5683983.484113899, 5685983.589195498, 5686055.357948006, 5687768.379848796, 5689310.857288092, 5689625.175417799, 5691582.792090092, 5691887.85882483, 5695032.029436005, 5695592.1875, 5695913.753287287, 5696551.42904939, 5696712.5, 5696825.5746417465, 5697763.46941592, 5698917.860761772, 5699333.130143155, 5699454.623136625, 5700410.9375, 5701901.436193915, 5702193.159410643, 5702203.622421852, 5702782.392862288, 5702911.405218596, 5703278.918844934, 5703874.461477544, 5706310.200299475, 5706313.21105659, 5709040.405996825, 5709107.577918851, 5709309.7852304885, 5713568.058543292, 5714168.186958004, 5715108.074370369, 5716154.983460917, 5721609.799535308, 5721854.48230776, 5723439.02132544, 5725683.337312126, 5730910.577803673, 5731710.9375, 5732643.781946389, 5732809.909087044, 5733737.387442925, 5733781.899095613, 5734579.600355979, 5736271.070427342, 5739676.9874281315, 5742663.283172758, 5744469.912849579, 5744679.179545819, 5745330.076809171, 5745465.625, 5745980.0367451785, 5746262.986353878, 5747012.227689354, 5747901.31684597, 5750107.310589998, 5753704.620688313, 5754798.007078992, 5755917.1875, 5755927.065532136, 5759181.25, 5759610.9375, 5760720.3125, 5762592.136537837, 5765294.898325396, 5773023.587571436, 5773891.944376685, 5776162.8617165685, 5778129.024526493, 5778864.016390336, 5794351.532769159, 5800394.37613422, 5804852.700423041, 5808387.203607134, 5809914.0625, 5810273.031819298, 5810957.8125, 5811493.802547435, 5811628.738705219, 5811664.723681836, 5811708.486366436, 5811710.9375, 5811831.25, 5812226.757776851, 5812282.8125, 5812451.279875211, 5812994.614689379, 5813073.4375, 5813074.091471884, 5813207.758984724, 5813369.979269771, 5813437.743420025, 5813544.101562484, 5813583.069828496, 5813592.125565259, 5813684.553667387, 5813691.80727112, 5813831.50354404, 5813834.67960122, 5813901.5625, 5814003.61063154, 5814302.919719883, 5814435.9375, 5814725.030284315, 5814732.517639246, 5814916.394251429, 5814971.875, 5815047.217410836, 5815250.5559353735, 5815434.375, 5815446.3030951405, 5815478.012191605, 5815663.561949598, 5815783.403637302, 5815980.832033039, 5816035.861326724, 5816084.248116342, 5816111.467885547, 5816112.024700531, 5816260.439962773, 5816402.675393907, 5816740.625, 5816867.219906587, 5817016.464095661, 5817046.875, 5817167.063821295, 5817263.969086041, 5817328.690896584, 5817372.571971094, 5817772.9548091395, 5818105.408918453, 5818936.718452747, 5819189.0625, 5819592.944873933, 5819747.942901281, 5820159.006936373, 5820443.522171616, 5820561.508452539, 5820608.625051357, 5820854.096837741, 5821674.656619881, 5821991.977788936, 5822133.084943926, 5822304.908669827, 5822743.469903316, 5822865.713980192, 5823463.699513239, 5823532.8125, 5823836.374865749, 5823839.012656676, 5823871.51003468, 5823885.660092986, 5824398.275633608, 5824707.595319196, 5824835.499597205, 5825406.25, 5828155.452124951, 5829626.8722890355, 5829949.911635683, 5829952.518103106, 5830008.650531082, 5830784.375, 5832407.256233835, 5833090.2534095775, 5839351.5625, 5840137.4651684025, 5840679.6875, 5842053.125, 5842200.0, 5842349.973310724, 5843072.34946844, 5843145.892708218, 5843305.832772111, 5843319.069890763, 5843517.1875, 5843834.585418509, 5843912.619453269, 5843949.067437761, 5844242.1875, 5844413.148226339, 5844417.837362127, 5844558.190036583, 5844587.465297427, 5844602.606667901, 5844772.275711404, 5844773.924306319, 5845069.901832564, 5845132.8125, 5845140.097769121, 5845185.8923637485, 5845306.25, 5845320.555787303, 5845429.669920436, 5845440.428152362, 5845468.934718129, 5845486.645401144, 5845677.615837337, 5845718.38239898, 5846078.955275113, 5846187.62585225, 5846715.936618848, 5847042.982645396, 5847316.843306417, 5847653.632763305, 5848264.103009754, 5848541.834322696, 5848599.936148206, 5848643.395215282, 5849373.371917645, 5849384.14070483, 5849568.75, 5850065.972306965, 5850385.737044236, 5850515.625, 5850518.968798216, 5850537.5, 5850784.773869914, 5851059.033855487, 5851572.6582550695, 5851579.6875, 5851686.033746718, 5851756.5050714435, 5852207.309136073, 5852278.6320762, 5852318.490406528, 5852565.935506961, 5852572.574034962, 5852686.208228356, 5852785.374198576, 5853114.276611868, 5853226.394049121, 5853307.654687893, 5853817.011537002, 5853910.767615978, 5854399.140343578, 5854562.5, 5854850.254111895, 5854970.233339853, 5854996.875, 5855020.14628194, 5855054.6875, 5855166.59819514, 5855178.125, 5855240.494883617, 5855369.482120827, 5855401.703749419, 5855489.982961537, 5855532.966974495, 5855814.639483349, 5855916.656796686, 5856103.125, 5856128.125, 5856421.849421277, 5856712.405001544, 5856890.947304158, 5857338.918317746, 5857732.8125, 5858406.167903478, 5858751.545635371, 5858919.143818705, 5858934.610108078, 5862726.5625, 5863666.635593504, 5863995.895663531, 5865324.501869785, 5872704.0008251835, 5873722.408288997, 5876164.0625, 5876687.817955914, 5878843.75, 5881234.375, 5881620.244762818, 5883271.066027779, 5883481.866898663, 5884199.700993824, 5891501.9123995425, 5892664.0625, 5893244.557948211, 5896825.025554787, 5899378.689991731, 5899846.7938728435, 5901468.75, 5903490.625, 5906068.882191199, 5906234.23295914, 5908960.49596627, 5910350.480927551, 5910381.671445562, 5916117.916363793, 5916466.340419313, 5917794.872914325, 5918771.184912061, 5920843.664812526, 5924653.125, 5929720.3125, 5931032.75027875, 5931733.2661849735, 5944003.370386036, 5945189.310129908, 5948896.923125508, 5949160.003136702, 5949227.274997586, 5949878.29988254, 5950485.15806692, 5960029.0486102, 5961535.9375, 5961598.4375, 5962630.857414758, 5963190.307699224, 5963499.8417832395, 5963918.468138201, 5964504.465841545, 5964953.809253577, 5965329.167524644, 5965637.5, 5966364.0625, 5966438.23867986, 5966616.3279908225, 5967869.260374119, 5968467.1875, 5968498.228533192, 5968680.586994875, 5968681.25, 5969032.720443289, 5969039.245950864, 5969172.777813039, 5969259.130592074, 5969373.201400322, 5969423.928417683, 5969515.625, 5969664.3409486, 5969691.608913214, 5969725.0, 5970310.730243537, 5971023.071198476, 5971289.424403903, 5971496.875, 5971654.9149593925, 5972213.0090880925, 5973218.188748925, 5973724.184909595, 5973730.975587277, 5974050.7386071095, 5974705.737850313, 5975644.979001943, 5976253.071906012, 5976343.889104948, 5977558.8776036585, 5978162.5, 5981780.872289492, 5981819.181423696, 5982818.342432182, 5986273.386880268, 5990197.41227257, 5995351.793815223, 5996202.5180647215, 5997401.954145218, 6000517.667123685, 6000695.912141164, 6002370.919548258, 6002889.0625, 6003020.627248106, 6003381.702769226, 6003518.897230403, 6004311.540935481, 6005273.940250716, 6009059.273159188, 6009375.002232445, 6009859.983306787, 6010209.834485122, 6010546.875, 6010698.344966404, 6010868.75, 6011772.043925171, 6012273.254961078, 6014261.9148672465, 6014657.774770146, 6016293.75, 6017455.644239536, 6023560.360921217, 6025716.6874783, 6026355.365527416, 6026835.807941691, 6031184.740308513, 6032348.4375, 6032427.100041715, 6032492.494929058, 6032529.833756391, 6032659.178639929, 6033512.5, 6034715.147185536, 6035605.508538299, 6038648.640823478, 6038743.077309158, 6039755.773662005, 6039917.761078606, 6040338.480915133, 6040821.875, 6040963.581503517, 6041868.752790203, 6042137.439586598, 6042244.418288424, 6042786.59366635, 6042812.005765898, 6042954.611965563, 6043141.257823289, 6043474.941894867, 6043514.707084845, 6043570.022162889, 6044507.8125, 6044690.625, 6045108.141515677, 6045262.8814627165, 6045330.4310654225, 6045508.9081262965, 6045870.3125, 6046169.600973981, 6046188.68233527, 6046415.625, 6046498.425243024, 6046616.752596441, 6046812.038366259, 6046878.07311562, 6047075.46790158, 6047084.375, 6047112.148515046, 6047182.690554914, 6047288.611826353, 6047406.036054781, 6047690.625, 6048197.329376055, 6048269.366485295, 6048306.011558998, 6048350.0, 6048543.580845882, 6048546.8217406245, 6048594.763560821, 6048610.247753343, 6048628.150281809, 6048703.1929022875, 6049070.931789077, 6049149.790767305, 6049362.269748034, 6049575.421776669, 6049630.995195856, 6050391.2033981765, 6050500.0, 6050814.673318399, 6050973.4375, 6050992.736625547, 6051222.195815681, 6051237.992546613, 6051315.501052992, 6051441.169541607, 6051486.1888679555, 6051509.375, 6051626.289313873, 6051631.309207657, 6052035.360627435, 6052481.994505641, 6052709.537933464, 6052874.311563384, 6053021.6205873005, 6053145.3125, 6053240.165194455, 6053307.23875644, 6053484.023407081, 6053603.125, 6053749.698987748, 6053790.625, 6053814.610303331, 6053984.109988234, 6054088.468970628, 6054128.328551439, 6054244.642535137, 6054470.3125, 6054493.75, 6054639.416940059, 6054790.926317057, 6054937.669728643, 6055248.4375, 6055273.147221682, 6055984.299587493, 6056259.375, 6056345.1573057445, 6056465.518014256, 6056967.804531244, 6057165.714166154, 6057217.084658791, 6057554.661587101, 6057647.285943493, 6057799.260357623, 6058062.510370447, 6058136.196598661, 6058233.115762021, 6058674.890192636, 6058815.975181988, 6060360.849765498, 6063618.035739461, 6063658.026894738, ...], [6.907105294879928, 72.21524448678761, 20.698232639362796, 45.75291770126072, 91.04475733583631, 11.207789789292615, 12.00092273628718, 17.49372999798309, 125.10914783603918, 27.655450793041457, 40.8585524945903, 36.706330460469, 29.024237125861237, 18.299424556687637, 22.25839500920066, 90.49998220155516, 11.989426909252144, 8.56704738425442, 6.332330144576671, 58.172161481389686, 63.380387252383116, 24.880710326853382, 110.63021909222309, 29.388673607763018, 49.1837660709406, 24.668484319453334, 18.185008312373487, 28.589033550324892, 5.235282127478783, 36.383526607715595, 11.015764641695297, 51.072007558490235, 142.53141069798295, 27.516236023178916, 63.23006952332246, 9.31294395676781, 40.40216776954581, 8.974292867811256, 83.34850280938348, 28.372110521175042, 13.38158571250632, 13.374665036516724, 42.85595795414455, 7.657690245764552, 7.526817806358466, 57.95311857918735, 20.800149092534667, 70.04093939745593, 6.0351686639921995, 104.99488950712419, 39.20246057939852, 41.069164748734195, 14.368536231772493, 13.504491542439382, 39.27668100305835, 17.868447079635736, 42.40371639725966, 58.32343013903646, 31.376795776196964, 44.87523031629716, 73.60723015010363, 17.08734631689885, 50.042033403358694, 40.546622820461614, 32.50161568783183, 43.87125638224528, 52.987034516486204, 21.29798217551618, 56.1404321686236, 104.82829667346672, 5.92402921837251, 30.345844259193107, 7.471436575642418, 5.654590924083748, 21.983991633874428, 11.219943151576132, 5.735524939534508, 37.335413726213204, 83.66772565318641, 5.236022916279894, 10.987930036821636, 21.926037765881876, 33.15393004398616, 9.133149586735804, 34.88648739315267, 6.143214464304864, 6.53046509989645, 25.46041818600769, 54.62660214136456, 43.462597355764515, 13.684507584309602, 172.94939285201332, 9.080996802979252, 85.58496071217444, 6.3490792725790826, 87.55140793563449, 12.231828731093938, 97.25689795203887, 65.64940208248979, 45.83742455251261, 56.15671359240986, 17.56863869374666, 9.177969504616277, 30.83492484179293, 34.68358211806022, 46.4926063099569, 65.7120020700851, 12.227547965211091, 22.149229483630364, 51.32117433203613, 94.0425780110756, 6.862303874120309, 20.521954086838758, 15.816941489309722, 56.76676207921549, 20.988640972825422, 43.4351662531048, 17.56746931243678, 25.467663792045318, 29.222268420485726, 13.984158600434942, 40.031449240174794, 8.359562471847118, 72.07549725213457, 10.969907406029275, 110.6038850654389, 30.71616906595512, 11.334431162636282, 34.942968444903634, 17.574903112809103, 72.58502718612846, 70.22711906817456, 73.68949567159507, 93.09587716298111, 12.832416232933266, 54.21246088172741, 80.34346530768637, 13.112925994687707, 27.81928411070669, 33.722362810310635, 19.74943211872669, 35.62665315641934, 14.226617017951973, 11.526555834164018, 21.188342332637664, 23.548965089434596, 36.693500139444836, 8.400273840447236, 72.80422064865657, 6.567455118165865, 6.112674542141419, 99.91180109336693, 6.759656789614803, 20.680248932332585, 87.95512056829128, 34.539111703335124, 49.02948144426321, 13.966660647807283, 12.9951147176927, 17.86678851214997, 49.22758224164011, 100.137613034129, 37.63814171344921, 37.70128361706355, 66.40858341443833, 24.718008943350313, 6.362985466490824, 48.434862837812375, 51.1151201244083, 97.95655961361635, 15.071055036089682, 17.300057307292885, 64.18879201773892, 17.6941519779205, 46.823976212618376, 20.537839663520188, 25.34105289710586, 64.50731235599038, 25.14976210636862, 6.359643037801839, 72.67450903647601, 10.075390259674887, 29.95527179784501, 116.34194389542029, 10.059863513219678, 6.421707130239987, 23.010447177262414, 54.92193043778623, 50.735137481704136, 43.687480195908726, 8.833211223918825, 103.90547443053711, 99.38979558250685, 13.136266619132773, 16.90136180276397, 59.36687265600579, 43.45650608409926, 93.38268704755659, 17.781286663811624, 101.59097267410968, 59.589866812486, 43.2199610948724, 26.140095505168457, 26.713216616845262, 12.570422071100657, 6.242162327729334, 32.983670471130914, 42.80054044098496, 15.53130268947039, 21.00546772086694, 28.546513205397204, 10.06351611148176, 19.869098067493987, 8.006624538885887, 55.30724091832536, 94.23432696887991, 41.7321969921323, 151.29539216432346, 9.369025786028876, 22.92015396025089, 13.95349865678337, 26.334396467801483, 14.500416483889039, 86.62082482289138, 35.337428555979585, 24.871328872657443, 51.934500607826095, 130.7756289887185, 17.44907521971355, 41.13870639127246, 13.522563581631962, 24.23106301108887, 86.89937145404674, 23.997373751208464, 74.92258170465385, 10.411887291922444, 27.075631593008048, 26.092965042804046, 35.96630352386471, 5.627121413668008, 63.7308740341371, 8.096998941913071, 15.313463604564754, 7.847348292574759, 63.204436069335614, 20.356249654597686, 6.754899421886402, 44.77155934922607, 11.512781782900383, 49.121720183083596, 16.99447168460277, 5.1552766209885075, 6.9951304923040825, 11.884956794149664, 46.47305905427562, 27.238442455315596, 12.761793607963247, 22.786606579209977, 20.341584096778604, 14.222356258903424, 58.57524334636784, 32.4577575668021, 55.857551019741464, 6.5410162079395, 6.335035178200979, 33.53717861385014, 18.385875765611956, 43.171841704800585, 15.166342821995391, 6.184552715774591, 5.16574232456251, 10.57465605442113, 9.340462367083289, 5.352279051949798, 38.50497033664732, 5.893427536052537, 38.73500755231976, 104.47067584849026, 7.209143456790859, 19.037547802604102, 66.79124655349506, 6.786944654437187, 59.225562821937096, 77.78426235674448, 39.41398626251296, 78.51375763075713, 65.67971718989283, 27.514582056734064, 15.44074857788451, 34.30148132622578, 56.27469385740572, 10.20617477799499, 27.361001061152926, 25.149964349610073, 18.173598234572815, 5.968339962910512, 10.592942546786526, 165.9045293951705, 11.081604667722237, 27.24760985235423, 6.033999793675193, 39.41742904107455, 13.85381001379227, 14.225434516247491, 14.160716237787222, 54.79419839127125, 24.438231250825268, 63.32022773575723, 7.955006349375759, 51.29034163731563, 8.331575682971359, 16.099723836691037, 41.37568395261916, 12.087386058583943, 21.463834856016, 13.183765765524225, 39.4838335390506, 24.488938670607702, 10.451698664273627, 13.04855664494656, 33.607922345178096, 6.851506503702395, 25.060089631158938, 76.97326109528049, 48.345279733640226, 24.148177872859918, 61.2475996691145, 41.514022483934255, 21.438430348645642, 62.47865382583759, 98.47948253039043, 5.752420777457836, 18.414058434428, 10.415409980152234, 54.3725527409035, 32.002712569064094, 13.575025740565469, 56.83964070669961, 12.300389389922907, 14.985545349812071, 36.15602511020782, 22.206931832039416, 73.78994020942388, 39.386036720889514, 30.937667286436568, 86.08640783436732, 43.00145118518334, 120.82621003019145, 19.75259526543031, 55.87579590763811, 41.201183457412874, 45.826744548373796, 16.017082848130315, 25.058616652809174, 46.456316402047214, 10.979430299923473, 16.033017569427674, 20.70573995829484, 7.486976321328371, 65.88850377824409, 35.373145752237136, 7.926521281852661, 57.30375916413898, 17.313958013453654, 16.497177499371524, 11.30178330274578, 34.475039991708165, 24.069552496452395, 59.39399930273136, 34.701763714097304, 73.38053351021323, 8.684170605622397, 25.350840982186906, 17.549983388468842, 44.331959786842134, 125.67045625764749, 18.976112328505046, 55.76296544449059, 8.853534674922509, 19.450506408118923, 41.061255007348336, 37.07647170274648, 5.642165126487857, 99.52475879972488, 5.757253447044581, 5.100205663079211, 81.90430902209681, 21.676365700564098, 12.933008324563811, 32.050533470805526, 77.30462753230762, 15.294402173637529, 7.088134781618144, 90.24799946922576, 74.45086452224145, 50.92094017923705, 7.402588700899557, 11.754768547991555, 47.39844949788675, 5.311967553357842, 33.57440496123316, 67.35153822740443, 37.35176015214822, 46.57097532271311, 18.505151727733416, 12.115879814917946, 33.641559413692484, 52.50555675680785, 48.42715389149398, 32.33257567367111, 92.49048327220514, 18.91958434511343, 34.97452491797548, 7.324144223731914, 5.924604690632178, 30.672717594031987, 6.946581816317433, 15.329959872092566, 28.410100166926306, 8.034714426039516, 8.625015628612763, 12.909838992769025, 33.04210176683825, 12.355313470032431, 9.544865752547903, 19.958883982724174, 28.802084363272396, 18.734626344256366, 15.781415092200486, 10.308417784937436, 39.36296488674346, 8.573531283478648, 22.087800986344213, 38.9377519112141, 12.076748458602768, 26.813036232442478, 56.78198496932745, 8.822297464290651, 37.854853333270974, 27.60907227133219, 30.3300882241616, 13.389920542760814, 13.902742915164751, 31.69872966551677, 27.167473338749076, 48.687724543767814, 29.45790213648609, 18.765539089205667, 27.5869643306172, 7.481904947504414, 67.93865430375516, 64.52427113460035, 60.202081076256455, 32.02130668078635, 61.05321807367778, 21.891331569657257, 57.463023811661714, 6.038568362704289, 24.33927541265011, 6.113240635120241, 6.077121999582141, 100.42156999450933, 33.65868169628999, 10.075776302986505, 57.868955393299736, 72.98897312100921, 8.470785990714914, 13.618628226413374, 13.58088606923095, 31.39620811668923, 45.9602105595916, 22.981174606825306, 7.2072204334578345, 72.73321487786102, 6.451547768253803, 49.261566345010195, 26.351223096438215, 63.86660298223792, 49.28747882469588, 64.75608623176186, 65.96623786452605, 9.112657657897433, 29.85550485128575, 13.356770398590257, 18.668830209403673, 70.53207741735406, 43.85791038241643, 79.16492092957479, 15.547356567122838, 105.98448583701173, 42.53229547461415, 55.24987434642881, 10.3123297852004, 22.033973602913427, 64.48051543917622, 16.581493830498395, 7.500341613745633, 64.05522551531662, 37.7901330630516, 38.35435487099895, 6.355791260148176, 74.76366186350805, 20.307227088113642, 90.58529138264593, 133.75816068691765, 7.738387529886062, 12.612347886990719, 108.62879378868105, 14.229210480094181, 105.28617877974975, 29.662279757736552, 83.54832623729595, 46.14150673716951, 18.326823783386214, 66.66592621485107, 27.312943921446053, 55.04347042946616, 10.935859296634689, 13.084606527363254, 19.25397312283538, 6.0455212857535825, 21.736317144253512, 12.645929033503773, 77.61170635955648, 26.69809280321391, 12.456614988924501, 14.16768052910572, 12.584532615824116, 15.332698108270792, 6.632891401737549, 8.896747162794194, 16.04333784870323, 32.8302647752845, 6.322367914860593, 90.57220548523787, 27.735446890557018, 35.36837136686131, 13.727463133476208, 85.32514041435121, 6.271243017873715, 74.50241456088175, 26.48189108060191, 130.4595577794459, 15.198774901779636, 97.7010309176681, 16.853072446115664, 16.937897377537926, 13.609547160417216, 8.935906566416868, 11.79611243095205, 113.51490051375023, 186.56380367142117, 27.981585386058146, 12.352945935015576, 48.8757135170203, 46.224457524964315, 140.3369896032981, 41.454652990992415, 30.793795000950247, 27.17525258568292, 44.04063440413703, 46.06985230767772, 95.52879745735055, 32.847575453198345, 13.5674126744747, 20.92982802795968, 24.505507229333038, 111.4025250935266, 7.379848191047894, 11.056391263590672, 9.3063899577719, 25.36247308199298, 5.5128232914297195, 107.52528550416753, 50.50974461214715, 22.488578168850662, 51.402723044789326, 15.145651007271542, 17.942615595300374, 8.670174697555277, 33.93273707478523, 66.55915836256597, 35.957512592531, 8.39261501315215, 35.915011956416826, 5.598597686041744, 19.72337708551472, 32.590380073134746, 60.059680753429014, 27.508682076335635, 32.259428009016695, 5.3503325654545355, 25.394991419057813, 11.555249284521036, 14.710583518228942, 9.487188216839977, 35.87292550236961, 5.961794048292523, 66.79657204207172, 32.01550081321888, 6.330568120550963, 10.821316626489152, 64.50327244104889, 15.12556512871733, 67.36925599008765, 18.993913760219357, 98.26783960578925, 16.42977053956517, 55.775061186643086, 62.757960691902554, 13.133337097718584, 26.47771484259555, 13.324538864654146, 9.886822610962474, 10.531729177019116, 14.244070039684697, 10.935006908704036, 37.71507373580987, 8.050267158164942, 7.4326818141087605, 63.08454648569668, 31.45247592751476, 15.066483740961555, 10.1583698544071, 44.859538662680166, 26.298576282360454, 5.931311550810088, 68.62086877002893, 103.69570861246638, 21.667523559836926, 18.65372621768165, 12.615869985115127, 84.11053186241917, 12.56145319719824, 21.547150635597248, 6.050642280752755, 39.314886941597756, 17.679571458376632, 112.81369288031776, 20.633983583107394, 7.034021094618742, 26.32011505234555, 16.0926555114774, 9.52568871372023, 28.51411716006779, 26.61877353408817, 5.787601824584488, 111.59965482912821, 16.919459180336872, 32.78920419439302, 95.34112313244725, 30.43490689341956, 36.61324941819613, 35.47962616550922, 85.35010582246615, 52.66070299513503, 27.627130089742312, 23.729709232881714, 77.66733493737743, 7.397553605016049, 12.750629001074934, 67.08501903313126, 20.949596060843042, 13.572886030682142, 30.874613784900962, 27.853736543281656, 59.9535443212601, 59.46361869297455, 36.54292704874278, 14.84074891912544, 27.56961420651521, 7.827494563314557, 51.42085873451014, 16.319173491164616, 84.06622798157912, 7.177885072390428, 36.392145728788485, 9.92763020495424, 63.902237368243746, 40.012392684507105, 25.75371657923416, 29.12573032058131, 105.95907764915276, 116.13162938525836, 9.694882965516966, 9.77999201150984, 14.337513745776345, 46.18269522302276, 21.225691577705565, 27.662167282971954, 67.62260507215149, 11.530536557451182, 5.812680672712037, 25.16430712125382, 18.62422641922025, 72.37770774273969, 8.93504029907961, 127.0647794866218, 25.161686577764847, 25.167932989008985, 24.397443219525744, 44.382248111837086, 65.84787948077584, 9.801119751555552, 62.25043204808888, 125.13935960620063, 14.703596069979854, 42.12853200415033, 14.697296447802445, 45.54839670150939, 72.40104399480289, 45.509885067438105, 25.111397248490555, 69.49554278619672, 40.23246120963767, 56.68965627135938, 9.693091622093409, 67.50078220358628, 26.4496971915799, 130.8696785969406, 8.338138545979232, 76.55581500076781, 23.309192443295913, 20.618604869201576, 58.70610960019318, 37.45690709446915, 73.70471139182189, 45.60959043719909, 8.00958224003422, 15.82563987672027, 10.874234367140264, 84.4451387653589, 40.17321395320552, 16.162594519861912, 17.063697944339822, 50.11002320744531, 7.189891431870526, 14.648134678842972, 54.34512053683072, 62.866565817627176, 36.02985337249816, 39.10554419195294, 37.996820971498536, 18.960366688421963, 6.005803894168728, 11.35590738942457, 8.841741837555736, 11.378061279155014, 7.826163060264211, 21.192190160252952, 60.43284321237374, 54.13154398350202, 40.506449546621724, 159.04237141658345, 16.38137689177143, 14.41902900762314, 58.48522497450347, 26.999999119854557, 6.265069991867014, 38.57408386181015, 8.414946722117392, 36.58459308908174, 67.70959204272579, 89.99601857832292, 6.037785905537427, 70.72623107406665, 49.805629570458635, 72.38542225301605, 117.85378483000802, 30.95057856369989, 49.49144823831506, 74.74339532321338, 18.880317553144874, 9.913849821767581, 24.33512170690209, 73.60047519564068, 29.830050954449515, 65.43612532643088, 5.708386314672389, 15.54683106126312, 126.39844380440002, 30.840382443319065, 30.373881411785007, 28.530956104625268, 5.337077907406292, 35.6007302583059, 11.972990540612658, 17.379866242262878, 35.43638797834342, 82.35658125146884, 15.091777275758663, 10.196893980981828, 26.946322071667073, 35.82468784025374, 95.04161239522196, 44.67009452698831, 121.51881255028844, 29.762859634125498, 59.263018139326796, 118.51235033993245, 18.033765072695058, 6.003952539393209, 88.77586404104095, 98.1691307923661, 300.26709223661595, 29.029898849592858, 45.573079155515615, 41.50028156119863, 36.742490846868904, 14.370907821170317, 27.987077736705086, 5.920331854030452, 7.313739728920817, 21.29612317753686, 28.71856891180395, 69.8071227858235, 12.518815486294333, 12.99028644848387, 17.32380236375397, 38.1859355604699, 40.29016332093604, 27.483202253383798, 57.635130871022916, 14.601869543917072, 9.491492737923341, 14.59474421016241, 44.65093903813604, 10.777687771104912, 64.33477977853224, 46.19263966945227, 16.56582417139429, 13.115847897806088, 61.04824609552445, 47.90315764787297, 5.9081281923545195, 19.675936757892654, 77.72759196398604, 7.182555641596388, 153.1174894328813, 43.744994389208415, 8.725763399927803, 73.48691673794171, 18.774138785060547, 17.670262580505597, 23.332077712970698, 7.584146714088729, 23.84923884943572, 21.51911249608386, 32.58838996433484, 29.117895579585387, 5.554391773386363, 18.602674726606473, 106.52563481528176, 5.741826487883545, 6.810582559723546, 28.19922390473104, 105.2884603000355, 18.822886036979238, 7.288535569724822, 17.900977729088872, 51.730993717040654, 6.537589225919284, 17.002658991375363, 23.160415157543362, 86.19081620471773, 33.67028016466619, 69.6053408138666, 89.61035625458187, 70.95206849776226, 29.14500038972752, 41.19237416267137, 114.95585747150072, 60.04090817357526, 8.37797465309086, 25.376812028278163, 87.63385678931628, 66.21267523951036, 28.612497610898153, 62.99278232012195, 44.28575629987951, 39.208989687311266, 5.566917809397568, 33.976082249624945, 7.2209094290148945, 43.81448780568044, 28.554821174526353, 11.644827934262034, 27.06896932603508, 10.83405454205332, 89.89107802404244, 13.38722047241043, 102.21354876311882, 6.519443411972173, 19.927606147256764, 71.10463385955487, 8.615122809284173, 21.078136037937625, 66.54750943797393, 89.1049032235033, 14.952155044357166, 5.530155654661707, 37.57203380391755, 18.21433624047658, 6.412309585806451, 101.57859908572225, 6.896782169115488, 174.60636677072483, 18.139152413985634, 73.25178137752283, 33.57216360601161, 40.37723454282115, 9.6260129983517, 19.03355639086943, 7.896297974267994, 13.417696110233363, 68.6657084672897, 5.662923097933347, 22.778051938906785, 38.79366455353711, 5.041337436934533, 13.50793713989102, 13.432364899990718, 84.32349681737136, 6.56302866071543, 71.56702316121509, 24.76218082024901, 33.92270168585057, 27.091744841555602, 112.76520127486786, 60.8603186973071, 17.011401475655866, 9.913414063990224, 24.570265386723047, 72.9724437746089, 53.26023609456334, 61.44945381249289, 131.6710309150527, 10.197291246879448, 80.18874578762623, 67.14104155306293, 17.977739074895105, 53.61029025536895, 9.144015935915005, 52.44523351349902, 47.507923705834706, 12.17061400907801, 51.19088030959905, 17.924527802123094, 60.13085106694357, 12.110196868383998, 172.25359784056394, 24.616149631833164, 26.294191412291273, 7.272350794657958, 15.994759920905052, 49.83867610793934, 18.184644299741496, 9.38197343825662, 22.598829939727935, 21.473991068073786, 9.473080257222788, 21.355170879469572, 10.752040391348611, 96.61714968330318, 7.444989693499825, 91.43858706609745, 23.113350096606297, 110.98970705526082, 34.12894741166414, 38.04777031821795, 100.01727196018834, 31.236302011793104, 13.08924707013086, 34.368985395546396, 19.950095484685683, 97.22239386435777, 58.812938840586874, 7.736668570699493, 82.02743818498477, 78.28582207443824, 54.80219662541163, 10.702397722564275, 90.78462410114359, 31.44199364314196, 25.795221140583653, 22.471727290788387, 17.963515082692805, 15.292621016370559, 78.16532100464732, 11.0874434069735, 11.83713654515878, 10.139776624723087, 14.981184584827982, 9.560535496221949, 7.203519070072574, 29.241957306893347, 180.67220146670707, 26.902281471011843, 12.775194247118652, 15.826905447556022, ...])
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);
([3344733.491601843, 4672575.0, 4733033.791447305, 4904527.272245148, 5089848.038225953, 5098671.925637493, 5143492.682509106, 5143542.155565207, 5167661.394194812, 5167834.216671603, 5167853.525207044, 5171778.052336661, 5173526.5625, 5174906.4413101515, 5200341.5929061165, 5202721.875, 5216546.249771554, 5221717.6827121, 5222258.311194105, 5222313.9636986125, 5223138.61552637, 5223936.728173858, 5223940.625, 5224279.796640993, 5225298.4375, 5226224.286177138, 5226232.42941446, 5226311.661424932, 5227935.58122563, 5233421.871243554, 5236282.739682625, 5238985.9375, 5250241.220681425, 5254953.07873569, 5256854.824816142, 5262734.353088172, 5263657.8125, 5263658.920143183, 5269543.75, 5272365.617228526, 5272496.3951545805, 5272966.705156673, 5275054.587049872, 5285854.835585003, 5286977.908649327, 5287798.4375, 5287885.365111181, 5290523.4375, 5291444.787650248, 5293384.740384554, 5293936.651124346, 5293955.906376832, 5294124.841088086, 5294471.438887307, 5295120.10300097, 5297053.774776382, 5297323.266501106, 5298727.414160108, 5300448.534391763, 5301511.448532953, 5302282.8125, 5303022.1609556805, 5303575.0, 5304771.875, 5306029.569903335, 5319387.5, 5319550.0, 5323549.480215333, 5323606.25, 5328815.347593192, 5330959.196725399, 5345752.994113874, 5353877.745269153, 5379574.1478742575, 5379816.735340712, 5385854.7457192475, 5397406.692713615, 5398002.015893556, 5398414.217573665, 5398835.608255519, 5399262.408695977, 5400182.354831727, 5400845.082467927, 5401534.1308441665, 5408612.834625347, 5412811.451332202, 5414917.45872206, 5430412.3230116675, 5430679.6875, 5430740.625, 5431752.750865528, 5432120.3125, 5432124.6882265415, 5432182.080153751, 5432288.12171986, 5432298.5262086475, 5432505.295100333, 5433006.25, 5435334.448428806, 5435794.29529673, 5436696.484602225, 5437924.757309184, 5438140.4377906155, 5438421.875, 5438610.9375, 5438793.75, 5438910.116523244, 5439375.605572951, 5440429.2508510975, 5441094.29650239, 5441785.9279280845, 5441830.163015672, 5442299.396805956, 5442431.462165988, 5442707.8125, 5442922.321456866, 5443569.260156464, 5443600.220262645, 5444296.913337353, 5444837.052018804, 5444940.348903928, 5445393.484599452, 5445503.260512194, 5445534.758265746, 5446481.146643309, 5446637.833091203, 5446767.768309153, 5447173.565848952, 5447217.175826483, 5447358.365968228, 5447374.546025992, 5447421.96524124, 5447458.313681523, 5447487.362428029, 5447899.309289821, 5447981.25, 5448239.0625, 5448277.5452942755, 5448295.374102119, 5448512.692309077, 5448577.430431143, 5449120.3125, 5449207.962407607, 5449452.055265878, 5449837.084263863, 5450121.559037745, 5450389.384975439, 5450917.396486592, 5452010.381489517, 5461470.806693532, 5462667.420551669, 5463370.012391784, 5463556.230685977, 5464199.788730673, 5464632.299801964, 5464962.5, 5465005.92065854, 5466801.280846762, 5466854.06204953, 5466906.171118215, 5466945.3125, 5470567.174308027, 5470959.788759014, 5471471.461293016, 5471530.87296712, 5471855.960106754, 5471925.722318613, 5472094.996438756, 5472330.471119035, 5472505.94881465, 5472692.221077647, 5472838.006212574, 5472898.977680182, 5472983.005621817, 5473228.125, 5473277.905557745, 5473286.748072526, 5473467.60886476, 5473473.383702195, 5473516.323265404, 5473581.217933683, 5473655.4533140045, 5473821.25751152, 5473985.062062898, 5474291.376865892, 5474629.257321924, 5474637.139747525, 5474718.75, 5474805.891288877, 5475045.515919455, 5475177.470537108, 5475370.495264907, 5475470.292385449, 5475530.679211797, 5475643.750426234, 5476010.9375, 5476045.3125, 5476091.203800243, 5476152.150182726, 5476182.673060416, 5476448.4375, 5476690.625, 5476965.49155561, 5477076.858323448, 5477169.511281599, 5477248.236737161, 5477342.1875, 5477485.9375, 5477529.834086898, 5477530.699687144, 5477552.7831225945, 5477566.380153926, 5477699.32018029, 5477702.555224962, 5477746.875, 5477849.579187957, 5477979.6875, 5478015.877979576, 5478118.794161873, 5478482.444570115, 5480235.651653325, 5481232.691009061, 5481398.316751893, 5481543.75, 5481932.8125, 5482110.720439485, 5482262.5, 5482290.498984136, 5482391.311693418, 5482448.4375, 5482593.32021907, 5482645.04919477, 5482649.975998884, 5483291.581687173, 5483701.5625, 5483760.4255839195, 5484962.42223395, 5485604.551123954, 5487323.4375, 5487459.608988045, 5488357.086888135, 5489554.310932259, 5489782.716591015, 5490919.378003332, 5490988.713401018, 5490990.002948659, 5491278.081733715, 5491684.030063331, 5491706.483139759, 5492185.20325549, 5492456.111871937, 5492538.624138143, 5492783.871621594, 5494262.935864989, 5494364.510509531, 5494620.243958922, 5494880.946827772, 5494899.620577147, 5494915.001260898, 5494932.61009638, 5495038.511138388, 5495957.8125, 5496117.1875, 5496851.898085624, 5496853.643702743, 5496901.5625, 5496916.307126689, 5497085.9375, 5497557.870263075, 5497655.566610271, 5497729.703840771, 5497823.052307181, 5497823.448194487, 5497823.736679107, 5498088.640007586, 5498096.331449269, 5498165.625, 5498351.161824996, 5498925.323411276, 5499169.525226528, 5499187.472676075, 5499228.241277576, 5499367.1875, 5499444.71858301, 5499504.6875, 5499695.567870183, 5499781.58565718, 5499887.446808865, 5499906.375092483, 5499949.873783344, 5499964.0625, 5500072.755372904, 5500320.250817106, 5500402.355807973, 5500661.587406587, 5500919.076360446, 5501062.128632096, 5501204.291540382, 5501435.907803696, 5501663.064193186, 5501722.900690584, 5501901.130222054, 5504284.057015725, 5504385.7360254815, 5504420.0913692, 5507501.5625, 5509498.733475601, 5520781.25, 5523452.440542649, 5523651.386758862, 5525325.0841341335, 5525433.258955803, 5526668.75, 5526705.225454837, 5531394.809561271, 5531402.572214022, 5532730.823866952, 5532790.380673867, 5533060.457202177, 5536022.832953724, 5536840.612696932, 5537119.175365743, 5538042.569711146, 5538112.64319387, 5540265.440152129, 5542653.6532647405, 5544276.5625, 5544685.9375, 5547497.932002083, 5549603.125, 5550195.8920887895, 5551713.194350143, 5551888.18633127, 5553004.178398346, 5553166.000574305, 5553545.3125, 5554543.338459503, 5564276.324337374, 5564533.452273871, 5564535.9490055675, 5564890.2682577465, 5575137.794841608, 5576410.9375, 5579083.843968854, 5584271.82513241, 5592180.336624439, 5594063.332139985, 5600802.944205426, 5601074.9273573905, 5601523.4375, 5605140.625, 5606440.625, 5606675.256204959, 5606823.233426568, 5606862.5, 5606982.715519911, 5607186.197146452, 5607216.604774396, 5607265.291692685, 5607804.785208225, 5608184.375, 5608264.875844123, 5608381.25, 5608454.203422259, 5608492.543435517, 5608500.108585457, 5608680.480314557, 5608755.153729567, 5609832.8125, 5610515.599968457, 5611141.90651962, 5611363.183099615, 5611586.2368339, 5611967.736764692, 5612434.247893552, 5612488.669260987, 5612827.329303531, 5612926.5625, 5613580.625059961, 5613631.82010928, 5613641.064206909, 5614245.035092894, 5629586.434864221, 5631904.487669124, 5632152.327724374, 5632214.15118256, 5632875.978001677, 5633504.298286037, 5639213.412429638, 5639454.4156442005, 5641351.5625, 5641868.5877162665, 5642163.934222473, 5642257.288108566, 5643551.5625, 5643754.6875, 5643808.783931997, 5644414.429764132, 5645056.25, 5645056.91150417, 5645652.611211254, 5646145.3106102925, 5646389.0625, 5646909.375, 5647227.262307102, 5647414.856617491, 5647654.6875, 5647745.003405795, 5648207.8125, 5648291.352523863, 5648918.342113851, 5649441.383990674, 5649732.202627908, 5649761.656266026, 5650431.078459666, 5650459.375, 5650577.41519857, 5650839.16081345, 5650885.5452763615, 5650916.6787883965, 5651553.714486664, 5651710.278153618, 5651815.184143241, 5651822.540151254, 5651879.929605791, 5651892.645125882, 5652115.625, 5652336.670498478, 5652412.704187818, 5652441.591436714, 5652682.8125, 5652841.130885083, 5652865.182618707, 5653009.375, 5653144.282722974, 5653394.3377768155, 5653668.75, 5653779.017072843, 5653873.424939558, 5654171.826977703, 5655340.411435464, 5655502.648157836, 5655684.26704815, 5655925.948975978, 5656096.802453941, 5656156.25, 5656305.806650972, 5656543.273980137, 5656945.881204398, 5658024.651592853, 5658970.3125, 5660114.964905637, 5661264.0625, 5661845.3125, 5662176.5625, 5663005.789015209, 5663367.140869208, 5664263.572341971, 5664516.433027456, 5664542.425844058, 5665059.268775237, 5665570.190487463, 5666092.1875, 5666441.391159836, 5666939.326026574, 5667354.6875, 5668365.957820876, 5668504.988573632, 5669146.46548421, 5669265.190703359, 5669299.247637178, 5670117.7968372, 5670551.879030964, 5670907.8125, 5671093.519449947, 5671133.532876039, 5672329.59236188, 5673220.3125, 5674187.894801135, 5674839.0625, 5674992.1875, 5675120.041951891, 5675217.1875, 5675257.323680119, 5675958.53609036, 5676163.48538211, 5676329.6875, 5676610.502230948, 5676684.5965446355, 5676688.6430495465, 5676876.5625, 5677199.205898254, 5677819.719671174, 5678541.101634243, 5678944.215904992, 5678954.083758603, 5681087.206255476, 5682812.663032123, 5683983.484113899, 5685983.589195498, 5686055.357948006, 5687768.379848796, 5689310.857288092, 5689625.175417799, 5691582.792090092, 5691887.85882483, 5695032.029436005, 5695592.1875, 5695913.753287287, 5696551.42904939, 5696712.5, 5696825.5746417465, 5697763.46941592, 5698917.860761772, 5699333.130143155, 5699454.623136625, 5700410.9375, 5701901.436193915, 5702193.159410643, 5702203.622421852, 5702782.392862288, 5702911.405218596, 5703278.918844934, 5703874.461477544, 5706310.200299475, 5706313.21105659, 5709040.405996825, 5709107.577918851, 5709309.7852304885, 5713568.058543292, 5714168.186958004, 5715108.074370369, 5716154.983460917, 5721609.799535308, 5721854.48230776, 5723439.02132544, 5725683.337312126, 5730910.577803673, 5731710.9375, 5732643.781946389, 5732809.909087044, 5733737.387442925, 5733781.899095613, 5734579.600355979, 5736271.070427342, 5739676.9874281315, 5742663.283172758, 5744469.912849579, 5744679.179545819, 5745330.076809171, 5745465.625, 5745980.0367451785, 5746262.986353878, 5747012.227689354, 5747901.31684597, 5750107.310589998, 5753704.620688313, 5754798.007078992, 5755917.1875, 5755927.065532136, 5759181.25, 5759610.9375, 5760720.3125, 5762592.136537837, 5765294.898325396, 5773023.587571436, 5773891.944376685, 5776162.8617165685, 5778129.024526493, 5778864.016390336, 5794351.532769159, 5800394.37613422, 5804852.700423041, 5808387.203607134, 5809914.0625, 5810273.031819298, 5810957.8125, 5811493.802547435, 5811628.738705219, 5811664.723681836, 5811708.486366436, 5811710.9375, 5811831.25, 5812226.757776851, 5812282.8125, 5812451.279875211, 5812994.614689379, 5813073.4375, 5813074.091471884, 5813207.758984724, 5813369.979269771, 5813437.743420025, 5813544.101562484, 5813583.069828496, 5813592.125565259, 5813684.553667387, 5813691.80727112, 5813831.50354404, 5813834.67960122, 5813901.5625, 5814003.61063154, 5814302.919719883, 5814435.9375, 5814725.030284315, 5814732.517639246, 5814916.394251429, 5814971.875, 5815047.217410836, 5815250.5559353735, 5815434.375, 5815446.3030951405, 5815478.012191605, 5815663.561949598, 5815783.403637302, 5815980.832033039, 5816035.861326724, 5816084.248116342, 5816111.467885547, 5816112.024700531, 5816260.439962773, 5816402.675393907, 5816740.625, 5816867.219906587, 5817016.464095661, 5817046.875, 5817167.063821295, 5817263.969086041, 5817328.690896584, 5817372.571971094, 5817772.9548091395, 5818105.408918453, 5818936.718452747, 5819189.0625, 5819592.944873933, 5819747.942901281, 5820159.006936373, 5820443.522171616, 5820561.508452539, 5820608.625051357, 5820854.096837741, 5821674.656619881, 5821991.977788936, 5822133.084943926, 5822304.908669827, 5822743.469903316, 5822865.713980192, 5823463.699513239, 5823532.8125, 5823836.374865749, 5823839.012656676, 5823871.51003468, 5823885.660092986, 5824398.275633608, 5824707.595319196, 5824835.499597205, 5825406.25, 5828155.452124951, 5829626.8722890355, 5829949.911635683, 5829952.518103106, 5830008.650531082, 5830784.375, 5832407.256233835, 5833090.2534095775, 5839351.5625, 5840137.4651684025, 5840679.6875, 5842053.125, 5842200.0, 5842349.973310724, 5843072.34946844, 5843145.892708218, 5843305.832772111, 5843319.069890763, 5843517.1875, 5843834.585418509, 5843912.619453269, 5843949.067437761, 5844242.1875, 5844413.148226339, 5844417.837362127, 5844558.190036583, 5844587.465297427, 5844602.606667901, 5844772.275711404, 5844773.924306319, 5845069.901832564, 5845132.8125, 5845140.097769121, 5845185.8923637485, 5845306.25, 5845320.555787303, 5845429.669920436, 5845440.428152362, 5845468.934718129, 5845486.645401144, 5845677.615837337, 5845718.38239898, 5846078.955275113, 5846187.62585225, 5846715.936618848, 5847042.982645396, 5847316.843306417, 5847653.632763305, 5848264.103009754, 5848541.834322696, 5848599.936148206, 5848643.395215282, 5849373.371917645, 5849384.14070483, 5849568.75, 5850065.972306965, 5850385.737044236, 5850515.625, 5850518.968798216, 5850537.5, 5850784.773869914, 5851059.033855487, 5851572.6582550695, 5851579.6875, 5851686.033746718, 5851756.5050714435, 5852207.309136073, 5852278.6320762, 5852318.490406528, 5852565.935506961, 5852572.574034962, 5852686.208228356, 5852785.374198576, 5853114.276611868, 5853226.394049121, 5853307.654687893, 5853817.011537002, 5853910.767615978, 5854399.140343578, 5854562.5, 5854850.254111895, 5854970.233339853, 5854996.875, 5855020.14628194, 5855054.6875, 5855166.59819514, 5855178.125, 5855240.494883617, 5855369.482120827, 5855401.703749419, 5855489.982961537, 5855532.966974495, 5855814.639483349, 5855916.656796686, 5856103.125, 5856128.125, 5856421.849421277, 5856712.405001544, 5856890.947304158, 5857338.918317746, 5857732.8125, 5858406.167903478, 5858751.545635371, 5858919.143818705, 5858934.610108078, 5862726.5625, 5863666.635593504, 5863995.895663531, 5865324.501869785, 5872704.0008251835, 5873722.408288997, 5876164.0625, 5876687.817955914, 5878843.75, 5881234.375, 5881620.244762818, 5883271.066027779, 5883481.866898663, 5884199.700993824, 5891501.9123995425, 5892664.0625, 5893244.557948211, 5896825.025554787, 5899378.689991731, 5899846.7938728435, 5901468.75, 5903490.625, 5906068.882191199, 5906234.23295914, 5908960.49596627, 5910350.480927551, 5910381.671445562, 5916117.916363793, 5916466.340419313, 5917794.872914325, 5918771.184912061, 5920843.664812526, 5924653.125, 5929720.3125, 5931032.75027875, 5931733.2661849735, 5944003.370386036, 5945189.310129908, 5948896.923125508, 5949160.003136702, 5949227.274997586, 5949878.29988254, 5950485.15806692, 5960029.0486102, 5961535.9375, 5961598.4375, 5962630.857414758, 5963190.307699224, 5963499.8417832395, 5963918.468138201, 5964504.465841545, 5964953.809253577, 5965329.167524644, 5965637.5, 5966364.0625, 5966438.23867986, 5966616.3279908225, 5967869.260374119, 5968467.1875, 5968498.228533192, 5968680.586994875, 5968681.25, 5969032.720443289, 5969039.245950864, 5969172.777813039, 5969259.130592074, 5969373.201400322, 5969423.928417683, 5969515.625, 5969664.3409486, 5969691.608913214, 5969725.0, 5970310.730243537, 5971023.071198476, 5971289.424403903, 5971496.875, 5971654.9149593925, 5972213.0090880925, 5973218.188748925, 5973724.184909595, 5973730.975587277, 5974050.7386071095, 5974705.737850313, 5975644.979001943, 5976253.071906012, 5976343.889104948, 5977558.8776036585, 5978162.5, 5981780.872289492, 5981819.181423696, 5982818.342432182, 5986273.386880268, 5990197.41227257, 5995351.793815223, 5996202.5180647215, 5997401.954145218, 6000517.667123685, 6000695.912141164, 6002370.919548258, 6002889.0625, 6003020.627248106, 6003381.702769226, 6003518.897230403, 6004311.540935481, 6005273.940250716, 6009059.273159188, 6009375.002232445, 6009859.983306787, 6010209.834485122, 6010546.875, 6010698.344966404, 6010868.75, 6011772.043925171, 6012273.254961078, 6014261.9148672465, 6014657.774770146, 6016293.75, 6017455.644239536, 6023560.360921217, 6025716.6874783, 6026355.365527416, 6026835.807941691, 6031184.740308513, 6032348.4375, 6032427.100041715, 6032492.494929058, 6032529.833756391, 6032659.178639929, 6033512.5, 6034715.147185536, 6035605.508538299, 6038648.640823478, 6038743.077309158, 6039755.773662005, 6039917.761078606, 6040338.480915133, 6040821.875, 6040963.581503517, 6041868.752790203, 6042137.439586598, 6042244.418288424, 6042786.59366635, 6042812.005765898, 6042954.611965563, 6043141.257823289, 6043474.941894867, 6043514.707084845, 6043570.022162889, 6044507.8125, 6044690.625, 6045108.141515677, 6045262.8814627165, 6045330.4310654225, 6045508.9081262965, 6045870.3125, 6046169.600973981, 6046188.68233527, 6046415.625, 6046498.425243024, 6046616.752596441, 6046812.038366259, 6046878.07311562, 6047075.46790158, 6047084.375, 6047112.148515046, 6047182.690554914, 6047288.611826353, 6047406.036054781, 6047690.625, 6048197.329376055, 6048269.366485295, 6048306.011558998, 6048350.0, 6048543.580845882, 6048546.8217406245, 6048594.763560821, 6048610.247753343, 6048628.150281809, 6048703.1929022875, 6049070.931789077, 6049149.790767305, 6049362.269748034, 6049575.421776669, 6049630.995195856, 6050391.2033981765, 6050500.0, 6050814.673318399, 6050973.4375, 6050992.736625547, 6051222.195815681, 6051237.992546613, 6051315.501052992, 6051441.169541607, 6051486.1888679555, 6051509.375, 6051626.289313873, 6051631.309207657, 6052035.360627435, 6052481.994505641, 6052709.537933464, 6052874.311563384, 6053021.6205873005, 6053145.3125, 6053240.165194455, 6053307.23875644, 6053484.023407081, 6053603.125, 6053749.698987748, 6053790.625, 6053814.610303331, 6053984.109988234, 6054088.468970628, 6054128.328551439, 6054244.642535137, 6054470.3125, 6054493.75, 6054639.416940059, 6054790.926317057, 6054937.669728643, 6055248.4375, 6055273.147221682, 6055984.299587493, 6056259.375, 6056345.1573057445, 6056465.518014256, 6056967.804531244, 6057165.714166154, 6057217.084658791, 6057554.661587101, 6057647.285943493, 6057799.260357623, 6058062.510370447, 6058136.196598661, 6058233.115762021, 6058674.890192636, 6058815.975181988, 6060360.849765498, 6063618.035739461, 6063658.026894738, ...], [6.907105294879928, 72.21524448678761, 20.698232639362796, 45.75291770126072, 91.04475733583631, 11.207789789292615, 12.00092273628718, 17.49372999798309, 125.10914783603918, 27.655450793041457, 40.8585524945903, 36.706330460469, 29.024237125861237, 18.299424556687637, 22.25839500920066, 90.49998220155516, 11.989426909252144, 8.56704738425442, 6.332330144576671, 58.172161481389686, 63.380387252383116, 24.880710326853382, 110.63021909222309, 29.388673607763018, 49.1837660709406, 24.668484319453334, 18.185008312373487, 28.589033550324892, 5.235282127478783, 36.383526607715595, 11.015764641695297, 51.072007558490235, 142.53141069798295, 27.516236023178916, 63.23006952332246, 9.31294395676781, 40.40216776954581, 8.974292867811256, 83.34850280938348, 28.372110521175042, 13.38158571250632, 13.374665036516724, 42.85595795414455, 7.657690245764552, 7.526817806358466, 57.95311857918735, 20.800149092534667, 70.04093939745593, 6.0351686639921995, 104.99488950712419, 39.20246057939852, 41.069164748734195, 14.368536231772493, 13.504491542439382, 39.27668100305835, 17.868447079635736, 42.40371639725966, 58.32343013903646, 31.376795776196964, 44.87523031629716, 73.60723015010363, 17.08734631689885, 50.042033403358694, 40.546622820461614, 32.50161568783183, 43.87125638224528, 52.987034516486204, 21.29798217551618, 56.1404321686236, 104.82829667346672, 5.92402921837251, 30.345844259193107, 7.471436575642418, 5.654590924083748, 21.983991633874428, 11.219943151576132, 5.735524939534508, 37.335413726213204, 83.66772565318641, 5.236022916279894, 10.987930036821636, 21.926037765881876, 33.15393004398616, 9.133149586735804, 34.88648739315267, 6.143214464304864, 6.53046509989645, 25.46041818600769, 54.62660214136456, 43.462597355764515, 13.684507584309602, 172.94939285201332, 9.080996802979252, 85.58496071217444, 6.3490792725790826, 87.55140793563449, 12.231828731093938, 97.25689795203887, 65.64940208248979, 45.83742455251261, 56.15671359240986, 17.56863869374666, 9.177969504616277, 30.83492484179293, 34.68358211806022, 46.4926063099569, 65.7120020700851, 12.227547965211091, 22.149229483630364, 51.32117433203613, 94.0425780110756, 6.862303874120309, 20.521954086838758, 15.816941489309722, 56.76676207921549, 20.988640972825422, 43.4351662531048, 17.56746931243678, 25.467663792045318, 29.222268420485726, 13.984158600434942, 40.031449240174794, 8.359562471847118, 72.07549725213457, 10.969907406029275, 110.6038850654389, 30.71616906595512, 11.334431162636282, 34.942968444903634, 17.574903112809103, 72.58502718612846, 70.22711906817456, 73.68949567159507, 93.09587716298111, 12.832416232933266, 54.21246088172741, 80.34346530768637, 13.112925994687707, 27.81928411070669, 33.722362810310635, 19.74943211872669, 35.62665315641934, 14.226617017951973, 11.526555834164018, 21.188342332637664, 23.548965089434596, 36.693500139444836, 8.400273840447236, 72.80422064865657, 6.567455118165865, 6.112674542141419, 99.91180109336693, 6.759656789614803, 20.680248932332585, 87.95512056829128, 34.539111703335124, 49.02948144426321, 13.966660647807283, 12.9951147176927, 17.86678851214997, 49.22758224164011, 100.137613034129, 37.63814171344921, 37.70128361706355, 66.40858341443833, 24.718008943350313, 6.362985466490824, 48.434862837812375, 51.1151201244083, 97.95655961361635, 15.071055036089682, 17.300057307292885, 64.18879201773892, 17.6941519779205, 46.823976212618376, 20.537839663520188, 25.34105289710586, 64.50731235599038, 25.14976210636862, 6.359643037801839, 72.67450903647601, 10.075390259674887, 29.95527179784501, 116.34194389542029, 10.059863513219678, 6.421707130239987, 23.010447177262414, 54.92193043778623, 50.735137481704136, 43.687480195908726, 8.833211223918825, 103.90547443053711, 99.38979558250685, 13.136266619132773, 16.90136180276397, 59.36687265600579, 43.45650608409926, 93.38268704755659, 17.781286663811624, 101.59097267410968, 59.589866812486, 43.2199610948724, 26.140095505168457, 26.713216616845262, 12.570422071100657, 6.242162327729334, 32.983670471130914, 42.80054044098496, 15.53130268947039, 21.00546772086694, 28.546513205397204, 10.06351611148176, 19.869098067493987, 8.006624538885887, 55.30724091832536, 94.23432696887991, 41.7321969921323, 151.29539216432346, 9.369025786028876, 22.92015396025089, 13.95349865678337, 26.334396467801483, 14.500416483889039, 86.62082482289138, 35.337428555979585, 24.871328872657443, 51.934500607826095, 130.7756289887185, 17.44907521971355, 41.13870639127246, 13.522563581631962, 24.23106301108887, 86.89937145404674, 23.997373751208464, 74.92258170465385, 10.411887291922444, 27.075631593008048, 26.092965042804046, 35.96630352386471, 5.627121413668008, 63.7308740341371, 8.096998941913071, 15.313463604564754, 7.847348292574759, 63.204436069335614, 20.356249654597686, 6.754899421886402, 44.77155934922607, 11.512781782900383, 49.121720183083596, 16.99447168460277, 5.1552766209885075, 6.9951304923040825, 11.884956794149664, 46.47305905427562, 27.238442455315596, 12.761793607963247, 22.786606579209977, 20.341584096778604, 14.222356258903424, 58.57524334636784, 32.4577575668021, 55.857551019741464, 6.5410162079395, 6.335035178200979, 33.53717861385014, 18.385875765611956, 43.171841704800585, 15.166342821995391, 6.184552715774591, 5.16574232456251, 10.57465605442113, 9.340462367083289, 5.352279051949798, 38.50497033664732, 5.893427536052537, 38.73500755231976, 104.47067584849026, 7.209143456790859, 19.037547802604102, 66.79124655349506, 6.786944654437187, 59.225562821937096, 77.78426235674448, 39.41398626251296, 78.51375763075713, 65.67971718989283, 27.514582056734064, 15.44074857788451, 34.30148132622578, 56.27469385740572, 10.20617477799499, 27.361001061152926, 25.149964349610073, 18.173598234572815, 5.968339962910512, 10.592942546786526, 165.9045293951705, 11.081604667722237, 27.24760985235423, 6.033999793675193, 39.41742904107455, 13.85381001379227, 14.225434516247491, 14.160716237787222, 54.79419839127125, 24.438231250825268, 63.32022773575723, 7.955006349375759, 51.29034163731563, 8.331575682971359, 16.099723836691037, 41.37568395261916, 12.087386058583943, 21.463834856016, 13.183765765524225, 39.4838335390506, 24.488938670607702, 10.451698664273627, 13.04855664494656, 33.607922345178096, 6.851506503702395, 25.060089631158938, 76.97326109528049, 48.345279733640226, 24.148177872859918, 61.2475996691145, 41.514022483934255, 21.438430348645642, 62.47865382583759, 98.47948253039043, 5.752420777457836, 18.414058434428, 10.415409980152234, 54.3725527409035, 32.002712569064094, 13.575025740565469, 56.83964070669961, 12.300389389922907, 14.985545349812071, 36.15602511020782, 22.206931832039416, 73.78994020942388, 39.386036720889514, 30.937667286436568, 86.08640783436732, 43.00145118518334, 120.82621003019145, 19.75259526543031, 55.87579590763811, 41.201183457412874, 45.826744548373796, 16.017082848130315, 25.058616652809174, 46.456316402047214, 10.979430299923473, 16.033017569427674, 20.70573995829484, 7.486976321328371, 65.88850377824409, 35.373145752237136, 7.926521281852661, 57.30375916413898, 17.313958013453654, 16.497177499371524, 11.30178330274578, 34.475039991708165, 24.069552496452395, 59.39399930273136, 34.701763714097304, 73.38053351021323, 8.684170605622397, 25.350840982186906, 17.549983388468842, 44.331959786842134, 125.67045625764749, 18.976112328505046, 55.76296544449059, 8.853534674922509, 19.450506408118923, 41.061255007348336, 37.07647170274648, 5.642165126487857, 99.52475879972488, 5.757253447044581, 5.100205663079211, 81.90430902209681, 21.676365700564098, 12.933008324563811, 32.050533470805526, 77.30462753230762, 15.294402173637529, 7.088134781618144, 90.24799946922576, 74.45086452224145, 50.92094017923705, 7.402588700899557, 11.754768547991555, 47.39844949788675, 5.311967553357842, 33.57440496123316, 67.35153822740443, 37.35176015214822, 46.57097532271311, 18.505151727733416, 12.115879814917946, 33.641559413692484, 52.50555675680785, 48.42715389149398, 32.33257567367111, 92.49048327220514, 18.91958434511343, 34.97452491797548, 7.324144223731914, 5.924604690632178, 30.672717594031987, 6.946581816317433, 15.329959872092566, 28.410100166926306, 8.034714426039516, 8.625015628612763, 12.909838992769025, 33.04210176683825, 12.355313470032431, 9.544865752547903, 19.958883982724174, 28.802084363272396, 18.734626344256366, 15.781415092200486, 10.308417784937436, 39.36296488674346, 8.573531283478648, 22.087800986344213, 38.9377519112141, 12.076748458602768, 26.813036232442478, 56.78198496932745, 8.822297464290651, 37.854853333270974, 27.60907227133219, 30.3300882241616, 13.389920542760814, 13.902742915164751, 31.69872966551677, 27.167473338749076, 48.687724543767814, 29.45790213648609, 18.765539089205667, 27.5869643306172, 7.481904947504414, 67.93865430375516, 64.52427113460035, 60.202081076256455, 32.02130668078635, 61.05321807367778, 21.891331569657257, 57.463023811661714, 6.038568362704289, 24.33927541265011, 6.113240635120241, 6.077121999582141, 100.42156999450933, 33.65868169628999, 10.075776302986505, 57.868955393299736, 72.98897312100921, 8.470785990714914, 13.618628226413374, 13.58088606923095, 31.39620811668923, 45.9602105595916, 22.981174606825306, 7.2072204334578345, 72.73321487786102, 6.451547768253803, 49.261566345010195, 26.351223096438215, 63.86660298223792, 49.28747882469588, 64.75608623176186, 65.96623786452605, 9.112657657897433, 29.85550485128575, 13.356770398590257, 18.668830209403673, 70.53207741735406, 43.85791038241643, 79.16492092957479, 15.547356567122838, 105.98448583701173, 42.53229547461415, 55.24987434642881, 10.3123297852004, 22.033973602913427, 64.48051543917622, 16.581493830498395, 7.500341613745633, 64.05522551531662, 37.7901330630516, 38.35435487099895, 6.355791260148176, 74.76366186350805, 20.307227088113642, 90.58529138264593, 133.75816068691765, 7.738387529886062, 12.612347886990719, 108.62879378868105, 14.229210480094181, 105.28617877974975, 29.662279757736552, 83.54832623729595, 46.14150673716951, 18.326823783386214, 66.66592621485107, 27.312943921446053, 55.04347042946616, 10.935859296634689, 13.084606527363254, 19.25397312283538, 6.0455212857535825, 21.736317144253512, 12.645929033503773, 77.61170635955648, 26.69809280321391, 12.456614988924501, 14.16768052910572, 12.584532615824116, 15.332698108270792, 6.632891401737549, 8.896747162794194, 16.04333784870323, 32.8302647752845, 6.322367914860593, 90.57220548523787, 27.735446890557018, 35.36837136686131, 13.727463133476208, 85.32514041435121, 6.271243017873715, 74.50241456088175, 26.48189108060191, 130.4595577794459, 15.198774901779636, 97.7010309176681, 16.853072446115664, 16.937897377537926, 13.609547160417216, 8.935906566416868, 11.79611243095205, 113.51490051375023, 186.56380367142117, 27.981585386058146, 12.352945935015576, 48.8757135170203, 46.224457524964315, 140.3369896032981, 41.454652990992415, 30.793795000950247, 27.17525258568292, 44.04063440413703, 46.06985230767772, 95.52879745735055, 32.847575453198345, 13.5674126744747, 20.92982802795968, 24.505507229333038, 111.4025250935266, 7.379848191047894, 11.056391263590672, 9.3063899577719, 25.36247308199298, 5.5128232914297195, 107.52528550416753, 50.50974461214715, 22.488578168850662, 51.402723044789326, 15.145651007271542, 17.942615595300374, 8.670174697555277, 33.93273707478523, 66.55915836256597, 35.957512592531, 8.39261501315215, 35.915011956416826, 5.598597686041744, 19.72337708551472, 32.590380073134746, 60.059680753429014, 27.508682076335635, 32.259428009016695, 5.3503325654545355, 25.394991419057813, 11.555249284521036, 14.710583518228942, 9.487188216839977, 35.87292550236961, 5.961794048292523, 66.79657204207172, 32.01550081321888, 6.330568120550963, 10.821316626489152, 64.50327244104889, 15.12556512871733, 67.36925599008765, 18.993913760219357, 98.26783960578925, 16.42977053956517, 55.775061186643086, 62.757960691902554, 13.133337097718584, 26.47771484259555, 13.324538864654146, 9.886822610962474, 10.531729177019116, 14.244070039684697, 10.935006908704036, 37.71507373580987, 8.050267158164942, 7.4326818141087605, 63.08454648569668, 31.45247592751476, 15.066483740961555, 10.1583698544071, 44.859538662680166, 26.298576282360454, 5.931311550810088, 68.62086877002893, 103.69570861246638, 21.667523559836926, 18.65372621768165, 12.615869985115127, 84.11053186241917, 12.56145319719824, 21.547150635597248, 6.050642280752755, 39.314886941597756, 17.679571458376632, 112.81369288031776, 20.633983583107394, 7.034021094618742, 26.32011505234555, 16.0926555114774, 9.52568871372023, 28.51411716006779, 26.61877353408817, 5.787601824584488, 111.59965482912821, 16.919459180336872, 32.78920419439302, 95.34112313244725, 30.43490689341956, 36.61324941819613, 35.47962616550922, 85.35010582246615, 52.66070299513503, 27.627130089742312, 23.729709232881714, 77.66733493737743, 7.397553605016049, 12.750629001074934, 67.08501903313126, 20.949596060843042, 13.572886030682142, 30.874613784900962, 27.853736543281656, 59.9535443212601, 59.46361869297455, 36.54292704874278, 14.84074891912544, 27.56961420651521, 7.827494563314557, 51.42085873451014, 16.319173491164616, 84.06622798157912, 7.177885072390428, 36.392145728788485, 9.92763020495424, 63.902237368243746, 40.012392684507105, 25.75371657923416, 29.12573032058131, 105.95907764915276, 116.13162938525836, 9.694882965516966, 9.77999201150984, 14.337513745776345, 46.18269522302276, 21.225691577705565, 27.662167282971954, 67.62260507215149, 11.530536557451182, 5.812680672712037, 25.16430712125382, 18.62422641922025, 72.37770774273969, 8.93504029907961, 127.0647794866218, 25.161686577764847, 25.167932989008985, 24.397443219525744, 44.382248111837086, 65.84787948077584, 9.801119751555552, 62.25043204808888, 125.13935960620063, 14.703596069979854, 42.12853200415033, 14.697296447802445, 45.54839670150939, 72.40104399480289, 45.509885067438105, 25.111397248490555, 69.49554278619672, 40.23246120963767, 56.68965627135938, 9.693091622093409, 67.50078220358628, 26.4496971915799, 130.8696785969406, 8.338138545979232, 76.55581500076781, 23.309192443295913, 20.618604869201576, 58.70610960019318, 37.45690709446915, 73.70471139182189, 45.60959043719909, 8.00958224003422, 15.82563987672027, 10.874234367140264, 84.4451387653589, 40.17321395320552, 16.162594519861912, 17.063697944339822, 50.11002320744531, 7.189891431870526, 14.648134678842972, 54.34512053683072, 62.866565817627176, 36.02985337249816, 39.10554419195294, 37.996820971498536, 18.960366688421963, 6.005803894168728, 11.35590738942457, 8.841741837555736, 11.378061279155014, 7.826163060264211, 21.192190160252952, 60.43284321237374, 54.13154398350202, 40.506449546621724, 159.04237141658345, 16.38137689177143, 14.41902900762314, 58.48522497450347, 26.999999119854557, 6.265069991867014, 38.57408386181015, 8.414946722117392, 36.58459308908174, 67.70959204272579, 89.99601857832292, 6.037785905537427, 70.72623107406665, 49.805629570458635, 72.38542225301605, 117.85378483000802, 30.95057856369989, 49.49144823831506, 74.74339532321338, 18.880317553144874, 9.913849821767581, 24.33512170690209, 73.60047519564068, 29.830050954449515, 65.43612532643088, 5.708386314672389, 15.54683106126312, 126.39844380440002, 30.840382443319065, 30.373881411785007, 28.530956104625268, 5.337077907406292, 35.6007302583059, 11.972990540612658, 17.379866242262878, 35.43638797834342, 82.35658125146884, 15.091777275758663, 10.196893980981828, 26.946322071667073, 35.82468784025374, 95.04161239522196, 44.67009452698831, 121.51881255028844, 29.762859634125498, 59.263018139326796, 118.51235033993245, 18.033765072695058, 6.003952539393209, 88.77586404104095, 98.1691307923661, 300.26709223661595, 29.029898849592858, 45.573079155515615, 41.50028156119863, 36.742490846868904, 14.370907821170317, 27.987077736705086, 5.920331854030452, 7.313739728920817, 21.29612317753686, 28.71856891180395, 69.8071227858235, 12.518815486294333, 12.99028644848387, 17.32380236375397, 38.1859355604699, 40.29016332093604, 27.483202253383798, 57.635130871022916, 14.601869543917072, 9.491492737923341, 14.59474421016241, 44.65093903813604, 10.777687771104912, 64.33477977853224, 46.19263966945227, 16.56582417139429, 13.115847897806088, 61.04824609552445, 47.90315764787297, 5.9081281923545195, 19.675936757892654, 77.72759196398604, 7.182555641596388, 153.1174894328813, 43.744994389208415, 8.725763399927803, 73.48691673794171, 18.774138785060547, 17.670262580505597, 23.332077712970698, 7.584146714088729, 23.84923884943572, 21.51911249608386, 32.58838996433484, 29.117895579585387, 5.554391773386363, 18.602674726606473, 106.52563481528176, 5.741826487883545, 6.810582559723546, 28.19922390473104, 105.2884603000355, 18.822886036979238, 7.288535569724822, 17.900977729088872, 51.730993717040654, 6.537589225919284, 17.002658991375363, 23.160415157543362, 86.19081620471773, 33.67028016466619, 69.6053408138666, 89.61035625458187, 70.95206849776226, 29.14500038972752, 41.19237416267137, 114.95585747150072, 60.04090817357526, 8.37797465309086, 25.376812028278163, 87.63385678931628, 66.21267523951036, 28.612497610898153, 62.99278232012195, 44.28575629987951, 39.208989687311266, 5.566917809397568, 33.976082249624945, 7.2209094290148945, 43.81448780568044, 28.554821174526353, 11.644827934262034, 27.06896932603508, 10.83405454205332, 89.89107802404244, 13.38722047241043, 102.21354876311882, 6.519443411972173, 19.927606147256764, 71.10463385955487, 8.615122809284173, 21.078136037937625, 66.54750943797393, 89.1049032235033, 14.952155044357166, 5.530155654661707, 37.57203380391755, 18.21433624047658, 6.412309585806451, 101.57859908572225, 6.896782169115488, 174.60636677072483, 18.139152413985634, 73.25178137752283, 33.57216360601161, 40.37723454282115, 9.6260129983517, 19.03355639086943, 7.896297974267994, 13.417696110233363, 68.6657084672897, 5.662923097933347, 22.778051938906785, 38.79366455353711, 5.041337436934533, 13.50793713989102, 13.432364899990718, 84.32349681737136, 6.56302866071543, 71.56702316121509, 24.76218082024901, 33.92270168585057, 27.091744841555602, 112.76520127486786, 60.8603186973071, 17.011401475655866, 9.913414063990224, 24.570265386723047, 72.9724437746089, 53.26023609456334, 61.44945381249289, 131.6710309150527, 10.197291246879448, 80.18874578762623, 67.14104155306293, 17.977739074895105, 53.61029025536895, 9.144015935915005, 52.44523351349902, 47.507923705834706, 12.17061400907801, 51.19088030959905, 17.924527802123094, 60.13085106694357, 12.110196868383998, 172.25359784056394, 24.616149631833164, 26.294191412291273, 7.272350794657958, 15.994759920905052, 49.83867610793934, 18.184644299741496, 9.38197343825662, 22.598829939727935, 21.473991068073786, 9.473080257222788, 21.355170879469572, 10.752040391348611, 96.61714968330318, 7.444989693499825, 91.43858706609745, 23.113350096606297, 110.98970705526082, 34.12894741166414, 38.04777031821795, 100.01727196018834, 31.236302011793104, 13.08924707013086, 34.368985395546396, 19.950095484685683, 97.22239386435777, 58.812938840586874, 7.736668570699493, 82.02743818498477, 78.28582207443824, 54.80219662541163, 10.702397722564275, 90.78462410114359, 31.44199364314196, 25.795221140583653, 22.471727290788387, 17.963515082692805, 15.292621016370559, 78.16532100464732, 11.0874434069735, 11.83713654515878, 10.139776624723087, 14.981184584827982, 9.560535496221949, 7.203519070072574, 29.241957306893347, 180.67220146670707, 26.902281471011843, 12.775194247118652, 15.826905447556022, ...])
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)