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 = 47196
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);
([5281703.994216266, 6267543.781234792, 6422480.122644104, 6423793.512393699, 6458235.9375, 6475117.601008115, 6476661.417295218, 6476664.0625, 6747886.252964212, 7160529.631074981, 7447244.779632237, 7449733.124717708, 7480714.67915751, 7570890.625, 7598044.20699502, 7601024.745228907, 7630931.203074056, 7689866.722401013, 7736384.807344427, 7736982.487113182, 7740132.046282135, 7753306.25, 7772615.625, 7772849.634176952, 7784981.059527154, 7803093.694076022, 7803408.496824055, 7805337.2852770565, 7823645.3125, 7846561.851283374, 7856510.9375, 7858473.244152, 7858984.812841766, 7869760.208959537, 7889284.375, 7893777.748439917, 7909971.494809015, 7912671.564199295, 7915162.5, 7917531.25, 7919975.0, 7920682.631849748, 7920689.703693472, 7921273.4375, 7929096.875, 7963614.617909761, 7967530.6742027635, 7967702.984653762, 7969897.626573276, 7970884.447763533, 7971595.485822264, 7973300.937537848, 7974309.674302272, 7974745.667762034, 7974768.5537448535, 7974849.995614757, 7975181.745618107, 7975714.484642212, 7975826.31231721, 7976065.625, 7976301.5625, 7976920.616887121, 7976927.828378743, 7981042.1875, 7982201.170770546, 7982538.821041373, 7982546.8167986795, 7982996.388684718, 7984509.623073838, 7992188.105896382, 7992661.613902518, 7997460.769484996, 8002593.496537623, 8006276.1903471695, 8009970.3125, 8012656.124432617, 8024800.7459985, 8025238.443607046, 8025903.937941109, 8026089.7142746365, 8026961.652388248, 8027292.603161004, 8029136.391388849, 8035668.535788568, 8036109.028064809, 8056095.272805709, 8075332.8125, 8078870.149672081, 8087261.675629054, 8090853.661180962, 8092240.210434738, 8093437.4591167085, 8094276.293640402, 8094783.729343173, 8096008.051830281, 8096757.259730187, 8097249.480498273, 8102009.48108873, 8104159.16984176, 8119328.994229086, 8120949.896369084, 8122551.365528994, 8123252.0710147545, 8124920.373322011, 8124939.816344263, 8125512.312280929, 8126191.114566992, 8126586.6763928365, 8126872.864522, 8127085.9375, 8127293.381416915, 8127642.1875, 8127889.018800613, 8127948.240304653, 8128059.375, 8128345.366084253, 8128933.524591827, 8129226.556162565, 8129257.556392639, 8129263.763958163, 8129294.729131867, 8129504.758162878, 8129704.050797966, 8129776.336239726, 8129791.646739468, 8129792.44056185, 8129880.621387658, 8130118.75, 8130145.5320898825, 8130188.798310516, 8130235.23737895, 8130246.1934056245, 8130309.128541197, 8130419.541230316, 8130573.933730093, 8130593.855850296, 8130610.232679701, 8130628.125, 8130634.718761602, 8130651.2599049015, 8130707.8125, 8130782.8125, 8130810.587153621, 8130892.1875, 8130931.882793942, 8131173.844035728, 8131270.3125, 8131296.669499754, 8131474.869661907, 8131491.200506263, 8131493.343313818, 8131526.048660669, 8131568.7445784025, 8131593.978249606, 8131792.441234722, 8131924.176959748, 8132002.527190242, 8132085.517505233, 8132132.214587148, 8132162.5, 8132358.187755198, 8132358.311034149, 8132394.910018926, 8132587.4248176515, 8132717.596650973, 8132996.84632734, 8133178.977168515, 8133361.5009574555, 8133379.089460219, 8133465.729837634, 8133516.5458227955, 8133662.5, 8133667.425312645, 8133674.886383823, 8133689.8680625865, 8133759.375, 8133793.75, 8133821.501902265, 8133984.325772968, 8134089.369431848, 8134094.929883587, 8134156.168240606, 8134282.63890635, 8134293.416167407, 8134414.0625, 8134429.6875, 8134433.338911494, 8134499.057863356, 8134546.593945401, 8134556.235550066, 8134860.011081238, 8134863.942060488, 8134955.951408303, 8135070.653526646, 8135077.691541841, 8135258.2952711405, 8135291.252709628, 8135310.94034922, 8135319.727840781, 8135334.891108122, 8135342.1875, 8135388.923826286, 8135457.362954806, 8135475.0, 8135498.39456034, 8135632.133179165, 8135642.1875, 8135735.9375, 8135737.5, 8135904.428479426, 8135929.023033862, 8136014.714957633, 8136017.1875, 8136037.471639574, 8136085.103655155, 8136106.25, 8136123.831719257, 8136135.304100526, 8136181.25, 8136209.258362013, 8136228.557231849, 8136281.41759774, 8136314.0625, 8136321.476234444, 8136329.6875, 8136396.556732599, 8136396.97543905, 8136398.065550666, 8136454.874191537, 8136468.75, 8136655.89551338, 8136706.18680945, 8136766.428713196, 8136767.1875, 8136814.0625, 8136815.294416997, 8136845.3125, 8136868.222876651, 8136877.945704915, 8136924.699263623, 8136939.475511098, 8137015.625, 8137022.175175033, 8137046.165185663, 8137048.362751778, 8137060.668718814, 8137176.779197759, 8137212.299698758, 8137230.557749674, 8137271.827336121, 8137284.3390822, 8137296.875, 8137316.69281763, 8137324.32311768, 8137331.676414494, 8137356.25, 8137460.501366003, 8137462.5, 8137466.942234674, 8137479.539269083, 8137499.426497114, 8137537.5, 8137581.25, 8137656.091216416, 8137658.033539059, 8137671.875, 8137691.7582476465, 8137704.5700844815, 8137739.0625, 8137767.842161047, 8137840.625, 8137872.509946457, 8137875.335464366, 8137895.946238704, 8137941.792221489, 8137994.696513827, 8138015.234791668, 8138020.3125, 8138114.0625, 8138344.027947503, 8138372.969011086, 8138445.0679071285, 8138451.217804305, 8138463.71499407, 8138559.210805686, 8138563.394986055, 8138564.856353124, 8138590.760920002, 8138683.9398924885, 8138753.637086069, 8138759.375, 8138817.12770089, 8138859.375, 8138864.0625, 8138952.703453201, 8138975.847242793, 8139018.369826749, 8139033.644109793, 8139082.63824563, 8139160.594346015, 8139177.606870051, 8139301.113331834, 8139334.375, 8139456.528762231, 8139527.443646379, 8139584.644051724, 8139640.386930869, 8139675.5345828105, 8139711.615039869, 8139847.249867479, 8139870.514368764, 8139898.566849961, 8139948.4375, 8139960.795448359, 8140088.832776693, 8140101.397236209, 8140165.508691052, 8140168.005251217, 8140185.9375, 8140255.479304452, 8140266.651378804, 8140373.728890087, 8140447.855010703, 8140482.8125, 8140834.094224913, 8141031.25, 8141140.625, 8141350.0, 8141372.67222713, 8141528.125, 8141612.5, 8141663.717239952, 8141687.007109442, 8141707.020822241, 8141765.573537746, 8141818.428364686, 8141830.409778375, 8141879.236993436, 8141888.065346926, 8141898.041636079, 8141940.05118068, 8142039.0625, 8142053.88520067, 8142070.448838767, 8142071.72388543, 8142139.750334909, 8142142.426818593, 8142145.3125, 8142187.5, 8142287.805670397, 8142293.75, 8142359.09352866, 8142392.1875, 8142412.872823172, 8142434.328324932, 8142439.564655531, 8142496.55376192, 8142508.008145562, 8142651.366756964, 8142686.58723304, 8142696.575040623, 8142714.582764426, 8142715.337864798, 8142716.627201126, 8142743.946653112, 8142810.6835840065, 8142817.096075874, 8142854.6875, 8142868.75, 8142877.484556014, 8142890.73984514, 8142899.471234706, 8142912.5, 8143040.625, 8143050.0, 8143056.240650595, 8143132.957069111, 8143196.803567859, 8143257.040105532, 8143292.547433005, 8143301.5625, 8143306.25, 8143325.0, 8143332.365689704, 8143680.254292275, 8143788.696849764, 8143875.6866272595, 8143898.198948734, 8143958.145430153, 8144015.459803991, 8144113.958858933, 8144115.625, 8144412.399727805, 8144448.776686655, 8144476.5625, 8144665.532548936, 8144827.209976897, 8145016.155059602, 8145368.723945104, 8145960.891470611, 8148395.3125, 8148855.06145867, 8150249.6741397325, 8150348.569691199, 8150742.844231941, 8150978.125, 8151036.683605323, 8151446.875, 8151499.80465101, 8151665.625, 8151681.835400285, 8151716.145487037, 8151821.875, 8151840.867827407, 8152210.961757605, 8152236.002273067, 8152273.223239044, 8152377.299145932, 8152460.012441472, 8152479.92491492, 8152660.9375, 8153133.848338748, 8153145.58161645, 8153201.5625, 8153547.030600719, 8153626.463122365, 8153677.760329496, 8154410.9375, 8154447.677345433, 8154519.554391991, 8154904.448256292, 8154937.5, 8155018.75, 8155437.095312807, 8155701.436252895, 8155748.009678, 8155788.2834721375, 8155839.0625, 8155847.024198669, 8156056.25, 8156096.875, 8156128.525180187, 8156193.138905393, 8156314.279157031, 8156458.820892735, 8156474.15576054, 8156537.638763246, 8156640.036924833, 8156706.829197222, 8156807.724542155, 8156828.125, 8156852.508493551, 8156883.42597056, 8156893.813794541, 8156908.153464638, 8156909.375, 8156976.007777953, 8156998.959191906, 8157000.584537724, 8157023.4375, 8157055.573585336, 8157107.8125, 8157157.121530474, 8157193.04268462, 8157197.038543074, 8157365.625, 8157380.600093669, 8157381.32035015, 8157398.71508531, 8157414.1226447765, 8157453.895941274, 8157478.125, 8157595.466684564, 8157691.169089901, 8157818.75, 8157856.25, 8157953.575456387, 8157960.575311474, 8157967.1875, 8158031.338105792, 8158032.574168267, 8158068.3862312995, 8158114.0625, 8158170.64855823, 8158176.5625, 8158182.851935639, 8158188.206855009, 8158364.785007857, 8158370.17396083, 8158514.909013999, 8158560.488524284, 8158586.594651255, 8158592.1875, 8158660.419520023, 8158663.803493493, 8158681.195969997, 8158742.099263656, 8158764.0625, 8158825.389685358, 8158873.483484152, 8159132.834905818, 8159147.437075954, 8159147.869963542, 8159261.944599646, 8159577.067949085, 8159699.031418655, 8159881.25, 8162569.216994174, 8162930.664635942, 8163191.718599238, 8163266.0356123485, 8163528.125, 8163987.043458458, 8164052.960014912, 8164524.666804561, 8164693.75, 8165034.666258472, 8165785.200377731, 8165945.3125, 8166032.74132289, 8166066.82065616, 8166446.875, 8166450.107483223, 8166564.683258442, 8166660.641171581, 8168008.623260288, 8168809.375, 8169043.354165602, 8169595.76714732, 8169678.125, 8169687.5, 8170517.737544083, 8170577.472196252, 8170637.228381111, 8170862.885845265, 8170976.5625, 8171004.6875, 8171039.843275609, 8171048.605800096, 8171212.5, 8171223.179473189, 8171433.4681787845, 8171916.700569084, 8172262.5, 8172411.191761076, 8172851.149530459, 8173100.272342735, 8175229.369098785, 8175315.266860482, 8176286.578742397, 8176491.898965952, 8177906.921288799, 8179109.375, 8179171.700002679, 8179184.375, 8180126.158914454, 8180172.9070454985, 8180425.7448830595, 8180579.107907841, 8180674.430154157, 8180863.480022391, 8180973.4375, 8181031.137278863, 8181223.392997954, 8181317.1875, 8181417.1875, 8181424.064528533, 8181544.203929225, 8181679.600619904, 8181728.125, 8181729.000371784, 8181755.085943396, 8181785.9375, 8181790.8580921665, 8181924.481101305, 8182095.123158506, 8182131.690396511, 8182224.99078066, 8182231.25, 8182343.0195489945, 8182443.016934706, 8182465.625, 8182470.980870843, 8182471.875, 8182478.616465063, 8182481.7765636705, 8182512.5, 8182515.9541470595, 8182516.63081767, 8182631.730730255, 8182710.9375, 8182757.467327632, 8182797.953413248, 8182801.831171715, 8182889.0625, 8182890.625, 8182950.0, 8182956.47589414, 8182964.0068367245, 8182973.313669925, 8182994.68119719, 8183014.613676494, 8183177.916199596, 8183191.0339925485, 8183219.461962435, 8183253.125, 8183261.047712799, 8183279.6875, 8183379.058896148, 8183420.4720453955, 8183435.108222687, 8183471.875, 8183483.51920564, 8183490.339924468, 8183546.875, 8183617.437443823, 8183684.418094727, 8183709.344028176, 8183762.543318685, 8183833.385474452, 8183871.693436384, 8183973.4375, 8183987.645553464, 8184119.50650651, 8184170.319049302, 8184240.625, 8184276.534705887, 8184285.876764984, 8184296.875, 8184412.394795598, 8184490.407442532, 8184507.219431792, 8184511.286924156, 8184568.064026743, 8184648.4375, 8184695.3125, 8184890.549437257, 8184893.75, 8184899.947371923, 8184951.389599609, 8185132.418108526, 8185267.1875, 8185285.768275432, 8185546.103536544, 8185956.742650078, 8186569.823403952, 8187977.742211885, 8189268.214439779, 8189412.74881888, 8189628.830658507, 8189679.385694586, 8189866.568756242, 8215327.41674816, 8216784.375, 8220627.287685596, 8224725.883967587, 8235515.625, 8235808.534430774, 8235830.779327984, 8236049.399691066, 8237342.1875, 8239793.307415541, 8277161.448416722, 8277173.870657518, 8347769.372627762, 8423448.031724822, 8423450.562942335, 8428645.3125, 8429947.263432194, 8431023.58316984, 8432575.877010064, 8432935.9375, 8433178.071874544, 8433370.3125, 8433583.925372878, 8433648.021467587, 8434205.186020618, 8434520.45176686, 8434542.384075936, 8434687.377749112, 8434687.65347142, 8434809.0815058, 8435256.25, 8435446.775003966, 8435535.100251744, 8435714.73514273, 8436062.252081737, 8436086.304487493, 8436094.681275342, 8436115.261619996, 8436145.015353262, 8436292.521969082, 8436331.767325882, 8436372.135877742, 8436401.530399267, 8436414.219325839, 8436469.94030592, 8436487.5, 8436646.75865261, 8437079.6875, 8437390.360770945, 8438409.71059273, 8439389.215487516, 8443556.284192402, 8447090.307613168, 8447125.387248136, 8448404.558525946, 8452324.835089043, 8453107.94178126, 8454268.420590695, 8454395.3125, 8454738.659523498, 8455331.117760027, 8456199.47954632, 8456440.402120871, 8456656.25, 8457040.538701877, 8458753.13644598, 8459790.625, 8462594.123135608, 8464405.979116818, 8464653.125, 8469693.04077675, 8469701.892552095, 8470102.642297408, 8470145.880107755, 8470408.187503384, 8470602.870058445, 8470621.613078283, 8470945.3125, 8471740.6731194, 8472512.646621088, 8472661.351881277, 8474843.75, 8482220.521282457, 8483000.512675073, 8498543.47572716, 8504178.075290682, 8526101.903779432, 8527228.08371771, 8527845.150041496, 8528773.4375, 8528823.652665047, 8529123.33479253, 8534229.351728978, 8534255.314972715, 8535496.702091355, 8535593.747482987, 8537787.880558146, 8537832.784518532, 8539517.865799079, 8539827.301904425, 8541441.194330176, 8542259.375, 8543107.34086542, 8544429.6875, 8544479.435701985, 8544706.159631332, 8544991.333753416, 8545727.733585544, 8545846.875, 8546144.111809716, 8546174.823727485, 8546187.165783828, 8546254.641191907, 8546415.625, 8546734.375, 8546752.225903625, 8547208.732705122, 8547354.446838034, 8547398.297241172, 8547683.419298256, 8548775.792762153, 8548818.8022903, 8549066.525844002, 8550015.625, 8550490.258190759, 8550592.121630585, 8551049.325098503, 8559310.050283695, 8560214.403407868, 8598943.75, 8598971.274115684, 8607084.911796348, 8607171.875, 8607536.332031246, 8607581.25, 8607828.066513555, 8608125.0, 8609002.215244612, 8609115.866585398, 8609120.489612622, 8609809.399757933, 8609988.541736512, 8610036.403350722, 8610188.782881126, 8610411.106053963, 8610459.375, 8610518.75, 8610793.691644441, 8610807.732843919, 8610809.158014933, 8610809.708086874, 8610872.850320391, 8611116.51347072, 8611289.843668606, 8611698.4375, 8611787.232546445, 8611925.0, 8611926.48171692, 8612012.74131853, 8612227.750536576, 8612244.447464496, 8612373.907505782, 8612499.50828604, 8612500.260877742, 8612644.057092104, 8612658.74814138, 8612782.547175933, 8612795.261460787, 8612799.123576708, 8612807.8125, 8612962.5, 8613060.985351326, 8613342.1875, 8613435.450589562, 8613609.763613213, 8613663.455177173, 8614292.540987505, 8614385.685346229, 8614457.8125, 8614814.772346895, 8614952.80492905, 8614967.372761339, 8615020.17432844, 8615035.9375, 8615120.3125, 8615293.616005294, 8615353.255251933, 8615374.128409464, 8615396.008320056, 8615436.948019156, 8615463.075805064, 8615481.25, 8615482.8125, 8615584.375, 8615600.0, 8615638.63486428, 8615931.04197069, 8615951.917172464, 8616146.51760331, 8616213.717110816, 8616245.3125, 8616347.747962095, 8616431.25, 8616800.289297735, 8616831.25, 8616959.375, 8617099.78930655, 8617113.271892808, 8617117.573452186, 8617185.9375, 8617226.5625, 8617392.1875, 8617407.8125, 8617461.309408449, 8617571.875, 8617576.195058707, 8617585.367925944, 8617740.612127597, 8617785.293330738, 8617848.4375, 8617865.625, 8617985.9375, 8618086.440185152, 8618100.0, 8618124.65408429, 8618454.120927228, 8618537.153238444, 8618576.463957135, 8618594.585276848, 8618624.651600651, 8618782.8125, 8618795.787170505, 8618820.253486704, 8618932.220949205, 8619119.229905017, 8619156.25, 8619156.47156246, 8619203.905477053, 8619289.356490863, 8619651.404993031, 8619759.713825587, 8619762.366268508, 8619790.625, 8619820.154502898, 8619910.30842757, 8620712.687720316, 8621049.370307133, 8621196.875, 8621633.830090228, 8621746.698450018, 8621773.793421552, 8621824.824759874, 8621870.3125, 8622183.839605981, 8622717.416730298, 8622722.452247195, 8623241.55186512, 8623257.8125, 8623268.226885939, 8624380.85868578, 8624417.958158573, 8624425.0, 8624449.548607435, 8624511.694288308, 8624719.00536726, 8624760.361980062, 8624764.906943329, 8625293.284763485, 8625680.568256684, 8625891.088538742, 8626232.511469744, 8627651.142096546, 8627694.68975318, 8627789.861156544, 8628027.65733819, 8628052.416957203, 8628148.4375, 8628181.263952963, 8628303.032990046, 8628334.65715229, 8628435.9375, 8628599.955988174, 8628724.83741795, 8629181.071519075, 8629887.5, 8630500.0, 8630595.3125, 8630706.582196565, 8631151.011299223, 8631416.689122915, 8631492.311518388, 8631569.381767295, 8631580.572852511, 8631596.109524192, 8631623.4375, 8631668.95985556, 8633288.970562788, 8633292.208653264, 8635303.607155351, 8636301.15625643, 8636359.08573953, 8639643.75, 8640513.633854005, 8641254.647496503, 8642004.510372104, 8642185.616031824, 8642189.907512711, 8642195.25036916, 8642345.3125, 8642624.826514442, 8642690.381917542, 8642723.227711389, 8642874.801488029, 8642879.49210782, 8642881.25, 8642941.8916238, 8642943.214088267, 8642956.054908335, 8643538.23754079, 8643653.291054605, 8643681.25, 8643804.424266804, 8643950.52388283, 8644206.05655332, 8644954.950641789, 8645270.3125, 8645306.25, 8645325.472750477, 8645444.956534754, 8645486.58020109, 8645749.66443271, 8645971.212415319, 8646021.261488292, 8646121.875, 8646179.901563818, 8646218.484477539, 8646257.8125, 8646504.6875, 8646562.5, 8646572.105314123, 8646629.91235998, 8646685.9375, 8646723.099303517, 8647108.27976473, 8647218.75, 8647276.148629518, 8647362.5, 8647373.4375, ...], [53.86069971479642, 8.303164162296744, 8.530922685712738, 6.716979645917165, 56.790663155331885, 22.383989837417598, 17.15132615675374, 64.91278428868674, 17.632631361218387, 23.75346371729685, 21.17137509516823, 23.16069360218467, 71.42465871474175, 57.98082446353954, 17.025676716292534, 88.59140607858265, 58.5118721677001, 18.304225321417757, 47.813311333119984, 7.038465992248895, 8.757908027027083, 52.3062176479878, 49.902751522782864, 22.944845211490268, 86.46682227625732, 111.82369517316809, 7.313760902110618, 24.904788931524667, 74.11935451185335, 12.936400116233093, 61.96108757090321, 7.534772582165281, 11.888776016586194, 14.09706365313528, 100.67286220316245, 81.96346809618393, 22.77774933561086, 23.613751110766888, 66.83194781937567, 29.47039480952495, 67.0040266908812, 25.405185872894577, 7.852867197912986, 42.883450704306114, 44.90682085491863, 25.94543079694306, 26.957584029796298, 26.0294625010655, 14.351027283352742, 5.132060333560431, 27.89413960033648, 6.393391132408716, 11.630146670299183, 11.732451565998678, 101.69908205087626, 14.924821231339148, 32.46455889410818, 11.858549870864632, 5.197094532361079, 30.928926878513224, 57.004044272765185, 11.639325677531238, 7.49936596028718, 86.25923577770936, 76.93997125243628, 7.518180027625046, 27.42372157128257, 118.96336113503205, 9.550358384319296, 28.241132109605974, 12.379907633388122, 25.596994028541836, 36.480218281972235, 22.870859583699236, 98.88948540075958, 17.542672826603766, 26.51030824391779, 7.393748716154529, 7.352908760606258, 44.022224778645395, 90.03007191958979, 6.849427707105616, 17.42637242801783, 14.183401414661896, 55.32683034897283, 11.066223775809435, 66.94167740861448, 16.784009974289802, 12.517565904379394, 17.473016380999308, 37.13370473388059, 56.855118672230105, 9.11396343615337, 12.944076326242218, 8.417328357313325, 13.183808649314324, 13.272950851567987, 15.529753741178315, 6.4554047014688996, 6.38364226596511, 33.834365876308, 7.533517044664371, 111.06336813184143, 13.905744549330368, 111.82738675072365, 83.9621367287238, 17.205942367912648, 18.776157515979047, 81.11759835858993, 29.759539938634518, 13.777691741506803, 32.038799486598165, 35.53055480156901, 6.242601542780975, 78.67999300347935, 9.377126428206255, 8.702823464326652, 9.326050257702905, 71.97991924569122, 22.898919533825726, 10.323801737889273, 17.448964531693626, 30.988498696672114, 31.412622727016668, 13.215781792519017, 34.787245466288354, 20.299389053276762, 36.38474321074843, 25.519739930870657, 5.332949649582345, 96.89423489230467, 84.91300607756867, 29.338221017954382, 5.874939830141211, 67.70148544907947, 7.6419759009534145, 33.459202138248, 38.432341453946606, 11.711193007009587, 54.97051390454807, 110.57620420937454, 70.78759115602621, 13.755491799571747, 69.72804670764796, 26.173432146789168, 11.828741754392754, 58.882833912069145, 39.784210601845885, 58.59436205187489, 12.164603483621539, 50.648414592008926, 6.036246184640634, 16.53377825191389, 11.504256921700028, 9.555579038151299, 60.36020410138966, 13.065919497874136, 67.51699632758262, 129.797291005543, 39.81522070543191, 16.594780552497102, 29.83373184870539, 65.49924889111207, 27.12099730148793, 49.250486230293646, 112.14418075132082, 14.603946343032398, 26.52289144685815, 27.62002545346779, 22.051031651306435, 20.187356765885, 42.65638188576058, 8.416471977778217, 17.237995563747106, 7.923125459157327, 91.10381943650385, 76.5279828099884, 22.859865505890603, 11.051623798953008, 74.84612126934043, 17.96420911743964, 11.0022719726053, 109.90337074958003, 23.327987675681428, 35.260248301557596, 29.36413810134143, 17.41612819857684, 111.61577289158612, 115.10800755842342, 21.096987039625702, 12.292460094640894, 36.94810846835942, 9.091074581601134, 16.422913870881533, 6.421223848784721, 101.5066042922967, 18.031050139065467, 9.33381351382033, 53.36075598322543, 19.062107092594868, 63.312468757733114, 21.47940076756589, 5.678732853043505, 177.38360169315433, 27.702740955022488, 19.873178146588153, 59.24177354312931, 59.09346037999473, 40.143939614008396, 24.28870168849288, 15.270414593678094, 30.47626924883636, 79.10185210157238, 7.593012307240759, 18.704176187795255, 35.437124711326845, 13.350929412155175, 10.263628591236682, 64.97883842842556, 39.423736798611664, 80.82762006340762, 113.63499963944005, 100.83492110376255, 45.07011764864658, 100.79327466110077, 23.52017212306626, 61.61204930997745, 60.1457150700823, 27.428592934949577, 57.60333450185789, 49.99017261024764, 21.01179619671489, 51.14781718213082, 57.20354312000548, 81.15816511444518, 15.063488147233075, 43.828553266615614, 5.378697826509899, 25.425592002896416, 13.90705343389936, 16.790118201829834, 119.84986795079587, 105.82669007680917, 12.785938401723381, 19.91876997979192, 71.69751967548987, 15.837219630928171, 19.873638527969064, 19.76812102310149, 68.65371882892369, 78.50250204450133, 57.4956123660215, 24.94495960271138, 6.954204893948448, 103.72712100967655, 76.9647655379715, 10.50818790993274, 54.85063143742278, 171.22586741690623, 86.54357259357845, 19.909814083234636, 53.48771978366924, 45.258028342228656, 25.739353387079504, 11.491723869914376, 57.353059833310915, 15.744328090910077, 24.85523249516129, 29.119507387219322, 7.304875979864757, 33.78097475280171, 9.932941770302207, 11.695931289705385, 14.227898415196957, 44.56666408649241, 71.45095449052752, 110.28142600811243, 30.5399136390861, 30.822419168237648, 11.59184834696329, 21.81330684701908, 14.084567794204274, 10.628527077494246, 96.23031084825529, 21.669576086905696, 12.889541478823842, 75.76281941542203, 75.18879890788808, 111.76367449552023, 12.03507200785272, 71.97289072750944, 25.700225548236087, 94.20003407538249, 33.641559413692484, 38.82884421719531, 10.16774361629925, 9.029382002526269, 5.084337513761654, 14.316477740959696, 23.214728312013595, 8.030353866667062, 13.467452315548393, 36.714900499004685, 7.707271987345052, 7.374089407141969, 11.576012781339637, 24.5754263259779, 7.80875046766064, 21.712277056822394, 8.495287389443742, 9.508133902161916, 97.35664383204127, 84.85543638839884, 26.00229855483979, 24.691948903065835, 10.878854336036415, 26.419708884754105, 51.96145026993202, 40.608773354704546, 5.429631974112794, 55.75547504239483, 16.182072287752643, 10.32486964233893, 64.59843130718939, 23.999459313667433, 50.712305398083835, 77.16629966004851, 90.21383213691594, 24.593522732459675, 103.0075627772853, 92.56731496045305, 31.9021149390256, 70.13413299192955, 19.00535973473943, 27.546101789850646, 25.60611385181177, 12.481769157398752, 51.762239688394295, 17.645834131184042, 22.59886554372631, 19.851869123796742, 37.73057126032699, 32.21900501093948, 8.36001592993341, 5.455317699606988, 5.425436852636016, 5.544809265067288, 35.926336218815344, 38.46413079124596, 11.641645856394971, 61.1304665592898, 23.990340550703177, 71.90355523414928, 88.03655090804719, 6.261319265190048, 43.04452304265635, 157.4067477948527, 5.624960195986096, 32.251108295923, 18.172472214431448, 23.751260574963187, 8.582298308219444, 23.91647445449162, 20.91196149065336, 15.74806471267473, 7.513911711273948, 115.34326660118296, 100.00458655361773, 31.17585954479237, 81.8330306503291, 222.80581357539108, 6.662342640139864, 36.82862602350553, 35.49439871765288, 37.19910813884144, 11.113124460620455, 14.72154759293737, 27.18716802700029, 12.637187904065268, 7.738822242319907, 124.85563855920867, 50.8899077575054, 50.39244174036548, 22.04062899700112, 27.82880070196532, 22.94687340417726, 18.416046667132957, 24.568735615716875, 24.60428253926768, 116.94155687601274, 14.560664341938955, 62.046509677830265, 19.882890307692357, 24.949413488054873, 54.73310325492361, 19.756905816475765, 6.158122646763835, 64.02753562879194, 9.30946903140906, 23.808317267504826, 41.411666065115746, 9.668975917832165, 10.653901058154638, 31.585054507199708, 6.159164168479982, 67.967309859542, 6.610775905154169, 28.55370161812667, 77.05136475561844, 35.404229642046836, 7.82964043112512, 144.9092181701447, 62.58423439940497, 8.419303103366216, 104.6544678472497, 30.538234930572905, 26.72660763892692, 10.043016546211188, 5.263343228847622, 11.520251177627625, 71.42153317791718, 21.231199962440108, 16.077090598019726, 38.71670534796986, 8.370612063836292, 62.88965111979227, 6.4314060351887985, 64.62193493574283, 147.75290132447316, 6.175943732996704, 7.518940135181301, 88.70485208706742, 59.573807625375295, 25.00910063339196, 26.25667259006081, 6.214618102853802, 10.09516817374532, 58.12229270080539, 95.47463949009483, 107.79106291300653, 29.47678396946773, 29.382619538267548, 13.031744903593314, 11.484128613301499, 20.96981395543814, 12.472745097940601, 15.498171872545704, 7.998289180564322, 6.15047538128985, 64.63729776762764, 66.4109099034512, 72.10836345258798, 12.244249794712118, 53.08153337488236, 7.214061252303563, 50.21128580561408, 187.1675297829147, 9.815252799037582, 17.762047677662448, 55.83368733532728, 127.53386173846164, 39.532173641080405, 80.71521423499188, 15.433133772831248, 94.26658583176805, 41.98525775338895, 20.11759495312325, 23.21388112806229, 8.439034475750155, 6.274827249446148, 12.592677117100983, 30.53733990416465, 15.563665305944975, 8.596904731316362, 44.604006647965846, 38.60493066259949, 9.743730751757607, 36.791369246028395, 30.703117370095978, 36.42875291207694, 5.125441061604798, 5.908340271107646, 138.7804604446507, 6.832505270414298, 38.33646925673268, 15.093980636262195, 7.880600938839312, 6.606646610423025, 38.310645385964385, 12.77103206070047, 8.978584011017636, 18.22076777259219, 46.18351712813666, 30.271920431699648, 90.08769750538117, 11.044291727877454, 31.89045455215205, 56.748123243944534, 10.639640613881582, 6.4943238901089515, 143.9314629746904, 65.30606205922415, 118.25563925421592, 13.176835893795355, 87.6975759640073, 109.30886164335553, 84.82653630535914, 41.22869620778789, 70.56404519212295, 40.22028354300785, 7.23374100919522, 32.02489885597141, 10.481955792520576, 56.610146076059195, 13.807343096319828, 117.61007705708617, 5.47440810414024, 139.58963022870563, 67.39175555697922, 17.44124286154451, 10.598949921431691, 89.94635622574103, 8.344246038090038, 29.98666645240347, 55.4642359034051, 259.8330234915467, 63.92507388705612, 13.620681278532114, 17.012878576004844, 65.15581713634052, 53.97878111957825, 21.81523294965845, 66.68704896754122, 5.0639901200544175, 8.501732247199156, 28.750837134490883, 114.3190352222164, 11.080489733563773, 11.401371135720613, 36.1954445057643, 24.30211787827682, 77.97790636270221, 10.443303576683936, 33.4101947130923, 11.549836093208178, 5.904230795516906, 30.65049579229037, 6.227791692407049, 38.20591843440829, 7.3008741053999335, 118.30181370903045, 7.3098499263319185, 30.603761690187348, 25.490570085983897, 41.121907655234, 32.39847680840245, 13.243405082729788, 34.02210557494675, 20.734244147262586, 20.823542053737512, 28.387646167202895, 59.16267489681422, 9.237875727052558, 14.774558713177463, 53.20623324264408, 62.703265021351115, 18.026722598185568, 72.09664910728637, 70.4384586396179, 87.01791414898945, 120.38117102976224, 9.69267689028582, 100.89328783142402, 53.77261306517453, 42.70324843437663, 30.30844527352749, 22.138645902128932, 14.90648566377198, 30.307427707144857, 12.736300164667588, 12.730053497649386, 66.08923096457116, 18.294455774852285, 56.634710649758205, 11.993873542580408, 5.177809047309618, 31.73247031878859, 16.364385784570278, 20.945704371216376, 9.773896955316495, 47.617752912579874, 23.190381701031594, 21.65332586548095, 22.265818096385363, 58.244741754083286, 78.28609968081854, 44.47453577002655, 15.878591305741384, 11.041802069780411, 33.77610904794549, 125.70510997770242, 17.56130543678771, 14.201214616144828, 57.03889913243691, 16.141914556020858, 37.383499378429164, 58.70607024102198, 48.628555736097475, 133.11188914485103, 7.164032501704917, 18.73620172392986, 79.08455214085353, 97.5220865588346, 5.237236054321402, 37.89352528334281, 6.8144533282740065, 20.929947317141302, 67.30255562912454, 20.76348349426689, 77.70105670967504, 8.192841797325825, 71.95039747087128, 8.365078045330003, 10.065020017720578, 14.966531187689846, 81.899359963846, 7.593215865443843, 23.034179450131646, 56.7028001932942, 26.604772838612114, 24.86422948149457, 8.875682376705978, 67.69017782667731, 46.02046466464985, 36.32845535168795, 43.604261923140676, 73.13914365634403, 41.57764543617306, 67.54190161162398, 7.0767312079262865, 74.52210311060604, 72.92997391262251, 66.5848314398766, 19.154265841372492, 5.641892779121429, 75.89267563851426, 122.19758817403624, 21.14555392896994, 11.540251996664859, 10.009021266143794, 31.71733409273788, 50.80532994899084, 10.17582787792244, 81.26215440911461, 27.51068465680653, 12.862310874263274, 106.86161396114835, 18.657286155216557, 23.235569289133522, 17.14642144110765, 149.06680970302335, 124.79799685534189, 24.70672453502616, 5.4152954982128, 33.93753074262746, 9.010350331549416, 14.976329126118163, 85.14717951236918, 8.503253893965397, 11.363296699981193, 91.3914730455978, 40.142716737759045, 7.1075562659947105, 37.20349342885665, 13.46615567245066, 22.373714869344422, 30.760416957362832, 31.6087536677805, 11.449527817100684, 26.321940627448846, 66.44084838967979, 13.768065121617724, 77.0834117109241, 9.248258302973994, 12.488460242608122, 101.91036700117385, 24.439619478452514, 54.97530221367037, 19.470525401482867, 19.548465206499948, 23.78725668309923, 16.39053596686664, 80.35303658794048, 39.968877904336765, 27.90503343941539, 15.57495981671706, 22.94058234336083, 80.741790120678, 5.20046783740276, 37.271933826498305, 77.94152656075158, 6.310550065184135, 109.97032125014013, 15.07345632356392, 71.82077518094363, 16.65616098347533, 26.212356801030186, 10.87936619983223, 15.458280424266219, 22.19667252166395, 55.13308628292562, 65.82977747433334, 14.46034136370614, 13.270375124893862, 36.697454056130596, 38.80110639285464, 56.9376690834998, 14.985316346512219, 50.93917671954834, 11.765735238197383, 30.439378775523043, 28.725185776346517, 127.23364080549848, 16.368824736909264, 21.667404133049967, 27.833426947625483, 28.70991110497791, 138.17859287823626, 24.249638067989107, 92.06806587455691, 21.347887264628454, 32.70661793072546, 25.35743759364501, 143.28886047632326, 81.64681449514134, 6.5705771797800985, 10.724456129996513, 78.41024272742072, 16.424165480077125, 7.110641918365053, 25.68245401675576, 69.98203035712916, 5.8300740406572995, 45.77390707694031, 5.235843936279788, 6.155875526129121, 5.161354121084128, 28.475427848570238, 16.621845698288162, 50.816523174370204, 5.566931750349678, 103.3432904055858, 20.697737694465857, 62.35490644710828, 114.16919903459396, 61.0862123457225, 5.795581357031738, 34.3533830778393, 37.05543510269504, 22.64929598163403, 88.65299234354588, 40.127575721896775, 57.84397083480263, 23.323300197469138, 14.574267665588266, 36.9183461136906, 51.060769269518694, 33.60912527945136, 70.9724592956531, 104.96089686971898, 76.00863295475402, 17.33084989027175, 19.641230663717273, 45.03755204457653, 20.01904566205909, 37.559903039613054, 14.940717373355467, 107.47368554706085, 12.871265002366151, 145.89223635608758, 29.75730918046218, 28.888900682255585, 8.870230895066515, 12.085028060116201, 122.27031408190489, 8.506845800103086, 132.22546079589583, 44.96759711428086, 74.69258135452625, 18.19203818064915, 11.527552670274174, 67.63911920599824, 8.299713271386372, 10.400839936947397, 17.384154801301474, 18.01974949557076, 9.478111046120286, 46.74965878126007, 35.79843685051767, 46.2550321103959, 27.04255986980879, 31.587662904523803, 16.383733458883366, 13.093459091924304, 97.46191669620235, 19.081199104729844, 78.81566002565378, 14.0114981568559, 117.74851609513104, 106.50763524591522, 15.94865319474376, 66.20621330825028, 27.57423517413462, 7.2507371925365565, 55.28510667801284, 11.759865728817662, 34.28203842851954, 8.852208349690452, 25.038557685120388, 9.288616313276313, 9.987746785933766, 38.61215923551695, 45.14121532351894, 5.204642740480683, 62.64656907193099, 8.044847658070196, 9.683136103335004, 13.041420384702315, 40.89146604402082, 76.3933690132567, 125.86992732110795, 5.313529355123919, 59.74458896441512, 23.965816369835615, 60.86490789445681, 51.170098771693965, 56.68451244941364, 26.131232864416315, 33.83319455937881, 68.62289836280061, 23.850598167034562, 5.377783409908886, 12.091080856284673, 51.05297530686283, 43.68889119058629, 29.814007832104753, 169.17328742968664, 22.246679511118543, 66.92839400348632, 8.483483207701653, 7.478893498918046, 23.187770102312626, 90.49149449660874, 10.197534269613929, 41.091100241940396, 22.64320507198051, 153.12957983382256, 73.50799676207441, 43.643486562807276, 30.048998715135973, 85.12766783758757, 33.396973854589376, 107.08302669841518, 125.99471570350067, 31.776910197492075, 16.577760733402226, 36.78776301011944, 9.038904362723304, 42.75144788426444, 9.320542496509411, 90.04630344965099, 40.145794144917566, 36.11798811944264, 57.83591931731225, 60.19480185074413, 40.2678037629003, 7.4827405870638115, 13.14734330857298, 5.788760794257175, 26.717287358014882, 10.153986446786273, 23.151586633086932, 115.83355538902379, 7.252080511567224, 82.37681811002787, 8.876742242266289, 174.0188901894978, 103.69387218896233, 11.492632149042151, 36.08726323825136, 66.9163874979862, 24.519318196452456, 5.728666514342541, 41.19847622871042, 74.3113744482877, 100.13870808660094, 10.26878494672935, 6.801571223137639, 8.850250442802759, 53.63448465187234, 21.056501838618324, 25.467049194198008, 16.497107509129645, 88.09313166014084, 32.024566590108904, 13.230144263419923, 53.418490427847686, 58.38281084731285, 75.95314888174033, 47.81429087614459, 5.439753090254406, 13.63390457464032, 13.614713496175655, 42.63527422630899, 31.675665510975783, 100.90612094935001, 9.557086561876845, 13.123866389927494, 12.766042575566757, 47.79609846074271, 68.80690436194133, 74.01203437387173, 13.329639493068203, 13.549459940690312, 13.001989702589674, 25.401735292019694, 40.82662747761182, 5.880028828185645, 37.7026461380696, 38.30032068891649, 31.894402555521893, 7.197650153436495, 31.46881729063612, 44.138112615038814, 21.00424604698015, 57.8583435939825, 98.01123972236854, 60.218316732843235, 84.939689357924, 7.727975157086956, 68.89307403964017, 25.624936825557636, 57.08900557179337, 8.651532626219197, 96.258464611488, 15.361469136442588, 147.89045986937506, 77.92024437559441, 22.309749563965504, 17.14605366016441, 12.2829032253245, 23.667026517331745, 30.891922665373226, 53.60096753832159, 51.50271968441437, 59.325928847404214, 170.84718505683523, 10.659847277438516, 25.743281572255604, 27.352956036960446, 65.05974852076275, 14.630951492701996, 62.491467258964995, 9.160098597799642, 19.00539060380121, 10.835439709904538, 56.213536837363726, 10.694718757337201, 21.142188699512968, 68.61001973331858, 21.108446646454755, 103.71752590140947, 81.23342765542671, 20.583573681714437, 59.89345464242117, 25.21442639310977, 9.564277707135487, 58.33930330082323, 59.56994941187318, 17.1122385129314, 11.059150065849952, 11.711597194876791, 9.062913578899922, 36.38983826741938, 26.920649457539124, 38.89205989480857, 15.825424921335197, 64.38025941985272, 52.928779414148536, 50.31175562814623, 87.74390745174178, 8.41224594278096, 5.073008228257036, 72.75650019602679, 13.792164908287765, 5.849382209787655, 74.59834388053653, 22.397583554756032, 38.07549687969523, 68.33790353902907, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5281703.994216266, 6267543.781234792, 6422480.122644104, 6423793.512393699, 6458235.9375, 6475117.601008115, 6476661.417295218, 6476664.0625, 6747886.252964212, 7160529.631074981, 7447244.779632237, 7449733.124717708, 7480714.67915751, 7570890.625, 7598044.20699502, 7601024.745228907, 7630931.203074056, 7689866.722401013, 7736384.807344427, 7736982.487113182, 7740132.046282135, 7753306.25, 7772615.625, 7772849.634176952, 7784981.059527154, 7803093.694076022, 7803408.496824055, 7805337.2852770565, 7823645.3125, 7846561.851283374, 7856510.9375, 7858473.244152, 7858984.812841766, 7869760.208959537, 7889284.375, 7893777.748439917, 7909971.494809015, 7912671.564199295, 7915162.5, 7917531.25, 7919975.0, 7920682.631849748, 7920689.703693472, 7921273.4375, 7929096.875, 7963614.617909761, 7967530.6742027635, 7967702.984653762, 7969897.626573276, 7970884.447763533, 7971595.485822264, 7973300.937537848, 7974309.674302272, 7974745.667762034, 7974768.5537448535, 7974849.995614757, 7975181.745618107, 7975714.484642212, 7975826.31231721, 7976065.625, 7976301.5625, 7976920.616887121, 7976927.828378743, 7981042.1875, 7982201.170770546, 7982538.821041373, 7982546.8167986795, 7982996.388684718, 7984509.623073838, 7992188.105896382, 7992661.613902518, 7997460.769484996, 8002593.496537623, 8006276.1903471695, 8009970.3125, 8012656.124432617, 8024800.7459985, 8025238.443607046, 8025903.937941109, 8026089.7142746365, 8026961.652388248, 8027292.603161004, 8029136.391388849, 8035668.535788568, 8036109.028064809, 8056095.272805709, 8075332.8125, 8078870.149672081, 8087261.675629054, 8090853.661180962, 8092240.210434738, 8093437.4591167085, 8094276.293640402, 8094783.729343173, 8096008.051830281, 8096757.259730187, 8097249.480498273, 8102009.48108873, 8104159.16984176, 8119328.994229086, 8120949.896369084, 8122551.365528994, 8123252.0710147545, 8124920.373322011, 8124939.816344263, 8125512.312280929, 8126191.114566992, 8126586.6763928365, 8126872.864522, 8127085.9375, 8127293.381416915, 8127642.1875, 8127889.018800613, 8127948.240304653, 8128059.375, 8128345.366084253, 8128933.524591827, 8129226.556162565, 8129257.556392639, 8129263.763958163, 8129294.729131867, 8129504.758162878, 8129704.050797966, 8129776.336239726, 8129791.646739468, 8129792.44056185, 8129880.621387658, 8130118.75, 8130145.5320898825, 8130188.798310516, 8130235.23737895, 8130246.1934056245, 8130309.128541197, 8130419.541230316, 8130573.933730093, 8130593.855850296, 8130610.232679701, 8130628.125, 8130634.718761602, 8130651.2599049015, 8130707.8125, 8130782.8125, 8130810.587153621, 8130892.1875, 8130931.882793942, 8131173.844035728, 8131270.3125, 8131296.669499754, 8131474.869661907, 8131491.200506263, 8131493.343313818, 8131526.048660669, 8131568.7445784025, 8131593.978249606, 8131792.441234722, 8131924.176959748, 8132002.527190242, 8132085.517505233, 8132132.214587148, 8132162.5, 8132358.187755198, 8132358.311034149, 8132394.910018926, 8132587.4248176515, 8132717.596650973, 8132996.84632734, 8133178.977168515, 8133361.5009574555, 8133379.089460219, 8133465.729837634, 8133516.5458227955, 8133662.5, 8133667.425312645, 8133674.886383823, 8133689.8680625865, 8133759.375, 8133793.75, 8133821.501902265, 8133984.325772968, 8134089.369431848, 8134094.929883587, 8134156.168240606, 8134282.63890635, 8134293.416167407, 8134414.0625, 8134429.6875, 8134433.338911494, 8134499.057863356, 8134546.593945401, 8134556.235550066, 8134860.011081238, 8134863.942060488, 8134955.951408303, 8135070.653526646, 8135077.691541841, 8135258.2952711405, 8135291.252709628, 8135310.94034922, 8135319.727840781, 8135334.891108122, 8135342.1875, 8135388.923826286, 8135457.362954806, 8135475.0, 8135498.39456034, 8135632.133179165, 8135642.1875, 8135735.9375, 8135737.5, 8135904.428479426, 8135929.023033862, 8136014.714957633, 8136017.1875, 8136037.471639574, 8136085.103655155, 8136106.25, 8136123.831719257, 8136135.304100526, 8136181.25, 8136209.258362013, 8136228.557231849, 8136281.41759774, 8136314.0625, 8136321.476234444, 8136329.6875, 8136396.556732599, 8136396.97543905, 8136398.065550666, 8136454.874191537, 8136468.75, 8136655.89551338, 8136706.18680945, 8136766.428713196, 8136767.1875, 8136814.0625, 8136815.294416997, 8136845.3125, 8136868.222876651, 8136877.945704915, 8136924.699263623, 8136939.475511098, 8137015.625, 8137022.175175033, 8137046.165185663, 8137048.362751778, 8137060.668718814, 8137176.779197759, 8137212.299698758, 8137230.557749674, 8137271.827336121, 8137284.3390822, 8137296.875, 8137316.69281763, 8137324.32311768, 8137331.676414494, 8137356.25, 8137460.501366003, 8137462.5, 8137466.942234674, 8137479.539269083, 8137499.426497114, 8137537.5, 8137581.25, 8137656.091216416, 8137658.033539059, 8137671.875, 8137691.7582476465, 8137704.5700844815, 8137739.0625, 8137767.842161047, 8137840.625, 8137872.509946457, 8137875.335464366, 8137895.946238704, 8137941.792221489, 8137994.696513827, 8138015.234791668, 8138020.3125, 8138114.0625, 8138344.027947503, 8138372.969011086, 8138445.0679071285, 8138451.217804305, 8138463.71499407, 8138559.210805686, 8138563.394986055, 8138564.856353124, 8138590.760920002, 8138683.9398924885, 8138753.637086069, 8138759.375, 8138817.12770089, 8138859.375, 8138864.0625, 8138952.703453201, 8138975.847242793, 8139018.369826749, 8139033.644109793, 8139082.63824563, 8139160.594346015, 8139177.606870051, 8139301.113331834, 8139334.375, 8139456.528762231, 8139527.443646379, 8139584.644051724, 8139640.386930869, 8139675.5345828105, 8139711.615039869, 8139847.249867479, 8139870.514368764, 8139898.566849961, 8139948.4375, 8139960.795448359, 8140088.832776693, 8140101.397236209, 8140165.508691052, 8140168.005251217, 8140185.9375, 8140255.479304452, 8140266.651378804, 8140373.728890087, 8140447.855010703, 8140482.8125, 8140834.094224913, 8141031.25, 8141140.625, 8141350.0, 8141372.67222713, 8141528.125, 8141612.5, 8141663.717239952, 8141687.007109442, 8141707.020822241, 8141765.573537746, 8141818.428364686, 8141830.409778375, 8141879.236993436, 8141888.065346926, 8141898.041636079, 8141940.05118068, 8142039.0625, 8142053.88520067, 8142070.448838767, 8142071.72388543, 8142139.750334909, 8142142.426818593, 8142145.3125, 8142187.5, 8142287.805670397, 8142293.75, 8142359.09352866, 8142392.1875, 8142412.872823172, 8142434.328324932, 8142439.564655531, 8142496.55376192, 8142508.008145562, 8142651.366756964, 8142686.58723304, 8142696.575040623, 8142714.582764426, 8142715.337864798, 8142716.627201126, 8142743.946653112, 8142810.6835840065, 8142817.096075874, 8142854.6875, 8142868.75, 8142877.484556014, 8142890.73984514, 8142899.471234706, 8142912.5, 8143040.625, 8143050.0, 8143056.240650595, 8143132.957069111, 8143196.803567859, 8143257.040105532, 8143292.547433005, 8143301.5625, 8143306.25, 8143325.0, 8143332.365689704, 8143680.254292275, 8143788.696849764, 8143875.6866272595, 8143898.198948734, 8143958.145430153, 8144015.459803991, 8144113.958858933, 8144115.625, 8144412.399727805, 8144448.776686655, 8144476.5625, 8144665.532548936, 8144827.209976897, 8145016.155059602, 8145368.723945104, 8145960.891470611, 8148395.3125, 8148855.06145867, 8150249.6741397325, 8150348.569691199, 8150742.844231941, 8150978.125, 8151036.683605323, 8151446.875, 8151499.80465101, 8151665.625, 8151681.835400285, 8151716.145487037, 8151821.875, 8151840.867827407, 8152210.961757605, 8152236.002273067, 8152273.223239044, 8152377.299145932, 8152460.012441472, 8152479.92491492, 8152660.9375, 8153133.848338748, 8153145.58161645, 8153201.5625, 8153547.030600719, 8153626.463122365, 8153677.760329496, 8154410.9375, 8154447.677345433, 8154519.554391991, 8154904.448256292, 8154937.5, 8155018.75, 8155437.095312807, 8155701.436252895, 8155748.009678, 8155788.2834721375, 8155839.0625, 8155847.024198669, 8156056.25, 8156096.875, 8156128.525180187, 8156193.138905393, 8156314.279157031, 8156458.820892735, 8156474.15576054, 8156537.638763246, 8156640.036924833, 8156706.829197222, 8156807.724542155, 8156828.125, 8156852.508493551, 8156883.42597056, 8156893.813794541, 8156908.153464638, 8156909.375, 8156976.007777953, 8156998.959191906, 8157000.584537724, 8157023.4375, 8157055.573585336, 8157107.8125, 8157157.121530474, 8157193.04268462, 8157197.038543074, 8157365.625, 8157380.600093669, 8157381.32035015, 8157398.71508531, 8157414.1226447765, 8157453.895941274, 8157478.125, 8157595.466684564, 8157691.169089901, 8157818.75, 8157856.25, 8157953.575456387, 8157960.575311474, 8157967.1875, 8158031.338105792, 8158032.574168267, 8158068.3862312995, 8158114.0625, 8158170.64855823, 8158176.5625, 8158182.851935639, 8158188.206855009, 8158364.785007857, 8158370.17396083, 8158514.909013999, 8158560.488524284, 8158586.594651255, 8158592.1875, 8158660.419520023, 8158663.803493493, 8158681.195969997, 8158742.099263656, 8158764.0625, 8158825.389685358, 8158873.483484152, 8159132.834905818, 8159147.437075954, 8159147.869963542, 8159261.944599646, 8159577.067949085, 8159699.031418655, 8159881.25, 8162569.216994174, 8162930.664635942, 8163191.718599238, 8163266.0356123485, 8163528.125, 8163987.043458458, 8164052.960014912, 8164524.666804561, 8164693.75, 8165034.666258472, 8165785.200377731, 8165945.3125, 8166032.74132289, 8166066.82065616, 8166446.875, 8166450.107483223, 8166564.683258442, 8166660.641171581, 8168008.623260288, 8168809.375, 8169043.354165602, 8169595.76714732, 8169678.125, 8169687.5, 8170517.737544083, 8170577.472196252, 8170637.228381111, 8170862.885845265, 8170976.5625, 8171004.6875, 8171039.843275609, 8171048.605800096, 8171212.5, 8171223.179473189, 8171433.4681787845, 8171916.700569084, 8172262.5, 8172411.191761076, 8172851.149530459, 8173100.272342735, 8175229.369098785, 8175315.266860482, 8176286.578742397, 8176491.898965952, 8177906.921288799, 8179109.375, 8179171.700002679, 8179184.375, 8180126.158914454, 8180172.9070454985, 8180425.7448830595, 8180579.107907841, 8180674.430154157, 8180863.480022391, 8180973.4375, 8181031.137278863, 8181223.392997954, 8181317.1875, 8181417.1875, 8181424.064528533, 8181544.203929225, 8181679.600619904, 8181728.125, 8181729.000371784, 8181755.085943396, 8181785.9375, 8181790.8580921665, 8181924.481101305, 8182095.123158506, 8182131.690396511, 8182224.99078066, 8182231.25, 8182343.0195489945, 8182443.016934706, 8182465.625, 8182470.980870843, 8182471.875, 8182478.616465063, 8182481.7765636705, 8182512.5, 8182515.9541470595, 8182516.63081767, 8182631.730730255, 8182710.9375, 8182757.467327632, 8182797.953413248, 8182801.831171715, 8182889.0625, 8182890.625, 8182950.0, 8182956.47589414, 8182964.0068367245, 8182973.313669925, 8182994.68119719, 8183014.613676494, 8183177.916199596, 8183191.0339925485, 8183219.461962435, 8183253.125, 8183261.047712799, 8183279.6875, 8183379.058896148, 8183420.4720453955, 8183435.108222687, 8183471.875, 8183483.51920564, 8183490.339924468, 8183546.875, 8183617.437443823, 8183684.418094727, 8183709.344028176, 8183762.543318685, 8183833.385474452, 8183871.693436384, 8183973.4375, 8183987.645553464, 8184119.50650651, 8184170.319049302, 8184240.625, 8184276.534705887, 8184285.876764984, 8184296.875, 8184412.394795598, 8184490.407442532, 8184507.219431792, 8184511.286924156, 8184568.064026743, 8184648.4375, 8184695.3125, 8184890.549437257, 8184893.75, 8184899.947371923, 8184951.389599609, 8185132.418108526, 8185267.1875, 8185285.768275432, 8185546.103536544, 8185956.742650078, 8186569.823403952, 8187977.742211885, 8189268.214439779, 8189412.74881888, 8189628.830658507, 8189679.385694586, 8189866.568756242, 8215327.41674816, 8216784.375, 8220627.287685596, 8224725.883967587, 8235515.625, 8235808.534430774, 8235830.779327984, 8236049.399691066, 8237342.1875, 8239793.307415541, 8277161.448416722, 8277173.870657518, 8347769.372627762, 8423448.031724822, 8423450.562942335, 8428645.3125, 8429947.263432194, 8431023.58316984, 8432575.877010064, 8432935.9375, 8433178.071874544, 8433370.3125, 8433583.925372878, 8433648.021467587, 8434205.186020618, 8434520.45176686, 8434542.384075936, 8434687.377749112, 8434687.65347142, 8434809.0815058, 8435256.25, 8435446.775003966, 8435535.100251744, 8435714.73514273, 8436062.252081737, 8436086.304487493, 8436094.681275342, 8436115.261619996, 8436145.015353262, 8436292.521969082, 8436331.767325882, 8436372.135877742, 8436401.530399267, 8436414.219325839, 8436469.94030592, 8436487.5, 8436646.75865261, 8437079.6875, 8437390.360770945, 8438409.71059273, 8439389.215487516, 8443556.284192402, 8447090.307613168, 8447125.387248136, 8448404.558525946, 8452324.835089043, 8453107.94178126, 8454268.420590695, 8454395.3125, 8454738.659523498, 8455331.117760027, 8456199.47954632, 8456440.402120871, 8456656.25, 8457040.538701877, 8458753.13644598, 8459790.625, 8462594.123135608, 8464405.979116818, 8464653.125, 8469693.04077675, 8469701.892552095, 8470102.642297408, 8470145.880107755, 8470408.187503384, 8470602.870058445, 8470621.613078283, 8470945.3125, 8471740.6731194, 8472512.646621088, 8472661.351881277, 8474843.75, 8482220.521282457, 8483000.512675073, 8498543.47572716, 8504178.075290682, 8526101.903779432, 8527228.08371771, 8527845.150041496, 8528773.4375, 8528823.652665047, 8529123.33479253, 8534229.351728978, 8534255.314972715, 8535496.702091355, 8535593.747482987, 8537787.880558146, 8537832.784518532, 8539517.865799079, 8539827.301904425, 8541441.194330176, 8542259.375, 8543107.34086542, 8544429.6875, 8544479.435701985, 8544706.159631332, 8544991.333753416, 8545727.733585544, 8545846.875, 8546144.111809716, 8546174.823727485, 8546187.165783828, 8546254.641191907, 8546415.625, 8546734.375, 8546752.225903625, 8547208.732705122, 8547354.446838034, 8547398.297241172, 8547683.419298256, 8548775.792762153, 8548818.8022903, 8549066.525844002, 8550015.625, 8550490.258190759, 8550592.121630585, 8551049.325098503, 8559310.050283695, 8560214.403407868, 8598943.75, 8598971.274115684, 8607084.911796348, 8607171.875, 8607536.332031246, 8607581.25, 8607828.066513555, 8608125.0, 8609002.215244612, 8609115.866585398, 8609120.489612622, 8609809.399757933, 8609988.541736512, 8610036.403350722, 8610188.782881126, 8610411.106053963, 8610459.375, 8610518.75, 8610793.691644441, 8610807.732843919, 8610809.158014933, 8610809.708086874, 8610872.850320391, 8611116.51347072, 8611289.843668606, 8611698.4375, 8611787.232546445, 8611925.0, 8611926.48171692, 8612012.74131853, 8612227.750536576, 8612244.447464496, 8612373.907505782, 8612499.50828604, 8612500.260877742, 8612644.057092104, 8612658.74814138, 8612782.547175933, 8612795.261460787, 8612799.123576708, 8612807.8125, 8612962.5, 8613060.985351326, 8613342.1875, 8613435.450589562, 8613609.763613213, 8613663.455177173, 8614292.540987505, 8614385.685346229, 8614457.8125, 8614814.772346895, 8614952.80492905, 8614967.372761339, 8615020.17432844, 8615035.9375, 8615120.3125, 8615293.616005294, 8615353.255251933, 8615374.128409464, 8615396.008320056, 8615436.948019156, 8615463.075805064, 8615481.25, 8615482.8125, 8615584.375, 8615600.0, 8615638.63486428, 8615931.04197069, 8615951.917172464, 8616146.51760331, 8616213.717110816, 8616245.3125, 8616347.747962095, 8616431.25, 8616800.289297735, 8616831.25, 8616959.375, 8617099.78930655, 8617113.271892808, 8617117.573452186, 8617185.9375, 8617226.5625, 8617392.1875, 8617407.8125, 8617461.309408449, 8617571.875, 8617576.195058707, 8617585.367925944, 8617740.612127597, 8617785.293330738, 8617848.4375, 8617865.625, 8617985.9375, 8618086.440185152, 8618100.0, 8618124.65408429, 8618454.120927228, 8618537.153238444, 8618576.463957135, 8618594.585276848, 8618624.651600651, 8618782.8125, 8618795.787170505, 8618820.253486704, 8618932.220949205, 8619119.229905017, 8619156.25, 8619156.47156246, 8619203.905477053, 8619289.356490863, 8619651.404993031, 8619759.713825587, 8619762.366268508, 8619790.625, 8619820.154502898, 8619910.30842757, 8620712.687720316, 8621049.370307133, 8621196.875, 8621633.830090228, 8621746.698450018, 8621773.793421552, 8621824.824759874, 8621870.3125, 8622183.839605981, 8622717.416730298, 8622722.452247195, 8623241.55186512, 8623257.8125, 8623268.226885939, 8624380.85868578, 8624417.958158573, 8624425.0, 8624449.548607435, 8624511.694288308, 8624719.00536726, 8624760.361980062, 8624764.906943329, 8625293.284763485, 8625680.568256684, 8625891.088538742, 8626232.511469744, 8627651.142096546, 8627694.68975318, 8627789.861156544, 8628027.65733819, 8628052.416957203, 8628148.4375, 8628181.263952963, 8628303.032990046, 8628334.65715229, 8628435.9375, 8628599.955988174, 8628724.83741795, 8629181.071519075, 8629887.5, 8630500.0, 8630595.3125, 8630706.582196565, 8631151.011299223, 8631416.689122915, 8631492.311518388, 8631569.381767295, 8631580.572852511, 8631596.109524192, 8631623.4375, 8631668.95985556, 8633288.970562788, 8633292.208653264, 8635303.607155351, 8636301.15625643, 8636359.08573953, 8639643.75, 8640513.633854005, 8641254.647496503, 8642004.510372104, 8642185.616031824, 8642189.907512711, 8642195.25036916, 8642345.3125, 8642624.826514442, 8642690.381917542, 8642723.227711389, 8642874.801488029, 8642879.49210782, 8642881.25, 8642941.8916238, 8642943.214088267, 8642956.054908335, 8643538.23754079, 8643653.291054605, 8643681.25, 8643804.424266804, 8643950.52388283, 8644206.05655332, 8644954.950641789, 8645270.3125, 8645306.25, 8645325.472750477, 8645444.956534754, 8645486.58020109, 8645749.66443271, 8645971.212415319, 8646021.261488292, 8646121.875, 8646179.901563818, 8646218.484477539, 8646257.8125, 8646504.6875, 8646562.5, 8646572.105314123, 8646629.91235998, 8646685.9375, 8646723.099303517, 8647108.27976473, 8647218.75, 8647276.148629518, 8647362.5, 8647373.4375, ...], [53.86069971479642, 8.303164162296744, 8.530922685712738, 6.716979645917165, 56.790663155331885, 22.383989837417598, 17.15132615675374, 64.91278428868674, 17.632631361218387, 23.75346371729685, 21.17137509516823, 23.16069360218467, 71.42465871474175, 57.98082446353954, 17.025676716292534, 88.59140607858265, 58.5118721677001, 18.304225321417757, 47.813311333119984, 7.038465992248895, 8.757908027027083, 52.3062176479878, 49.902751522782864, 22.944845211490268, 86.46682227625732, 111.82369517316809, 7.313760902110618, 24.904788931524667, 74.11935451185335, 12.936400116233093, 61.96108757090321, 7.534772582165281, 11.888776016586194, 14.09706365313528, 100.67286220316245, 81.96346809618393, 22.77774933561086, 23.613751110766888, 66.83194781937567, 29.47039480952495, 67.0040266908812, 25.405185872894577, 7.852867197912986, 42.883450704306114, 44.90682085491863, 25.94543079694306, 26.957584029796298, 26.0294625010655, 14.351027283352742, 5.132060333560431, 27.89413960033648, 6.393391132408716, 11.630146670299183, 11.732451565998678, 101.69908205087626, 14.924821231339148, 32.46455889410818, 11.858549870864632, 5.197094532361079, 30.928926878513224, 57.004044272765185, 11.639325677531238, 7.49936596028718, 86.25923577770936, 76.93997125243628, 7.518180027625046, 27.42372157128257, 118.96336113503205, 9.550358384319296, 28.241132109605974, 12.379907633388122, 25.596994028541836, 36.480218281972235, 22.870859583699236, 98.88948540075958, 17.542672826603766, 26.51030824391779, 7.393748716154529, 7.352908760606258, 44.022224778645395, 90.03007191958979, 6.849427707105616, 17.42637242801783, 14.183401414661896, 55.32683034897283, 11.066223775809435, 66.94167740861448, 16.784009974289802, 12.517565904379394, 17.473016380999308, 37.13370473388059, 56.855118672230105, 9.11396343615337, 12.944076326242218, 8.417328357313325, 13.183808649314324, 13.272950851567987, 15.529753741178315, 6.4554047014688996, 6.38364226596511, 33.834365876308, 7.533517044664371, 111.06336813184143, 13.905744549330368, 111.82738675072365, 83.9621367287238, 17.205942367912648, 18.776157515979047, 81.11759835858993, 29.759539938634518, 13.777691741506803, 32.038799486598165, 35.53055480156901, 6.242601542780975, 78.67999300347935, 9.377126428206255, 8.702823464326652, 9.326050257702905, 71.97991924569122, 22.898919533825726, 10.323801737889273, 17.448964531693626, 30.988498696672114, 31.412622727016668, 13.215781792519017, 34.787245466288354, 20.299389053276762, 36.38474321074843, 25.519739930870657, 5.332949649582345, 96.89423489230467, 84.91300607756867, 29.338221017954382, 5.874939830141211, 67.70148544907947, 7.6419759009534145, 33.459202138248, 38.432341453946606, 11.711193007009587, 54.97051390454807, 110.57620420937454, 70.78759115602621, 13.755491799571747, 69.72804670764796, 26.173432146789168, 11.828741754392754, 58.882833912069145, 39.784210601845885, 58.59436205187489, 12.164603483621539, 50.648414592008926, 6.036246184640634, 16.53377825191389, 11.504256921700028, 9.555579038151299, 60.36020410138966, 13.065919497874136, 67.51699632758262, 129.797291005543, 39.81522070543191, 16.594780552497102, 29.83373184870539, 65.49924889111207, 27.12099730148793, 49.250486230293646, 112.14418075132082, 14.603946343032398, 26.52289144685815, 27.62002545346779, 22.051031651306435, 20.187356765885, 42.65638188576058, 8.416471977778217, 17.237995563747106, 7.923125459157327, 91.10381943650385, 76.5279828099884, 22.859865505890603, 11.051623798953008, 74.84612126934043, 17.96420911743964, 11.0022719726053, 109.90337074958003, 23.327987675681428, 35.260248301557596, 29.36413810134143, 17.41612819857684, 111.61577289158612, 115.10800755842342, 21.096987039625702, 12.292460094640894, 36.94810846835942, 9.091074581601134, 16.422913870881533, 6.421223848784721, 101.5066042922967, 18.031050139065467, 9.33381351382033, 53.36075598322543, 19.062107092594868, 63.312468757733114, 21.47940076756589, 5.678732853043505, 177.38360169315433, 27.702740955022488, 19.873178146588153, 59.24177354312931, 59.09346037999473, 40.143939614008396, 24.28870168849288, 15.270414593678094, 30.47626924883636, 79.10185210157238, 7.593012307240759, 18.704176187795255, 35.437124711326845, 13.350929412155175, 10.263628591236682, 64.97883842842556, 39.423736798611664, 80.82762006340762, 113.63499963944005, 100.83492110376255, 45.07011764864658, 100.79327466110077, 23.52017212306626, 61.61204930997745, 60.1457150700823, 27.428592934949577, 57.60333450185789, 49.99017261024764, 21.01179619671489, 51.14781718213082, 57.20354312000548, 81.15816511444518, 15.063488147233075, 43.828553266615614, 5.378697826509899, 25.425592002896416, 13.90705343389936, 16.790118201829834, 119.84986795079587, 105.82669007680917, 12.785938401723381, 19.91876997979192, 71.69751967548987, 15.837219630928171, 19.873638527969064, 19.76812102310149, 68.65371882892369, 78.50250204450133, 57.4956123660215, 24.94495960271138, 6.954204893948448, 103.72712100967655, 76.9647655379715, 10.50818790993274, 54.85063143742278, 171.22586741690623, 86.54357259357845, 19.909814083234636, 53.48771978366924, 45.258028342228656, 25.739353387079504, 11.491723869914376, 57.353059833310915, 15.744328090910077, 24.85523249516129, 29.119507387219322, 7.304875979864757, 33.78097475280171, 9.932941770302207, 11.695931289705385, 14.227898415196957, 44.56666408649241, 71.45095449052752, 110.28142600811243, 30.5399136390861, 30.822419168237648, 11.59184834696329, 21.81330684701908, 14.084567794204274, 10.628527077494246, 96.23031084825529, 21.669576086905696, 12.889541478823842, 75.76281941542203, 75.18879890788808, 111.76367449552023, 12.03507200785272, 71.97289072750944, 25.700225548236087, 94.20003407538249, 33.641559413692484, 38.82884421719531, 10.16774361629925, 9.029382002526269, 5.084337513761654, 14.316477740959696, 23.214728312013595, 8.030353866667062, 13.467452315548393, 36.714900499004685, 7.707271987345052, 7.374089407141969, 11.576012781339637, 24.5754263259779, 7.80875046766064, 21.712277056822394, 8.495287389443742, 9.508133902161916, 97.35664383204127, 84.85543638839884, 26.00229855483979, 24.691948903065835, 10.878854336036415, 26.419708884754105, 51.96145026993202, 40.608773354704546, 5.429631974112794, 55.75547504239483, 16.182072287752643, 10.32486964233893, 64.59843130718939, 23.999459313667433, 50.712305398083835, 77.16629966004851, 90.21383213691594, 24.593522732459675, 103.0075627772853, 92.56731496045305, 31.9021149390256, 70.13413299192955, 19.00535973473943, 27.546101789850646, 25.60611385181177, 12.481769157398752, 51.762239688394295, 17.645834131184042, 22.59886554372631, 19.851869123796742, 37.73057126032699, 32.21900501093948, 8.36001592993341, 5.455317699606988, 5.425436852636016, 5.544809265067288, 35.926336218815344, 38.46413079124596, 11.641645856394971, 61.1304665592898, 23.990340550703177, 71.90355523414928, 88.03655090804719, 6.261319265190048, 43.04452304265635, 157.4067477948527, 5.624960195986096, 32.251108295923, 18.172472214431448, 23.751260574963187, 8.582298308219444, 23.91647445449162, 20.91196149065336, 15.74806471267473, 7.513911711273948, 115.34326660118296, 100.00458655361773, 31.17585954479237, 81.8330306503291, 222.80581357539108, 6.662342640139864, 36.82862602350553, 35.49439871765288, 37.19910813884144, 11.113124460620455, 14.72154759293737, 27.18716802700029, 12.637187904065268, 7.738822242319907, 124.85563855920867, 50.8899077575054, 50.39244174036548, 22.04062899700112, 27.82880070196532, 22.94687340417726, 18.416046667132957, 24.568735615716875, 24.60428253926768, 116.94155687601274, 14.560664341938955, 62.046509677830265, 19.882890307692357, 24.949413488054873, 54.73310325492361, 19.756905816475765, 6.158122646763835, 64.02753562879194, 9.30946903140906, 23.808317267504826, 41.411666065115746, 9.668975917832165, 10.653901058154638, 31.585054507199708, 6.159164168479982, 67.967309859542, 6.610775905154169, 28.55370161812667, 77.05136475561844, 35.404229642046836, 7.82964043112512, 144.9092181701447, 62.58423439940497, 8.419303103366216, 104.6544678472497, 30.538234930572905, 26.72660763892692, 10.043016546211188, 5.263343228847622, 11.520251177627625, 71.42153317791718, 21.231199962440108, 16.077090598019726, 38.71670534796986, 8.370612063836292, 62.88965111979227, 6.4314060351887985, 64.62193493574283, 147.75290132447316, 6.175943732996704, 7.518940135181301, 88.70485208706742, 59.573807625375295, 25.00910063339196, 26.25667259006081, 6.214618102853802, 10.09516817374532, 58.12229270080539, 95.47463949009483, 107.79106291300653, 29.47678396946773, 29.382619538267548, 13.031744903593314, 11.484128613301499, 20.96981395543814, 12.472745097940601, 15.498171872545704, 7.998289180564322, 6.15047538128985, 64.63729776762764, 66.4109099034512, 72.10836345258798, 12.244249794712118, 53.08153337488236, 7.214061252303563, 50.21128580561408, 187.1675297829147, 9.815252799037582, 17.762047677662448, 55.83368733532728, 127.53386173846164, 39.532173641080405, 80.71521423499188, 15.433133772831248, 94.26658583176805, 41.98525775338895, 20.11759495312325, 23.21388112806229, 8.439034475750155, 6.274827249446148, 12.592677117100983, 30.53733990416465, 15.563665305944975, 8.596904731316362, 44.604006647965846, 38.60493066259949, 9.743730751757607, 36.791369246028395, 30.703117370095978, 36.42875291207694, 5.125441061604798, 5.908340271107646, 138.7804604446507, 6.832505270414298, 38.33646925673268, 15.093980636262195, 7.880600938839312, 6.606646610423025, 38.310645385964385, 12.77103206070047, 8.978584011017636, 18.22076777259219, 46.18351712813666, 30.271920431699648, 90.08769750538117, 11.044291727877454, 31.89045455215205, 56.748123243944534, 10.639640613881582, 6.4943238901089515, 143.9314629746904, 65.30606205922415, 118.25563925421592, 13.176835893795355, 87.6975759640073, 109.30886164335553, 84.82653630535914, 41.22869620778789, 70.56404519212295, 40.22028354300785, 7.23374100919522, 32.02489885597141, 10.481955792520576, 56.610146076059195, 13.807343096319828, 117.61007705708617, 5.47440810414024, 139.58963022870563, 67.39175555697922, 17.44124286154451, 10.598949921431691, 89.94635622574103, 8.344246038090038, 29.98666645240347, 55.4642359034051, 259.8330234915467, 63.92507388705612, 13.620681278532114, 17.012878576004844, 65.15581713634052, 53.97878111957825, 21.81523294965845, 66.68704896754122, 5.0639901200544175, 8.501732247199156, 28.750837134490883, 114.3190352222164, 11.080489733563773, 11.401371135720613, 36.1954445057643, 24.30211787827682, 77.97790636270221, 10.443303576683936, 33.4101947130923, 11.549836093208178, 5.904230795516906, 30.65049579229037, 6.227791692407049, 38.20591843440829, 7.3008741053999335, 118.30181370903045, 7.3098499263319185, 30.603761690187348, 25.490570085983897, 41.121907655234, 32.39847680840245, 13.243405082729788, 34.02210557494675, 20.734244147262586, 20.823542053737512, 28.387646167202895, 59.16267489681422, 9.237875727052558, 14.774558713177463, 53.20623324264408, 62.703265021351115, 18.026722598185568, 72.09664910728637, 70.4384586396179, 87.01791414898945, 120.38117102976224, 9.69267689028582, 100.89328783142402, 53.77261306517453, 42.70324843437663, 30.30844527352749, 22.138645902128932, 14.90648566377198, 30.307427707144857, 12.736300164667588, 12.730053497649386, 66.08923096457116, 18.294455774852285, 56.634710649758205, 11.993873542580408, 5.177809047309618, 31.73247031878859, 16.364385784570278, 20.945704371216376, 9.773896955316495, 47.617752912579874, 23.190381701031594, 21.65332586548095, 22.265818096385363, 58.244741754083286, 78.28609968081854, 44.47453577002655, 15.878591305741384, 11.041802069780411, 33.77610904794549, 125.70510997770242, 17.56130543678771, 14.201214616144828, 57.03889913243691, 16.141914556020858, 37.383499378429164, 58.70607024102198, 48.628555736097475, 133.11188914485103, 7.164032501704917, 18.73620172392986, 79.08455214085353, 97.5220865588346, 5.237236054321402, 37.89352528334281, 6.8144533282740065, 20.929947317141302, 67.30255562912454, 20.76348349426689, 77.70105670967504, 8.192841797325825, 71.95039747087128, 8.365078045330003, 10.065020017720578, 14.966531187689846, 81.899359963846, 7.593215865443843, 23.034179450131646, 56.7028001932942, 26.604772838612114, 24.86422948149457, 8.875682376705978, 67.69017782667731, 46.02046466464985, 36.32845535168795, 43.604261923140676, 73.13914365634403, 41.57764543617306, 67.54190161162398, 7.0767312079262865, 74.52210311060604, 72.92997391262251, 66.5848314398766, 19.154265841372492, 5.641892779121429, 75.89267563851426, 122.19758817403624, 21.14555392896994, 11.540251996664859, 10.009021266143794, 31.71733409273788, 50.80532994899084, 10.17582787792244, 81.26215440911461, 27.51068465680653, 12.862310874263274, 106.86161396114835, 18.657286155216557, 23.235569289133522, 17.14642144110765, 149.06680970302335, 124.79799685534189, 24.70672453502616, 5.4152954982128, 33.93753074262746, 9.010350331549416, 14.976329126118163, 85.14717951236918, 8.503253893965397, 11.363296699981193, 91.3914730455978, 40.142716737759045, 7.1075562659947105, 37.20349342885665, 13.46615567245066, 22.373714869344422, 30.760416957362832, 31.6087536677805, 11.449527817100684, 26.321940627448846, 66.44084838967979, 13.768065121617724, 77.0834117109241, 9.248258302973994, 12.488460242608122, 101.91036700117385, 24.439619478452514, 54.97530221367037, 19.470525401482867, 19.548465206499948, 23.78725668309923, 16.39053596686664, 80.35303658794048, 39.968877904336765, 27.90503343941539, 15.57495981671706, 22.94058234336083, 80.741790120678, 5.20046783740276, 37.271933826498305, 77.94152656075158, 6.310550065184135, 109.97032125014013, 15.07345632356392, 71.82077518094363, 16.65616098347533, 26.212356801030186, 10.87936619983223, 15.458280424266219, 22.19667252166395, 55.13308628292562, 65.82977747433334, 14.46034136370614, 13.270375124893862, 36.697454056130596, 38.80110639285464, 56.9376690834998, 14.985316346512219, 50.93917671954834, 11.765735238197383, 30.439378775523043, 28.725185776346517, 127.23364080549848, 16.368824736909264, 21.667404133049967, 27.833426947625483, 28.70991110497791, 138.17859287823626, 24.249638067989107, 92.06806587455691, 21.347887264628454, 32.70661793072546, 25.35743759364501, 143.28886047632326, 81.64681449514134, 6.5705771797800985, 10.724456129996513, 78.41024272742072, 16.424165480077125, 7.110641918365053, 25.68245401675576, 69.98203035712916, 5.8300740406572995, 45.77390707694031, 5.235843936279788, 6.155875526129121, 5.161354121084128, 28.475427848570238, 16.621845698288162, 50.816523174370204, 5.566931750349678, 103.3432904055858, 20.697737694465857, 62.35490644710828, 114.16919903459396, 61.0862123457225, 5.795581357031738, 34.3533830778393, 37.05543510269504, 22.64929598163403, 88.65299234354588, 40.127575721896775, 57.84397083480263, 23.323300197469138, 14.574267665588266, 36.9183461136906, 51.060769269518694, 33.60912527945136, 70.9724592956531, 104.96089686971898, 76.00863295475402, 17.33084989027175, 19.641230663717273, 45.03755204457653, 20.01904566205909, 37.559903039613054, 14.940717373355467, 107.47368554706085, 12.871265002366151, 145.89223635608758, 29.75730918046218, 28.888900682255585, 8.870230895066515, 12.085028060116201, 122.27031408190489, 8.506845800103086, 132.22546079589583, 44.96759711428086, 74.69258135452625, 18.19203818064915, 11.527552670274174, 67.63911920599824, 8.299713271386372, 10.400839936947397, 17.384154801301474, 18.01974949557076, 9.478111046120286, 46.74965878126007, 35.79843685051767, 46.2550321103959, 27.04255986980879, 31.587662904523803, 16.383733458883366, 13.093459091924304, 97.46191669620235, 19.081199104729844, 78.81566002565378, 14.0114981568559, 117.74851609513104, 106.50763524591522, 15.94865319474376, 66.20621330825028, 27.57423517413462, 7.2507371925365565, 55.28510667801284, 11.759865728817662, 34.28203842851954, 8.852208349690452, 25.038557685120388, 9.288616313276313, 9.987746785933766, 38.61215923551695, 45.14121532351894, 5.204642740480683, 62.64656907193099, 8.044847658070196, 9.683136103335004, 13.041420384702315, 40.89146604402082, 76.3933690132567, 125.86992732110795, 5.313529355123919, 59.74458896441512, 23.965816369835615, 60.86490789445681, 51.170098771693965, 56.68451244941364, 26.131232864416315, 33.83319455937881, 68.62289836280061, 23.850598167034562, 5.377783409908886, 12.091080856284673, 51.05297530686283, 43.68889119058629, 29.814007832104753, 169.17328742968664, 22.246679511118543, 66.92839400348632, 8.483483207701653, 7.478893498918046, 23.187770102312626, 90.49149449660874, 10.197534269613929, 41.091100241940396, 22.64320507198051, 153.12957983382256, 73.50799676207441, 43.643486562807276, 30.048998715135973, 85.12766783758757, 33.396973854589376, 107.08302669841518, 125.99471570350067, 31.776910197492075, 16.577760733402226, 36.78776301011944, 9.038904362723304, 42.75144788426444, 9.320542496509411, 90.04630344965099, 40.145794144917566, 36.11798811944264, 57.83591931731225, 60.19480185074413, 40.2678037629003, 7.4827405870638115, 13.14734330857298, 5.788760794257175, 26.717287358014882, 10.153986446786273, 23.151586633086932, 115.83355538902379, 7.252080511567224, 82.37681811002787, 8.876742242266289, 174.0188901894978, 103.69387218896233, 11.492632149042151, 36.08726323825136, 66.9163874979862, 24.519318196452456, 5.728666514342541, 41.19847622871042, 74.3113744482877, 100.13870808660094, 10.26878494672935, 6.801571223137639, 8.850250442802759, 53.63448465187234, 21.056501838618324, 25.467049194198008, 16.497107509129645, 88.09313166014084, 32.024566590108904, 13.230144263419923, 53.418490427847686, 58.38281084731285, 75.95314888174033, 47.81429087614459, 5.439753090254406, 13.63390457464032, 13.614713496175655, 42.63527422630899, 31.675665510975783, 100.90612094935001, 9.557086561876845, 13.123866389927494, 12.766042575566757, 47.79609846074271, 68.80690436194133, 74.01203437387173, 13.329639493068203, 13.549459940690312, 13.001989702589674, 25.401735292019694, 40.82662747761182, 5.880028828185645, 37.7026461380696, 38.30032068891649, 31.894402555521893, 7.197650153436495, 31.46881729063612, 44.138112615038814, 21.00424604698015, 57.8583435939825, 98.01123972236854, 60.218316732843235, 84.939689357924, 7.727975157086956, 68.89307403964017, 25.624936825557636, 57.08900557179337, 8.651532626219197, 96.258464611488, 15.361469136442588, 147.89045986937506, 77.92024437559441, 22.309749563965504, 17.14605366016441, 12.2829032253245, 23.667026517331745, 30.891922665373226, 53.60096753832159, 51.50271968441437, 59.325928847404214, 170.84718505683523, 10.659847277438516, 25.743281572255604, 27.352956036960446, 65.05974852076275, 14.630951492701996, 62.491467258964995, 9.160098597799642, 19.00539060380121, 10.835439709904538, 56.213536837363726, 10.694718757337201, 21.142188699512968, 68.61001973331858, 21.108446646454755, 103.71752590140947, 81.23342765542671, 20.583573681714437, 59.89345464242117, 25.21442639310977, 9.564277707135487, 58.33930330082323, 59.56994941187318, 17.1122385129314, 11.059150065849952, 11.711597194876791, 9.062913578899922, 36.38983826741938, 26.920649457539124, 38.89205989480857, 15.825424921335197, 64.38025941985272, 52.928779414148536, 50.31175562814623, 87.74390745174178, 8.41224594278096, 5.073008228257036, 72.75650019602679, 13.792164908287765, 5.849382209787655, 74.59834388053653, 22.397583554756032, 38.07549687969523, 68.33790353902907, ...])
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);
([5281703.994216266, 6267543.781234792, 6422480.122644104, 6423793.512393699, 6458235.9375, 6475117.601008115, 6476661.417295218, 6476664.0625, 6747886.252964212, 7160529.631074981, 7447244.779632237, 7449733.124717708, 7480714.67915751, 7570890.625, 7598044.20699502, 7601024.745228907, 7630931.203074056, 7689866.722401013, 7736384.807344427, 7736982.487113182, 7740132.046282135, 7753306.25, 7772615.625, 7772849.634176952, 7784981.059527154, 7803093.694076022, 7803408.496824055, 7805337.2852770565, 7823645.3125, 7846561.851283374, 7856510.9375, 7858473.244152, 7858984.812841766, 7869760.208959537, 7889284.375, 7893777.748439917, 7909971.494809015, 7912671.564199295, 7915162.5, 7917531.25, 7919975.0, 7920682.631849748, 7920689.703693472, 7921273.4375, 7929096.875, 7963614.617909761, 7967530.6742027635, 7967702.984653762, 7969897.626573276, 7970884.447763533, 7971595.485822264, 7973300.937537848, 7974309.674302272, 7974745.667762034, 7974768.5537448535, 7974849.995614757, 7975181.745618107, 7975714.484642212, 7975826.31231721, 7976065.625, 7976301.5625, 7976920.616887121, 7976927.828378743, 7981042.1875, 7982201.170770546, 7982538.821041373, 7982546.8167986795, 7982996.388684718, 7984509.623073838, 7992188.105896382, 7992661.613902518, 7997460.769484996, 8002593.496537623, 8006276.1903471695, 8009970.3125, 8012656.124432617, 8024800.7459985, 8025238.443607046, 8025903.937941109, 8026089.7142746365, 8026961.652388248, 8027292.603161004, 8029136.391388849, 8035668.535788568, 8036109.028064809, 8056095.272805709, 8075332.8125, 8078870.149672081, 8087261.675629054, 8090853.661180962, 8092240.210434738, 8093437.4591167085, 8094276.293640402, 8094783.729343173, 8096008.051830281, 8096757.259730187, 8097249.480498273, 8102009.48108873, 8104159.16984176, 8119328.994229086, 8120949.896369084, 8122551.365528994, 8123252.0710147545, 8124920.373322011, 8124939.816344263, 8125512.312280929, 8126191.114566992, 8126586.6763928365, 8126872.864522, 8127085.9375, 8127293.381416915, 8127642.1875, 8127889.018800613, 8127948.240304653, 8128059.375, 8128345.366084253, 8128933.524591827, 8129226.556162565, 8129257.556392639, 8129263.763958163, 8129294.729131867, 8129504.758162878, 8129704.050797966, 8129776.336239726, 8129791.646739468, 8129792.44056185, 8129880.621387658, 8130118.75, 8130145.5320898825, 8130188.798310516, 8130235.23737895, 8130246.1934056245, 8130309.128541197, 8130419.541230316, 8130573.933730093, 8130593.855850296, 8130610.232679701, 8130628.125, 8130634.718761602, 8130651.2599049015, 8130707.8125, 8130782.8125, 8130810.587153621, 8130892.1875, 8130931.882793942, 8131173.844035728, 8131270.3125, 8131296.669499754, 8131474.869661907, 8131491.200506263, 8131493.343313818, 8131526.048660669, 8131568.7445784025, 8131593.978249606, 8131792.441234722, 8131924.176959748, 8132002.527190242, 8132085.517505233, 8132132.214587148, 8132162.5, 8132358.187755198, 8132358.311034149, 8132394.910018926, 8132587.4248176515, 8132717.596650973, 8132996.84632734, 8133178.977168515, 8133361.5009574555, 8133379.089460219, 8133465.729837634, 8133516.5458227955, 8133662.5, 8133667.425312645, 8133674.886383823, 8133689.8680625865, 8133759.375, 8133793.75, 8133821.501902265, 8133984.325772968, 8134089.369431848, 8134094.929883587, 8134156.168240606, 8134282.63890635, 8134293.416167407, 8134414.0625, 8134429.6875, 8134433.338911494, 8134499.057863356, 8134546.593945401, 8134556.235550066, 8134860.011081238, 8134863.942060488, 8134955.951408303, 8135070.653526646, 8135077.691541841, 8135258.2952711405, 8135291.252709628, 8135310.94034922, 8135319.727840781, 8135334.891108122, 8135342.1875, 8135388.923826286, 8135457.362954806, 8135475.0, 8135498.39456034, 8135632.133179165, 8135642.1875, 8135735.9375, 8135737.5, 8135904.428479426, 8135929.023033862, 8136014.714957633, 8136017.1875, 8136037.471639574, 8136085.103655155, 8136106.25, 8136123.831719257, 8136135.304100526, 8136181.25, 8136209.258362013, 8136228.557231849, 8136281.41759774, 8136314.0625, 8136321.476234444, 8136329.6875, 8136396.556732599, 8136396.97543905, 8136398.065550666, 8136454.874191537, 8136468.75, 8136655.89551338, 8136706.18680945, 8136766.428713196, 8136767.1875, 8136814.0625, 8136815.294416997, 8136845.3125, 8136868.222876651, 8136877.945704915, 8136924.699263623, 8136939.475511098, 8137015.625, 8137022.175175033, 8137046.165185663, 8137048.362751778, 8137060.668718814, 8137176.779197759, 8137212.299698758, 8137230.557749674, 8137271.827336121, 8137284.3390822, 8137296.875, 8137316.69281763, 8137324.32311768, 8137331.676414494, 8137356.25, 8137460.501366003, 8137462.5, 8137466.942234674, 8137479.539269083, 8137499.426497114, 8137537.5, 8137581.25, 8137656.091216416, 8137658.033539059, 8137671.875, 8137691.7582476465, 8137704.5700844815, 8137739.0625, 8137767.842161047, 8137840.625, 8137872.509946457, 8137875.335464366, 8137895.946238704, 8137941.792221489, 8137994.696513827, 8138015.234791668, 8138020.3125, 8138114.0625, 8138344.027947503, 8138372.969011086, 8138445.0679071285, 8138451.217804305, 8138463.71499407, 8138559.210805686, 8138563.394986055, 8138564.856353124, 8138590.760920002, 8138683.9398924885, 8138753.637086069, 8138759.375, 8138817.12770089, 8138859.375, 8138864.0625, 8138952.703453201, 8138975.847242793, 8139018.369826749, 8139033.644109793, 8139082.63824563, 8139160.594346015, 8139177.606870051, 8139301.113331834, 8139334.375, 8139456.528762231, 8139527.443646379, 8139584.644051724, 8139640.386930869, 8139675.5345828105, 8139711.615039869, 8139847.249867479, 8139870.514368764, 8139898.566849961, 8139948.4375, 8139960.795448359, 8140088.832776693, 8140101.397236209, 8140165.508691052, 8140168.005251217, 8140185.9375, 8140255.479304452, 8140266.651378804, 8140373.728890087, 8140447.855010703, 8140482.8125, 8140834.094224913, 8141031.25, 8141140.625, 8141350.0, 8141372.67222713, 8141528.125, 8141612.5, 8141663.717239952, 8141687.007109442, 8141707.020822241, 8141765.573537746, 8141818.428364686, 8141830.409778375, 8141879.236993436, 8141888.065346926, 8141898.041636079, 8141940.05118068, 8142039.0625, 8142053.88520067, 8142070.448838767, 8142071.72388543, 8142139.750334909, 8142142.426818593, 8142145.3125, 8142187.5, 8142287.805670397, 8142293.75, 8142359.09352866, 8142392.1875, 8142412.872823172, 8142434.328324932, 8142439.564655531, 8142496.55376192, 8142508.008145562, 8142651.366756964, 8142686.58723304, 8142696.575040623, 8142714.582764426, 8142715.337864798, 8142716.627201126, 8142743.946653112, 8142810.6835840065, 8142817.096075874, 8142854.6875, 8142868.75, 8142877.484556014, 8142890.73984514, 8142899.471234706, 8142912.5, 8143040.625, 8143050.0, 8143056.240650595, 8143132.957069111, 8143196.803567859, 8143257.040105532, 8143292.547433005, 8143301.5625, 8143306.25, 8143325.0, 8143332.365689704, 8143680.254292275, 8143788.696849764, 8143875.6866272595, 8143898.198948734, 8143958.145430153, 8144015.459803991, 8144113.958858933, 8144115.625, 8144412.399727805, 8144448.776686655, 8144476.5625, 8144665.532548936, 8144827.209976897, 8145016.155059602, 8145368.723945104, 8145960.891470611, 8148395.3125, 8148855.06145867, 8150249.6741397325, 8150348.569691199, 8150742.844231941, 8150978.125, 8151036.683605323, 8151446.875, 8151499.80465101, 8151665.625, 8151681.835400285, 8151716.145487037, 8151821.875, 8151840.867827407, 8152210.961757605, 8152236.002273067, 8152273.223239044, 8152377.299145932, 8152460.012441472, 8152479.92491492, 8152660.9375, 8153133.848338748, 8153145.58161645, 8153201.5625, 8153547.030600719, 8153626.463122365, 8153677.760329496, 8154410.9375, 8154447.677345433, 8154519.554391991, 8154904.448256292, 8154937.5, 8155018.75, 8155437.095312807, 8155701.436252895, 8155748.009678, 8155788.2834721375, 8155839.0625, 8155847.024198669, 8156056.25, 8156096.875, 8156128.525180187, 8156193.138905393, 8156314.279157031, 8156458.820892735, 8156474.15576054, 8156537.638763246, 8156640.036924833, 8156706.829197222, 8156807.724542155, 8156828.125, 8156852.508493551, 8156883.42597056, 8156893.813794541, 8156908.153464638, 8156909.375, 8156976.007777953, 8156998.959191906, 8157000.584537724, 8157023.4375, 8157055.573585336, 8157107.8125, 8157157.121530474, 8157193.04268462, 8157197.038543074, 8157365.625, 8157380.600093669, 8157381.32035015, 8157398.71508531, 8157414.1226447765, 8157453.895941274, 8157478.125, 8157595.466684564, 8157691.169089901, 8157818.75, 8157856.25, 8157953.575456387, 8157960.575311474, 8157967.1875, 8158031.338105792, 8158032.574168267, 8158068.3862312995, 8158114.0625, 8158170.64855823, 8158176.5625, 8158182.851935639, 8158188.206855009, 8158364.785007857, 8158370.17396083, 8158514.909013999, 8158560.488524284, 8158586.594651255, 8158592.1875, 8158660.419520023, 8158663.803493493, 8158681.195969997, 8158742.099263656, 8158764.0625, 8158825.389685358, 8158873.483484152, 8159132.834905818, 8159147.437075954, 8159147.869963542, 8159261.944599646, 8159577.067949085, 8159699.031418655, 8159881.25, 8162569.216994174, 8162930.664635942, 8163191.718599238, 8163266.0356123485, 8163528.125, 8163987.043458458, 8164052.960014912, 8164524.666804561, 8164693.75, 8165034.666258472, 8165785.200377731, 8165945.3125, 8166032.74132289, 8166066.82065616, 8166446.875, 8166450.107483223, 8166564.683258442, 8166660.641171581, 8168008.623260288, 8168809.375, 8169043.354165602, 8169595.76714732, 8169678.125, 8169687.5, 8170517.737544083, 8170577.472196252, 8170637.228381111, 8170862.885845265, 8170976.5625, 8171004.6875, 8171039.843275609, 8171048.605800096, 8171212.5, 8171223.179473189, 8171433.4681787845, 8171916.700569084, 8172262.5, 8172411.191761076, 8172851.149530459, 8173100.272342735, 8175229.369098785, 8175315.266860482, 8176286.578742397, 8176491.898965952, 8177906.921288799, 8179109.375, 8179171.700002679, 8179184.375, 8180126.158914454, 8180172.9070454985, 8180425.7448830595, 8180579.107907841, 8180674.430154157, 8180863.480022391, 8180973.4375, 8181031.137278863, 8181223.392997954, 8181317.1875, 8181417.1875, 8181424.064528533, 8181544.203929225, 8181679.600619904, 8181728.125, 8181729.000371784, 8181755.085943396, 8181785.9375, 8181790.8580921665, 8181924.481101305, 8182095.123158506, 8182131.690396511, 8182224.99078066, 8182231.25, 8182343.0195489945, 8182443.016934706, 8182465.625, 8182470.980870843, 8182471.875, 8182478.616465063, 8182481.7765636705, 8182512.5, 8182515.9541470595, 8182516.63081767, 8182631.730730255, 8182710.9375, 8182757.467327632, 8182797.953413248, 8182801.831171715, 8182889.0625, 8182890.625, 8182950.0, 8182956.47589414, 8182964.0068367245, 8182973.313669925, 8182994.68119719, 8183014.613676494, 8183177.916199596, 8183191.0339925485, 8183219.461962435, 8183253.125, 8183261.047712799, 8183279.6875, 8183379.058896148, 8183420.4720453955, 8183435.108222687, 8183471.875, 8183483.51920564, 8183490.339924468, 8183546.875, 8183617.437443823, 8183684.418094727, 8183709.344028176, 8183762.543318685, 8183833.385474452, 8183871.693436384, 8183973.4375, 8183987.645553464, 8184119.50650651, 8184170.319049302, 8184240.625, 8184276.534705887, 8184285.876764984, 8184296.875, 8184412.394795598, 8184490.407442532, 8184507.219431792, 8184511.286924156, 8184568.064026743, 8184648.4375, 8184695.3125, 8184890.549437257, 8184893.75, 8184899.947371923, 8184951.389599609, 8185132.418108526, 8185267.1875, 8185285.768275432, 8185546.103536544, 8185956.742650078, 8186569.823403952, 8187977.742211885, 8189268.214439779, 8189412.74881888, 8189628.830658507, 8189679.385694586, 8189866.568756242, 8215327.41674816, 8216784.375, 8220627.287685596, 8224725.883967587, 8235515.625, 8235808.534430774, 8235830.779327984, 8236049.399691066, 8237342.1875, 8239793.307415541, 8277161.448416722, 8277173.870657518, 8347769.372627762, 8423448.031724822, 8423450.562942335, 8428645.3125, 8429947.263432194, 8431023.58316984, 8432575.877010064, 8432935.9375, 8433178.071874544, 8433370.3125, 8433583.925372878, 8433648.021467587, 8434205.186020618, 8434520.45176686, 8434542.384075936, 8434687.377749112, 8434687.65347142, 8434809.0815058, 8435256.25, 8435446.775003966, 8435535.100251744, 8435714.73514273, 8436062.252081737, 8436086.304487493, 8436094.681275342, 8436115.261619996, 8436145.015353262, 8436292.521969082, 8436331.767325882, 8436372.135877742, 8436401.530399267, 8436414.219325839, 8436469.94030592, 8436487.5, 8436646.75865261, 8437079.6875, 8437390.360770945, 8438409.71059273, 8439389.215487516, 8443556.284192402, 8447090.307613168, 8447125.387248136, 8448404.558525946, 8452324.835089043, 8453107.94178126, 8454268.420590695, 8454395.3125, 8454738.659523498, 8455331.117760027, 8456199.47954632, 8456440.402120871, 8456656.25, 8457040.538701877, 8458753.13644598, 8459790.625, 8462594.123135608, 8464405.979116818, 8464653.125, 8469693.04077675, 8469701.892552095, 8470102.642297408, 8470145.880107755, 8470408.187503384, 8470602.870058445, 8470621.613078283, 8470945.3125, 8471740.6731194, 8472512.646621088, 8472661.351881277, 8474843.75, 8482220.521282457, 8483000.512675073, 8498543.47572716, 8504178.075290682, 8526101.903779432, 8527228.08371771, 8527845.150041496, 8528773.4375, 8528823.652665047, 8529123.33479253, 8534229.351728978, 8534255.314972715, 8535496.702091355, 8535593.747482987, 8537787.880558146, 8537832.784518532, 8539517.865799079, 8539827.301904425, 8541441.194330176, 8542259.375, 8543107.34086542, 8544429.6875, 8544479.435701985, 8544706.159631332, 8544991.333753416, 8545727.733585544, 8545846.875, 8546144.111809716, 8546174.823727485, 8546187.165783828, 8546254.641191907, 8546415.625, 8546734.375, 8546752.225903625, 8547208.732705122, 8547354.446838034, 8547398.297241172, 8547683.419298256, 8548775.792762153, 8548818.8022903, 8549066.525844002, 8550015.625, 8550490.258190759, 8550592.121630585, 8551049.325098503, 8559310.050283695, 8560214.403407868, 8598943.75, 8598971.274115684, 8607084.911796348, 8607171.875, 8607536.332031246, 8607581.25, 8607828.066513555, 8608125.0, 8609002.215244612, 8609115.866585398, 8609120.489612622, 8609809.399757933, 8609988.541736512, 8610036.403350722, 8610188.782881126, 8610411.106053963, 8610459.375, 8610518.75, 8610793.691644441, 8610807.732843919, 8610809.158014933, 8610809.708086874, 8610872.850320391, 8611116.51347072, 8611289.843668606, 8611698.4375, 8611787.232546445, 8611925.0, 8611926.48171692, 8612012.74131853, 8612227.750536576, 8612244.447464496, 8612373.907505782, 8612499.50828604, 8612500.260877742, 8612644.057092104, 8612658.74814138, 8612782.547175933, 8612795.261460787, 8612799.123576708, 8612807.8125, 8612962.5, 8613060.985351326, 8613342.1875, 8613435.450589562, 8613609.763613213, 8613663.455177173, 8614292.540987505, 8614385.685346229, 8614457.8125, 8614814.772346895, 8614952.80492905, 8614967.372761339, 8615020.17432844, 8615035.9375, 8615120.3125, 8615293.616005294, 8615353.255251933, 8615374.128409464, 8615396.008320056, 8615436.948019156, 8615463.075805064, 8615481.25, 8615482.8125, 8615584.375, 8615600.0, 8615638.63486428, 8615931.04197069, 8615951.917172464, 8616146.51760331, 8616213.717110816, 8616245.3125, 8616347.747962095, 8616431.25, 8616800.289297735, 8616831.25, 8616959.375, 8617099.78930655, 8617113.271892808, 8617117.573452186, 8617185.9375, 8617226.5625, 8617392.1875, 8617407.8125, 8617461.309408449, 8617571.875, 8617576.195058707, 8617585.367925944, 8617740.612127597, 8617785.293330738, 8617848.4375, 8617865.625, 8617985.9375, 8618086.440185152, 8618100.0, 8618124.65408429, 8618454.120927228, 8618537.153238444, 8618576.463957135, 8618594.585276848, 8618624.651600651, 8618782.8125, 8618795.787170505, 8618820.253486704, 8618932.220949205, 8619119.229905017, 8619156.25, 8619156.47156246, 8619203.905477053, 8619289.356490863, 8619651.404993031, 8619759.713825587, 8619762.366268508, 8619790.625, 8619820.154502898, 8619910.30842757, 8620712.687720316, 8621049.370307133, 8621196.875, 8621633.830090228, 8621746.698450018, 8621773.793421552, 8621824.824759874, 8621870.3125, 8622183.839605981, 8622717.416730298, 8622722.452247195, 8623241.55186512, 8623257.8125, 8623268.226885939, 8624380.85868578, 8624417.958158573, 8624425.0, 8624449.548607435, 8624511.694288308, 8624719.00536726, 8624760.361980062, 8624764.906943329, 8625293.284763485, 8625680.568256684, 8625891.088538742, 8626232.511469744, 8627651.142096546, 8627694.68975318, 8627789.861156544, 8628027.65733819, 8628052.416957203, 8628148.4375, 8628181.263952963, 8628303.032990046, 8628334.65715229, 8628435.9375, 8628599.955988174, 8628724.83741795, 8629181.071519075, 8629887.5, 8630500.0, 8630595.3125, 8630706.582196565, 8631151.011299223, 8631416.689122915, 8631492.311518388, 8631569.381767295, 8631580.572852511, 8631596.109524192, 8631623.4375, 8631668.95985556, 8633288.970562788, 8633292.208653264, 8635303.607155351, 8636301.15625643, 8636359.08573953, 8639643.75, 8640513.633854005, 8641254.647496503, 8642004.510372104, 8642185.616031824, 8642189.907512711, 8642195.25036916, 8642345.3125, 8642624.826514442, 8642690.381917542, 8642723.227711389, 8642874.801488029, 8642879.49210782, 8642881.25, 8642941.8916238, 8642943.214088267, 8642956.054908335, 8643538.23754079, 8643653.291054605, 8643681.25, 8643804.424266804, 8643950.52388283, 8644206.05655332, 8644954.950641789, 8645270.3125, 8645306.25, 8645325.472750477, 8645444.956534754, 8645486.58020109, 8645749.66443271, 8645971.212415319, 8646021.261488292, 8646121.875, 8646179.901563818, 8646218.484477539, 8646257.8125, 8646504.6875, 8646562.5, 8646572.105314123, 8646629.91235998, 8646685.9375, 8646723.099303517, 8647108.27976473, 8647218.75, 8647276.148629518, 8647362.5, 8647373.4375, ...], [53.86069971479642, 8.303164162296744, 8.530922685712738, 6.716979645917165, 56.790663155331885, 22.383989837417598, 17.15132615675374, 64.91278428868674, 17.632631361218387, 23.75346371729685, 21.17137509516823, 23.16069360218467, 71.42465871474175, 57.98082446353954, 17.025676716292534, 88.59140607858265, 58.5118721677001, 18.304225321417757, 47.813311333119984, 7.038465992248895, 8.757908027027083, 52.3062176479878, 49.902751522782864, 22.944845211490268, 86.46682227625732, 111.82369517316809, 7.313760902110618, 24.904788931524667, 74.11935451185335, 12.936400116233093, 61.96108757090321, 7.534772582165281, 11.888776016586194, 14.09706365313528, 100.67286220316245, 81.96346809618393, 22.77774933561086, 23.613751110766888, 66.83194781937567, 29.47039480952495, 67.0040266908812, 25.405185872894577, 7.852867197912986, 42.883450704306114, 44.90682085491863, 25.94543079694306, 26.957584029796298, 26.0294625010655, 14.351027283352742, 5.132060333560431, 27.89413960033648, 6.393391132408716, 11.630146670299183, 11.732451565998678, 101.69908205087626, 14.924821231339148, 32.46455889410818, 11.858549870864632, 5.197094532361079, 30.928926878513224, 57.004044272765185, 11.639325677531238, 7.49936596028718, 86.25923577770936, 76.93997125243628, 7.518180027625046, 27.42372157128257, 118.96336113503205, 9.550358384319296, 28.241132109605974, 12.379907633388122, 25.596994028541836, 36.480218281972235, 22.870859583699236, 98.88948540075958, 17.542672826603766, 26.51030824391779, 7.393748716154529, 7.352908760606258, 44.022224778645395, 90.03007191958979, 6.849427707105616, 17.42637242801783, 14.183401414661896, 55.32683034897283, 11.066223775809435, 66.94167740861448, 16.784009974289802, 12.517565904379394, 17.473016380999308, 37.13370473388059, 56.855118672230105, 9.11396343615337, 12.944076326242218, 8.417328357313325, 13.183808649314324, 13.272950851567987, 15.529753741178315, 6.4554047014688996, 6.38364226596511, 33.834365876308, 7.533517044664371, 111.06336813184143, 13.905744549330368, 111.82738675072365, 83.9621367287238, 17.205942367912648, 18.776157515979047, 81.11759835858993, 29.759539938634518, 13.777691741506803, 32.038799486598165, 35.53055480156901, 6.242601542780975, 78.67999300347935, 9.377126428206255, 8.702823464326652, 9.326050257702905, 71.97991924569122, 22.898919533825726, 10.323801737889273, 17.448964531693626, 30.988498696672114, 31.412622727016668, 13.215781792519017, 34.787245466288354, 20.299389053276762, 36.38474321074843, 25.519739930870657, 5.332949649582345, 96.89423489230467, 84.91300607756867, 29.338221017954382, 5.874939830141211, 67.70148544907947, 7.6419759009534145, 33.459202138248, 38.432341453946606, 11.711193007009587, 54.97051390454807, 110.57620420937454, 70.78759115602621, 13.755491799571747, 69.72804670764796, 26.173432146789168, 11.828741754392754, 58.882833912069145, 39.784210601845885, 58.59436205187489, 12.164603483621539, 50.648414592008926, 6.036246184640634, 16.53377825191389, 11.504256921700028, 9.555579038151299, 60.36020410138966, 13.065919497874136, 67.51699632758262, 129.797291005543, 39.81522070543191, 16.594780552497102, 29.83373184870539, 65.49924889111207, 27.12099730148793, 49.250486230293646, 112.14418075132082, 14.603946343032398, 26.52289144685815, 27.62002545346779, 22.051031651306435, 20.187356765885, 42.65638188576058, 8.416471977778217, 17.237995563747106, 7.923125459157327, 91.10381943650385, 76.5279828099884, 22.859865505890603, 11.051623798953008, 74.84612126934043, 17.96420911743964, 11.0022719726053, 109.90337074958003, 23.327987675681428, 35.260248301557596, 29.36413810134143, 17.41612819857684, 111.61577289158612, 115.10800755842342, 21.096987039625702, 12.292460094640894, 36.94810846835942, 9.091074581601134, 16.422913870881533, 6.421223848784721, 101.5066042922967, 18.031050139065467, 9.33381351382033, 53.36075598322543, 19.062107092594868, 63.312468757733114, 21.47940076756589, 5.678732853043505, 177.38360169315433, 27.702740955022488, 19.873178146588153, 59.24177354312931, 59.09346037999473, 40.143939614008396, 24.28870168849288, 15.270414593678094, 30.47626924883636, 79.10185210157238, 7.593012307240759, 18.704176187795255, 35.437124711326845, 13.350929412155175, 10.263628591236682, 64.97883842842556, 39.423736798611664, 80.82762006340762, 113.63499963944005, 100.83492110376255, 45.07011764864658, 100.79327466110077, 23.52017212306626, 61.61204930997745, 60.1457150700823, 27.428592934949577, 57.60333450185789, 49.99017261024764, 21.01179619671489, 51.14781718213082, 57.20354312000548, 81.15816511444518, 15.063488147233075, 43.828553266615614, 5.378697826509899, 25.425592002896416, 13.90705343389936, 16.790118201829834, 119.84986795079587, 105.82669007680917, 12.785938401723381, 19.91876997979192, 71.69751967548987, 15.837219630928171, 19.873638527969064, 19.76812102310149, 68.65371882892369, 78.50250204450133, 57.4956123660215, 24.94495960271138, 6.954204893948448, 103.72712100967655, 76.9647655379715, 10.50818790993274, 54.85063143742278, 171.22586741690623, 86.54357259357845, 19.909814083234636, 53.48771978366924, 45.258028342228656, 25.739353387079504, 11.491723869914376, 57.353059833310915, 15.744328090910077, 24.85523249516129, 29.119507387219322, 7.304875979864757, 33.78097475280171, 9.932941770302207, 11.695931289705385, 14.227898415196957, 44.56666408649241, 71.45095449052752, 110.28142600811243, 30.5399136390861, 30.822419168237648, 11.59184834696329, 21.81330684701908, 14.084567794204274, 10.628527077494246, 96.23031084825529, 21.669576086905696, 12.889541478823842, 75.76281941542203, 75.18879890788808, 111.76367449552023, 12.03507200785272, 71.97289072750944, 25.700225548236087, 94.20003407538249, 33.641559413692484, 38.82884421719531, 10.16774361629925, 9.029382002526269, 5.084337513761654, 14.316477740959696, 23.214728312013595, 8.030353866667062, 13.467452315548393, 36.714900499004685, 7.707271987345052, 7.374089407141969, 11.576012781339637, 24.5754263259779, 7.80875046766064, 21.712277056822394, 8.495287389443742, 9.508133902161916, 97.35664383204127, 84.85543638839884, 26.00229855483979, 24.691948903065835, 10.878854336036415, 26.419708884754105, 51.96145026993202, 40.608773354704546, 5.429631974112794, 55.75547504239483, 16.182072287752643, 10.32486964233893, 64.59843130718939, 23.999459313667433, 50.712305398083835, 77.16629966004851, 90.21383213691594, 24.593522732459675, 103.0075627772853, 92.56731496045305, 31.9021149390256, 70.13413299192955, 19.00535973473943, 27.546101789850646, 25.60611385181177, 12.481769157398752, 51.762239688394295, 17.645834131184042, 22.59886554372631, 19.851869123796742, 37.73057126032699, 32.21900501093948, 8.36001592993341, 5.455317699606988, 5.425436852636016, 5.544809265067288, 35.926336218815344, 38.46413079124596, 11.641645856394971, 61.1304665592898, 23.990340550703177, 71.90355523414928, 88.03655090804719, 6.261319265190048, 43.04452304265635, 157.4067477948527, 5.624960195986096, 32.251108295923, 18.172472214431448, 23.751260574963187, 8.582298308219444, 23.91647445449162, 20.91196149065336, 15.74806471267473, 7.513911711273948, 115.34326660118296, 100.00458655361773, 31.17585954479237, 81.8330306503291, 222.80581357539108, 6.662342640139864, 36.82862602350553, 35.49439871765288, 37.19910813884144, 11.113124460620455, 14.72154759293737, 27.18716802700029, 12.637187904065268, 7.738822242319907, 124.85563855920867, 50.8899077575054, 50.39244174036548, 22.04062899700112, 27.82880070196532, 22.94687340417726, 18.416046667132957, 24.568735615716875, 24.60428253926768, 116.94155687601274, 14.560664341938955, 62.046509677830265, 19.882890307692357, 24.949413488054873, 54.73310325492361, 19.756905816475765, 6.158122646763835, 64.02753562879194, 9.30946903140906, 23.808317267504826, 41.411666065115746, 9.668975917832165, 10.653901058154638, 31.585054507199708, 6.159164168479982, 67.967309859542, 6.610775905154169, 28.55370161812667, 77.05136475561844, 35.404229642046836, 7.82964043112512, 144.9092181701447, 62.58423439940497, 8.419303103366216, 104.6544678472497, 30.538234930572905, 26.72660763892692, 10.043016546211188, 5.263343228847622, 11.520251177627625, 71.42153317791718, 21.231199962440108, 16.077090598019726, 38.71670534796986, 8.370612063836292, 62.88965111979227, 6.4314060351887985, 64.62193493574283, 147.75290132447316, 6.175943732996704, 7.518940135181301, 88.70485208706742, 59.573807625375295, 25.00910063339196, 26.25667259006081, 6.214618102853802, 10.09516817374532, 58.12229270080539, 95.47463949009483, 107.79106291300653, 29.47678396946773, 29.382619538267548, 13.031744903593314, 11.484128613301499, 20.96981395543814, 12.472745097940601, 15.498171872545704, 7.998289180564322, 6.15047538128985, 64.63729776762764, 66.4109099034512, 72.10836345258798, 12.244249794712118, 53.08153337488236, 7.214061252303563, 50.21128580561408, 187.1675297829147, 9.815252799037582, 17.762047677662448, 55.83368733532728, 127.53386173846164, 39.532173641080405, 80.71521423499188, 15.433133772831248, 94.26658583176805, 41.98525775338895, 20.11759495312325, 23.21388112806229, 8.439034475750155, 6.274827249446148, 12.592677117100983, 30.53733990416465, 15.563665305944975, 8.596904731316362, 44.604006647965846, 38.60493066259949, 9.743730751757607, 36.791369246028395, 30.703117370095978, 36.42875291207694, 5.125441061604798, 5.908340271107646, 138.7804604446507, 6.832505270414298, 38.33646925673268, 15.093980636262195, 7.880600938839312, 6.606646610423025, 38.310645385964385, 12.77103206070047, 8.978584011017636, 18.22076777259219, 46.18351712813666, 30.271920431699648, 90.08769750538117, 11.044291727877454, 31.89045455215205, 56.748123243944534, 10.639640613881582, 6.4943238901089515, 143.9314629746904, 65.30606205922415, 118.25563925421592, 13.176835893795355, 87.6975759640073, 109.30886164335553, 84.82653630535914, 41.22869620778789, 70.56404519212295, 40.22028354300785, 7.23374100919522, 32.02489885597141, 10.481955792520576, 56.610146076059195, 13.807343096319828, 117.61007705708617, 5.47440810414024, 139.58963022870563, 67.39175555697922, 17.44124286154451, 10.598949921431691, 89.94635622574103, 8.344246038090038, 29.98666645240347, 55.4642359034051, 259.8330234915467, 63.92507388705612, 13.620681278532114, 17.012878576004844, 65.15581713634052, 53.97878111957825, 21.81523294965845, 66.68704896754122, 5.0639901200544175, 8.501732247199156, 28.750837134490883, 114.3190352222164, 11.080489733563773, 11.401371135720613, 36.1954445057643, 24.30211787827682, 77.97790636270221, 10.443303576683936, 33.4101947130923, 11.549836093208178, 5.904230795516906, 30.65049579229037, 6.227791692407049, 38.20591843440829, 7.3008741053999335, 118.30181370903045, 7.3098499263319185, 30.603761690187348, 25.490570085983897, 41.121907655234, 32.39847680840245, 13.243405082729788, 34.02210557494675, 20.734244147262586, 20.823542053737512, 28.387646167202895, 59.16267489681422, 9.237875727052558, 14.774558713177463, 53.20623324264408, 62.703265021351115, 18.026722598185568, 72.09664910728637, 70.4384586396179, 87.01791414898945, 120.38117102976224, 9.69267689028582, 100.89328783142402, 53.77261306517453, 42.70324843437663, 30.30844527352749, 22.138645902128932, 14.90648566377198, 30.307427707144857, 12.736300164667588, 12.730053497649386, 66.08923096457116, 18.294455774852285, 56.634710649758205, 11.993873542580408, 5.177809047309618, 31.73247031878859, 16.364385784570278, 20.945704371216376, 9.773896955316495, 47.617752912579874, 23.190381701031594, 21.65332586548095, 22.265818096385363, 58.244741754083286, 78.28609968081854, 44.47453577002655, 15.878591305741384, 11.041802069780411, 33.77610904794549, 125.70510997770242, 17.56130543678771, 14.201214616144828, 57.03889913243691, 16.141914556020858, 37.383499378429164, 58.70607024102198, 48.628555736097475, 133.11188914485103, 7.164032501704917, 18.73620172392986, 79.08455214085353, 97.5220865588346, 5.237236054321402, 37.89352528334281, 6.8144533282740065, 20.929947317141302, 67.30255562912454, 20.76348349426689, 77.70105670967504, 8.192841797325825, 71.95039747087128, 8.365078045330003, 10.065020017720578, 14.966531187689846, 81.899359963846, 7.593215865443843, 23.034179450131646, 56.7028001932942, 26.604772838612114, 24.86422948149457, 8.875682376705978, 67.69017782667731, 46.02046466464985, 36.32845535168795, 43.604261923140676, 73.13914365634403, 41.57764543617306, 67.54190161162398, 7.0767312079262865, 74.52210311060604, 72.92997391262251, 66.5848314398766, 19.154265841372492, 5.641892779121429, 75.89267563851426, 122.19758817403624, 21.14555392896994, 11.540251996664859, 10.009021266143794, 31.71733409273788, 50.80532994899084, 10.17582787792244, 81.26215440911461, 27.51068465680653, 12.862310874263274, 106.86161396114835, 18.657286155216557, 23.235569289133522, 17.14642144110765, 149.06680970302335, 124.79799685534189, 24.70672453502616, 5.4152954982128, 33.93753074262746, 9.010350331549416, 14.976329126118163, 85.14717951236918, 8.503253893965397, 11.363296699981193, 91.3914730455978, 40.142716737759045, 7.1075562659947105, 37.20349342885665, 13.46615567245066, 22.373714869344422, 30.760416957362832, 31.6087536677805, 11.449527817100684, 26.321940627448846, 66.44084838967979, 13.768065121617724, 77.0834117109241, 9.248258302973994, 12.488460242608122, 101.91036700117385, 24.439619478452514, 54.97530221367037, 19.470525401482867, 19.548465206499948, 23.78725668309923, 16.39053596686664, 80.35303658794048, 39.968877904336765, 27.90503343941539, 15.57495981671706, 22.94058234336083, 80.741790120678, 5.20046783740276, 37.271933826498305, 77.94152656075158, 6.310550065184135, 109.97032125014013, 15.07345632356392, 71.82077518094363, 16.65616098347533, 26.212356801030186, 10.87936619983223, 15.458280424266219, 22.19667252166395, 55.13308628292562, 65.82977747433334, 14.46034136370614, 13.270375124893862, 36.697454056130596, 38.80110639285464, 56.9376690834998, 14.985316346512219, 50.93917671954834, 11.765735238197383, 30.439378775523043, 28.725185776346517, 127.23364080549848, 16.368824736909264, 21.667404133049967, 27.833426947625483, 28.70991110497791, 138.17859287823626, 24.249638067989107, 92.06806587455691, 21.347887264628454, 32.70661793072546, 25.35743759364501, 143.28886047632326, 81.64681449514134, 6.5705771797800985, 10.724456129996513, 78.41024272742072, 16.424165480077125, 7.110641918365053, 25.68245401675576, 69.98203035712916, 5.8300740406572995, 45.77390707694031, 5.235843936279788, 6.155875526129121, 5.161354121084128, 28.475427848570238, 16.621845698288162, 50.816523174370204, 5.566931750349678, 103.3432904055858, 20.697737694465857, 62.35490644710828, 114.16919903459396, 61.0862123457225, 5.795581357031738, 34.3533830778393, 37.05543510269504, 22.64929598163403, 88.65299234354588, 40.127575721896775, 57.84397083480263, 23.323300197469138, 14.574267665588266, 36.9183461136906, 51.060769269518694, 33.60912527945136, 70.9724592956531, 104.96089686971898, 76.00863295475402, 17.33084989027175, 19.641230663717273, 45.03755204457653, 20.01904566205909, 37.559903039613054, 14.940717373355467, 107.47368554706085, 12.871265002366151, 145.89223635608758, 29.75730918046218, 28.888900682255585, 8.870230895066515, 12.085028060116201, 122.27031408190489, 8.506845800103086, 132.22546079589583, 44.96759711428086, 74.69258135452625, 18.19203818064915, 11.527552670274174, 67.63911920599824, 8.299713271386372, 10.400839936947397, 17.384154801301474, 18.01974949557076, 9.478111046120286, 46.74965878126007, 35.79843685051767, 46.2550321103959, 27.04255986980879, 31.587662904523803, 16.383733458883366, 13.093459091924304, 97.46191669620235, 19.081199104729844, 78.81566002565378, 14.0114981568559, 117.74851609513104, 106.50763524591522, 15.94865319474376, 66.20621330825028, 27.57423517413462, 7.2507371925365565, 55.28510667801284, 11.759865728817662, 34.28203842851954, 8.852208349690452, 25.038557685120388, 9.288616313276313, 9.987746785933766, 38.61215923551695, 45.14121532351894, 5.204642740480683, 62.64656907193099, 8.044847658070196, 9.683136103335004, 13.041420384702315, 40.89146604402082, 76.3933690132567, 125.86992732110795, 5.313529355123919, 59.74458896441512, 23.965816369835615, 60.86490789445681, 51.170098771693965, 56.68451244941364, 26.131232864416315, 33.83319455937881, 68.62289836280061, 23.850598167034562, 5.377783409908886, 12.091080856284673, 51.05297530686283, 43.68889119058629, 29.814007832104753, 169.17328742968664, 22.246679511118543, 66.92839400348632, 8.483483207701653, 7.478893498918046, 23.187770102312626, 90.49149449660874, 10.197534269613929, 41.091100241940396, 22.64320507198051, 153.12957983382256, 73.50799676207441, 43.643486562807276, 30.048998715135973, 85.12766783758757, 33.396973854589376, 107.08302669841518, 125.99471570350067, 31.776910197492075, 16.577760733402226, 36.78776301011944, 9.038904362723304, 42.75144788426444, 9.320542496509411, 90.04630344965099, 40.145794144917566, 36.11798811944264, 57.83591931731225, 60.19480185074413, 40.2678037629003, 7.4827405870638115, 13.14734330857298, 5.788760794257175, 26.717287358014882, 10.153986446786273, 23.151586633086932, 115.83355538902379, 7.252080511567224, 82.37681811002787, 8.876742242266289, 174.0188901894978, 103.69387218896233, 11.492632149042151, 36.08726323825136, 66.9163874979862, 24.519318196452456, 5.728666514342541, 41.19847622871042, 74.3113744482877, 100.13870808660094, 10.26878494672935, 6.801571223137639, 8.850250442802759, 53.63448465187234, 21.056501838618324, 25.467049194198008, 16.497107509129645, 88.09313166014084, 32.024566590108904, 13.230144263419923, 53.418490427847686, 58.38281084731285, 75.95314888174033, 47.81429087614459, 5.439753090254406, 13.63390457464032, 13.614713496175655, 42.63527422630899, 31.675665510975783, 100.90612094935001, 9.557086561876845, 13.123866389927494, 12.766042575566757, 47.79609846074271, 68.80690436194133, 74.01203437387173, 13.329639493068203, 13.549459940690312, 13.001989702589674, 25.401735292019694, 40.82662747761182, 5.880028828185645, 37.7026461380696, 38.30032068891649, 31.894402555521893, 7.197650153436495, 31.46881729063612, 44.138112615038814, 21.00424604698015, 57.8583435939825, 98.01123972236854, 60.218316732843235, 84.939689357924, 7.727975157086956, 68.89307403964017, 25.624936825557636, 57.08900557179337, 8.651532626219197, 96.258464611488, 15.361469136442588, 147.89045986937506, 77.92024437559441, 22.309749563965504, 17.14605366016441, 12.2829032253245, 23.667026517331745, 30.891922665373226, 53.60096753832159, 51.50271968441437, 59.325928847404214, 170.84718505683523, 10.659847277438516, 25.743281572255604, 27.352956036960446, 65.05974852076275, 14.630951492701996, 62.491467258964995, 9.160098597799642, 19.00539060380121, 10.835439709904538, 56.213536837363726, 10.694718757337201, 21.142188699512968, 68.61001973331858, 21.108446646454755, 103.71752590140947, 81.23342765542671, 20.583573681714437, 59.89345464242117, 25.21442639310977, 9.564277707135487, 58.33930330082323, 59.56994941187318, 17.1122385129314, 11.059150065849952, 11.711597194876791, 9.062913578899922, 36.38983826741938, 26.920649457539124, 38.89205989480857, 15.825424921335197, 64.38025941985272, 52.928779414148536, 50.31175562814623, 87.74390745174178, 8.41224594278096, 5.073008228257036, 72.75650019602679, 13.792164908287765, 5.849382209787655, 74.59834388053653, 22.397583554756032, 38.07549687969523, 68.33790353902907, ...])
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)