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 = 47179
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);
([4544684.375, 4649193.8965475885, 5875925.0, 5892030.15243402, 5930684.783267517, 5938873.429143267, 5943325.227428765, 5943794.057813277, 5945562.627202298, 5976557.8125, 5977784.907557997, 5980849.947878896, 5982060.7116632415, 5983010.721211792, 5985148.34322596, 6012025.0, 6168544.999815875, 6170364.0625, 6225367.1875, 6249013.453669292, 6374689.729522767, 6375048.066349052, 6377038.013861511, 6378548.165024404, 6379276.5625, 6379443.878147277, 6381426.082216604, 6383506.458782458, 6384236.9540162245, 6385524.652706828, 6387053.599310249, 6387107.405273459, 6392609.738180361, 6393873.4375, 6393885.154624131, 6393896.48365662, 6401945.243033873, 6443289.219220272, 6449883.813019974, 6455890.207408957, 6457666.038797259, 6457901.514890008, 6463435.936769335, 6476607.156121146, 6487947.368188949, 6499015.625, 6520393.75, 6525032.8125, 6548994.802818997, 6558428.125, 6561431.67200798, 6565888.700878549, 6566050.0, 6567848.770232994, 6568718.732451215, 6569564.021611807, 6569667.026186678, 6570176.5535455225, 6570178.898954931, 6571014.091663561, 6573363.265336966, 6579226.5625, 6587834.375, 6611928.125, 6630556.25, 6633218.485205738, 6634260.832098104, 6641172.1775336405, 6663238.639407845, 6663412.155108961, 6666348.730801287, 6670754.6875, 6673771.016241236, 6674499.046049179, 6674558.455275652, 6674602.5007349085, 6674958.753578098, 6675650.0, 6675730.6298803175, 6675732.830279809, 6675921.233968962, 6676106.819293567, 6681340.745816, 6681434.942196621, 6684414.0625, 6684478.678231678, 6689115.649539153, 6695187.5, 6701418.072486436, 6728910.728886181, 6744397.215482912, 6746582.8125, 6749594.421572932, 6749834.116343116, 6756124.90015264, 6756286.009951736, 6760139.876086785, 6760181.883721699, 6760534.375, 6761054.6875, 6772939.0625, 6796454.04656844, 6797199.588060719, 6797607.8125, 6798496.164763734, 6799104.771410338, 6799309.875594611, 6800171.711767522, 6810666.556368586, 6811118.502421833, 6812261.363490306, 6813502.792164629, 6814323.4375, 6814791.880529543, 6814926.145692713, 6814950.449389244, 6817804.178607056, 6818582.958489389, 6818589.851744274, 6819008.751920012, 6819121.875, 6819126.5625, 6831628.3465043465, 6858206.41786482, 6862495.263149906, 6871051.702349909, 6872480.12859854, 6873100.614086094, 6877853.125, 6878131.714960723, 6879477.529330637, 6879715.421946201, 6879739.414134449, 6909758.440625764, 6910482.91033684, 6913153.076222029, 6914354.6875, 6914605.861071414, 6919041.142535533, 6925349.153507022, 6925592.1875, 6927281.25, 6929820.3125, 6932756.987520124, 6934759.788374226, 6944685.432145559, 6957229.318987013, 6970909.76919153, 6993803.639278814, 6996139.636733084, 6997716.183535612, 7033359.375, 7039470.93655354, 7040634.173282715, 7040664.457941761, 7040768.75, 7040814.040647363, 7041423.227977477, 7041511.844370212, 7041731.563893352, 7042031.25, 7042407.854627136, 7049191.898967714, 7049531.25, 7049725.0, 7053414.222731763, 7055705.842609922, 7056306.088784234, 7060695.977393636, 7061657.8125, 7062678.3910950925, 7064414.0625, 7067054.36343646, 7067167.1875, 7070192.315930055, 7070218.773231784, 7070929.595127192, 7071362.5, 7086860.15293371, 7088517.34324469, 7090326.362782079, 7093706.811889937, 7094337.9211984435, 7095335.000319667, 7096730.204984264, 7111329.8134857975, 7112832.163832049, 7114197.675000978, 7115302.384157179, 7115435.408077686, 7115452.362676538, 7116230.860643183, 7116368.034781058, 7116368.116065673, 7116403.018092301, 7116537.5, 7116641.532767461, 7116843.75, 7117066.249343243, 7117078.955441032, 7117232.8125, 7117325.05561702, 7117645.292256443, 7117800.193440056, 7117840.4978500055, 7117971.169429806, 7118224.767849422, 7118681.990730535, 7119153.699413992, 7119490.4998195795, 7119857.477750809, 7119970.257765404, 7120163.956399214, 7120849.194546969, 7120904.221746449, 7120951.888467554, 7121916.318325751, 7125073.258682061, 7133880.009561103, 7145352.17664141, 7151121.556591331, 7168550.252608119, 7181048.333675782, 7203704.56248845, 7209516.904649287, 7215573.705008182, 7221239.0625, 7221242.144986243, 7225608.549654012, 7225773.4375, 7225783.735502199, 7226469.397547229, 7226505.8141505625, 7226570.3125, 7226710.9375, 7226952.568857048, 7227834.714740609, 7228505.782886376, 7234384.375, 7234703.320081825, 7239306.013597169, 7248071.689279575, 7254165.161405176, 7258076.007121608, 7259419.616792783, 7260120.063343394, 7260379.6875, 7261299.616715302, 7263428.125, 7264514.0625, 7264979.354905735, 7267504.507411188, 7270370.47006969, 7272274.974856469, 7273321.875, 7273600.405793178, 7273888.368215778, 7277809.151736665, 7302546.875, 7305159.375, 7321021.868799642, 7323705.439632748, 7324859.7663487345, 7326031.042490511, 7326735.178594118, 7326890.212651616, 7326901.483841792, 7326916.515005005, 7326953.363200153, 7327054.249400717, 7327385.700341931, 7327458.678448954, 7327484.375, 7327535.504620167, 7327551.521966432, 7327700.0, 7327931.439155069, 7328325.003808293, 7328339.538410823, 7328416.2908263365, 7328769.581611729, 7328775.378429664, 7328824.680442466, 7329027.99288475, 7329028.013630313, 7329057.8125, 7329069.927243924, 7329131.986131501, 7329197.789312877, 7329259.326088681, 7329261.342601867, 7329312.275200186, 7329323.480132823, 7329891.810950372, 7329915.623625389, 7330013.062562859, 7330087.523452767, 7330153.794458565, 7330165.344207109, 7330196.875, 7330208.866569987, 7330449.165603609, 7330570.112103822, 7330767.886320187, 7331207.528810913, 7331220.3125, 7331674.0286901, 7331709.051358134, 7331867.087049749, 7331920.3125, 7331938.353866002, 7331948.272098883, 7332004.6875, 7332013.121312901, 7332260.9375, 7332381.292763409, 7332520.533545707, 7332527.973581151, 7332749.494175655, 7332839.0625, 7332846.875, 7332900.995529685, 7332946.976881958, 7333115.7848193245, 7333156.916030273, 7333237.5, 7333246.2537295045, 7333464.021865432, 7333469.881954041, 7333536.203657066, 7333540.625, 7333603.843450945, 7333806.25, 7334012.156560015, 7334013.826973961, 7334173.322100835, 7334244.16372458, 7334413.607094922, 7334508.971978633, 7334603.125, 7335184.738061419, 7335811.093248296, 7335968.32893924, 7336200.051873683, 7338316.717708476, 7338983.138982665, 7343271.470732514, 7343567.638546369, 7343568.911761493, 7346245.880779106, 7346538.49475134, 7348809.320448305, 7351511.761469601, 7354251.410605167, 7354394.0174974995, 7354468.641940227, 7354933.300901614, 7355727.363525054, 7355773.172140891, 7368342.397095887, 7373087.960219825, 7374740.232541739, 7375037.304491818, 7375123.253290212, 7375849.2911616685, 7376118.75, 7377087.25839101, 7380047.805915629, 7380382.8125, 7382270.3125, 7398945.3125, 7416253.442239035, 7419879.982701428, 7420848.632901457, 7429979.6875, 7435862.2867692625, 7440232.672689699, 7457417.1875, 7458270.3125, 7458334.206118575, 7460304.6875, 7461207.8125, 7461422.008034075, 7462657.471453756, 7489255.809961064, 7503038.74178396, 7503054.199154457, 7506373.939296533, 7559185.9375, 7560248.250801242, 7560453.62188885, 7560959.847353022, 7561010.109260339, 7561544.712999072, 7564239.0625, 7566993.4667337425, 7568439.0625, 7572912.607710342, 7577038.927613452, 7583535.24416931, 7584318.794124637, 7585753.313180215, 7587688.895922712, 7587957.8125, 7588215.625, 7588543.801878872, 7588642.103262965, 7588687.637534424, 7590150.521035638, 7596642.135225675, 7598771.39453105, 7601334.375, 7613680.402191973, 7613943.547031759, 7613991.7864938555, 7614288.770496808, 7615870.690462257, 7620394.412248938, 7620710.086517145, 7680228.814659847, 7681280.81565112, 7683065.625, 7687903.9167167535, 7688829.6875, 7701674.577091464, 7706956.25, 7726304.609927866, 7732416.993794539, 7737727.79878814, 7751044.259351885, 7758939.0625, 7772858.53589132, 7772998.318456204, 7785343.496918453, 7785349.899182236, 7797798.4375, 7799265.683097831, 7799459.906987547, 7802889.795261038, 7803814.675760284, 7804631.25, 7805634.91507364, 7807055.195397081, 7807100.136311609, 7807143.769631602, 7808037.043927154, 7812502.42799313, 7812735.832802331, 7813060.9375, 7813456.25, 7814040.95088108, 7814560.03423194, 7814753.868925769, 7820917.1875, 7831807.8125, 7838768.751247643, 7870704.6875, 7881087.168551401, 7882691.120528604, 7885307.8125, 7885682.185968284, 7887287.5, 7890576.5625, 7900041.354006413, 7901698.4375, 7905997.554626251, 7907643.238418665, 7919784.024234359, 7957415.625, 7959268.534124125, 7971778.125, 7979382.045932865, 7991908.715714875, 8023162.595389577, 8028015.916113831, 8029142.31838649, 8029468.613573622, 8029862.5, 8029969.7703048205, 8030043.42693816, 8030320.703431053, 8030990.836222545, 8030998.980332233, 8031074.074147294, 8032628.542977282, 8033515.358415344, 8033536.124086748, 8034539.0625, 8034848.4375, 8034924.204529465, 8035530.283482408, 8037273.4375, 8039560.9375, 8039680.085116013, 8039681.103142963, 8040162.758078213, 8040236.365178599, 8040305.786018321, 8040377.434646454, 8040512.580885793, 8040641.730567479, 8040718.61907497, 8040746.564792689, 8040781.25, 8040892.076239406, 8040896.492130556, 8040999.455102981, 8041046.976870771, 8041103.078888184, 8041221.456803737, 8041298.4375, 8041305.729878579, 8041433.148067557, 8041968.25403091, 8042017.1875, 8042019.111929617, 8042562.552680583, 8042634.126734255, 8042645.3125, 8042843.02575786, 8043151.435258479, 8043837.389597871, 8043846.451557207, 8043890.153488177, 8044180.595423303, 8044461.759470948, 8044965.224108677, 8045536.8261674475, 8045642.511858011, 8045729.45692415, 8045816.815482524, 8046087.5, 8046510.9375, 8046727.937840528, 8046893.114911834, 8047721.875, 8047743.75, 8048403.125, 8048559.375, 8048590.625, 8048593.894681929, 8048684.375, 8048760.320373585, 8048793.743164478, 8048806.25, 8048999.483477862, 8049423.4375, 8049440.277885912, 8049637.5, 8049637.822153753, 8051348.113633013, 8053007.087147776, 8053153.125, 8053655.830403525, 8056590.973584649, 8057642.1875, 8057659.608806134, 8057681.586661317, 8057866.555985148, 8057868.787633656, 8057998.230010129, 8058823.33392968, 8058823.4375, 8060209.953523352, 8060475.0, 8060998.834763448, 8062863.031634619, 8063979.257076608, 8063987.301852572, 8064723.271256221, 8067904.6875, 8070227.369760156, 8071223.950476839, 8071727.651138606, 8071951.5625, 8073403.125, 8074138.370192633, 8074659.837516399, 8074865.87124098, 8075273.4375, 8076957.112613166, 8077404.179150417, 8078641.610775901, 8078721.8060605405, 8080593.782660314, 8081467.1875, 8083178.125, 8083293.75, 8083305.40197058, 8083529.090930435, 8086429.313265006, 8087330.721247804, 8087382.720801755, 8087414.481915032, 8087424.633852175, 8087672.1274717515, 8088267.787415247, 8088615.625, 8088776.152361887, 8089215.052349381, 8089973.4375, 8090491.064234715, 8090915.4800549885, 8092093.75, 8099763.608601679, 8100177.215966777, 8101896.535679089, 8129010.578053422, 8129285.415720654, 8137523.009218209, 8147492.1875, 8147966.108150439, 8151212.5, 8151362.788827637, 8151818.136099542, 8152075.0, 8152537.507180429, 8152654.6875, 8153243.093693352, 8153300.0, 8153685.068777505, 8153852.292126468, 8154510.505378632, 8154708.740860824, 8155958.7250521, 8156270.593319513, 8158229.899947027, 8161631.142429961, 8162281.287582768, 8163467.1875, 8163606.814129444, 8163616.89336633, 8165163.366838241, 8168477.705244337, 8182115.625, 8183125.0, 8184142.1875, 8184343.75, 8193440.625, 8198576.190939318, 8199717.508073013, 8200807.347958321, 8201539.955128952, 8202039.0625, 8202180.31607237, 8202620.177234115, 8204305.085725027, 8204418.490063196, 8205287.8367179865, 8206009.03966611, 8206461.886996114, 8208472.864524824, 8209042.1875, 8209801.093889027, 8209808.0027579805, 8210539.94508415, 8210723.4877906265, 8211189.0625, 8212021.972501466, 8212543.283327999, 8212658.752923964, 8212792.35917631, 8213198.308317583, 8213490.58779746, 8213836.034971697, 8213838.331454101, 8222480.139686263, 8225089.745689342, 8225972.606550849, 8226281.173598767, 8226314.336262026, 8227292.301615596, 8227448.562566959, 8228017.1875, 8229560.601858229, 8245915.521791682, 8269139.0625, 8279551.3346366305, 8283546.126671397, 8283596.651823715, 8288286.359812468, 8288508.562390958, 8288842.557881029, 8288983.412410073, 8289250.326287335, 8289257.8125, 8289261.634713741, 8289332.554803406, 8289386.606280505, 8289614.776389225, 8289720.315769669, 8290877.720515057, 8291130.248440354, 8291620.312443433, 8292959.464064096, 8293854.405213831, 8295507.519341441, 8296948.4375, 8315777.637716503, 8317382.8125, 8317384.375, 8318001.649846678, 8318943.2800311325, 8319090.728595264, 8319096.875, 8319434.271559244, 8319635.58903938, 8319812.27847973, 8319879.661829683, 8319893.635153071, 8320075.0, 8320360.714630318, 8320467.982808212, 8320652.37550515, 8320737.539849043, 8320790.141904947, 8320951.056626486, 8321138.105766047, 8321188.263932165, 8321353.617288459, 8321567.702828368, 8321595.011416771, 8321653.993567851, 8321742.911221736, 8321792.9082712345, 8321963.560214163, 8322074.462371086, 8322091.956858046, 8322270.3125, 8322425.596186737, 8322496.017878449, 8322524.755243697, 8322562.5, 8322813.639177737, 8322868.317630016, 8323212.5, 8323372.494330937, 8323478.875065329, 8323688.446306091, 8323756.145562778, 8323767.672221816, 8323878.85732899, 8323910.9375, 8324481.844183355, 8324531.25, 8324532.99003477, 8324587.5, 8324624.627090105, 8324737.5, 8324878.125, 8324887.467758203, 8325048.4375, 8325290.625, 8325406.25, 8325583.528020286, 8325703.963948451, 8326087.446056147, 8326426.5625, 8326671.470112447, 8326704.823143199, 8326799.6798827695, 8327223.4375, 8327525.0, 8327544.899642222, 8327650.234112881, 8327862.5, 8327886.568010885, 8328017.9506626185, 8328348.4375, 8328652.985477609, 8328679.230209676, 8329064.003655362, 8329103.125, 8329264.271615185, 8329566.066545216, 8329587.5, 8330024.136287422, 8330448.3632187685, 8330557.8125, 8330631.25, 8330701.080787659, 8331180.963970134, 8331979.378242965, 8331988.223741332, 8333821.450204974, 8335520.234150169, 8337225.0, 8337407.061208437, 8342565.558149927, 8346525.173739703, 8346836.647328424, 8347266.645874551, 8347272.911945066, 8347296.129975772, 8347432.8125, 8347437.044646187, 8347494.046647463, 8347527.639036515, 8347646.875, 8347695.341040347, 8347770.11007291, 8347853.125, 8348063.874234218, 8348375.870683123, 8348925.0, 8349012.910971326, 8349138.261356321, 8349211.986203663, 8349364.0625, 8349413.44165552, 8349420.3125, 8350122.107095495, 8350282.8125, 8350749.99045515, 8350773.4375, 8350804.6875, 8350872.806624663, 8351161.691619148, 8351271.875, 8351346.572891455, 8351368.550509764, 8351431.009411549, 8351453.430343753, 8351468.244888243, 8351566.743346963, 8351696.423665238, 8351699.977366258, 8351727.406374132, 8351880.732124673, 8351926.5625, 8351977.766295802, 8352011.665219369, 8352024.312237102, 8352029.6875, 8352042.835334346, 8352229.6875, 8352273.6097140135, 8352289.092500425, 8352301.88153435, 8352350.337312269, 8352512.2510731565, 8352790.217013225, 8352850.97931453, 8352856.340494026, 8352931.538460508, 8352950.0, 8353047.955360222, 8353108.966593812, 8353197.058628934, 8353273.33165812, 8353348.418630592, 8353376.400268338, 8353428.138269457, 8353452.235883999, 8353492.457281106, 8353543.615588825, 8353567.1875, 8353612.7404228635, 8353643.0409842655, 8353828.125, 8353974.789921899, 8354070.295226772, 8354126.979408573, 8354129.175332109, 8354150.75186288, 8354171.303051806, 8354309.375, 8354342.2296128, 8354422.806999602, 8354607.8125, 8354799.5191234695, 8354881.615443566, 8354905.664366854, 8354972.794326338, 8355633.921985317, 8355659.638782099, 8355711.719735987, 8356320.274042494, 8356489.0625, 8358250.840064198, 8358714.5157908425, 8360964.928443562, 8361170.852501749, 8364531.982735285, 8365027.770913014, 8365878.125, 8369742.1875, 8370075.417306907, 8371276.097367311, 8371334.216252463, 8371774.556282968, 8371839.47183021, 8371884.375, 8372096.500472593, 8373646.187319332, 8374890.057132506, 8375544.633932507, 8375759.375, 8376024.906203751, 8379711.370010164, 8379844.8401062945, 8381137.5, 8383059.22312474, 8383396.42352096, 8384498.081103077, 8385151.592392978, 8385784.375, 8385978.125, 8387263.665879959, 8389817.135879032, 8389893.75, 8390135.116532108, 8391114.0625, 8392680.667675294, 8397378.054776506, 8403209.370965667, 8403530.701071918, 8405005.434464132, 8423672.89139989, 8426300.554600134, 8434317.1875, 8449267.656437311, 8451812.547974424, 8471485.277028585, 8482515.18546019, 8483150.526648887, 8483644.422707535, 8483648.4375, 8486430.63396139, 8487330.816307105, 8487556.25, 8487875.204023758, 8493981.25, 8496351.5625, 8499584.531546114, 8500617.1875, 8500905.439089485, 8502120.917058071, 8502545.3125, 8502857.8125, 8503331.950398238, 8504374.410533233, 8504503.103238653, 8506906.789355468, 8507356.25, 8511483.523611411, 8511511.07345467, 8512076.5625, 8512767.706576964, 8512828.400285836, 8513157.8125, 8515440.98268191, 8515770.888493871, 8516483.260295302, 8518646.875, 8524640.0361074, 8524640.065911705, 8524767.834879266, 8525943.018329645, 8527668.377328068, 8528134.527773988, 8528491.004151948, 8528813.328705348, 8529432.917555824, 8529665.910364829, 8530285.605535412, 8531060.616892623, 8532421.409600653, 8534642.015606647, 8535746.085142039, 8536104.068609983, 8536492.1875, 8536906.25, 8536914.240947213, 8536920.576660307, 8537903.125, 8538853.938357554, 8539501.652085938, 8540251.5625, 8540547.045248762, 8541352.344735691, 8542271.923732169, 8543740.625, 8544960.335003404, 8546769.974626556, 8561088.792045074, 8561098.635626256, 8564042.1875, 8564303.084981078, 8565198.284397598, 8568079.6875, 8569751.72875623, 8569761.069748342, 8571045.70726731, 8571387.5, 8571750.897159474, 8572030.618285842, 8572214.165044332, 8572230.959413221, 8572259.70365866, ...], [54.42249990143308, 15.531135733265982, 51.328334761342695, 7.2492780607627045, 16.765235079711665, 35.45050416180508, 33.674670577798594, 16.260689707183733, 8.355009333456355, 34.15946438520257, 17.451862005054544, 6.478951713257041, 134.44981019269886, 24.882371642441218, 42.013297667046714, 54.77185126280981, 47.482297528961354, 46.52137263934378, 33.55110002209115, 110.53856655752324, 13.239439078566658, 15.938164652927318, 12.038639877356985, 99.64888361396004, 117.09939012116274, 5.346332080524636, 13.380371492585173, 11.470520260764898, 75.9086819765354, 31.950705828946994, 153.81348102047366, 5.121893351991436, 16.533595775981162, 53.85857603613716, 12.612784578633258, 22.65010382184852, 27.22201123740692, 22.240019612191695, 13.159443239388843, 10.532218197110266, 16.794251742550106, 27.616642707976617, 14.938725198445063, 48.11617802877613, 7.791918097816047, 83.43909310711598, 34.820334139220094, 57.90486848946596, 8.034265132741783, 70.34720701687982, 29.47150678839522, 6.431859669040484, 36.668811062192624, 85.23976405365072, 8.277318985705262, 13.704483159116474, 12.342566516033413, 28.348971235499768, 19.02824002888765, 15.053844700462106, 10.074857839342162, 73.37428058653727, 61.11935683482875, 61.40950953326747, 138.9130818358485, 5.237794193518922, 10.966858853305496, 21.94044350017562, 17.943620928741048, 13.771922884062752, 9.592362594980903, 90.59505679892318, 46.16499505935223, 30.19893912062112, 8.658490589644348, 20.337019068425352, 6.025775967442353, 56.630884835468876, 10.27948209186555, 15.0097135619358, 16.747562411288083, 7.279599351417913, 15.422906566680908, 38.2411461251567, 38.616740832319394, 5.56054687806331, 6.768415528363752, 34.083146674412575, 68.94904891949565, 14.201830009428141, 7.7312085054857915, 115.67604618164862, 90.40198600222374, 14.039484935935873, 26.69516477680093, 13.620035606794751, 5.876735415816192, 18.06936862319198, 37.047169684219526, 35.51303591106606, 115.0231209268942, 20.193708407273597, 17.441347650156857, 52.05550476682838, 6.1814502192117295, 49.34513503275523, 12.0120588366747, 55.78154364126932, 8.849257340285407, 103.96608753154953, 59.20619679267983, 13.808437782493337, 30.852122684872512, 57.36358236159541, 43.77475211374673, 141.87168983377578, 81.91337411605377, 12.11891801541367, 8.753250071765809, 6.645177963957483, 93.3852586685388, 54.67775207191048, 15.858805915096564, 9.477493678830463, 47.504849215853966, 26.203362523913867, 25.07977586851146, 33.61549448809623, 29.375559973984117, 5.980946406826836, 24.990683357566464, 41.00675698745682, 6.835798598712859, 5.489388102856696, 15.328008088819823, 27.595209940491802, 110.71123678664834, 166.8643323724538, 15.987193575576594, 10.020329145718566, 37.97010584630212, 88.94267136817712, 46.44352507019523, 15.483334217050704, 16.79202714211069, 77.6168201221602, 22.91333182320224, 35.86557152870092, 27.464756397541972, 153.2911036876249, 84.80405056790129, 40.088779385714545, 23.04860599704337, 14.224630004785539, 5.843830668041868, 40.109930459020106, 28.099546980332054, 24.979620458685226, 105.00688417806782, 16.290060213621633, 64.79041787812531, 15.10454683204738, 9.09879409495606, 73.0578466600827, 47.72310107217001, 11.387749273662488, 48.5453277512072, 25.7016616256774, 18.271534666972936, 122.79332782713537, 6.817819157359347, 47.050297249816246, 22.083270937829646, 52.85206821392174, 22.653512756276015, 8.298901008474996, 25.021289215245037, 86.10283268336858, 12.60886228681924, 14.27466319801079, 177.15876198681707, 56.641910929647494, 62.79924539746893, 68.22867407630768, 12.045930314895088, 15.444482845289835, 33.16252763574547, 36.3488462940459, 10.13840677903099, 8.025139199420414, 16.20452815791326, 31.454570255821835, 19.58495430760933, 5.886036682989666, 26.57618521647612, 72.7340024029895, 6.187875992564405, 42.09056757238061, 12.267359300596304, 6.17893596203248, 65.28469417857585, 56.005081004741896, 14.864907787649711, 18.581311854129254, 26.241979818955997, 41.8761376396869, 10.783245384912961, 60.61486645239006, 22.43449121122677, 107.88445526146216, 53.41116900505183, 27.486515015263976, 26.58971905657836, 26.659607615718947, 13.420827895864662, 11.678540446762137, 18.461192706364123, 9.184644925909735, 41.81638224327262, 12.944193246661587, 26.03567385050591, 13.130075349724084, 9.245130215340437, 26.276810801993427, 14.691971438030127, 72.21158193071034, 42.74572779237118, 113.10145629183857, 38.98759367408601, 50.1009556483565, 12.959569289996477, 68.037393394024, 22.157830368469256, 40.20259655656775, 47.7818626784526, 26.54596978850856, 5.137830079046301, 21.8275545834356, 40.03684829041767, 15.741134306680289, 14.111014894746557, 8.190747830482692, 55.17504270663321, 10.358001236965368, 12.82020980562805, 35.13628475540443, 55.611020632396794, 22.7421620296832, 59.735661559409394, 30.093119012878635, 72.72823984053936, 25.413635260611372, 15.578144743564568, 37.097612359346, 55.62392184310262, 18.86606276738651, 117.91868469500626, 20.16732938998502, 59.98514318662737, 81.17582416332209, 75.08499200400409, 18.870324069863496, 41.500229070454424, 6.455046963716404, 74.1542502542987, 19.503535994310337, 27.060008620660273, 8.820887687618423, 23.26452773836213, 22.133647015652677, 33.52155130686872, 7.36934424443283, 71.42969580039754, 7.453832718867411, 14.789232801463331, 58.15707890811673, 6.801866750981179, 9.334625377992952, 25.00052769937919, 58.88940129472434, 19.462471831194268, 11.775651263488797, 5.9120514063354275, 26.16153063771604, 60.95388895787818, 32.32038168764635, 12.060915923679628, 16.42669400907845, 10.246074236379007, 8.260880461213116, 25.5568568699956, 5.3899491275108184, 11.195004989704849, 22.819812957535902, 28.49800832696814, 15.67858395925034, 11.164563933177144, 26.25795437629527, 13.969365485596438, 47.34556823861196, 10.416251246554863, 32.74156691966028, 25.112268834999877, 34.980514821730836, 23.961351176892542, 65.98430909007148, 17.802807530913128, 81.7371402085978, 14.571980928553895, 84.42245891925285, 10.175386285466107, 25.63711068191461, 29.394312463619855, 40.145505967069745, 79.79990098728368, 15.107047729147292, 15.85674268348047, 60.24647847736245, 21.384169295428723, 36.059973147181935, 35.71597887581554, 35.051353307477775, 15.344595463728409, 95.80991746862345, 8.673262967942655, 71.70330313143535, 85.28557190205406, 40.62094719736396, 13.520376264712572, 122.25029226798034, 33.880900149711174, 15.651492826096332, 29.579551588279728, 35.4576900618671, 24.610790849356086, 26.43475520319102, 5.256874039704173, 8.973893233405288, 13.599733842737848, 41.75686577630642, 11.74693861712867, 6.287078646982894, 13.547569533723204, 30.847262944600473, 144.650785435114, 11.679481623784143, 90.87290828365619, 11.91438738233681, 15.59612647832431, 6.149258511455325, 116.96903195890309, 38.21051762688101, 25.33311645306, 25.846834401364863, 16.069532541413167, 26.556890744750394, 11.987790703848876, 82.87331069525587, 107.99700313247294, 18.018211935909378, 17.043298459895567, 73.43691271675468, 41.87554066401188, 25.35177392614999, 19.635399832427492, 52.54111443432503, 24.52640551376361, 48.048635064599225, 85.64195055227269, 86.35851129076575, 42.197946224375606, 7.207418217866551, 117.68592502245392, 8.392684493370341, 29.948906146648948, 115.83088347405071, 26.03801305891411, 92.54555201674714, 151.11235560573112, 67.4122348584279, 34.261442667220514, 92.46480994872461, 5.951075273941292, 130.2070143790994, 62.292587066224684, 9.074184267898715, 48.48145132950954, 73.62925671378058, 34.03240431290909, 14.71468443893767, 97.1415438096486, 17.110040338585872, 84.52230409898753, 20.554808779426804, 73.65773331626812, 21.773812506474858, 91.27521158730593, 11.300344717372038, 10.923218774201032, 18.973212876253655, 17.82053692585275, 11.435160649290212, 14.34245913916281, 34.76904319390516, 93.51739534200877, 71.49872807888195, 59.74876893268107, 7.6537506890857525, 17.38503393096999, 43.16016076470517, 36.941883663144964, 91.93399650293074, 18.60714987429152, 64.95558835955654, 13.605597951462551, 57.89239563883818, 14.78870522144921, 18.254151659712146, 240.9840911701653, 6.909472088605442, 198.8288251037486, 35.951349394435596, 5.7590683513676995, 248.66764519157115, 19.792437265335302, 72.52024606672718, 27.079030168107796, 25.2106043142072, 6.700082717059157, 17.31796161917504, 41.26319987714436, 25.729836780840305, 38.455349994721175, 10.753897783826687, 26.678736292596277, 40.47772525737625, 9.381016102118734, 196.77203830190567, 8.716219537686882, 17.939824652798997, 51.851212218704475, 15.875925049960749, 5.078250109541608, 23.165289958155668, 41.50697332369389, 21.94278226877234, 19.729828854358857, 9.244417058849733, 120.67451117558173, 96.4054488737336, 19.55766836067881, 112.04779994244291, 18.811809249999843, 67.15140519478486, 73.52674241417283, 82.07730547011778, 57.48636530540689, 23.357172899145326, 24.609414090684428, 34.45204391894703, 7.391330792343464, 123.39556040890295, 48.2108997303763, 8.713779994441587, 37.51618397441777, 159.42438407651963, 8.933307518058154, 21.247744846727002, 45.66069836047335, 120.13178283795168, 70.10367835297886, 19.535738948848504, 190.632825415431, 225.2253314493459, 28.78817710889335, 18.24236496651327, 7.554628786458718, 46.895327384548175, 10.374244963974851, 5.157905357217694, 9.68538264356268, 33.601366663621825, 35.37443795141459, 57.56008591886452, 11.850571748026052, 10.735106261866852, 6.5167436003452615, 56.633728209396, 62.21383386882302, 5.368910419472694, 130.33432591629918, 48.851524133030566, 55.147430639394614, 79.68911922586378, 43.034022759247, 41.415254249762434, 11.869181349914633, 21.860087778377046, 58.91800263440071, 21.079752852608912, 13.445565916388325, 26.1807611839422, 15.440805842037392, 35.57865351104266, 26.503459977713877, 10.577721752995233, 15.90187667414932, 6.7840161337334255, 7.5866445371619635, 14.140678351059393, 35.17597384116139, 5.378955691873385, 5.075049700918669, 28.21750562681801, 110.41931672097203, 11.744832821129139, 15.146178255398187, 5.795836290988683, 39.38047942555382, 19.514181538097134, 10.934478879949912, 26.517764956520516, 22.292377520100253, 43.350022038427596, 120.3793692027235, 28.59298664926378, 41.031650547271255, 19.918206272272425, 7.724922201194976, 26.296041766911074, 93.6440711517182, 59.85904252514417, 91.19361119044675, 74.32062205394624, 58.866328468421955, 36.559821640629984, 85.20264636176755, 40.78352151592121, 32.36731673278197, 50.669571047341876, 23.829118592086907, 45.82555358185435, 35.61903890051098, 94.83527465683575, 32.3946702674734, 61.26719876140794, 29.196611983555062, 13.765220308663489, 75.85422140035264, 9.619514235431804, 108.98181130697597, 5.431471693961495, 41.297107417994795, 115.64241037851762, 19.654868894251912, 51.129053693007954, 24.727027785190685, 16.401340785005157, 46.2231306322683, 27.970301016555613, 28.263910709938052, 26.632267927559607, 30.786060784749978, 9.873684143566479, 40.82890302731407, 15.728450549964768, 130.76119186610563, 31.762457446570785, 14.236473425758055, 36.623538540884404, 163.80221690844067, 56.45950599822556, 75.98001626974767, 70.56316518282512, 53.1478373034975, 55.612738505521335, 34.99589223434285, 39.94622126089716, 9.548670300238085, 89.48870766557333, 100.96807689133273, 21.410211105762073, 11.266121028910078, 14.685097643726742, 15.067473844915753, 68.92920174103949, 28.811006193062386, 153.55070729758805, 19.62164056376798, 62.428250478848554, 17.052788619298767, 28.46310023936391, 46.74063446652286, 16.823869401695426, 62.95638962370422, 35.11006945900535, 44.52932984629017, 42.39636007457645, 263.7830482732115, 13.131381702083702, 81.34647564789388, 52.519325205512466, 57.834561593842295, 43.94393330924232, 157.6756335524797, 53.39454452278248, 141.35226897991762, 23.01997616857236, 10.399574051624638, 214.2810661570301, 33.06394068207099, 17.17002675852248, 79.55901888789948, 14.728890940560344, 30.818361808266957, 39.54978079026876, 60.901056064523004, 101.30117717086664, 12.91741776814874, 55.36761345635279, 15.026749237182697, 40.28338761548957, 7.454082544595646, 7.3889265744372254, 20.11724410908225, 8.440880171036062, 64.59299618477927, 35.095753407247464, 49.87940841145449, 36.5291877011325, 95.94881691627121, 19.341625042849127, 55.422862287421836, 22.33275607101729, 61.489456775908494, 79.60941088001773, 36.747555926558746, 61.48098219408955, 32.55614816074648, 57.27340461184981, 18.23411714368609, 21.85426187389241, 8.822676749939221, 74.8394850527379, 25.25926805244233, 75.86105804942643, 16.712882508311683, 9.12087558157933, 72.36561129561021, 19.184192047064876, 20.435326701645018, 56.173151993893434, 65.47473871924645, 21.812043459815953, 22.033054491567, 12.858904150563204, 70.45691691921772, 68.88796670688075, 85.02883027866491, 57.167003073527496, 42.869678461770825, 9.480910051657837, 202.45787490786392, 11.07005051715702, 15.32651324606848, 26.78516342079132, 16.99949016462942, 52.31453409409067, 32.67428415773871, 27.0995730912923, 11.584389069030602, 18.620031716537813, 174.00947650378066, 40.674702003233236, 23.305899138657047, 8.23274285235225, 84.89050503263353, 10.78928969060621, 10.129879206860911, 103.1614890333085, 29.499259728112776, 157.9925932832989, 152.2816592393642, 17.856612113946856, 16.3503811066958, 35.77087844175301, 43.919448716487054, 6.23518016489403, 24.998383233893055, 23.07292011522287, 23.894888094906683, 22.501940718285425, 12.134469493491645, 83.17750196297416, 5.820599769601187, 6.443732508504911, 5.124285892282506, 39.26938011333472, 6.20753597010247, 97.40418936126623, 48.23610117902381, 15.285224216707435, 5.89949673884915, 11.293587977473097, 60.58261770170115, 38.60050890188824, 34.19949169253271, 24.807792842173235, 28.02671157164422, 115.18579749213524, 85.8940466950632, 24.788645808673795, 17.86663626348181, 29.88205086317909, 12.527034243001818, 16.389592358024753, 13.309988595769422, 35.22722914812943, 18.95528641242053, 40.37392763248117, 12.041590123088124, 8.133528323923795, 12.82454180405893, 18.66974485179568, 64.78430978987976, 81.47191253614423, 45.09914883328169, 234.83268761479843, 28.883024809691683, 8.629195938855137, 50.55601815431511, 24.483019776641974, 61.905693254947494, 53.18104585079382, 28.892324939059716, 69.50871658764511, 28.589299490674676, 15.939398187229887, 25.575766028991897, 6.742834073377323, 17.178803737931478, 12.504430752432276, 56.76794702365511, 24.732624906465013, 141.34170429913718, 179.35575818843608, 49.03780029017928, 83.44139011655435, 39.402233621492286, 44.52744130424516, 11.077682017308065, 32.984413706515326, 62.18614498685939, 101.98696188648545, 18.61286901594506, 36.13549941595671, 11.04442310102281, 28.74425077364385, 86.79547704329228, 160.23160876411478, 23.497128740680022, 41.763405280346696, 92.88269700909512, 8.079686047908542, 15.9158175644522, 99.14734637390592, 8.650739921785252, 10.072432311165297, 55.517759155390266, 10.916409493824084, 21.93000157276138, 10.24142730483737, 66.26700271803527, 18.314449831537697, 16.941925768064692, 41.54735088841874, 25.052113623291206, 44.907774940067554, 40.14229378223966, 33.775479478774116, 21.07499824161675, 38.90539662568867, 46.264356824279744, 10.028809949794363, 127.77078547058103, 193.2127720821059, 62.95299733444666, 83.11646559195364, 105.04634716398907, 15.647828359640926, 10.013572341107087, 108.83908886097375, 13.256597776653805, 12.701596487862192, 45.22371107229182, 13.450007524636469, 5.630668930156074, 8.951727207167995, 68.99074089845153, 17.53467821565124, 8.18235483582631, 98.76499607971292, 65.41563450308162, 19.771619952130383, 67.40353325540691, 6.320556525987129, 16.459195458583753, 6.665090390899235, 163.3625466301652, 20.36675299654474, 48.77885148517864, 15.906657722312056, 49.78778332742893, 28.337440329827025, 37.541062469250946, 47.997354810541665, 10.266635409012697, 33.727935062714735, 44.152682368218876, 10.686191219873875, 115.10957924045934, 46.39258923827058, 5.074491245100776, 7.430222778955981, 130.0623657682882, 11.847684359647282, 28.084608292138327, 19.558154921387796, 21.316618553386576, 38.731738289092426, 34.77712531593622, 17.979823791843103, 48.568581143181405, 40.75293117271889, 82.70871536162846, 86.20620808912145, 7.666735215243047, 7.6141244846800555, 11.665895973633555, 49.822605000599324, 10.759701877285071, 22.46286335124395, 13.10385169601528, 7.636299064908406, 23.35971685191127, 63.323669467671245, 21.67313506215841, 188.70805921904824, 44.01731947493691, 6.253917986514047, 28.156774831569667, 14.357226002124388, 23.300460243433818, 18.327634597000607, 15.764521732881931, 32.94482033394901, 139.75319834342048, 454.5308290097576, 25.41852038210048, 196.49378856355625, 188.1220048436083, 28.187508016661305, 108.7885858386692, 79.87722871650075, 18.868392416593, 266.95230475248405, 64.20631856364106, 9.367267595316946, 47.436263033061174, 50.40234365547101, 85.9517139779115, 130.29143070889563, 8.880880270800509, 60.85595536214975, 21.97496795056495, 16.052223956366603, 74.62405667282543, 14.796925826072469, 38.04391572979652, 46.56406543861151, 41.59840698158178, 29.826021072746933, 15.084608600132114, 6.919173665393689, 27.795834282883504, 55.03736203068833, 35.956989621356115, 16.970879886506417, 29.051779801335, 5.336511253777884, 100.02309585972267, 5.844900993340634, 49.84440761194958, 57.339529531096645, 6.384436619635273, 13.143938261653911, 15.922869463387991, 90.89701088895117, 14.595660881771881, 90.87736374495594, 13.402294458764544, 103.56430400522787, 14.39259439998465, 64.27349369488078, 16.62389926612454, 197.9808792733563, 105.29048631251536, 83.1139859922013, 22.590323244011227, 13.256369673007846, 31.236780659212467, 68.04584149912733, 184.89982166617762, 58.17305201506646, 14.680439405287576, 144.05979868782643, 5.7744508607058, 12.918176664431119, 26.084996512374417, 26.75655181174026, 83.3927741186213, 31.25059704535149, 31.728189351335242, 10.231570478106601, 67.27142544297938, 31.367437704711186, 102.78736640175916, 144.02097386944052, 18.9419180584661, 23.361525162358237, 47.89970219351618, 55.93822981819092, 59.62014972928375, 44.7358372245662, 9.467375014132154, 45.71264933970491, 19.58612752978932, 12.22540681572365, 33.558181632682505, 104.28631656038363, 215.61311463572918, 20.644751915803532, 157.13473898243518, 147.55487711993803, 166.9199503173046, 89.02364694688265, 6.790955825448413, 97.39045810550002, 12.049139836855792, 6.531128286322104, 61.78050540717354, 7.73793930406988, 99.29966274505529, 15.398760823460663, 33.79257359580261, 20.649928757025414, 28.51404833588757, 26.33211448442345, 13.574732521691658, 29.523648747908148, 5.468362199549492, 16.614657119877144, 7.933243753554933, 15.357645288795903, 119.19648706369479, 185.97732152250387, 13.845764478737168, 53.53377074584705, 6.46047886417928, 21.39635165768069, 13.011815897136435, 28.759882118248115, 152.75102500431524, 99.163589006062, 388.5638184757702, 55.73932503761569, 17.81498191895374, 16.609986769249396, 51.137503940129186, 15.632711352105323, 12.618851515010052, 17.97800579438858, 273.2756351873717, 20.528148525885165, 96.84735834031703, 14.001986139557243, 75.89508963557626, 30.30487522715271, 32.01990733022779, 368.43312848568485, 106.52115164082208, 52.04277567195039, 26.22153632676467, 7.752543824518325, 37.132248137422685, 12.894933333538775, 72.01116412186269, 11.291864503068478, 7.047104362850537, 113.7151478403659, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4544684.375, 4649193.8965475885, 5875925.0, 5892030.15243402, 5930684.783267517, 5938873.429143267, 5943325.227428765, 5943794.057813277, 5945562.627202298, 5976557.8125, 5977784.907557997, 5980849.947878896, 5982060.7116632415, 5983010.721211792, 5985148.34322596, 6012025.0, 6168544.999815875, 6170364.0625, 6225367.1875, 6249013.453669292, 6374689.729522767, 6375048.066349052, 6377038.013861511, 6378548.165024404, 6379276.5625, 6379443.878147277, 6381426.082216604, 6383506.458782458, 6384236.9540162245, 6385524.652706828, 6387053.599310249, 6387107.405273459, 6392609.738180361, 6393873.4375, 6393885.154624131, 6393896.48365662, 6401945.243033873, 6443289.219220272, 6449883.813019974, 6455890.207408957, 6457666.038797259, 6457901.514890008, 6463435.936769335, 6476607.156121146, 6487947.368188949, 6499015.625, 6520393.75, 6525032.8125, 6548994.802818997, 6558428.125, 6561431.67200798, 6565888.700878549, 6566050.0, 6567848.770232994, 6568718.732451215, 6569564.021611807, 6569667.026186678, 6570176.5535455225, 6570178.898954931, 6571014.091663561, 6573363.265336966, 6579226.5625, 6587834.375, 6611928.125, 6630556.25, 6633218.485205738, 6634260.832098104, 6641172.1775336405, 6663238.639407845, 6663412.155108961, 6666348.730801287, 6670754.6875, 6673771.016241236, 6674499.046049179, 6674558.455275652, 6674602.5007349085, 6674958.753578098, 6675650.0, 6675730.6298803175, 6675732.830279809, 6675921.233968962, 6676106.819293567, 6681340.745816, 6681434.942196621, 6684414.0625, 6684478.678231678, 6689115.649539153, 6695187.5, 6701418.072486436, 6728910.728886181, 6744397.215482912, 6746582.8125, 6749594.421572932, 6749834.116343116, 6756124.90015264, 6756286.009951736, 6760139.876086785, 6760181.883721699, 6760534.375, 6761054.6875, 6772939.0625, 6796454.04656844, 6797199.588060719, 6797607.8125, 6798496.164763734, 6799104.771410338, 6799309.875594611, 6800171.711767522, 6810666.556368586, 6811118.502421833, 6812261.363490306, 6813502.792164629, 6814323.4375, 6814791.880529543, 6814926.145692713, 6814950.449389244, 6817804.178607056, 6818582.958489389, 6818589.851744274, 6819008.751920012, 6819121.875, 6819126.5625, 6831628.3465043465, 6858206.41786482, 6862495.263149906, 6871051.702349909, 6872480.12859854, 6873100.614086094, 6877853.125, 6878131.714960723, 6879477.529330637, 6879715.421946201, 6879739.414134449, 6909758.440625764, 6910482.91033684, 6913153.076222029, 6914354.6875, 6914605.861071414, 6919041.142535533, 6925349.153507022, 6925592.1875, 6927281.25, 6929820.3125, 6932756.987520124, 6934759.788374226, 6944685.432145559, 6957229.318987013, 6970909.76919153, 6993803.639278814, 6996139.636733084, 6997716.183535612, 7033359.375, 7039470.93655354, 7040634.173282715, 7040664.457941761, 7040768.75, 7040814.040647363, 7041423.227977477, 7041511.844370212, 7041731.563893352, 7042031.25, 7042407.854627136, 7049191.898967714, 7049531.25, 7049725.0, 7053414.222731763, 7055705.842609922, 7056306.088784234, 7060695.977393636, 7061657.8125, 7062678.3910950925, 7064414.0625, 7067054.36343646, 7067167.1875, 7070192.315930055, 7070218.773231784, 7070929.595127192, 7071362.5, 7086860.15293371, 7088517.34324469, 7090326.362782079, 7093706.811889937, 7094337.9211984435, 7095335.000319667, 7096730.204984264, 7111329.8134857975, 7112832.163832049, 7114197.675000978, 7115302.384157179, 7115435.408077686, 7115452.362676538, 7116230.860643183, 7116368.034781058, 7116368.116065673, 7116403.018092301, 7116537.5, 7116641.532767461, 7116843.75, 7117066.249343243, 7117078.955441032, 7117232.8125, 7117325.05561702, 7117645.292256443, 7117800.193440056, 7117840.4978500055, 7117971.169429806, 7118224.767849422, 7118681.990730535, 7119153.699413992, 7119490.4998195795, 7119857.477750809, 7119970.257765404, 7120163.956399214, 7120849.194546969, 7120904.221746449, 7120951.888467554, 7121916.318325751, 7125073.258682061, 7133880.009561103, 7145352.17664141, 7151121.556591331, 7168550.252608119, 7181048.333675782, 7203704.56248845, 7209516.904649287, 7215573.705008182, 7221239.0625, 7221242.144986243, 7225608.549654012, 7225773.4375, 7225783.735502199, 7226469.397547229, 7226505.8141505625, 7226570.3125, 7226710.9375, 7226952.568857048, 7227834.714740609, 7228505.782886376, 7234384.375, 7234703.320081825, 7239306.013597169, 7248071.689279575, 7254165.161405176, 7258076.007121608, 7259419.616792783, 7260120.063343394, 7260379.6875, 7261299.616715302, 7263428.125, 7264514.0625, 7264979.354905735, 7267504.507411188, 7270370.47006969, 7272274.974856469, 7273321.875, 7273600.405793178, 7273888.368215778, 7277809.151736665, 7302546.875, 7305159.375, 7321021.868799642, 7323705.439632748, 7324859.7663487345, 7326031.042490511, 7326735.178594118, 7326890.212651616, 7326901.483841792, 7326916.515005005, 7326953.363200153, 7327054.249400717, 7327385.700341931, 7327458.678448954, 7327484.375, 7327535.504620167, 7327551.521966432, 7327700.0, 7327931.439155069, 7328325.003808293, 7328339.538410823, 7328416.2908263365, 7328769.581611729, 7328775.378429664, 7328824.680442466, 7329027.99288475, 7329028.013630313, 7329057.8125, 7329069.927243924, 7329131.986131501, 7329197.789312877, 7329259.326088681, 7329261.342601867, 7329312.275200186, 7329323.480132823, 7329891.810950372, 7329915.623625389, 7330013.062562859, 7330087.523452767, 7330153.794458565, 7330165.344207109, 7330196.875, 7330208.866569987, 7330449.165603609, 7330570.112103822, 7330767.886320187, 7331207.528810913, 7331220.3125, 7331674.0286901, 7331709.051358134, 7331867.087049749, 7331920.3125, 7331938.353866002, 7331948.272098883, 7332004.6875, 7332013.121312901, 7332260.9375, 7332381.292763409, 7332520.533545707, 7332527.973581151, 7332749.494175655, 7332839.0625, 7332846.875, 7332900.995529685, 7332946.976881958, 7333115.7848193245, 7333156.916030273, 7333237.5, 7333246.2537295045, 7333464.021865432, 7333469.881954041, 7333536.203657066, 7333540.625, 7333603.843450945, 7333806.25, 7334012.156560015, 7334013.826973961, 7334173.322100835, 7334244.16372458, 7334413.607094922, 7334508.971978633, 7334603.125, 7335184.738061419, 7335811.093248296, 7335968.32893924, 7336200.051873683, 7338316.717708476, 7338983.138982665, 7343271.470732514, 7343567.638546369, 7343568.911761493, 7346245.880779106, 7346538.49475134, 7348809.320448305, 7351511.761469601, 7354251.410605167, 7354394.0174974995, 7354468.641940227, 7354933.300901614, 7355727.363525054, 7355773.172140891, 7368342.397095887, 7373087.960219825, 7374740.232541739, 7375037.304491818, 7375123.253290212, 7375849.2911616685, 7376118.75, 7377087.25839101, 7380047.805915629, 7380382.8125, 7382270.3125, 7398945.3125, 7416253.442239035, 7419879.982701428, 7420848.632901457, 7429979.6875, 7435862.2867692625, 7440232.672689699, 7457417.1875, 7458270.3125, 7458334.206118575, 7460304.6875, 7461207.8125, 7461422.008034075, 7462657.471453756, 7489255.809961064, 7503038.74178396, 7503054.199154457, 7506373.939296533, 7559185.9375, 7560248.250801242, 7560453.62188885, 7560959.847353022, 7561010.109260339, 7561544.712999072, 7564239.0625, 7566993.4667337425, 7568439.0625, 7572912.607710342, 7577038.927613452, 7583535.24416931, 7584318.794124637, 7585753.313180215, 7587688.895922712, 7587957.8125, 7588215.625, 7588543.801878872, 7588642.103262965, 7588687.637534424, 7590150.521035638, 7596642.135225675, 7598771.39453105, 7601334.375, 7613680.402191973, 7613943.547031759, 7613991.7864938555, 7614288.770496808, 7615870.690462257, 7620394.412248938, 7620710.086517145, 7680228.814659847, 7681280.81565112, 7683065.625, 7687903.9167167535, 7688829.6875, 7701674.577091464, 7706956.25, 7726304.609927866, 7732416.993794539, 7737727.79878814, 7751044.259351885, 7758939.0625, 7772858.53589132, 7772998.318456204, 7785343.496918453, 7785349.899182236, 7797798.4375, 7799265.683097831, 7799459.906987547, 7802889.795261038, 7803814.675760284, 7804631.25, 7805634.91507364, 7807055.195397081, 7807100.136311609, 7807143.769631602, 7808037.043927154, 7812502.42799313, 7812735.832802331, 7813060.9375, 7813456.25, 7814040.95088108, 7814560.03423194, 7814753.868925769, 7820917.1875, 7831807.8125, 7838768.751247643, 7870704.6875, 7881087.168551401, 7882691.120528604, 7885307.8125, 7885682.185968284, 7887287.5, 7890576.5625, 7900041.354006413, 7901698.4375, 7905997.554626251, 7907643.238418665, 7919784.024234359, 7957415.625, 7959268.534124125, 7971778.125, 7979382.045932865, 7991908.715714875, 8023162.595389577, 8028015.916113831, 8029142.31838649, 8029468.613573622, 8029862.5, 8029969.7703048205, 8030043.42693816, 8030320.703431053, 8030990.836222545, 8030998.980332233, 8031074.074147294, 8032628.542977282, 8033515.358415344, 8033536.124086748, 8034539.0625, 8034848.4375, 8034924.204529465, 8035530.283482408, 8037273.4375, 8039560.9375, 8039680.085116013, 8039681.103142963, 8040162.758078213, 8040236.365178599, 8040305.786018321, 8040377.434646454, 8040512.580885793, 8040641.730567479, 8040718.61907497, 8040746.564792689, 8040781.25, 8040892.076239406, 8040896.492130556, 8040999.455102981, 8041046.976870771, 8041103.078888184, 8041221.456803737, 8041298.4375, 8041305.729878579, 8041433.148067557, 8041968.25403091, 8042017.1875, 8042019.111929617, 8042562.552680583, 8042634.126734255, 8042645.3125, 8042843.02575786, 8043151.435258479, 8043837.389597871, 8043846.451557207, 8043890.153488177, 8044180.595423303, 8044461.759470948, 8044965.224108677, 8045536.8261674475, 8045642.511858011, 8045729.45692415, 8045816.815482524, 8046087.5, 8046510.9375, 8046727.937840528, 8046893.114911834, 8047721.875, 8047743.75, 8048403.125, 8048559.375, 8048590.625, 8048593.894681929, 8048684.375, 8048760.320373585, 8048793.743164478, 8048806.25, 8048999.483477862, 8049423.4375, 8049440.277885912, 8049637.5, 8049637.822153753, 8051348.113633013, 8053007.087147776, 8053153.125, 8053655.830403525, 8056590.973584649, 8057642.1875, 8057659.608806134, 8057681.586661317, 8057866.555985148, 8057868.787633656, 8057998.230010129, 8058823.33392968, 8058823.4375, 8060209.953523352, 8060475.0, 8060998.834763448, 8062863.031634619, 8063979.257076608, 8063987.301852572, 8064723.271256221, 8067904.6875, 8070227.369760156, 8071223.950476839, 8071727.651138606, 8071951.5625, 8073403.125, 8074138.370192633, 8074659.837516399, 8074865.87124098, 8075273.4375, 8076957.112613166, 8077404.179150417, 8078641.610775901, 8078721.8060605405, 8080593.782660314, 8081467.1875, 8083178.125, 8083293.75, 8083305.40197058, 8083529.090930435, 8086429.313265006, 8087330.721247804, 8087382.720801755, 8087414.481915032, 8087424.633852175, 8087672.1274717515, 8088267.787415247, 8088615.625, 8088776.152361887, 8089215.052349381, 8089973.4375, 8090491.064234715, 8090915.4800549885, 8092093.75, 8099763.608601679, 8100177.215966777, 8101896.535679089, 8129010.578053422, 8129285.415720654, 8137523.009218209, 8147492.1875, 8147966.108150439, 8151212.5, 8151362.788827637, 8151818.136099542, 8152075.0, 8152537.507180429, 8152654.6875, 8153243.093693352, 8153300.0, 8153685.068777505, 8153852.292126468, 8154510.505378632, 8154708.740860824, 8155958.7250521, 8156270.593319513, 8158229.899947027, 8161631.142429961, 8162281.287582768, 8163467.1875, 8163606.814129444, 8163616.89336633, 8165163.366838241, 8168477.705244337, 8182115.625, 8183125.0, 8184142.1875, 8184343.75, 8193440.625, 8198576.190939318, 8199717.508073013, 8200807.347958321, 8201539.955128952, 8202039.0625, 8202180.31607237, 8202620.177234115, 8204305.085725027, 8204418.490063196, 8205287.8367179865, 8206009.03966611, 8206461.886996114, 8208472.864524824, 8209042.1875, 8209801.093889027, 8209808.0027579805, 8210539.94508415, 8210723.4877906265, 8211189.0625, 8212021.972501466, 8212543.283327999, 8212658.752923964, 8212792.35917631, 8213198.308317583, 8213490.58779746, 8213836.034971697, 8213838.331454101, 8222480.139686263, 8225089.745689342, 8225972.606550849, 8226281.173598767, 8226314.336262026, 8227292.301615596, 8227448.562566959, 8228017.1875, 8229560.601858229, 8245915.521791682, 8269139.0625, 8279551.3346366305, 8283546.126671397, 8283596.651823715, 8288286.359812468, 8288508.562390958, 8288842.557881029, 8288983.412410073, 8289250.326287335, 8289257.8125, 8289261.634713741, 8289332.554803406, 8289386.606280505, 8289614.776389225, 8289720.315769669, 8290877.720515057, 8291130.248440354, 8291620.312443433, 8292959.464064096, 8293854.405213831, 8295507.519341441, 8296948.4375, 8315777.637716503, 8317382.8125, 8317384.375, 8318001.649846678, 8318943.2800311325, 8319090.728595264, 8319096.875, 8319434.271559244, 8319635.58903938, 8319812.27847973, 8319879.661829683, 8319893.635153071, 8320075.0, 8320360.714630318, 8320467.982808212, 8320652.37550515, 8320737.539849043, 8320790.141904947, 8320951.056626486, 8321138.105766047, 8321188.263932165, 8321353.617288459, 8321567.702828368, 8321595.011416771, 8321653.993567851, 8321742.911221736, 8321792.9082712345, 8321963.560214163, 8322074.462371086, 8322091.956858046, 8322270.3125, 8322425.596186737, 8322496.017878449, 8322524.755243697, 8322562.5, 8322813.639177737, 8322868.317630016, 8323212.5, 8323372.494330937, 8323478.875065329, 8323688.446306091, 8323756.145562778, 8323767.672221816, 8323878.85732899, 8323910.9375, 8324481.844183355, 8324531.25, 8324532.99003477, 8324587.5, 8324624.627090105, 8324737.5, 8324878.125, 8324887.467758203, 8325048.4375, 8325290.625, 8325406.25, 8325583.528020286, 8325703.963948451, 8326087.446056147, 8326426.5625, 8326671.470112447, 8326704.823143199, 8326799.6798827695, 8327223.4375, 8327525.0, 8327544.899642222, 8327650.234112881, 8327862.5, 8327886.568010885, 8328017.9506626185, 8328348.4375, 8328652.985477609, 8328679.230209676, 8329064.003655362, 8329103.125, 8329264.271615185, 8329566.066545216, 8329587.5, 8330024.136287422, 8330448.3632187685, 8330557.8125, 8330631.25, 8330701.080787659, 8331180.963970134, 8331979.378242965, 8331988.223741332, 8333821.450204974, 8335520.234150169, 8337225.0, 8337407.061208437, 8342565.558149927, 8346525.173739703, 8346836.647328424, 8347266.645874551, 8347272.911945066, 8347296.129975772, 8347432.8125, 8347437.044646187, 8347494.046647463, 8347527.639036515, 8347646.875, 8347695.341040347, 8347770.11007291, 8347853.125, 8348063.874234218, 8348375.870683123, 8348925.0, 8349012.910971326, 8349138.261356321, 8349211.986203663, 8349364.0625, 8349413.44165552, 8349420.3125, 8350122.107095495, 8350282.8125, 8350749.99045515, 8350773.4375, 8350804.6875, 8350872.806624663, 8351161.691619148, 8351271.875, 8351346.572891455, 8351368.550509764, 8351431.009411549, 8351453.430343753, 8351468.244888243, 8351566.743346963, 8351696.423665238, 8351699.977366258, 8351727.406374132, 8351880.732124673, 8351926.5625, 8351977.766295802, 8352011.665219369, 8352024.312237102, 8352029.6875, 8352042.835334346, 8352229.6875, 8352273.6097140135, 8352289.092500425, 8352301.88153435, 8352350.337312269, 8352512.2510731565, 8352790.217013225, 8352850.97931453, 8352856.340494026, 8352931.538460508, 8352950.0, 8353047.955360222, 8353108.966593812, 8353197.058628934, 8353273.33165812, 8353348.418630592, 8353376.400268338, 8353428.138269457, 8353452.235883999, 8353492.457281106, 8353543.615588825, 8353567.1875, 8353612.7404228635, 8353643.0409842655, 8353828.125, 8353974.789921899, 8354070.295226772, 8354126.979408573, 8354129.175332109, 8354150.75186288, 8354171.303051806, 8354309.375, 8354342.2296128, 8354422.806999602, 8354607.8125, 8354799.5191234695, 8354881.615443566, 8354905.664366854, 8354972.794326338, 8355633.921985317, 8355659.638782099, 8355711.719735987, 8356320.274042494, 8356489.0625, 8358250.840064198, 8358714.5157908425, 8360964.928443562, 8361170.852501749, 8364531.982735285, 8365027.770913014, 8365878.125, 8369742.1875, 8370075.417306907, 8371276.097367311, 8371334.216252463, 8371774.556282968, 8371839.47183021, 8371884.375, 8372096.500472593, 8373646.187319332, 8374890.057132506, 8375544.633932507, 8375759.375, 8376024.906203751, 8379711.370010164, 8379844.8401062945, 8381137.5, 8383059.22312474, 8383396.42352096, 8384498.081103077, 8385151.592392978, 8385784.375, 8385978.125, 8387263.665879959, 8389817.135879032, 8389893.75, 8390135.116532108, 8391114.0625, 8392680.667675294, 8397378.054776506, 8403209.370965667, 8403530.701071918, 8405005.434464132, 8423672.89139989, 8426300.554600134, 8434317.1875, 8449267.656437311, 8451812.547974424, 8471485.277028585, 8482515.18546019, 8483150.526648887, 8483644.422707535, 8483648.4375, 8486430.63396139, 8487330.816307105, 8487556.25, 8487875.204023758, 8493981.25, 8496351.5625, 8499584.531546114, 8500617.1875, 8500905.439089485, 8502120.917058071, 8502545.3125, 8502857.8125, 8503331.950398238, 8504374.410533233, 8504503.103238653, 8506906.789355468, 8507356.25, 8511483.523611411, 8511511.07345467, 8512076.5625, 8512767.706576964, 8512828.400285836, 8513157.8125, 8515440.98268191, 8515770.888493871, 8516483.260295302, 8518646.875, 8524640.0361074, 8524640.065911705, 8524767.834879266, 8525943.018329645, 8527668.377328068, 8528134.527773988, 8528491.004151948, 8528813.328705348, 8529432.917555824, 8529665.910364829, 8530285.605535412, 8531060.616892623, 8532421.409600653, 8534642.015606647, 8535746.085142039, 8536104.068609983, 8536492.1875, 8536906.25, 8536914.240947213, 8536920.576660307, 8537903.125, 8538853.938357554, 8539501.652085938, 8540251.5625, 8540547.045248762, 8541352.344735691, 8542271.923732169, 8543740.625, 8544960.335003404, 8546769.974626556, 8561088.792045074, 8561098.635626256, 8564042.1875, 8564303.084981078, 8565198.284397598, 8568079.6875, 8569751.72875623, 8569761.069748342, 8571045.70726731, 8571387.5, 8571750.897159474, 8572030.618285842, 8572214.165044332, 8572230.959413221, 8572259.70365866, ...], [54.42249990143308, 15.531135733265982, 51.328334761342695, 7.2492780607627045, 16.765235079711665, 35.45050416180508, 33.674670577798594, 16.260689707183733, 8.355009333456355, 34.15946438520257, 17.451862005054544, 6.478951713257041, 134.44981019269886, 24.882371642441218, 42.013297667046714, 54.77185126280981, 47.482297528961354, 46.52137263934378, 33.55110002209115, 110.53856655752324, 13.239439078566658, 15.938164652927318, 12.038639877356985, 99.64888361396004, 117.09939012116274, 5.346332080524636, 13.380371492585173, 11.470520260764898, 75.9086819765354, 31.950705828946994, 153.81348102047366, 5.121893351991436, 16.533595775981162, 53.85857603613716, 12.612784578633258, 22.65010382184852, 27.22201123740692, 22.240019612191695, 13.159443239388843, 10.532218197110266, 16.794251742550106, 27.616642707976617, 14.938725198445063, 48.11617802877613, 7.791918097816047, 83.43909310711598, 34.820334139220094, 57.90486848946596, 8.034265132741783, 70.34720701687982, 29.47150678839522, 6.431859669040484, 36.668811062192624, 85.23976405365072, 8.277318985705262, 13.704483159116474, 12.342566516033413, 28.348971235499768, 19.02824002888765, 15.053844700462106, 10.074857839342162, 73.37428058653727, 61.11935683482875, 61.40950953326747, 138.9130818358485, 5.237794193518922, 10.966858853305496, 21.94044350017562, 17.943620928741048, 13.771922884062752, 9.592362594980903, 90.59505679892318, 46.16499505935223, 30.19893912062112, 8.658490589644348, 20.337019068425352, 6.025775967442353, 56.630884835468876, 10.27948209186555, 15.0097135619358, 16.747562411288083, 7.279599351417913, 15.422906566680908, 38.2411461251567, 38.616740832319394, 5.56054687806331, 6.768415528363752, 34.083146674412575, 68.94904891949565, 14.201830009428141, 7.7312085054857915, 115.67604618164862, 90.40198600222374, 14.039484935935873, 26.69516477680093, 13.620035606794751, 5.876735415816192, 18.06936862319198, 37.047169684219526, 35.51303591106606, 115.0231209268942, 20.193708407273597, 17.441347650156857, 52.05550476682838, 6.1814502192117295, 49.34513503275523, 12.0120588366747, 55.78154364126932, 8.849257340285407, 103.96608753154953, 59.20619679267983, 13.808437782493337, 30.852122684872512, 57.36358236159541, 43.77475211374673, 141.87168983377578, 81.91337411605377, 12.11891801541367, 8.753250071765809, 6.645177963957483, 93.3852586685388, 54.67775207191048, 15.858805915096564, 9.477493678830463, 47.504849215853966, 26.203362523913867, 25.07977586851146, 33.61549448809623, 29.375559973984117, 5.980946406826836, 24.990683357566464, 41.00675698745682, 6.835798598712859, 5.489388102856696, 15.328008088819823, 27.595209940491802, 110.71123678664834, 166.8643323724538, 15.987193575576594, 10.020329145718566, 37.97010584630212, 88.94267136817712, 46.44352507019523, 15.483334217050704, 16.79202714211069, 77.6168201221602, 22.91333182320224, 35.86557152870092, 27.464756397541972, 153.2911036876249, 84.80405056790129, 40.088779385714545, 23.04860599704337, 14.224630004785539, 5.843830668041868, 40.109930459020106, 28.099546980332054, 24.979620458685226, 105.00688417806782, 16.290060213621633, 64.79041787812531, 15.10454683204738, 9.09879409495606, 73.0578466600827, 47.72310107217001, 11.387749273662488, 48.5453277512072, 25.7016616256774, 18.271534666972936, 122.79332782713537, 6.817819157359347, 47.050297249816246, 22.083270937829646, 52.85206821392174, 22.653512756276015, 8.298901008474996, 25.021289215245037, 86.10283268336858, 12.60886228681924, 14.27466319801079, 177.15876198681707, 56.641910929647494, 62.79924539746893, 68.22867407630768, 12.045930314895088, 15.444482845289835, 33.16252763574547, 36.3488462940459, 10.13840677903099, 8.025139199420414, 16.20452815791326, 31.454570255821835, 19.58495430760933, 5.886036682989666, 26.57618521647612, 72.7340024029895, 6.187875992564405, 42.09056757238061, 12.267359300596304, 6.17893596203248, 65.28469417857585, 56.005081004741896, 14.864907787649711, 18.581311854129254, 26.241979818955997, 41.8761376396869, 10.783245384912961, 60.61486645239006, 22.43449121122677, 107.88445526146216, 53.41116900505183, 27.486515015263976, 26.58971905657836, 26.659607615718947, 13.420827895864662, 11.678540446762137, 18.461192706364123, 9.184644925909735, 41.81638224327262, 12.944193246661587, 26.03567385050591, 13.130075349724084, 9.245130215340437, 26.276810801993427, 14.691971438030127, 72.21158193071034, 42.74572779237118, 113.10145629183857, 38.98759367408601, 50.1009556483565, 12.959569289996477, 68.037393394024, 22.157830368469256, 40.20259655656775, 47.7818626784526, 26.54596978850856, 5.137830079046301, 21.8275545834356, 40.03684829041767, 15.741134306680289, 14.111014894746557, 8.190747830482692, 55.17504270663321, 10.358001236965368, 12.82020980562805, 35.13628475540443, 55.611020632396794, 22.7421620296832, 59.735661559409394, 30.093119012878635, 72.72823984053936, 25.413635260611372, 15.578144743564568, 37.097612359346, 55.62392184310262, 18.86606276738651, 117.91868469500626, 20.16732938998502, 59.98514318662737, 81.17582416332209, 75.08499200400409, 18.870324069863496, 41.500229070454424, 6.455046963716404, 74.1542502542987, 19.503535994310337, 27.060008620660273, 8.820887687618423, 23.26452773836213, 22.133647015652677, 33.52155130686872, 7.36934424443283, 71.42969580039754, 7.453832718867411, 14.789232801463331, 58.15707890811673, 6.801866750981179, 9.334625377992952, 25.00052769937919, 58.88940129472434, 19.462471831194268, 11.775651263488797, 5.9120514063354275, 26.16153063771604, 60.95388895787818, 32.32038168764635, 12.060915923679628, 16.42669400907845, 10.246074236379007, 8.260880461213116, 25.5568568699956, 5.3899491275108184, 11.195004989704849, 22.819812957535902, 28.49800832696814, 15.67858395925034, 11.164563933177144, 26.25795437629527, 13.969365485596438, 47.34556823861196, 10.416251246554863, 32.74156691966028, 25.112268834999877, 34.980514821730836, 23.961351176892542, 65.98430909007148, 17.802807530913128, 81.7371402085978, 14.571980928553895, 84.42245891925285, 10.175386285466107, 25.63711068191461, 29.394312463619855, 40.145505967069745, 79.79990098728368, 15.107047729147292, 15.85674268348047, 60.24647847736245, 21.384169295428723, 36.059973147181935, 35.71597887581554, 35.051353307477775, 15.344595463728409, 95.80991746862345, 8.673262967942655, 71.70330313143535, 85.28557190205406, 40.62094719736396, 13.520376264712572, 122.25029226798034, 33.880900149711174, 15.651492826096332, 29.579551588279728, 35.4576900618671, 24.610790849356086, 26.43475520319102, 5.256874039704173, 8.973893233405288, 13.599733842737848, 41.75686577630642, 11.74693861712867, 6.287078646982894, 13.547569533723204, 30.847262944600473, 144.650785435114, 11.679481623784143, 90.87290828365619, 11.91438738233681, 15.59612647832431, 6.149258511455325, 116.96903195890309, 38.21051762688101, 25.33311645306, 25.846834401364863, 16.069532541413167, 26.556890744750394, 11.987790703848876, 82.87331069525587, 107.99700313247294, 18.018211935909378, 17.043298459895567, 73.43691271675468, 41.87554066401188, 25.35177392614999, 19.635399832427492, 52.54111443432503, 24.52640551376361, 48.048635064599225, 85.64195055227269, 86.35851129076575, 42.197946224375606, 7.207418217866551, 117.68592502245392, 8.392684493370341, 29.948906146648948, 115.83088347405071, 26.03801305891411, 92.54555201674714, 151.11235560573112, 67.4122348584279, 34.261442667220514, 92.46480994872461, 5.951075273941292, 130.2070143790994, 62.292587066224684, 9.074184267898715, 48.48145132950954, 73.62925671378058, 34.03240431290909, 14.71468443893767, 97.1415438096486, 17.110040338585872, 84.52230409898753, 20.554808779426804, 73.65773331626812, 21.773812506474858, 91.27521158730593, 11.300344717372038, 10.923218774201032, 18.973212876253655, 17.82053692585275, 11.435160649290212, 14.34245913916281, 34.76904319390516, 93.51739534200877, 71.49872807888195, 59.74876893268107, 7.6537506890857525, 17.38503393096999, 43.16016076470517, 36.941883663144964, 91.93399650293074, 18.60714987429152, 64.95558835955654, 13.605597951462551, 57.89239563883818, 14.78870522144921, 18.254151659712146, 240.9840911701653, 6.909472088605442, 198.8288251037486, 35.951349394435596, 5.7590683513676995, 248.66764519157115, 19.792437265335302, 72.52024606672718, 27.079030168107796, 25.2106043142072, 6.700082717059157, 17.31796161917504, 41.26319987714436, 25.729836780840305, 38.455349994721175, 10.753897783826687, 26.678736292596277, 40.47772525737625, 9.381016102118734, 196.77203830190567, 8.716219537686882, 17.939824652798997, 51.851212218704475, 15.875925049960749, 5.078250109541608, 23.165289958155668, 41.50697332369389, 21.94278226877234, 19.729828854358857, 9.244417058849733, 120.67451117558173, 96.4054488737336, 19.55766836067881, 112.04779994244291, 18.811809249999843, 67.15140519478486, 73.52674241417283, 82.07730547011778, 57.48636530540689, 23.357172899145326, 24.609414090684428, 34.45204391894703, 7.391330792343464, 123.39556040890295, 48.2108997303763, 8.713779994441587, 37.51618397441777, 159.42438407651963, 8.933307518058154, 21.247744846727002, 45.66069836047335, 120.13178283795168, 70.10367835297886, 19.535738948848504, 190.632825415431, 225.2253314493459, 28.78817710889335, 18.24236496651327, 7.554628786458718, 46.895327384548175, 10.374244963974851, 5.157905357217694, 9.68538264356268, 33.601366663621825, 35.37443795141459, 57.56008591886452, 11.850571748026052, 10.735106261866852, 6.5167436003452615, 56.633728209396, 62.21383386882302, 5.368910419472694, 130.33432591629918, 48.851524133030566, 55.147430639394614, 79.68911922586378, 43.034022759247, 41.415254249762434, 11.869181349914633, 21.860087778377046, 58.91800263440071, 21.079752852608912, 13.445565916388325, 26.1807611839422, 15.440805842037392, 35.57865351104266, 26.503459977713877, 10.577721752995233, 15.90187667414932, 6.7840161337334255, 7.5866445371619635, 14.140678351059393, 35.17597384116139, 5.378955691873385, 5.075049700918669, 28.21750562681801, 110.41931672097203, 11.744832821129139, 15.146178255398187, 5.795836290988683, 39.38047942555382, 19.514181538097134, 10.934478879949912, 26.517764956520516, 22.292377520100253, 43.350022038427596, 120.3793692027235, 28.59298664926378, 41.031650547271255, 19.918206272272425, 7.724922201194976, 26.296041766911074, 93.6440711517182, 59.85904252514417, 91.19361119044675, 74.32062205394624, 58.866328468421955, 36.559821640629984, 85.20264636176755, 40.78352151592121, 32.36731673278197, 50.669571047341876, 23.829118592086907, 45.82555358185435, 35.61903890051098, 94.83527465683575, 32.3946702674734, 61.26719876140794, 29.196611983555062, 13.765220308663489, 75.85422140035264, 9.619514235431804, 108.98181130697597, 5.431471693961495, 41.297107417994795, 115.64241037851762, 19.654868894251912, 51.129053693007954, 24.727027785190685, 16.401340785005157, 46.2231306322683, 27.970301016555613, 28.263910709938052, 26.632267927559607, 30.786060784749978, 9.873684143566479, 40.82890302731407, 15.728450549964768, 130.76119186610563, 31.762457446570785, 14.236473425758055, 36.623538540884404, 163.80221690844067, 56.45950599822556, 75.98001626974767, 70.56316518282512, 53.1478373034975, 55.612738505521335, 34.99589223434285, 39.94622126089716, 9.548670300238085, 89.48870766557333, 100.96807689133273, 21.410211105762073, 11.266121028910078, 14.685097643726742, 15.067473844915753, 68.92920174103949, 28.811006193062386, 153.55070729758805, 19.62164056376798, 62.428250478848554, 17.052788619298767, 28.46310023936391, 46.74063446652286, 16.823869401695426, 62.95638962370422, 35.11006945900535, 44.52932984629017, 42.39636007457645, 263.7830482732115, 13.131381702083702, 81.34647564789388, 52.519325205512466, 57.834561593842295, 43.94393330924232, 157.6756335524797, 53.39454452278248, 141.35226897991762, 23.01997616857236, 10.399574051624638, 214.2810661570301, 33.06394068207099, 17.17002675852248, 79.55901888789948, 14.728890940560344, 30.818361808266957, 39.54978079026876, 60.901056064523004, 101.30117717086664, 12.91741776814874, 55.36761345635279, 15.026749237182697, 40.28338761548957, 7.454082544595646, 7.3889265744372254, 20.11724410908225, 8.440880171036062, 64.59299618477927, 35.095753407247464, 49.87940841145449, 36.5291877011325, 95.94881691627121, 19.341625042849127, 55.422862287421836, 22.33275607101729, 61.489456775908494, 79.60941088001773, 36.747555926558746, 61.48098219408955, 32.55614816074648, 57.27340461184981, 18.23411714368609, 21.85426187389241, 8.822676749939221, 74.8394850527379, 25.25926805244233, 75.86105804942643, 16.712882508311683, 9.12087558157933, 72.36561129561021, 19.184192047064876, 20.435326701645018, 56.173151993893434, 65.47473871924645, 21.812043459815953, 22.033054491567, 12.858904150563204, 70.45691691921772, 68.88796670688075, 85.02883027866491, 57.167003073527496, 42.869678461770825, 9.480910051657837, 202.45787490786392, 11.07005051715702, 15.32651324606848, 26.78516342079132, 16.99949016462942, 52.31453409409067, 32.67428415773871, 27.0995730912923, 11.584389069030602, 18.620031716537813, 174.00947650378066, 40.674702003233236, 23.305899138657047, 8.23274285235225, 84.89050503263353, 10.78928969060621, 10.129879206860911, 103.1614890333085, 29.499259728112776, 157.9925932832989, 152.2816592393642, 17.856612113946856, 16.3503811066958, 35.77087844175301, 43.919448716487054, 6.23518016489403, 24.998383233893055, 23.07292011522287, 23.894888094906683, 22.501940718285425, 12.134469493491645, 83.17750196297416, 5.820599769601187, 6.443732508504911, 5.124285892282506, 39.26938011333472, 6.20753597010247, 97.40418936126623, 48.23610117902381, 15.285224216707435, 5.89949673884915, 11.293587977473097, 60.58261770170115, 38.60050890188824, 34.19949169253271, 24.807792842173235, 28.02671157164422, 115.18579749213524, 85.8940466950632, 24.788645808673795, 17.86663626348181, 29.88205086317909, 12.527034243001818, 16.389592358024753, 13.309988595769422, 35.22722914812943, 18.95528641242053, 40.37392763248117, 12.041590123088124, 8.133528323923795, 12.82454180405893, 18.66974485179568, 64.78430978987976, 81.47191253614423, 45.09914883328169, 234.83268761479843, 28.883024809691683, 8.629195938855137, 50.55601815431511, 24.483019776641974, 61.905693254947494, 53.18104585079382, 28.892324939059716, 69.50871658764511, 28.589299490674676, 15.939398187229887, 25.575766028991897, 6.742834073377323, 17.178803737931478, 12.504430752432276, 56.76794702365511, 24.732624906465013, 141.34170429913718, 179.35575818843608, 49.03780029017928, 83.44139011655435, 39.402233621492286, 44.52744130424516, 11.077682017308065, 32.984413706515326, 62.18614498685939, 101.98696188648545, 18.61286901594506, 36.13549941595671, 11.04442310102281, 28.74425077364385, 86.79547704329228, 160.23160876411478, 23.497128740680022, 41.763405280346696, 92.88269700909512, 8.079686047908542, 15.9158175644522, 99.14734637390592, 8.650739921785252, 10.072432311165297, 55.517759155390266, 10.916409493824084, 21.93000157276138, 10.24142730483737, 66.26700271803527, 18.314449831537697, 16.941925768064692, 41.54735088841874, 25.052113623291206, 44.907774940067554, 40.14229378223966, 33.775479478774116, 21.07499824161675, 38.90539662568867, 46.264356824279744, 10.028809949794363, 127.77078547058103, 193.2127720821059, 62.95299733444666, 83.11646559195364, 105.04634716398907, 15.647828359640926, 10.013572341107087, 108.83908886097375, 13.256597776653805, 12.701596487862192, 45.22371107229182, 13.450007524636469, 5.630668930156074, 8.951727207167995, 68.99074089845153, 17.53467821565124, 8.18235483582631, 98.76499607971292, 65.41563450308162, 19.771619952130383, 67.40353325540691, 6.320556525987129, 16.459195458583753, 6.665090390899235, 163.3625466301652, 20.36675299654474, 48.77885148517864, 15.906657722312056, 49.78778332742893, 28.337440329827025, 37.541062469250946, 47.997354810541665, 10.266635409012697, 33.727935062714735, 44.152682368218876, 10.686191219873875, 115.10957924045934, 46.39258923827058, 5.074491245100776, 7.430222778955981, 130.0623657682882, 11.847684359647282, 28.084608292138327, 19.558154921387796, 21.316618553386576, 38.731738289092426, 34.77712531593622, 17.979823791843103, 48.568581143181405, 40.75293117271889, 82.70871536162846, 86.20620808912145, 7.666735215243047, 7.6141244846800555, 11.665895973633555, 49.822605000599324, 10.759701877285071, 22.46286335124395, 13.10385169601528, 7.636299064908406, 23.35971685191127, 63.323669467671245, 21.67313506215841, 188.70805921904824, 44.01731947493691, 6.253917986514047, 28.156774831569667, 14.357226002124388, 23.300460243433818, 18.327634597000607, 15.764521732881931, 32.94482033394901, 139.75319834342048, 454.5308290097576, 25.41852038210048, 196.49378856355625, 188.1220048436083, 28.187508016661305, 108.7885858386692, 79.87722871650075, 18.868392416593, 266.95230475248405, 64.20631856364106, 9.367267595316946, 47.436263033061174, 50.40234365547101, 85.9517139779115, 130.29143070889563, 8.880880270800509, 60.85595536214975, 21.97496795056495, 16.052223956366603, 74.62405667282543, 14.796925826072469, 38.04391572979652, 46.56406543861151, 41.59840698158178, 29.826021072746933, 15.084608600132114, 6.919173665393689, 27.795834282883504, 55.03736203068833, 35.956989621356115, 16.970879886506417, 29.051779801335, 5.336511253777884, 100.02309585972267, 5.844900993340634, 49.84440761194958, 57.339529531096645, 6.384436619635273, 13.143938261653911, 15.922869463387991, 90.89701088895117, 14.595660881771881, 90.87736374495594, 13.402294458764544, 103.56430400522787, 14.39259439998465, 64.27349369488078, 16.62389926612454, 197.9808792733563, 105.29048631251536, 83.1139859922013, 22.590323244011227, 13.256369673007846, 31.236780659212467, 68.04584149912733, 184.89982166617762, 58.17305201506646, 14.680439405287576, 144.05979868782643, 5.7744508607058, 12.918176664431119, 26.084996512374417, 26.75655181174026, 83.3927741186213, 31.25059704535149, 31.728189351335242, 10.231570478106601, 67.27142544297938, 31.367437704711186, 102.78736640175916, 144.02097386944052, 18.9419180584661, 23.361525162358237, 47.89970219351618, 55.93822981819092, 59.62014972928375, 44.7358372245662, 9.467375014132154, 45.71264933970491, 19.58612752978932, 12.22540681572365, 33.558181632682505, 104.28631656038363, 215.61311463572918, 20.644751915803532, 157.13473898243518, 147.55487711993803, 166.9199503173046, 89.02364694688265, 6.790955825448413, 97.39045810550002, 12.049139836855792, 6.531128286322104, 61.78050540717354, 7.73793930406988, 99.29966274505529, 15.398760823460663, 33.79257359580261, 20.649928757025414, 28.51404833588757, 26.33211448442345, 13.574732521691658, 29.523648747908148, 5.468362199549492, 16.614657119877144, 7.933243753554933, 15.357645288795903, 119.19648706369479, 185.97732152250387, 13.845764478737168, 53.53377074584705, 6.46047886417928, 21.39635165768069, 13.011815897136435, 28.759882118248115, 152.75102500431524, 99.163589006062, 388.5638184757702, 55.73932503761569, 17.81498191895374, 16.609986769249396, 51.137503940129186, 15.632711352105323, 12.618851515010052, 17.97800579438858, 273.2756351873717, 20.528148525885165, 96.84735834031703, 14.001986139557243, 75.89508963557626, 30.30487522715271, 32.01990733022779, 368.43312848568485, 106.52115164082208, 52.04277567195039, 26.22153632676467, 7.752543824518325, 37.132248137422685, 12.894933333538775, 72.01116412186269, 11.291864503068478, 7.047104362850537, 113.7151478403659, ...])
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);
([4544684.375, 4649193.8965475885, 5875925.0, 5892030.15243402, 5930684.783267517, 5938873.429143267, 5943325.227428765, 5943794.057813277, 5945562.627202298, 5976557.8125, 5977784.907557997, 5980849.947878896, 5982060.7116632415, 5983010.721211792, 5985148.34322596, 6012025.0, 6168544.999815875, 6170364.0625, 6225367.1875, 6249013.453669292, 6374689.729522767, 6375048.066349052, 6377038.013861511, 6378548.165024404, 6379276.5625, 6379443.878147277, 6381426.082216604, 6383506.458782458, 6384236.9540162245, 6385524.652706828, 6387053.599310249, 6387107.405273459, 6392609.738180361, 6393873.4375, 6393885.154624131, 6393896.48365662, 6401945.243033873, 6443289.219220272, 6449883.813019974, 6455890.207408957, 6457666.038797259, 6457901.514890008, 6463435.936769335, 6476607.156121146, 6487947.368188949, 6499015.625, 6520393.75, 6525032.8125, 6548994.802818997, 6558428.125, 6561431.67200798, 6565888.700878549, 6566050.0, 6567848.770232994, 6568718.732451215, 6569564.021611807, 6569667.026186678, 6570176.5535455225, 6570178.898954931, 6571014.091663561, 6573363.265336966, 6579226.5625, 6587834.375, 6611928.125, 6630556.25, 6633218.485205738, 6634260.832098104, 6641172.1775336405, 6663238.639407845, 6663412.155108961, 6666348.730801287, 6670754.6875, 6673771.016241236, 6674499.046049179, 6674558.455275652, 6674602.5007349085, 6674958.753578098, 6675650.0, 6675730.6298803175, 6675732.830279809, 6675921.233968962, 6676106.819293567, 6681340.745816, 6681434.942196621, 6684414.0625, 6684478.678231678, 6689115.649539153, 6695187.5, 6701418.072486436, 6728910.728886181, 6744397.215482912, 6746582.8125, 6749594.421572932, 6749834.116343116, 6756124.90015264, 6756286.009951736, 6760139.876086785, 6760181.883721699, 6760534.375, 6761054.6875, 6772939.0625, 6796454.04656844, 6797199.588060719, 6797607.8125, 6798496.164763734, 6799104.771410338, 6799309.875594611, 6800171.711767522, 6810666.556368586, 6811118.502421833, 6812261.363490306, 6813502.792164629, 6814323.4375, 6814791.880529543, 6814926.145692713, 6814950.449389244, 6817804.178607056, 6818582.958489389, 6818589.851744274, 6819008.751920012, 6819121.875, 6819126.5625, 6831628.3465043465, 6858206.41786482, 6862495.263149906, 6871051.702349909, 6872480.12859854, 6873100.614086094, 6877853.125, 6878131.714960723, 6879477.529330637, 6879715.421946201, 6879739.414134449, 6909758.440625764, 6910482.91033684, 6913153.076222029, 6914354.6875, 6914605.861071414, 6919041.142535533, 6925349.153507022, 6925592.1875, 6927281.25, 6929820.3125, 6932756.987520124, 6934759.788374226, 6944685.432145559, 6957229.318987013, 6970909.76919153, 6993803.639278814, 6996139.636733084, 6997716.183535612, 7033359.375, 7039470.93655354, 7040634.173282715, 7040664.457941761, 7040768.75, 7040814.040647363, 7041423.227977477, 7041511.844370212, 7041731.563893352, 7042031.25, 7042407.854627136, 7049191.898967714, 7049531.25, 7049725.0, 7053414.222731763, 7055705.842609922, 7056306.088784234, 7060695.977393636, 7061657.8125, 7062678.3910950925, 7064414.0625, 7067054.36343646, 7067167.1875, 7070192.315930055, 7070218.773231784, 7070929.595127192, 7071362.5, 7086860.15293371, 7088517.34324469, 7090326.362782079, 7093706.811889937, 7094337.9211984435, 7095335.000319667, 7096730.204984264, 7111329.8134857975, 7112832.163832049, 7114197.675000978, 7115302.384157179, 7115435.408077686, 7115452.362676538, 7116230.860643183, 7116368.034781058, 7116368.116065673, 7116403.018092301, 7116537.5, 7116641.532767461, 7116843.75, 7117066.249343243, 7117078.955441032, 7117232.8125, 7117325.05561702, 7117645.292256443, 7117800.193440056, 7117840.4978500055, 7117971.169429806, 7118224.767849422, 7118681.990730535, 7119153.699413992, 7119490.4998195795, 7119857.477750809, 7119970.257765404, 7120163.956399214, 7120849.194546969, 7120904.221746449, 7120951.888467554, 7121916.318325751, 7125073.258682061, 7133880.009561103, 7145352.17664141, 7151121.556591331, 7168550.252608119, 7181048.333675782, 7203704.56248845, 7209516.904649287, 7215573.705008182, 7221239.0625, 7221242.144986243, 7225608.549654012, 7225773.4375, 7225783.735502199, 7226469.397547229, 7226505.8141505625, 7226570.3125, 7226710.9375, 7226952.568857048, 7227834.714740609, 7228505.782886376, 7234384.375, 7234703.320081825, 7239306.013597169, 7248071.689279575, 7254165.161405176, 7258076.007121608, 7259419.616792783, 7260120.063343394, 7260379.6875, 7261299.616715302, 7263428.125, 7264514.0625, 7264979.354905735, 7267504.507411188, 7270370.47006969, 7272274.974856469, 7273321.875, 7273600.405793178, 7273888.368215778, 7277809.151736665, 7302546.875, 7305159.375, 7321021.868799642, 7323705.439632748, 7324859.7663487345, 7326031.042490511, 7326735.178594118, 7326890.212651616, 7326901.483841792, 7326916.515005005, 7326953.363200153, 7327054.249400717, 7327385.700341931, 7327458.678448954, 7327484.375, 7327535.504620167, 7327551.521966432, 7327700.0, 7327931.439155069, 7328325.003808293, 7328339.538410823, 7328416.2908263365, 7328769.581611729, 7328775.378429664, 7328824.680442466, 7329027.99288475, 7329028.013630313, 7329057.8125, 7329069.927243924, 7329131.986131501, 7329197.789312877, 7329259.326088681, 7329261.342601867, 7329312.275200186, 7329323.480132823, 7329891.810950372, 7329915.623625389, 7330013.062562859, 7330087.523452767, 7330153.794458565, 7330165.344207109, 7330196.875, 7330208.866569987, 7330449.165603609, 7330570.112103822, 7330767.886320187, 7331207.528810913, 7331220.3125, 7331674.0286901, 7331709.051358134, 7331867.087049749, 7331920.3125, 7331938.353866002, 7331948.272098883, 7332004.6875, 7332013.121312901, 7332260.9375, 7332381.292763409, 7332520.533545707, 7332527.973581151, 7332749.494175655, 7332839.0625, 7332846.875, 7332900.995529685, 7332946.976881958, 7333115.7848193245, 7333156.916030273, 7333237.5, 7333246.2537295045, 7333464.021865432, 7333469.881954041, 7333536.203657066, 7333540.625, 7333603.843450945, 7333806.25, 7334012.156560015, 7334013.826973961, 7334173.322100835, 7334244.16372458, 7334413.607094922, 7334508.971978633, 7334603.125, 7335184.738061419, 7335811.093248296, 7335968.32893924, 7336200.051873683, 7338316.717708476, 7338983.138982665, 7343271.470732514, 7343567.638546369, 7343568.911761493, 7346245.880779106, 7346538.49475134, 7348809.320448305, 7351511.761469601, 7354251.410605167, 7354394.0174974995, 7354468.641940227, 7354933.300901614, 7355727.363525054, 7355773.172140891, 7368342.397095887, 7373087.960219825, 7374740.232541739, 7375037.304491818, 7375123.253290212, 7375849.2911616685, 7376118.75, 7377087.25839101, 7380047.805915629, 7380382.8125, 7382270.3125, 7398945.3125, 7416253.442239035, 7419879.982701428, 7420848.632901457, 7429979.6875, 7435862.2867692625, 7440232.672689699, 7457417.1875, 7458270.3125, 7458334.206118575, 7460304.6875, 7461207.8125, 7461422.008034075, 7462657.471453756, 7489255.809961064, 7503038.74178396, 7503054.199154457, 7506373.939296533, 7559185.9375, 7560248.250801242, 7560453.62188885, 7560959.847353022, 7561010.109260339, 7561544.712999072, 7564239.0625, 7566993.4667337425, 7568439.0625, 7572912.607710342, 7577038.927613452, 7583535.24416931, 7584318.794124637, 7585753.313180215, 7587688.895922712, 7587957.8125, 7588215.625, 7588543.801878872, 7588642.103262965, 7588687.637534424, 7590150.521035638, 7596642.135225675, 7598771.39453105, 7601334.375, 7613680.402191973, 7613943.547031759, 7613991.7864938555, 7614288.770496808, 7615870.690462257, 7620394.412248938, 7620710.086517145, 7680228.814659847, 7681280.81565112, 7683065.625, 7687903.9167167535, 7688829.6875, 7701674.577091464, 7706956.25, 7726304.609927866, 7732416.993794539, 7737727.79878814, 7751044.259351885, 7758939.0625, 7772858.53589132, 7772998.318456204, 7785343.496918453, 7785349.899182236, 7797798.4375, 7799265.683097831, 7799459.906987547, 7802889.795261038, 7803814.675760284, 7804631.25, 7805634.91507364, 7807055.195397081, 7807100.136311609, 7807143.769631602, 7808037.043927154, 7812502.42799313, 7812735.832802331, 7813060.9375, 7813456.25, 7814040.95088108, 7814560.03423194, 7814753.868925769, 7820917.1875, 7831807.8125, 7838768.751247643, 7870704.6875, 7881087.168551401, 7882691.120528604, 7885307.8125, 7885682.185968284, 7887287.5, 7890576.5625, 7900041.354006413, 7901698.4375, 7905997.554626251, 7907643.238418665, 7919784.024234359, 7957415.625, 7959268.534124125, 7971778.125, 7979382.045932865, 7991908.715714875, 8023162.595389577, 8028015.916113831, 8029142.31838649, 8029468.613573622, 8029862.5, 8029969.7703048205, 8030043.42693816, 8030320.703431053, 8030990.836222545, 8030998.980332233, 8031074.074147294, 8032628.542977282, 8033515.358415344, 8033536.124086748, 8034539.0625, 8034848.4375, 8034924.204529465, 8035530.283482408, 8037273.4375, 8039560.9375, 8039680.085116013, 8039681.103142963, 8040162.758078213, 8040236.365178599, 8040305.786018321, 8040377.434646454, 8040512.580885793, 8040641.730567479, 8040718.61907497, 8040746.564792689, 8040781.25, 8040892.076239406, 8040896.492130556, 8040999.455102981, 8041046.976870771, 8041103.078888184, 8041221.456803737, 8041298.4375, 8041305.729878579, 8041433.148067557, 8041968.25403091, 8042017.1875, 8042019.111929617, 8042562.552680583, 8042634.126734255, 8042645.3125, 8042843.02575786, 8043151.435258479, 8043837.389597871, 8043846.451557207, 8043890.153488177, 8044180.595423303, 8044461.759470948, 8044965.224108677, 8045536.8261674475, 8045642.511858011, 8045729.45692415, 8045816.815482524, 8046087.5, 8046510.9375, 8046727.937840528, 8046893.114911834, 8047721.875, 8047743.75, 8048403.125, 8048559.375, 8048590.625, 8048593.894681929, 8048684.375, 8048760.320373585, 8048793.743164478, 8048806.25, 8048999.483477862, 8049423.4375, 8049440.277885912, 8049637.5, 8049637.822153753, 8051348.113633013, 8053007.087147776, 8053153.125, 8053655.830403525, 8056590.973584649, 8057642.1875, 8057659.608806134, 8057681.586661317, 8057866.555985148, 8057868.787633656, 8057998.230010129, 8058823.33392968, 8058823.4375, 8060209.953523352, 8060475.0, 8060998.834763448, 8062863.031634619, 8063979.257076608, 8063987.301852572, 8064723.271256221, 8067904.6875, 8070227.369760156, 8071223.950476839, 8071727.651138606, 8071951.5625, 8073403.125, 8074138.370192633, 8074659.837516399, 8074865.87124098, 8075273.4375, 8076957.112613166, 8077404.179150417, 8078641.610775901, 8078721.8060605405, 8080593.782660314, 8081467.1875, 8083178.125, 8083293.75, 8083305.40197058, 8083529.090930435, 8086429.313265006, 8087330.721247804, 8087382.720801755, 8087414.481915032, 8087424.633852175, 8087672.1274717515, 8088267.787415247, 8088615.625, 8088776.152361887, 8089215.052349381, 8089973.4375, 8090491.064234715, 8090915.4800549885, 8092093.75, 8099763.608601679, 8100177.215966777, 8101896.535679089, 8129010.578053422, 8129285.415720654, 8137523.009218209, 8147492.1875, 8147966.108150439, 8151212.5, 8151362.788827637, 8151818.136099542, 8152075.0, 8152537.507180429, 8152654.6875, 8153243.093693352, 8153300.0, 8153685.068777505, 8153852.292126468, 8154510.505378632, 8154708.740860824, 8155958.7250521, 8156270.593319513, 8158229.899947027, 8161631.142429961, 8162281.287582768, 8163467.1875, 8163606.814129444, 8163616.89336633, 8165163.366838241, 8168477.705244337, 8182115.625, 8183125.0, 8184142.1875, 8184343.75, 8193440.625, 8198576.190939318, 8199717.508073013, 8200807.347958321, 8201539.955128952, 8202039.0625, 8202180.31607237, 8202620.177234115, 8204305.085725027, 8204418.490063196, 8205287.8367179865, 8206009.03966611, 8206461.886996114, 8208472.864524824, 8209042.1875, 8209801.093889027, 8209808.0027579805, 8210539.94508415, 8210723.4877906265, 8211189.0625, 8212021.972501466, 8212543.283327999, 8212658.752923964, 8212792.35917631, 8213198.308317583, 8213490.58779746, 8213836.034971697, 8213838.331454101, 8222480.139686263, 8225089.745689342, 8225972.606550849, 8226281.173598767, 8226314.336262026, 8227292.301615596, 8227448.562566959, 8228017.1875, 8229560.601858229, 8245915.521791682, 8269139.0625, 8279551.3346366305, 8283546.126671397, 8283596.651823715, 8288286.359812468, 8288508.562390958, 8288842.557881029, 8288983.412410073, 8289250.326287335, 8289257.8125, 8289261.634713741, 8289332.554803406, 8289386.606280505, 8289614.776389225, 8289720.315769669, 8290877.720515057, 8291130.248440354, 8291620.312443433, 8292959.464064096, 8293854.405213831, 8295507.519341441, 8296948.4375, 8315777.637716503, 8317382.8125, 8317384.375, 8318001.649846678, 8318943.2800311325, 8319090.728595264, 8319096.875, 8319434.271559244, 8319635.58903938, 8319812.27847973, 8319879.661829683, 8319893.635153071, 8320075.0, 8320360.714630318, 8320467.982808212, 8320652.37550515, 8320737.539849043, 8320790.141904947, 8320951.056626486, 8321138.105766047, 8321188.263932165, 8321353.617288459, 8321567.702828368, 8321595.011416771, 8321653.993567851, 8321742.911221736, 8321792.9082712345, 8321963.560214163, 8322074.462371086, 8322091.956858046, 8322270.3125, 8322425.596186737, 8322496.017878449, 8322524.755243697, 8322562.5, 8322813.639177737, 8322868.317630016, 8323212.5, 8323372.494330937, 8323478.875065329, 8323688.446306091, 8323756.145562778, 8323767.672221816, 8323878.85732899, 8323910.9375, 8324481.844183355, 8324531.25, 8324532.99003477, 8324587.5, 8324624.627090105, 8324737.5, 8324878.125, 8324887.467758203, 8325048.4375, 8325290.625, 8325406.25, 8325583.528020286, 8325703.963948451, 8326087.446056147, 8326426.5625, 8326671.470112447, 8326704.823143199, 8326799.6798827695, 8327223.4375, 8327525.0, 8327544.899642222, 8327650.234112881, 8327862.5, 8327886.568010885, 8328017.9506626185, 8328348.4375, 8328652.985477609, 8328679.230209676, 8329064.003655362, 8329103.125, 8329264.271615185, 8329566.066545216, 8329587.5, 8330024.136287422, 8330448.3632187685, 8330557.8125, 8330631.25, 8330701.080787659, 8331180.963970134, 8331979.378242965, 8331988.223741332, 8333821.450204974, 8335520.234150169, 8337225.0, 8337407.061208437, 8342565.558149927, 8346525.173739703, 8346836.647328424, 8347266.645874551, 8347272.911945066, 8347296.129975772, 8347432.8125, 8347437.044646187, 8347494.046647463, 8347527.639036515, 8347646.875, 8347695.341040347, 8347770.11007291, 8347853.125, 8348063.874234218, 8348375.870683123, 8348925.0, 8349012.910971326, 8349138.261356321, 8349211.986203663, 8349364.0625, 8349413.44165552, 8349420.3125, 8350122.107095495, 8350282.8125, 8350749.99045515, 8350773.4375, 8350804.6875, 8350872.806624663, 8351161.691619148, 8351271.875, 8351346.572891455, 8351368.550509764, 8351431.009411549, 8351453.430343753, 8351468.244888243, 8351566.743346963, 8351696.423665238, 8351699.977366258, 8351727.406374132, 8351880.732124673, 8351926.5625, 8351977.766295802, 8352011.665219369, 8352024.312237102, 8352029.6875, 8352042.835334346, 8352229.6875, 8352273.6097140135, 8352289.092500425, 8352301.88153435, 8352350.337312269, 8352512.2510731565, 8352790.217013225, 8352850.97931453, 8352856.340494026, 8352931.538460508, 8352950.0, 8353047.955360222, 8353108.966593812, 8353197.058628934, 8353273.33165812, 8353348.418630592, 8353376.400268338, 8353428.138269457, 8353452.235883999, 8353492.457281106, 8353543.615588825, 8353567.1875, 8353612.7404228635, 8353643.0409842655, 8353828.125, 8353974.789921899, 8354070.295226772, 8354126.979408573, 8354129.175332109, 8354150.75186288, 8354171.303051806, 8354309.375, 8354342.2296128, 8354422.806999602, 8354607.8125, 8354799.5191234695, 8354881.615443566, 8354905.664366854, 8354972.794326338, 8355633.921985317, 8355659.638782099, 8355711.719735987, 8356320.274042494, 8356489.0625, 8358250.840064198, 8358714.5157908425, 8360964.928443562, 8361170.852501749, 8364531.982735285, 8365027.770913014, 8365878.125, 8369742.1875, 8370075.417306907, 8371276.097367311, 8371334.216252463, 8371774.556282968, 8371839.47183021, 8371884.375, 8372096.500472593, 8373646.187319332, 8374890.057132506, 8375544.633932507, 8375759.375, 8376024.906203751, 8379711.370010164, 8379844.8401062945, 8381137.5, 8383059.22312474, 8383396.42352096, 8384498.081103077, 8385151.592392978, 8385784.375, 8385978.125, 8387263.665879959, 8389817.135879032, 8389893.75, 8390135.116532108, 8391114.0625, 8392680.667675294, 8397378.054776506, 8403209.370965667, 8403530.701071918, 8405005.434464132, 8423672.89139989, 8426300.554600134, 8434317.1875, 8449267.656437311, 8451812.547974424, 8471485.277028585, 8482515.18546019, 8483150.526648887, 8483644.422707535, 8483648.4375, 8486430.63396139, 8487330.816307105, 8487556.25, 8487875.204023758, 8493981.25, 8496351.5625, 8499584.531546114, 8500617.1875, 8500905.439089485, 8502120.917058071, 8502545.3125, 8502857.8125, 8503331.950398238, 8504374.410533233, 8504503.103238653, 8506906.789355468, 8507356.25, 8511483.523611411, 8511511.07345467, 8512076.5625, 8512767.706576964, 8512828.400285836, 8513157.8125, 8515440.98268191, 8515770.888493871, 8516483.260295302, 8518646.875, 8524640.0361074, 8524640.065911705, 8524767.834879266, 8525943.018329645, 8527668.377328068, 8528134.527773988, 8528491.004151948, 8528813.328705348, 8529432.917555824, 8529665.910364829, 8530285.605535412, 8531060.616892623, 8532421.409600653, 8534642.015606647, 8535746.085142039, 8536104.068609983, 8536492.1875, 8536906.25, 8536914.240947213, 8536920.576660307, 8537903.125, 8538853.938357554, 8539501.652085938, 8540251.5625, 8540547.045248762, 8541352.344735691, 8542271.923732169, 8543740.625, 8544960.335003404, 8546769.974626556, 8561088.792045074, 8561098.635626256, 8564042.1875, 8564303.084981078, 8565198.284397598, 8568079.6875, 8569751.72875623, 8569761.069748342, 8571045.70726731, 8571387.5, 8571750.897159474, 8572030.618285842, 8572214.165044332, 8572230.959413221, 8572259.70365866, ...], [54.42249990143308, 15.531135733265982, 51.328334761342695, 7.2492780607627045, 16.765235079711665, 35.45050416180508, 33.674670577798594, 16.260689707183733, 8.355009333456355, 34.15946438520257, 17.451862005054544, 6.478951713257041, 134.44981019269886, 24.882371642441218, 42.013297667046714, 54.77185126280981, 47.482297528961354, 46.52137263934378, 33.55110002209115, 110.53856655752324, 13.239439078566658, 15.938164652927318, 12.038639877356985, 99.64888361396004, 117.09939012116274, 5.346332080524636, 13.380371492585173, 11.470520260764898, 75.9086819765354, 31.950705828946994, 153.81348102047366, 5.121893351991436, 16.533595775981162, 53.85857603613716, 12.612784578633258, 22.65010382184852, 27.22201123740692, 22.240019612191695, 13.159443239388843, 10.532218197110266, 16.794251742550106, 27.616642707976617, 14.938725198445063, 48.11617802877613, 7.791918097816047, 83.43909310711598, 34.820334139220094, 57.90486848946596, 8.034265132741783, 70.34720701687982, 29.47150678839522, 6.431859669040484, 36.668811062192624, 85.23976405365072, 8.277318985705262, 13.704483159116474, 12.342566516033413, 28.348971235499768, 19.02824002888765, 15.053844700462106, 10.074857839342162, 73.37428058653727, 61.11935683482875, 61.40950953326747, 138.9130818358485, 5.237794193518922, 10.966858853305496, 21.94044350017562, 17.943620928741048, 13.771922884062752, 9.592362594980903, 90.59505679892318, 46.16499505935223, 30.19893912062112, 8.658490589644348, 20.337019068425352, 6.025775967442353, 56.630884835468876, 10.27948209186555, 15.0097135619358, 16.747562411288083, 7.279599351417913, 15.422906566680908, 38.2411461251567, 38.616740832319394, 5.56054687806331, 6.768415528363752, 34.083146674412575, 68.94904891949565, 14.201830009428141, 7.7312085054857915, 115.67604618164862, 90.40198600222374, 14.039484935935873, 26.69516477680093, 13.620035606794751, 5.876735415816192, 18.06936862319198, 37.047169684219526, 35.51303591106606, 115.0231209268942, 20.193708407273597, 17.441347650156857, 52.05550476682838, 6.1814502192117295, 49.34513503275523, 12.0120588366747, 55.78154364126932, 8.849257340285407, 103.96608753154953, 59.20619679267983, 13.808437782493337, 30.852122684872512, 57.36358236159541, 43.77475211374673, 141.87168983377578, 81.91337411605377, 12.11891801541367, 8.753250071765809, 6.645177963957483, 93.3852586685388, 54.67775207191048, 15.858805915096564, 9.477493678830463, 47.504849215853966, 26.203362523913867, 25.07977586851146, 33.61549448809623, 29.375559973984117, 5.980946406826836, 24.990683357566464, 41.00675698745682, 6.835798598712859, 5.489388102856696, 15.328008088819823, 27.595209940491802, 110.71123678664834, 166.8643323724538, 15.987193575576594, 10.020329145718566, 37.97010584630212, 88.94267136817712, 46.44352507019523, 15.483334217050704, 16.79202714211069, 77.6168201221602, 22.91333182320224, 35.86557152870092, 27.464756397541972, 153.2911036876249, 84.80405056790129, 40.088779385714545, 23.04860599704337, 14.224630004785539, 5.843830668041868, 40.109930459020106, 28.099546980332054, 24.979620458685226, 105.00688417806782, 16.290060213621633, 64.79041787812531, 15.10454683204738, 9.09879409495606, 73.0578466600827, 47.72310107217001, 11.387749273662488, 48.5453277512072, 25.7016616256774, 18.271534666972936, 122.79332782713537, 6.817819157359347, 47.050297249816246, 22.083270937829646, 52.85206821392174, 22.653512756276015, 8.298901008474996, 25.021289215245037, 86.10283268336858, 12.60886228681924, 14.27466319801079, 177.15876198681707, 56.641910929647494, 62.79924539746893, 68.22867407630768, 12.045930314895088, 15.444482845289835, 33.16252763574547, 36.3488462940459, 10.13840677903099, 8.025139199420414, 16.20452815791326, 31.454570255821835, 19.58495430760933, 5.886036682989666, 26.57618521647612, 72.7340024029895, 6.187875992564405, 42.09056757238061, 12.267359300596304, 6.17893596203248, 65.28469417857585, 56.005081004741896, 14.864907787649711, 18.581311854129254, 26.241979818955997, 41.8761376396869, 10.783245384912961, 60.61486645239006, 22.43449121122677, 107.88445526146216, 53.41116900505183, 27.486515015263976, 26.58971905657836, 26.659607615718947, 13.420827895864662, 11.678540446762137, 18.461192706364123, 9.184644925909735, 41.81638224327262, 12.944193246661587, 26.03567385050591, 13.130075349724084, 9.245130215340437, 26.276810801993427, 14.691971438030127, 72.21158193071034, 42.74572779237118, 113.10145629183857, 38.98759367408601, 50.1009556483565, 12.959569289996477, 68.037393394024, 22.157830368469256, 40.20259655656775, 47.7818626784526, 26.54596978850856, 5.137830079046301, 21.8275545834356, 40.03684829041767, 15.741134306680289, 14.111014894746557, 8.190747830482692, 55.17504270663321, 10.358001236965368, 12.82020980562805, 35.13628475540443, 55.611020632396794, 22.7421620296832, 59.735661559409394, 30.093119012878635, 72.72823984053936, 25.413635260611372, 15.578144743564568, 37.097612359346, 55.62392184310262, 18.86606276738651, 117.91868469500626, 20.16732938998502, 59.98514318662737, 81.17582416332209, 75.08499200400409, 18.870324069863496, 41.500229070454424, 6.455046963716404, 74.1542502542987, 19.503535994310337, 27.060008620660273, 8.820887687618423, 23.26452773836213, 22.133647015652677, 33.52155130686872, 7.36934424443283, 71.42969580039754, 7.453832718867411, 14.789232801463331, 58.15707890811673, 6.801866750981179, 9.334625377992952, 25.00052769937919, 58.88940129472434, 19.462471831194268, 11.775651263488797, 5.9120514063354275, 26.16153063771604, 60.95388895787818, 32.32038168764635, 12.060915923679628, 16.42669400907845, 10.246074236379007, 8.260880461213116, 25.5568568699956, 5.3899491275108184, 11.195004989704849, 22.819812957535902, 28.49800832696814, 15.67858395925034, 11.164563933177144, 26.25795437629527, 13.969365485596438, 47.34556823861196, 10.416251246554863, 32.74156691966028, 25.112268834999877, 34.980514821730836, 23.961351176892542, 65.98430909007148, 17.802807530913128, 81.7371402085978, 14.571980928553895, 84.42245891925285, 10.175386285466107, 25.63711068191461, 29.394312463619855, 40.145505967069745, 79.79990098728368, 15.107047729147292, 15.85674268348047, 60.24647847736245, 21.384169295428723, 36.059973147181935, 35.71597887581554, 35.051353307477775, 15.344595463728409, 95.80991746862345, 8.673262967942655, 71.70330313143535, 85.28557190205406, 40.62094719736396, 13.520376264712572, 122.25029226798034, 33.880900149711174, 15.651492826096332, 29.579551588279728, 35.4576900618671, 24.610790849356086, 26.43475520319102, 5.256874039704173, 8.973893233405288, 13.599733842737848, 41.75686577630642, 11.74693861712867, 6.287078646982894, 13.547569533723204, 30.847262944600473, 144.650785435114, 11.679481623784143, 90.87290828365619, 11.91438738233681, 15.59612647832431, 6.149258511455325, 116.96903195890309, 38.21051762688101, 25.33311645306, 25.846834401364863, 16.069532541413167, 26.556890744750394, 11.987790703848876, 82.87331069525587, 107.99700313247294, 18.018211935909378, 17.043298459895567, 73.43691271675468, 41.87554066401188, 25.35177392614999, 19.635399832427492, 52.54111443432503, 24.52640551376361, 48.048635064599225, 85.64195055227269, 86.35851129076575, 42.197946224375606, 7.207418217866551, 117.68592502245392, 8.392684493370341, 29.948906146648948, 115.83088347405071, 26.03801305891411, 92.54555201674714, 151.11235560573112, 67.4122348584279, 34.261442667220514, 92.46480994872461, 5.951075273941292, 130.2070143790994, 62.292587066224684, 9.074184267898715, 48.48145132950954, 73.62925671378058, 34.03240431290909, 14.71468443893767, 97.1415438096486, 17.110040338585872, 84.52230409898753, 20.554808779426804, 73.65773331626812, 21.773812506474858, 91.27521158730593, 11.300344717372038, 10.923218774201032, 18.973212876253655, 17.82053692585275, 11.435160649290212, 14.34245913916281, 34.76904319390516, 93.51739534200877, 71.49872807888195, 59.74876893268107, 7.6537506890857525, 17.38503393096999, 43.16016076470517, 36.941883663144964, 91.93399650293074, 18.60714987429152, 64.95558835955654, 13.605597951462551, 57.89239563883818, 14.78870522144921, 18.254151659712146, 240.9840911701653, 6.909472088605442, 198.8288251037486, 35.951349394435596, 5.7590683513676995, 248.66764519157115, 19.792437265335302, 72.52024606672718, 27.079030168107796, 25.2106043142072, 6.700082717059157, 17.31796161917504, 41.26319987714436, 25.729836780840305, 38.455349994721175, 10.753897783826687, 26.678736292596277, 40.47772525737625, 9.381016102118734, 196.77203830190567, 8.716219537686882, 17.939824652798997, 51.851212218704475, 15.875925049960749, 5.078250109541608, 23.165289958155668, 41.50697332369389, 21.94278226877234, 19.729828854358857, 9.244417058849733, 120.67451117558173, 96.4054488737336, 19.55766836067881, 112.04779994244291, 18.811809249999843, 67.15140519478486, 73.52674241417283, 82.07730547011778, 57.48636530540689, 23.357172899145326, 24.609414090684428, 34.45204391894703, 7.391330792343464, 123.39556040890295, 48.2108997303763, 8.713779994441587, 37.51618397441777, 159.42438407651963, 8.933307518058154, 21.247744846727002, 45.66069836047335, 120.13178283795168, 70.10367835297886, 19.535738948848504, 190.632825415431, 225.2253314493459, 28.78817710889335, 18.24236496651327, 7.554628786458718, 46.895327384548175, 10.374244963974851, 5.157905357217694, 9.68538264356268, 33.601366663621825, 35.37443795141459, 57.56008591886452, 11.850571748026052, 10.735106261866852, 6.5167436003452615, 56.633728209396, 62.21383386882302, 5.368910419472694, 130.33432591629918, 48.851524133030566, 55.147430639394614, 79.68911922586378, 43.034022759247, 41.415254249762434, 11.869181349914633, 21.860087778377046, 58.91800263440071, 21.079752852608912, 13.445565916388325, 26.1807611839422, 15.440805842037392, 35.57865351104266, 26.503459977713877, 10.577721752995233, 15.90187667414932, 6.7840161337334255, 7.5866445371619635, 14.140678351059393, 35.17597384116139, 5.378955691873385, 5.075049700918669, 28.21750562681801, 110.41931672097203, 11.744832821129139, 15.146178255398187, 5.795836290988683, 39.38047942555382, 19.514181538097134, 10.934478879949912, 26.517764956520516, 22.292377520100253, 43.350022038427596, 120.3793692027235, 28.59298664926378, 41.031650547271255, 19.918206272272425, 7.724922201194976, 26.296041766911074, 93.6440711517182, 59.85904252514417, 91.19361119044675, 74.32062205394624, 58.866328468421955, 36.559821640629984, 85.20264636176755, 40.78352151592121, 32.36731673278197, 50.669571047341876, 23.829118592086907, 45.82555358185435, 35.61903890051098, 94.83527465683575, 32.3946702674734, 61.26719876140794, 29.196611983555062, 13.765220308663489, 75.85422140035264, 9.619514235431804, 108.98181130697597, 5.431471693961495, 41.297107417994795, 115.64241037851762, 19.654868894251912, 51.129053693007954, 24.727027785190685, 16.401340785005157, 46.2231306322683, 27.970301016555613, 28.263910709938052, 26.632267927559607, 30.786060784749978, 9.873684143566479, 40.82890302731407, 15.728450549964768, 130.76119186610563, 31.762457446570785, 14.236473425758055, 36.623538540884404, 163.80221690844067, 56.45950599822556, 75.98001626974767, 70.56316518282512, 53.1478373034975, 55.612738505521335, 34.99589223434285, 39.94622126089716, 9.548670300238085, 89.48870766557333, 100.96807689133273, 21.410211105762073, 11.266121028910078, 14.685097643726742, 15.067473844915753, 68.92920174103949, 28.811006193062386, 153.55070729758805, 19.62164056376798, 62.428250478848554, 17.052788619298767, 28.46310023936391, 46.74063446652286, 16.823869401695426, 62.95638962370422, 35.11006945900535, 44.52932984629017, 42.39636007457645, 263.7830482732115, 13.131381702083702, 81.34647564789388, 52.519325205512466, 57.834561593842295, 43.94393330924232, 157.6756335524797, 53.39454452278248, 141.35226897991762, 23.01997616857236, 10.399574051624638, 214.2810661570301, 33.06394068207099, 17.17002675852248, 79.55901888789948, 14.728890940560344, 30.818361808266957, 39.54978079026876, 60.901056064523004, 101.30117717086664, 12.91741776814874, 55.36761345635279, 15.026749237182697, 40.28338761548957, 7.454082544595646, 7.3889265744372254, 20.11724410908225, 8.440880171036062, 64.59299618477927, 35.095753407247464, 49.87940841145449, 36.5291877011325, 95.94881691627121, 19.341625042849127, 55.422862287421836, 22.33275607101729, 61.489456775908494, 79.60941088001773, 36.747555926558746, 61.48098219408955, 32.55614816074648, 57.27340461184981, 18.23411714368609, 21.85426187389241, 8.822676749939221, 74.8394850527379, 25.25926805244233, 75.86105804942643, 16.712882508311683, 9.12087558157933, 72.36561129561021, 19.184192047064876, 20.435326701645018, 56.173151993893434, 65.47473871924645, 21.812043459815953, 22.033054491567, 12.858904150563204, 70.45691691921772, 68.88796670688075, 85.02883027866491, 57.167003073527496, 42.869678461770825, 9.480910051657837, 202.45787490786392, 11.07005051715702, 15.32651324606848, 26.78516342079132, 16.99949016462942, 52.31453409409067, 32.67428415773871, 27.0995730912923, 11.584389069030602, 18.620031716537813, 174.00947650378066, 40.674702003233236, 23.305899138657047, 8.23274285235225, 84.89050503263353, 10.78928969060621, 10.129879206860911, 103.1614890333085, 29.499259728112776, 157.9925932832989, 152.2816592393642, 17.856612113946856, 16.3503811066958, 35.77087844175301, 43.919448716487054, 6.23518016489403, 24.998383233893055, 23.07292011522287, 23.894888094906683, 22.501940718285425, 12.134469493491645, 83.17750196297416, 5.820599769601187, 6.443732508504911, 5.124285892282506, 39.26938011333472, 6.20753597010247, 97.40418936126623, 48.23610117902381, 15.285224216707435, 5.89949673884915, 11.293587977473097, 60.58261770170115, 38.60050890188824, 34.19949169253271, 24.807792842173235, 28.02671157164422, 115.18579749213524, 85.8940466950632, 24.788645808673795, 17.86663626348181, 29.88205086317909, 12.527034243001818, 16.389592358024753, 13.309988595769422, 35.22722914812943, 18.95528641242053, 40.37392763248117, 12.041590123088124, 8.133528323923795, 12.82454180405893, 18.66974485179568, 64.78430978987976, 81.47191253614423, 45.09914883328169, 234.83268761479843, 28.883024809691683, 8.629195938855137, 50.55601815431511, 24.483019776641974, 61.905693254947494, 53.18104585079382, 28.892324939059716, 69.50871658764511, 28.589299490674676, 15.939398187229887, 25.575766028991897, 6.742834073377323, 17.178803737931478, 12.504430752432276, 56.76794702365511, 24.732624906465013, 141.34170429913718, 179.35575818843608, 49.03780029017928, 83.44139011655435, 39.402233621492286, 44.52744130424516, 11.077682017308065, 32.984413706515326, 62.18614498685939, 101.98696188648545, 18.61286901594506, 36.13549941595671, 11.04442310102281, 28.74425077364385, 86.79547704329228, 160.23160876411478, 23.497128740680022, 41.763405280346696, 92.88269700909512, 8.079686047908542, 15.9158175644522, 99.14734637390592, 8.650739921785252, 10.072432311165297, 55.517759155390266, 10.916409493824084, 21.93000157276138, 10.24142730483737, 66.26700271803527, 18.314449831537697, 16.941925768064692, 41.54735088841874, 25.052113623291206, 44.907774940067554, 40.14229378223966, 33.775479478774116, 21.07499824161675, 38.90539662568867, 46.264356824279744, 10.028809949794363, 127.77078547058103, 193.2127720821059, 62.95299733444666, 83.11646559195364, 105.04634716398907, 15.647828359640926, 10.013572341107087, 108.83908886097375, 13.256597776653805, 12.701596487862192, 45.22371107229182, 13.450007524636469, 5.630668930156074, 8.951727207167995, 68.99074089845153, 17.53467821565124, 8.18235483582631, 98.76499607971292, 65.41563450308162, 19.771619952130383, 67.40353325540691, 6.320556525987129, 16.459195458583753, 6.665090390899235, 163.3625466301652, 20.36675299654474, 48.77885148517864, 15.906657722312056, 49.78778332742893, 28.337440329827025, 37.541062469250946, 47.997354810541665, 10.266635409012697, 33.727935062714735, 44.152682368218876, 10.686191219873875, 115.10957924045934, 46.39258923827058, 5.074491245100776, 7.430222778955981, 130.0623657682882, 11.847684359647282, 28.084608292138327, 19.558154921387796, 21.316618553386576, 38.731738289092426, 34.77712531593622, 17.979823791843103, 48.568581143181405, 40.75293117271889, 82.70871536162846, 86.20620808912145, 7.666735215243047, 7.6141244846800555, 11.665895973633555, 49.822605000599324, 10.759701877285071, 22.46286335124395, 13.10385169601528, 7.636299064908406, 23.35971685191127, 63.323669467671245, 21.67313506215841, 188.70805921904824, 44.01731947493691, 6.253917986514047, 28.156774831569667, 14.357226002124388, 23.300460243433818, 18.327634597000607, 15.764521732881931, 32.94482033394901, 139.75319834342048, 454.5308290097576, 25.41852038210048, 196.49378856355625, 188.1220048436083, 28.187508016661305, 108.7885858386692, 79.87722871650075, 18.868392416593, 266.95230475248405, 64.20631856364106, 9.367267595316946, 47.436263033061174, 50.40234365547101, 85.9517139779115, 130.29143070889563, 8.880880270800509, 60.85595536214975, 21.97496795056495, 16.052223956366603, 74.62405667282543, 14.796925826072469, 38.04391572979652, 46.56406543861151, 41.59840698158178, 29.826021072746933, 15.084608600132114, 6.919173665393689, 27.795834282883504, 55.03736203068833, 35.956989621356115, 16.970879886506417, 29.051779801335, 5.336511253777884, 100.02309585972267, 5.844900993340634, 49.84440761194958, 57.339529531096645, 6.384436619635273, 13.143938261653911, 15.922869463387991, 90.89701088895117, 14.595660881771881, 90.87736374495594, 13.402294458764544, 103.56430400522787, 14.39259439998465, 64.27349369488078, 16.62389926612454, 197.9808792733563, 105.29048631251536, 83.1139859922013, 22.590323244011227, 13.256369673007846, 31.236780659212467, 68.04584149912733, 184.89982166617762, 58.17305201506646, 14.680439405287576, 144.05979868782643, 5.7744508607058, 12.918176664431119, 26.084996512374417, 26.75655181174026, 83.3927741186213, 31.25059704535149, 31.728189351335242, 10.231570478106601, 67.27142544297938, 31.367437704711186, 102.78736640175916, 144.02097386944052, 18.9419180584661, 23.361525162358237, 47.89970219351618, 55.93822981819092, 59.62014972928375, 44.7358372245662, 9.467375014132154, 45.71264933970491, 19.58612752978932, 12.22540681572365, 33.558181632682505, 104.28631656038363, 215.61311463572918, 20.644751915803532, 157.13473898243518, 147.55487711993803, 166.9199503173046, 89.02364694688265, 6.790955825448413, 97.39045810550002, 12.049139836855792, 6.531128286322104, 61.78050540717354, 7.73793930406988, 99.29966274505529, 15.398760823460663, 33.79257359580261, 20.649928757025414, 28.51404833588757, 26.33211448442345, 13.574732521691658, 29.523648747908148, 5.468362199549492, 16.614657119877144, 7.933243753554933, 15.357645288795903, 119.19648706369479, 185.97732152250387, 13.845764478737168, 53.53377074584705, 6.46047886417928, 21.39635165768069, 13.011815897136435, 28.759882118248115, 152.75102500431524, 99.163589006062, 388.5638184757702, 55.73932503761569, 17.81498191895374, 16.609986769249396, 51.137503940129186, 15.632711352105323, 12.618851515010052, 17.97800579438858, 273.2756351873717, 20.528148525885165, 96.84735834031703, 14.001986139557243, 75.89508963557626, 30.30487522715271, 32.01990733022779, 368.43312848568485, 106.52115164082208, 52.04277567195039, 26.22153632676467, 7.752543824518325, 37.132248137422685, 12.894933333538775, 72.01116412186269, 11.291864503068478, 7.047104362850537, 113.7151478403659, ...])
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)