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 = 47158
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);
([4240360.1963879485, 5007350.0, 5045299.0698403735, 5159747.474946221, 7041484.061173286, 7081621.875, 7083055.809894966, 7089990.625, 7090301.483615932, 7091998.5381708, 7285557.136706622, 7298820.3125, 7299134.769316074, 7299428.845694096, 7299449.040195379, 7301379.25147493, 7305638.520354427, 7305666.788760822, 7305939.494266804, 7306431.25, 7306960.249783403, 7311028.125, 7311869.77532539, 7312012.5, 7312048.380019799, 7313152.915596143, 7314893.75, 7373397.308157181, 7375255.962666617, 7418357.8125, 7418401.026449461, 7421698.4375, 7421698.4375, 7424230.008365468, 7425525.863670756, 7430036.829824671, 7430071.383451755, 7432283.557000394, 7432284.208714882, 7434301.915223044, 7442759.960315326, 7442911.405632812, 7445707.0255002, 7446056.762468696, 7450633.80083645, 7453773.4375, 7470936.5012591835, 7477509.040679579, 7503298.4375, 7515550.0, 7565121.569051346, 7624593.75, 7624596.522137592, 7656643.75, 7661421.50298818, 7701602.065611944, 7701756.882062745, 7701995.118375542, 7702170.966720107, 7702276.725377423, 7702465.625, 7702942.041444725, 7703430.304028298, 7703550.216429714, 7703561.007157609, 7704170.3125, 7704448.866182728, 7704455.334433713, 7704455.711239467, 7704495.3125, 7705835.605072393, 7707261.653879953, 7708404.4072053945, 7712470.946701178, 7713115.625, 7713773.637781088, 7714785.9375, 7715189.041981423, 7720212.33912297, 7721958.157177403, 7731203.125, 7739825.0, 7760268.75, 7760363.9579085605, 7760432.451955026, 7761795.65375161, 7763665.284525976, 7763689.0625, 7764341.144386607, 7764356.25, 7765524.525774075, 7765603.567005849, 7765704.725156503, 7766069.062236841, 7767603.125, 7768229.95470198, 7769369.100159053, 7770701.700416446, 7792304.705061, 7793699.406311278, 7795792.504587013, 7796045.944294339, 7797155.902699325, 7799179.626970518, 7799618.75, 7802651.5625, 7803321.491146764, 7823112.5, 7826781.25, 7832682.194953377, 7853810.623949284, 7854056.602279009, 7856426.5625, 7856749.2499095155, 7856828.721329501, 7856866.80336386, 7856975.0, 7857460.857834522, 7858313.97335785, 7858324.388448925, 7858496.037535513, 7858889.0625, 7858902.123497449, 7859423.460711028, 7859447.164273988, 7859755.404815031, 7860111.506423272, 7860206.25, 7860449.850900686, 7861199.631784318, 7861324.775929296, 7861550.794699525, 7862020.794055253, 7862033.425987359, 7862086.483792969, 7862349.845473148, 7862435.759466461, 7862769.227326585, 7863362.480585397, 7863695.3125, 7863814.507229636, 7864073.1777709965, 7864200.0, 7864209.573444012, 7866250.781070592, 7868714.644916771, 7884119.911808541, 7885279.6875, 7891387.5, 7900521.172966226, 7905928.111495735, 7908210.883424281, 7908773.329768814, 7909267.979901228, 7911643.367745034, 7911965.309092605, 7912218.75, 7912529.52354259, 7913048.779170018, 7913481.25, 7914692.104299172, 7915975.326465402, 7916324.912193272, 7918481.25, 7927287.56842067, 7941392.1875, 7947676.977490742, 7950418.411275663, 7951324.142314102, 7952017.0605562255, 7955532.3980789725, 7955701.5625, 7955708.736694367, 7956207.542765453, 7956532.619756474, 7956715.625, 7957079.176204683, 7957537.5, 7957818.75, 7958096.875, 7958989.0625, 7959223.4375, 7959387.405742482, 7961705.522828508, 7962836.681730011, 7963039.651516989, 7963237.370424159, 7963423.096407975, 7963774.419921784, 7963978.981378006, 7964090.4899200965, 7964272.500900108, 7964660.623624, 7965049.414317454, 7965410.9375, 7965429.047080173, 7966151.5625, 7966303.368349737, 7967417.709090998, 7968219.512915751, 7968338.494551838, 7969263.255202789, 7969698.362450824, 7971235.545954837, 7971975.0, 7974926.184797066, 7975990.625, 7976219.197401822, 7976789.84721285, 7993610.677805025, 7993626.245161488, 7996260.9375, 7997340.397424761, 7997835.394037851, 7998079.074739071, 7998209.1567893, 7998312.979038375, 7998443.75, 7998585.9375, 7998859.72306052, 7999031.25, 7999320.003644718, 7999461.7130090995, 7999487.654130257, 7999851.5625, 7999995.903151806, 8000025.0, 8000941.7204026645, 8000956.164744383, 8000984.375, 8000988.130040935, 8001071.0475704875, 8001088.9659529505, 8001116.748115654, 8001211.332579475, 8001304.451867327, 8001407.787716731, 8001512.909138865, 8001709.406276627, 8002039.520031803, 8002095.343046666, 8002218.4421384, 8002365.85971815, 8002450.691575581, 8002578.125, 8002627.225472001, 8002957.8125, 8002993.700001541, 8003288.496121446, 8003289.11357654, 8003471.642248832, 8003532.8125, 8003580.218100428, 8003713.935878746, 8003783.637139164, 8004179.6875, 8004484.097592916, 8005042.108167563, 8005846.152366859, 8005905.739104883, 8005959.843136471, 8006615.974172903, 8006839.198526815, 8007001.610809258, 8007818.75, 8007851.043537367, 8008525.0, 8008612.42368927, 8008645.41617729, 8008870.3125, 8009034.42014675, 8010071.543398961, 8010450.0, 8010647.757015177, 8010699.5470643565, 8010704.894932181, 8011658.710691512, 8011685.9375, 8011704.567290877, 8011794.977022702, 8012581.25, 8012887.5, 8013129.6875, 8013500.934728411, 8013509.375, 8013547.823929866, 8013628.125, 8013762.298782079, 8013847.116751165, 8013892.078811675, 8014323.4375, 8014496.095463267, 8014867.837131979, 8015314.915205526, 8016339.0625, 8019120.3125, 8019374.642612097, 8028295.3125, 8029836.532212457, 8031607.465137307, 8032331.646112239, 8033144.195176921, 8064160.9375, 8064323.4375, 8064327.491275348, 8064803.837512725, 8065704.3592447145, 8069791.875845929, 8069889.733864741, 8072345.0518082855, 8075706.25, 8076029.6875, 8076874.813331968, 8077127.506809116, 8078420.3125, 8079008.658701017, 8079014.0625, 8079759.375, 8080385.848275923, 8080933.720462576, 8081593.75, 8082279.739612654, 8082409.375, 8083184.051388319, 8083713.78958546, 8084551.923113378, 8084848.277475748, 8089241.538099771, 8091026.5625, 8112314.86070064, 8120919.721204824, 8120927.528389333, 8121331.438953849, 8123946.866425489, 8125908.305167884, 8126808.98695291, 8128079.649239733, 8134676.28933875, 8139896.985723826, 8152785.236090418, 8153585.9375, 8156537.067113172, 8157827.740288958, 8169835.98967729, 8172040.625, 8174987.744932094, 8179340.20282822, 8182424.564248458, 8182770.040251464, 8183176.5625, 8184452.3499194505, 8185637.234395978, 8185641.645115024, 8185754.813124065, 8186620.3125, 8186659.078278607, 8186807.8125, 8187076.5625, 8187323.4375, 8187818.75, 8187881.818270317, 8187895.151242184, 8188971.875, 8189643.75, 8189681.106763969, 8199673.750103588, 8200717.300072466, 8202017.1875, 8202073.01312426, 8202705.217441846, 8203216.843825539, 8204818.664597538, 8204868.75, 8205844.754632853, 8207582.409471231, 8207620.1864332175, 8207745.3125, 8207747.013020975, 8208231.835001456, 8208281.25, 8208310.845428763, 8208320.145397752, 8208383.290606585, 8208424.758003772, 8208652.297307275, 8209074.146315394, 8209161.718743872, 8209162.667561221, 8209312.117604419, 8209504.507433344, 8209525.0, 8209834.375, 8210041.992730518, 8210290.698789986, 8210423.4375, 8211054.6875, 8211281.119832957, 8211416.736805277, 8211596.200582837, 8211787.5, 8211981.25, 8212751.5625, 8214295.3125, 8214621.531912073, 8214769.3357721, 8215364.0625, 8215399.355264276, 8216506.098165136, 8216885.9375, 8218124.821600845, 8218449.223251778, 8219286.769233331, 8220295.976385069, 8220340.41793629, 8222073.708335536, 8224533.410060562, 8225232.9637614405, 8225415.625, 8225421.30238688, 8225727.744144624, 8225988.993506478, 8227367.1875, 8229253.125, 8229524.309501952, 8230403.125, 8232824.190199909, 8234082.4618205065, 8234143.4993155245, 8234648.510318967, 8234704.6875, 8235461.70602395, 8235976.47076167, 8236829.6875, 8237260.9375, 8237407.8125, 8237412.5, 8239853.65827187, 8243737.435204787, 8243943.31570251, 8250222.158136155, 8253335.691024294, 8258471.449774055, 8259772.837034636, 8260858.951914908, 8263607.401785573, 8263636.655100479, 8265225.862493428, 8269243.75, 8271298.4375, 8271466.9092651615, 8272442.1875, 8273176.5625, 8274545.607989202, 8274595.3125, 8275508.967383758, 8275871.875, 8277165.382551476, 8277247.4213650925, 8277540.625, 8278607.617803051, 8278779.455187315, 8278853.810555179, 8279296.774457521, 8279318.481691882, 8279880.974188417, 8280661.594347514, 8281661.277601598, 8282142.1875, 8282163.96168721, 8282985.130943979, 8283381.067819394, 8283672.231802592, 8283885.096157507, 8284413.89570932, 8284736.854200114, 8284881.15522662, 8284904.291213373, 8285031.919285841, 8285907.8125, 8286292.848518369, 8286544.231886439, 8286795.3125, 8286931.808367164, 8287273.4375, 8287549.0483480245, 8287994.302268875, 8288221.875, 8288253.889423504, 8288398.284067725, 8288465.547464565, 8288634.270427662, 8288791.078768109, 8288826.5625, 8288950.374060836, 8289071.716388823, 8289093.75, 8289150.104214083, 8289398.4375, 8289954.883101992, 8290055.3986486895, 8290231.3691108, 8290252.96924875, 8290268.42889609, 8290334.123075518, 8290472.888453767, 8290593.311403689, 8290614.0625, 8290614.0625, 8290743.935194405, 8290818.75, 8290859.77494486, 8290919.897812312, 8290951.5625, 8290975.0, 8291093.75, 8291137.538806965, 8291162.5, 8291175.0, 8291205.197758119, 8291401.347787722, 8291415.625, 8291473.4375, 8291537.850927413, 8291695.3125, 8291697.403329962, 8291729.6875, 8291739.914999858, 8291766.221211611, 8291910.690754998, 8291912.5, 8291976.429730029, 8292029.6875, 8292046.131505047, 8292059.034560545, 8292059.375, 8292108.940280163, 8292228.839274626, 8292237.930435861, 8292260.405909116, 8292342.923111794, 8292376.805012762, 8292413.436599897, 8292476.175760632, 8292506.882626645, 8292616.247210777, 8292667.216266435, 8292731.96342103, 8292738.013892026, 8292836.299082939, 8292860.255728616, 8292870.3125, 8292903.125, 8292917.1875, 8292946.875, 8292984.3042589575, 8293031.25, 8293046.631320217, 8293185.500529349, 8293196.237329614, 8293225.727062774, 8293245.3125, 8293332.144293123, 8293348.580828085, 8293473.05803175, 8293493.364384864, 8293506.280563899, 8293508.345792848, 8293527.772613332, 8293556.027068587, 8293758.10656231, 8293794.9695595205, 8293807.8125, 8293909.713330568, 8293968.75, 8294023.808022976, 8294093.247135823, 8294225.0, 8294227.7026465805, 8294328.027595391, 8294343.973431291, 8294384.9321336625, 8294438.769432186, 8294491.786001652, 8294514.311421194, 8294688.19406235, 8294700.217819866, 8294731.25, 8294815.625, 8294885.9375, 8294974.463827853, 8295023.126218456, 8295044.743247593, 8295097.188096916, 8295119.922400347, 8295135.670495993, 8295151.188154142, 8295240.625, 8295291.648043809, 8295292.413576449, 8295332.8125, 8295398.4375, 8295455.235734038, 8295504.871118949, 8295646.702184066, 8295656.372259977, 8295682.8125, 8295953.125, 8296059.375, 8296082.79544977, 8296110.250300418, 8296203.125, 8296279.5473509375, 8296315.944151755, 8296321.875, 8296327.075012162, 8296447.985056544, 8296542.2638839735, 8296582.8125, 8296645.3125, 8296657.8125, 8296696.875, 8296770.168908958, 8296787.298188471, 8296829.221363135, 8297187.5, 8297195.3125, 8297327.703639631, 8297363.365251539, 8297445.3125, 8297461.195194359, 8297490.625, 8297534.673678549, 8297569.303017472, 8297626.235535876, 8297838.533786732, 8297857.8125, 8297925.0, 8297962.581973399, 8298192.124857634, 8298196.875, 8298215.336045871, 8298292.1875, 8298352.641861143, 8298608.714691671, 8298693.712656921, 8298765.885273588, 8298862.5, 8298863.071262621, 8298953.050719404, 8299174.01808564, 8299184.73145591, 8299237.278827137, 8299262.387456072, 8299376.5625, 8299411.400223309, 8299417.419707144, 8299500.0, 8299504.354565286, 8299598.4375, 8299615.385896118, 8299629.676129423, 8299685.186787508, 8299709.98352176, 8299731.25, 8299733.32389844, 8299808.612893414, 8299879.993462354, 8299906.56086384, 8299932.128421451, 8299946.050384449, 8300072.019324471, 8300168.025665366, 8300171.547772603, 8300237.43543459, 8300251.031491069, 8300271.875, 8300278.659073979, 8300314.0625, 8300366.026096877, 8300433.505673696, 8300439.3554545995, 8300476.5625, 8300557.8125, 8300603.116439852, 8300678.766799457, 8300740.625, 8300744.951497385, 8300831.924049687, 8300832.8125, 8300865.833630337, 8300886.923723172, 8300970.381335325, 8301053.125, 8301086.090128758, 8301107.175901325, 8301142.1875, 8301154.6875, 8301165.76425799, 8301252.141635337, 8301268.75, 8301389.496946675, 8301431.25, 8301470.630669194, 8301470.987005343, 8301501.35098988, 8301508.871474895, 8301657.8125, 8301742.104877738, 8301784.584693943, 8301859.702134741, 8301859.817036429, 8301865.03639307, 8301874.693631551, 8301912.3447663905, 8301913.527342508, 8301921.3943979945, 8302034.375, 8302041.80280433, 8302042.61270082, 8302056.25, 8302060.9375, 8302099.189386553, 8302141.032097241, 8302150.270049284, 8302167.542067908, 8302228.047319608, 8302385.234392561, 8302388.022849014, 8302396.875, 8302405.042373977, 8302449.004347635, 8302511.8583851615, 8302557.8125, 8302579.175194116, 8302588.3586611, 8302890.625, 8303015.625, 8303135.05126951, 8303170.414908385, 8303410.9375, 8303415.215109935, 8303423.851805384, 8303487.233367805, 8303905.254494545, 8303935.756540446, 8304084.081134248, 8304474.015095086, 8304717.1582527235, 8304732.8125, 8304796.990411985, 8305206.25, 8305285.9375, 8305295.3125, 8305638.11656228, 8306083.166392767, 8306224.31052235, 8306558.443508287, 8306817.970972901, 8308188.138837641, 8308392.1875, 8309015.009551955, 8309124.911947339, 8309412.394003874, 8309886.918651359, 8309929.153032424, 8309979.06330189, 8310313.745989611, 8310343.163267588, 8310421.875, 8311033.3758434225, 8311607.571085763, 8312154.6594086345, 8312545.610292122, 8312951.5625, 8315260.342723328, 8315668.439442583, 8316637.5, 8317285.578087835, 8321411.789661745, 8322612.5, 8325893.75, 8326579.6875, 8327251.5625, 8330614.104447252, 8333908.230455671, 8334636.365111863, 8334709.267237575, 8335521.875, 8341546.875, 8344437.965246884, 8348043.75, 8381782.050732341, 8382330.688830182, 8383179.878198478, 8383673.4375, 8384205.010082226, 8384690.412566021, 8385978.944008422, 8387226.5625, 8387249.9553178055, 8388664.799408983, 8390491.901962636, 8391126.38224323, 8396990.625, 8397518.75, 8399432.405418929, 8400368.75, 8400535.9375, 8400541.38664046, 8400587.5, 8403196.260651967, 8403570.172282329, 8403679.6875, 8404002.98659029, 8404015.91147799, 8404138.87170088, 8404393.75, 8404716.526245229, 8404719.19437036, 8405052.479640108, 8405199.42250707, 8406132.8125, 8406256.412130268, 8406256.733433142, 8406545.578093652, 8407343.75, 8407532.487924194, 8407589.45584282, 8408612.778901866, 8408662.824075362, 8408712.56459275, 8408765.625, 8408798.91911475, 8408878.125, 8408901.070147218, 8408975.0, 8408985.842368968, 8409146.875, 8409202.576652927, 8409227.897899583, 8409244.911025975, 8409563.360271493, 8409563.852377037, 8411448.141726617, 8411580.177467322, 8411725.629637375, 8412912.5, 8413318.75, 8413660.9375, 8414682.61509796, 8415221.875, 8415818.039603129, 8416364.0625, 8417101.5625, 8417344.967422673, 8417345.679196002, 8417588.629355196, 8417635.735754987, 8418054.182677189, 8418166.237570113, 8418170.004451906, 8418172.893010542, 8418329.6875, 8418571.087931013, 8418673.4375, 8418707.686018322, 8418740.517276026, 8418749.445684083, 8418890.134425413, 8418928.125, 8419058.402689513, 8419574.966998696, 8419854.380466413, 8420227.406429827, 8420450.18570348, 8420455.943017686, 8420459.375, 8420461.493790895, 8420462.5, 8420710.9375, 8421017.1875, 8421127.955692902, 8421479.545308068, 8421555.966198733, 8421664.859590756, 8421746.875, 8421893.371250004, 8422003.125, 8422203.125, 8422414.884965025, 8422433.75457272, 8422457.8125, 8422496.750030983, 8422521.448888231, 8422759.375, 8422840.711319165, 8422898.338491581, 8422925.0, 8422959.401810633, 8423001.80190557, 8423089.109640995, 8423139.0625, 8423332.240819773, 8423443.742983546, 8423511.43606599, 8423731.25, 8423806.25, 8423860.540754775, 8423912.5, 8423931.009140411, 8423951.696807103, 8424129.375998171, 8424164.677704467, 8424175.0, 8424176.22062196, 8424276.346996088, 8424322.817430913, 8424373.325086746, 8424571.406226218, 8424704.50552212, 8424718.959224615, 8424853.125, 8424935.9375, 8424935.941700961, 8424989.58180857, 8425017.198894974, 8425107.565117221, 8425346.875, 8425415.488184636, 8425456.201954417, 8425623.4375, 8425705.931936549, 8425817.1875, 8425838.970858095, 8426011.409518939, 8426324.903143363, 8426413.393832263, 8426806.168726027, 8426860.77932396, 8426896.742790673, 8426920.20615848, 8427040.625, 8427048.4375, 8427399.652874961, 8427657.8125, 8427756.946601408, 8427770.671927555, 8427772.652285188, 8428139.5046765, 8428141.803619461, 8428181.677906003, 8428215.625, 8428376.5625, 8428379.399068043, 8428425.652570857, 8428442.1875, 8429025.01077809, 8429046.875, 8429216.132268583, 8429399.968086543, 8429424.32224573, 8429530.30635643, 8429540.274935827, 8429815.522029119, 8429993.482895158, 8430102.61849277, 8430121.34249182, 8430653.595329048, 8431040.625, 8431074.96546155, 8432103.975454265, 8432120.847853722, 8433317.85353801, 8433465.63095973, 8433594.622653153, 8433845.049858514, 8433895.764199872, 8434045.160186278, 8434170.535879157, 8434485.9375, 8434579.804803247, 8434911.007238124, 8434999.111511303, 8435039.294525564, 8435092.1875, 8435100.0, 8435326.5625, 8435458.337507568, 8435814.0625, 8436089.0625, 8436124.395119328, 8436367.184957348, 8436891.32844717, 8437109.375, 8437204.313706838, 8437839.751372186, 8437884.730445854, 8437895.392818127, 8437943.75, 8438067.886511588, ...], [10.138099645373096, 47.32729676922383, 18.06054565811126, 8.631545128116203, 23.575716790410798, 63.3071224072697, 10.503065954250847, 57.90076508911868, 27.05605690235164, 15.33962375198221, 19.90208891572244, 61.61106531646663, 8.506718973717081, 59.00657265203701, 31.418599278399157, 22.15594014827593, 34.2346931011651, 22.56642472289926, 9.725274165107928, 70.48301602332549, 19.09556974152283, 73.28155949881933, 137.51763420634083, 42.047027089854666, 27.43675527282123, 139.28776189278915, 88.88412538161431, 23.929402418094863, 10.706444925365698, 95.64302587090823, 39.508626938866556, 62.37240899528071, 47.0579109822625, 16.32391840908862, 12.812601317328367, 17.786268682602447, 13.349253158255669, 59.095111808451676, 14.343450596688383, 81.43533787837112, 34.75386419339803, 46.41825495477194, 5.873678954559835, 17.335786601499144, 16.28017016983366, 103.86064877491768, 18.01867473577155, 19.252880176486705, 68.55680989419542, 29.00721180668109, 37.93553088219239, 67.9740781886456, 27.619651613643942, 62.61922044742231, 103.1180871997274, 64.43944219291717, 9.929882452037765, 6.725360233101606, 268.1111438136313, 118.23729033584625, 100.83992318693073, 99.47001252906423, 174.9283634684237, 5.830169670815559, 5.945494772823935, 52.46311438890589, 7.766010200576583, 122.39800694009392, 78.37815878128194, 102.12827729612412, 193.03134369731112, 6.362159205309444, 59.32704763529504, 33.5480951004917, 43.79385634058665, 16.758921068422175, 34.13959141942318, 43.397987655608155, 106.99396586082324, 106.3447804448488, 29.81571436669196, 85.20778405267413, 64.27873067442016, 69.71611687651266, 5.235165197674851, 16.42402771272798, 29.22443866050567, 37.66938374668915, 12.049764123189508, 46.36689361034995, 78.07093565820615, 17.504283282409986, 23.499330679955868, 11.653541185587073, 40.114981141657736, 25.036050886454937, 5.633714008537886, 15.541818002914319, 15.008868865769948, 20.60678632382716, 32.583361725224286, 12.283274495286507, 23.76178695345907, 37.53105779223468, 51.99950106680556, 69.51022540431, 13.234446415696492, 40.22504925546205, 34.07879995131634, 152.73142729468418, 23.579179619856017, 6.835935067128376, 30.311070108704634, 30.84965839131182, 43.78866634064608, 22.732391894614082, 65.4829278664499, 63.50751102341256, 14.612288891503091, 16.361722201928668, 18.67889783232504, 107.02516147270052, 12.134587160063843, 6.090516289939248, 21.66667169064136, 12.47062438993783, 11.619682262060792, 80.5937611095218, 25.890759756680076, 134.09229224247537, 176.77925259605652, 19.181572864586816, 16.700768229696763, 127.48402997591423, 5.360996241368363, 10.894466647449786, 63.873313140910696, 17.13760178708143, 68.78806307363215, 28.826469703899747, 159.35807363851612, 24.279148617874394, 73.7356983059942, 11.45273247322484, 35.01140001446275, 55.87655186030225, 5.681722810502476, 98.33155952162748, 73.17166153690454, 29.31548630217393, 183.27136176077227, 57.981350001631895, 14.54619481388112, 62.170277096567915, 22.753991896600485, 13.860189845217002, 92.23498509392658, 35.043787080289825, 46.526058490984354, 66.30415316028727, 19.83033844270829, 11.687221936235925, 84.16264325011603, 37.13372960008935, 15.208871592493523, 30.304716262715257, 8.518940337658437, 35.82002855819195, 84.67340196747233, 35.032229161304954, 7.459924140893765, 76.7781424477022, 35.78992787912233, 39.730488595307335, 35.059993517050714, 88.44710377509305, 49.85534441865785, 59.77462651293209, 36.09144239173133, 39.05560376465098, 65.4170438077322, 50.56527881903557, 20.01363018080195, 12.744149501673213, 12.531428141281522, 17.789465447369928, 67.90526202384868, 35.00848300850867, 40.951260018454505, 44.16900928831904, 26.113777195346596, 18.019558829980607, 23.575098540233814, 20.678932111017218, 71.687400279853, 122.06768644792461, 44.994189094234414, 5.627650197632655, 12.054211424147114, 12.57417857976828, 23.480663137944184, 6.92426295022829, 27.123340517923317, 22.64781057892052, 51.01079538784739, 37.07082356798778, 28.725014909102267, 35.08218899598202, 19.10735923813659, 100.87335069154429, 20.621450126325712, 112.30385077664334, 65.32113994319013, 6.0333502888706185, 8.861972363722591, 24.854905017540446, 149.7068358675735, 48.635262700257385, 67.64038976883603, 23.843142848735184, 150.12022275783835, 139.53886963883224, 17.615130914310285, 9.465220449851584, 75.2944041277965, 49.026163538261294, 35.677890478365946, 21.827723470761228, 10.99701130992694, 28.780206428912763, 82.50784431056819, 33.85575686234317, 26.75121871456796, 84.00527951750075, 11.807010431661887, 5.521752794677598, 21.485474061751827, 14.60324854204583, 6.769766809698267, 7.777548790793838, 68.92888708729039, 23.65083736217807, 17.612625835757186, 9.993704859146089, 48.56008713944016, 56.73185955297153, 93.83836352370679, 14.754302755324893, 89.46493704440854, 11.208492399412718, 36.21913129239586, 245.30294344906127, 27.89991803968684, 123.87878918322122, 34.07030507545486, 106.37963745538704, 24.043689517073407, 27.048216141768727, 10.159255871720045, 13.2963055900574, 31.09390111227724, 16.463378986148093, 45.57598842158373, 56.46999678176376, 86.33175792225143, 105.19371252960389, 30.49974573026024, 39.93535858485857, 32.889451667891585, 34.22360995796776, 15.116425872814839, 13.812192354579588, 133.99912214236028, 63.44140558002313, 29.970812707006804, 92.53001580741662, 19.99696819484656, 38.9740999058563, 27.16167368064233, 13.80041160215754, 56.2458428356804, 65.6669905031443, 111.9662228415944, 8.851577481831516, 31.022637288294053, 42.11332909319252, 81.41366271453244, 69.918317651254, 7.693079566581537, 20.467285687737814, 71.12364937789162, 8.749101314988309, 9.948573638747016, 12.70504072204075, 103.0055716289869, 69.1826796290461, 149.59618072687854, 38.03260046299647, 71.35120716887175, 131.61331364520765, 11.808964305653939, 17.42070619551438, 98.13171792751504, 131.04430094936563, 20.25536248996282, 12.459870210704374, 32.12842532589914, 118.59617477686001, 18.314251489539377, 7.054569403285424, 52.8208006256387, 202.9812112489435, 30.967515339840084, 8.858206599472496, 77.4983899488334, 63.798611436092514, 138.99112568413267, 49.04837258546758, 26.876604671325154, 6.389158845109788, 135.03357139619666, 11.21015107128973, 53.20903086049925, 23.453748986614535, 24.102998386257426, 7.739089192416121, 10.886463720217039, 20.121867671250303, 72.28796221489516, 19.207767432008236, 18.505726887637227, 18.472574119149265, 13.095360505749337, 15.061640262415976, 515.5432913468344, 10.570893957193093, 117.50210540842907, 81.86679263048921, 25.076545939430364, 56.55687099901239, 42.46112495666665, 30.4689972802284, 60.4472926660745, 9.37591517286809, 45.25294021092823, 143.48555742508648, 39.777973141881205, 13.505520419501174, 9.111343385952209, 79.33480699607925, 128.276511981632, 9.116483090675823, 68.09087033358557, 15.44297041369574, 74.90333868074718, 98.53457433115679, 41.25011823166804, 98.83357605137238, 52.74394166656558, 48.865153073747514, 55.197608952844824, 59.08644497008787, 99.62803886244458, 82.6304413448826, 35.726694066394536, 9.61049603770236, 31.878255014764555, 32.94547438975835, 45.54498626991672, 5.741335928594428, 120.76073095882874, 6.746575565543248, 34.22812208758673, 20.934634734233008, 22.51823997610231, 38.29969983478194, 36.11667024401511, 20.410439058201327, 9.880423842883372, 33.154114347843894, 60.7342821006669, 25.61098537028943, 17.1419350250278, 128.0050605612957, 6.006057667169623, 18.56670584225235, 29.515733750990027, 15.62110085076674, 27.19115570195648, 10.857451350146302, 32.6433438674435, 56.44502773386853, 38.401115843982645, 58.988560464558674, 31.32308906961481, 93.92142523521669, 99.79985876776405, 47.31969819195762, 19.913397466014413, 68.22452956610302, 67.4712375422421, 41.53110862795056, 33.348822420644765, 139.1753913055482, 8.622701543512836, 30.4536651227578, 5.502586823265165, 66.58235032127996, 97.0721215107669, 165.28513011134626, 7.914509049028996, 24.495656168911324, 5.99938382840063, 25.0151914919898, 16.085126805478954, 5.74587388591009, 5.952687426159629, 74.8433996046812, 13.13148000292535, 63.40248026987962, 7.578473067582992, 129.56592960053433, 54.995415175925764, 19.7822756546659, 56.91620010409605, 77.30285889050344, 23.12427063500782, 5.3334044029215395, 86.23785407674208, 91.03886083646552, 12.587096537259447, 14.603006705529209, 40.637794643534974, 67.12523803198896, 42.07559421882437, 68.0497219340219, 60.481251382371504, 68.07700121799344, 53.231309272032505, 8.442203254199507, 18.929972401751122, 118.1427770324688, 46.678165127491525, 22.296286847606186, 96.48569186847635, 6.91575663442514, 5.18594730339544, 93.52374023886021, 76.32796216547213, 21.376408042565323, 52.65374684253848, 62.859025270542546, 338.37949220123477, 35.15796534831162, 22.466990225531276, 66.21678420444822, 56.86839042682605, 36.28145158002698, 69.14421641287139, 25.195973408149346, 8.167431910421765, 6.162415451773025, 32.04616394401833, 15.894292595474191, 22.805099055775187, 9.956286186675943, 70.55156730896665, 43.11147238051595, 195.7107638089458, 10.064394456470865, 51.42014159531778, 67.98433098582693, 18.651913672685343, 25.615765522473602, 6.188914326611029, 26.781459787243456, 9.017385792753474, 18.30049980599874, 80.36734147182928, 18.24607817072361, 38.248543961189625, 71.47382622640973, 6.880346492449902, 42.624690155790155, 17.924713181432356, 9.84653642982562, 43.426809899562585, 5.054665591654633, 91.49674690283335, 83.4328345443291, 167.88428963616389, 166.13020551054643, 33.76527371917325, 35.773089968692524, 6.07175891095438, 100.11591946044994, 32.25887631202168, 43.244776211551326, 7.675549545160529, 6.604664223610617, 15.415808246850647, 25.786532436641586, 5.195317628500428, 14.061013824571916, 8.906632789078996, 6.420467252838667, 41.19626717480779, 28.645093093593953, 16.249948354819256, 44.317550386106134, 11.816224142308354, 8.078817273173458, 62.98631907749891, 59.66049847545701, 56.80623784471929, 34.34568836897192, 47.90382277870361, 60.074225382428835, 12.031402068927626, 110.1979675765895, 34.181914080221375, 50.29686536995807, 169.41090336489762, 44.187440118003224, 80.89151576451303, 73.5129005369636, 10.173808221904613, 12.207841794403333, 113.11728028210506, 88.48371952882215, 10.92633236157042, 40.4562050079405, 92.13833096012455, 30.688591670711837, 32.38872111431262, 28.189523639143207, 86.74469182348157, 5.257354155248667, 46.68464856954614, 6.919824127642197, 7.186694263435065, 20.322845539339397, 30.299968532758612, 291.67136257128504, 5.422805484254019, 11.17297026932606, 12.461902067456952, 59.578756853386835, 25.180077382947992, 75.31924361844015, 186.2082476893423, 31.306853146358655, 42.81689552924267, 44.477891786255185, 14.678563019881778, 107.32289575159226, 130.03202457073908, 117.23091524396541, 10.258547909666369, 122.92787274075422, 71.05707053679852, 29.957937085078992, 76.66122389456322, 7.0251501509038015, 9.025323716402008, 5.816245199536817, 17.45614726404134, 5.5948422513746, 5.334340234102094, 165.14822752416626, 267.7156127299914, 101.50232402183426, 32.12052371309123, 145.21261704309478, 16.57072876136466, 169.39178565040862, 79.53547371455396, 30.593771114371954, 68.46729754272704, 15.867482556532769, 9.851546618309596, 55.300237020361905, 8.085088128630037, 225.96185312247047, 18.466174863679285, 5.543746247098329, 52.23655452207929, 74.60876037303854, 154.34715471916903, 85.43841637208077, 13.874430486997525, 5.152312749825621, 5.1046687664794375, 6.688047491534654, 24.181572942982967, 35.07972719602172, 61.68649444739542, 18.331764587854565, 17.135907751271855, 85.98851646499651, 42.171474573782056, 5.7425606496121135, 5.1344459570780705, 125.64454456013513, 245.86145340785947, 29.933420021542666, 37.61408214504985, 108.5510563540553, 39.451835648703195, 7.372262339390366, 35.80814235972415, 71.97155894401334, 8.46288278268348, 44.37706607408246, 34.82325322443073, 12.433264642840626, 35.53302467581012, 71.11205040178345, 61.6842461699198, 33.60782574925567, 33.38555493673441, 25.97783706158779, 14.224317725091801, 65.74524330666432, 66.28414171450572, 43.24304444626633, 13.546708116486966, 7.949338966360007, 43.02757967763723, 5.350830155623494, 63.87154835341235, 16.21683366302928, 8.602403775911817, 40.277374662436586, 22.371213826417204, 68.32412957523674, 42.9266520550653, 11.25830036100123, 14.708003209335246, 52.850943420197865, 13.943768435756423, 136.31239241884924, 21.662964421869358, 20.0302865816686, 33.492991995508824, 9.561622424649942, 39.48188200638743, 9.866149663482368, 19.547411275921707, 132.66083575590494, 72.43595397900786, 25.534268451101962, 26.482109573499674, 50.02787340929599, 15.084094967572625, 149.05550571209545, 38.8724071703043, 25.00910686719658, 32.072484872237936, 117.01949471211023, 7.599130310046968, 232.20457433867512, 89.1460276554915, 86.40794669544547, 17.329660316599593, 27.526938721770513, 11.642173923957166, 33.56350525803251, 27.406753176435696, 30.790466459680182, 15.521701795307173, 11.765594516330882, 94.74780567040527, 46.887679904394815, 219.94608682809962, 65.48821146536915, 6.337118251444108, 98.10384554080754, 52.17938153634704, 130.9643929016996, 11.356813361217387, 59.186550956973754, 63.03244561717556, 14.908982218170827, 7.301040024056125, 82.73769237550663, 74.9579124822378, 168.78457713205125, 40.88967369818747, 154.72975860953142, 61.94202563739972, 108.35715198875883, 68.64215386344463, 230.22987336632804, 23.764448279994618, 52.51250816068018, 50.61781539689805, 22.013059276687965, 12.172147594972861, 40.36654898210516, 11.882218924439991, 71.16366880519897, 38.19835056280847, 12.120073593765277, 45.18794626387387, 47.0313031255412, 49.385998395591145, 133.68814902659466, 25.414370804812446, 5.838588556397018, 11.89689311539464, 14.15686285543759, 23.669732988777042, 14.381097898085056, 13.230778351424314, 73.45245346130616, 62.7405889783251, 10.575311790840559, 134.0329011236881, 80.71596356549148, 50.368564016507484, 12.548891500069615, 109.53846501395543, 16.081449953979746, 16.490327206367386, 54.301508481153874, 19.6809940136934, 65.86519590280858, 55.00498248255856, 16.491859621844217, 12.146662483274593, 183.91797146870167, 51.6911885837253, 13.29246899873472, 19.67515948539769, 57.768716663383316, 39.29639539204481, 92.91798861308371, 75.22618949633649, 54.412228069476065, 31.04448900841118, 21.917359942099228, 24.186536698467332, 17.65573259105048, 19.68248526437966, 6.441991199340502, 19.384786394132913, 27.95887273067781, 98.20999457893933, 11.31302573671075, 64.81823365663898, 164.5568847977821, 55.47628529505918, 205.50665648869543, 9.649708142074175, 5.056569459102224, 12.281592512200605, 120.8682505669824, 7.851880218741313, 92.67156265213553, 13.020604044453787, 81.79134074004999, 26.59147564012198, 20.150639238751673, 68.67572066890828, 8.85404778311096, 7.4926369217793045, 34.804679248408156, 184.82459083720872, 17.63381741023284, 6.44990181965032, 71.10510713399341, 11.627425039005049, 37.22669098492599, 7.995246235585045, 10.674667331658837, 112.90897399923057, 23.020383284351897, 19.62351134722596, 65.96880952868348, 63.088452733569994, 108.89590316572232, 57.631794332808525, 6.272512686522146, 5.356450425207806, 5.214454798185875, 14.54608445790312, 161.33762760531795, 48.46796559708895, 250.41300533086704, 29.058901760315948, 8.760858435208862, 20.903855934090487, 42.49911359612047, 46.46848232138079, 16.332284833448195, 33.106090780504076, 6.17762151108986, 41.52684174674203, 44.28966292852016, 131.69576881584558, 23.937256607185073, 9.18349902405279, 50.86992718509802, 134.45280294877782, 46.38455009432823, 46.939088313394286, 51.115802403475676, 10.070735531315675, 32.37198239892718, 13.023416378835666, 26.03151308650878, 50.75273394838832, 9.217049262107698, 16.15875920091503, 25.253610264594045, 92.46236971917372, 8.828561560623681, 112.24973302720844, 12.944821983400532, 5.772451662365768, 65.81942374219811, 126.97274970406308, 323.09397092353106, 90.96149703234983, 34.128244353087965, 27.17280356755458, 7.751980533709029, 16.12298184294343, 77.5825756769219, 67.43988094782863, 32.50863371835894, 92.34927668541052, 123.77822577656426, 8.042312846947464, 57.59686914857602, 37.45952124788096, 85.8933471940824, 31.56533491546206, 24.72884672892258, 113.72028861416173, 34.47933489963542, 24.970952614777357, 44.31844554113938, 68.99049361871539, 79.08204437003563, 62.885672037175475, 88.73069705554701, 34.561144068609615, 14.238949924542494, 49.74666506516098, 99.04981427720912, 32.73817670968031, 56.20104293988765, 23.19152672782834, 28.414937085193607, 53.20857590625575, 18.306712130186703, 20.67572555086023, 57.905606464475085, 20.226718369091834, 30.934453271369225, 101.71316710860133, 58.67366095901978, 75.35703874249208, 8.220805367171781, 176.99950888509258, 48.02844115968362, 55.680850859988794, 70.02008437253878, 25.011035566326797, 114.68524543699921, 69.10039937918873, 12.76480615267648, 11.430933421574588, 169.44822898263448, 47.292779842782004, 7.81764354399339, 34.7973402777971, 66.81172425419976, 102.01984820412318, 45.5353774556074, 62.54563235478561, 61.914025144478686, 93.9652233245131, 75.94957606445553, 37.8804055483967, 60.624363841828, 71.55640938822818, 10.13932855348801, 20.370387090671, 28.90561459611696, 53.037668544480226, 118.80621334920211, 54.7166768893335, 108.30524715990154, 44.27256121687261, 34.209095523407505, 52.725143942563356, 28.08652293567651, 116.97755507619185, 40.60281164529098, 25.480729791616753, 109.02350502259077, 54.916501820874196, 50.23947483411931, 40.00020379775872, 13.618021302384424, 134.1102734759615, 30.87601478421965, 196.30263435050108, 34.74864528772064, 148.31465589405357, 35.537256056502876, 13.781022413207753, 34.703109499735845, 33.90870470853349, 78.32774157216188, 47.55815600328543, 101.04477399184398, 9.5148102132412, 46.358014314086496, 60.96191066041089, 20.36081655833768, 31.630872431140567, 8.292612384873424, 86.88269745941822, 35.06254573759954, 14.444473607298667, 27.60864486636341, 57.84031152884467, 127.03167461163649, 67.16148643533857, 10.39991354000788, 6.861548015187175, 26.745948599175552, 66.07437594877757, 27.01432635686454, 80.90776651049387, 146.5824750388806, 26.585679633053385, 74.07053806064508, 130.9072818364841, 167.69041894656152, 37.25015028654893, 8.692837452204989, 7.738623951921687, 10.088223012833067, 98.3268657203455, 16.52290337053809, 35.22748183364857, 54.60644753300147, 65.25432144900412, 5.519243883119897, 17.18238458070983, 34.118981825420796, 29.139186442521364, 70.89619221429179, 42.01203589244342, 8.269772750520135, 10.211285162426297, 12.111959629793425, 17.97871195528745, 58.894835077031075, 6.44601980696372, 41.38919534355192, 67.24714378238444, 188.92231554457823, 38.74815319366298, 27.272353941195455, 16.73086329206193, 302.95736001111703, 52.57914369419228, 9.336447552059612, 32.768720500113695, 14.02678781252128, 16.996847487097142, 54.78709177228469, 68.9099515409825, 120.5622997024457, 180.35630196281184, 17.578896309344863, 7.310665912241012, 11.510837657670141, 28.97532092958553, 71.1103339037129, 29.957073791638535, 17.407993517615168, 37.70733698132361, 41.376034293082796, 86.19183721703155, 96.3900840403746, 18.529960270821995, 185.56031651895944, 6.221099828749855, 5.8667719943578005, 16.494723916522833, 5.618503038579919, 221.09723559496638, 6.911572116417225, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4240360.1963879485, 5007350.0, 5045299.0698403735, 5159747.474946221, 7041484.061173286, 7081621.875, 7083055.809894966, 7089990.625, 7090301.483615932, 7091998.5381708, 7285557.136706622, 7298820.3125, 7299134.769316074, 7299428.845694096, 7299449.040195379, 7301379.25147493, 7305638.520354427, 7305666.788760822, 7305939.494266804, 7306431.25, 7306960.249783403, 7311028.125, 7311869.77532539, 7312012.5, 7312048.380019799, 7313152.915596143, 7314893.75, 7373397.308157181, 7375255.962666617, 7418357.8125, 7418401.026449461, 7421698.4375, 7421698.4375, 7424230.008365468, 7425525.863670756, 7430036.829824671, 7430071.383451755, 7432283.557000394, 7432284.208714882, 7434301.915223044, 7442759.960315326, 7442911.405632812, 7445707.0255002, 7446056.762468696, 7450633.80083645, 7453773.4375, 7470936.5012591835, 7477509.040679579, 7503298.4375, 7515550.0, 7565121.569051346, 7624593.75, 7624596.522137592, 7656643.75, 7661421.50298818, 7701602.065611944, 7701756.882062745, 7701995.118375542, 7702170.966720107, 7702276.725377423, 7702465.625, 7702942.041444725, 7703430.304028298, 7703550.216429714, 7703561.007157609, 7704170.3125, 7704448.866182728, 7704455.334433713, 7704455.711239467, 7704495.3125, 7705835.605072393, 7707261.653879953, 7708404.4072053945, 7712470.946701178, 7713115.625, 7713773.637781088, 7714785.9375, 7715189.041981423, 7720212.33912297, 7721958.157177403, 7731203.125, 7739825.0, 7760268.75, 7760363.9579085605, 7760432.451955026, 7761795.65375161, 7763665.284525976, 7763689.0625, 7764341.144386607, 7764356.25, 7765524.525774075, 7765603.567005849, 7765704.725156503, 7766069.062236841, 7767603.125, 7768229.95470198, 7769369.100159053, 7770701.700416446, 7792304.705061, 7793699.406311278, 7795792.504587013, 7796045.944294339, 7797155.902699325, 7799179.626970518, 7799618.75, 7802651.5625, 7803321.491146764, 7823112.5, 7826781.25, 7832682.194953377, 7853810.623949284, 7854056.602279009, 7856426.5625, 7856749.2499095155, 7856828.721329501, 7856866.80336386, 7856975.0, 7857460.857834522, 7858313.97335785, 7858324.388448925, 7858496.037535513, 7858889.0625, 7858902.123497449, 7859423.460711028, 7859447.164273988, 7859755.404815031, 7860111.506423272, 7860206.25, 7860449.850900686, 7861199.631784318, 7861324.775929296, 7861550.794699525, 7862020.794055253, 7862033.425987359, 7862086.483792969, 7862349.845473148, 7862435.759466461, 7862769.227326585, 7863362.480585397, 7863695.3125, 7863814.507229636, 7864073.1777709965, 7864200.0, 7864209.573444012, 7866250.781070592, 7868714.644916771, 7884119.911808541, 7885279.6875, 7891387.5, 7900521.172966226, 7905928.111495735, 7908210.883424281, 7908773.329768814, 7909267.979901228, 7911643.367745034, 7911965.309092605, 7912218.75, 7912529.52354259, 7913048.779170018, 7913481.25, 7914692.104299172, 7915975.326465402, 7916324.912193272, 7918481.25, 7927287.56842067, 7941392.1875, 7947676.977490742, 7950418.411275663, 7951324.142314102, 7952017.0605562255, 7955532.3980789725, 7955701.5625, 7955708.736694367, 7956207.542765453, 7956532.619756474, 7956715.625, 7957079.176204683, 7957537.5, 7957818.75, 7958096.875, 7958989.0625, 7959223.4375, 7959387.405742482, 7961705.522828508, 7962836.681730011, 7963039.651516989, 7963237.370424159, 7963423.096407975, 7963774.419921784, 7963978.981378006, 7964090.4899200965, 7964272.500900108, 7964660.623624, 7965049.414317454, 7965410.9375, 7965429.047080173, 7966151.5625, 7966303.368349737, 7967417.709090998, 7968219.512915751, 7968338.494551838, 7969263.255202789, 7969698.362450824, 7971235.545954837, 7971975.0, 7974926.184797066, 7975990.625, 7976219.197401822, 7976789.84721285, 7993610.677805025, 7993626.245161488, 7996260.9375, 7997340.397424761, 7997835.394037851, 7998079.074739071, 7998209.1567893, 7998312.979038375, 7998443.75, 7998585.9375, 7998859.72306052, 7999031.25, 7999320.003644718, 7999461.7130090995, 7999487.654130257, 7999851.5625, 7999995.903151806, 8000025.0, 8000941.7204026645, 8000956.164744383, 8000984.375, 8000988.130040935, 8001071.0475704875, 8001088.9659529505, 8001116.748115654, 8001211.332579475, 8001304.451867327, 8001407.787716731, 8001512.909138865, 8001709.406276627, 8002039.520031803, 8002095.343046666, 8002218.4421384, 8002365.85971815, 8002450.691575581, 8002578.125, 8002627.225472001, 8002957.8125, 8002993.700001541, 8003288.496121446, 8003289.11357654, 8003471.642248832, 8003532.8125, 8003580.218100428, 8003713.935878746, 8003783.637139164, 8004179.6875, 8004484.097592916, 8005042.108167563, 8005846.152366859, 8005905.739104883, 8005959.843136471, 8006615.974172903, 8006839.198526815, 8007001.610809258, 8007818.75, 8007851.043537367, 8008525.0, 8008612.42368927, 8008645.41617729, 8008870.3125, 8009034.42014675, 8010071.543398961, 8010450.0, 8010647.757015177, 8010699.5470643565, 8010704.894932181, 8011658.710691512, 8011685.9375, 8011704.567290877, 8011794.977022702, 8012581.25, 8012887.5, 8013129.6875, 8013500.934728411, 8013509.375, 8013547.823929866, 8013628.125, 8013762.298782079, 8013847.116751165, 8013892.078811675, 8014323.4375, 8014496.095463267, 8014867.837131979, 8015314.915205526, 8016339.0625, 8019120.3125, 8019374.642612097, 8028295.3125, 8029836.532212457, 8031607.465137307, 8032331.646112239, 8033144.195176921, 8064160.9375, 8064323.4375, 8064327.491275348, 8064803.837512725, 8065704.3592447145, 8069791.875845929, 8069889.733864741, 8072345.0518082855, 8075706.25, 8076029.6875, 8076874.813331968, 8077127.506809116, 8078420.3125, 8079008.658701017, 8079014.0625, 8079759.375, 8080385.848275923, 8080933.720462576, 8081593.75, 8082279.739612654, 8082409.375, 8083184.051388319, 8083713.78958546, 8084551.923113378, 8084848.277475748, 8089241.538099771, 8091026.5625, 8112314.86070064, 8120919.721204824, 8120927.528389333, 8121331.438953849, 8123946.866425489, 8125908.305167884, 8126808.98695291, 8128079.649239733, 8134676.28933875, 8139896.985723826, 8152785.236090418, 8153585.9375, 8156537.067113172, 8157827.740288958, 8169835.98967729, 8172040.625, 8174987.744932094, 8179340.20282822, 8182424.564248458, 8182770.040251464, 8183176.5625, 8184452.3499194505, 8185637.234395978, 8185641.645115024, 8185754.813124065, 8186620.3125, 8186659.078278607, 8186807.8125, 8187076.5625, 8187323.4375, 8187818.75, 8187881.818270317, 8187895.151242184, 8188971.875, 8189643.75, 8189681.106763969, 8199673.750103588, 8200717.300072466, 8202017.1875, 8202073.01312426, 8202705.217441846, 8203216.843825539, 8204818.664597538, 8204868.75, 8205844.754632853, 8207582.409471231, 8207620.1864332175, 8207745.3125, 8207747.013020975, 8208231.835001456, 8208281.25, 8208310.845428763, 8208320.145397752, 8208383.290606585, 8208424.758003772, 8208652.297307275, 8209074.146315394, 8209161.718743872, 8209162.667561221, 8209312.117604419, 8209504.507433344, 8209525.0, 8209834.375, 8210041.992730518, 8210290.698789986, 8210423.4375, 8211054.6875, 8211281.119832957, 8211416.736805277, 8211596.200582837, 8211787.5, 8211981.25, 8212751.5625, 8214295.3125, 8214621.531912073, 8214769.3357721, 8215364.0625, 8215399.355264276, 8216506.098165136, 8216885.9375, 8218124.821600845, 8218449.223251778, 8219286.769233331, 8220295.976385069, 8220340.41793629, 8222073.708335536, 8224533.410060562, 8225232.9637614405, 8225415.625, 8225421.30238688, 8225727.744144624, 8225988.993506478, 8227367.1875, 8229253.125, 8229524.309501952, 8230403.125, 8232824.190199909, 8234082.4618205065, 8234143.4993155245, 8234648.510318967, 8234704.6875, 8235461.70602395, 8235976.47076167, 8236829.6875, 8237260.9375, 8237407.8125, 8237412.5, 8239853.65827187, 8243737.435204787, 8243943.31570251, 8250222.158136155, 8253335.691024294, 8258471.449774055, 8259772.837034636, 8260858.951914908, 8263607.401785573, 8263636.655100479, 8265225.862493428, 8269243.75, 8271298.4375, 8271466.9092651615, 8272442.1875, 8273176.5625, 8274545.607989202, 8274595.3125, 8275508.967383758, 8275871.875, 8277165.382551476, 8277247.4213650925, 8277540.625, 8278607.617803051, 8278779.455187315, 8278853.810555179, 8279296.774457521, 8279318.481691882, 8279880.974188417, 8280661.594347514, 8281661.277601598, 8282142.1875, 8282163.96168721, 8282985.130943979, 8283381.067819394, 8283672.231802592, 8283885.096157507, 8284413.89570932, 8284736.854200114, 8284881.15522662, 8284904.291213373, 8285031.919285841, 8285907.8125, 8286292.848518369, 8286544.231886439, 8286795.3125, 8286931.808367164, 8287273.4375, 8287549.0483480245, 8287994.302268875, 8288221.875, 8288253.889423504, 8288398.284067725, 8288465.547464565, 8288634.270427662, 8288791.078768109, 8288826.5625, 8288950.374060836, 8289071.716388823, 8289093.75, 8289150.104214083, 8289398.4375, 8289954.883101992, 8290055.3986486895, 8290231.3691108, 8290252.96924875, 8290268.42889609, 8290334.123075518, 8290472.888453767, 8290593.311403689, 8290614.0625, 8290614.0625, 8290743.935194405, 8290818.75, 8290859.77494486, 8290919.897812312, 8290951.5625, 8290975.0, 8291093.75, 8291137.538806965, 8291162.5, 8291175.0, 8291205.197758119, 8291401.347787722, 8291415.625, 8291473.4375, 8291537.850927413, 8291695.3125, 8291697.403329962, 8291729.6875, 8291739.914999858, 8291766.221211611, 8291910.690754998, 8291912.5, 8291976.429730029, 8292029.6875, 8292046.131505047, 8292059.034560545, 8292059.375, 8292108.940280163, 8292228.839274626, 8292237.930435861, 8292260.405909116, 8292342.923111794, 8292376.805012762, 8292413.436599897, 8292476.175760632, 8292506.882626645, 8292616.247210777, 8292667.216266435, 8292731.96342103, 8292738.013892026, 8292836.299082939, 8292860.255728616, 8292870.3125, 8292903.125, 8292917.1875, 8292946.875, 8292984.3042589575, 8293031.25, 8293046.631320217, 8293185.500529349, 8293196.237329614, 8293225.727062774, 8293245.3125, 8293332.144293123, 8293348.580828085, 8293473.05803175, 8293493.364384864, 8293506.280563899, 8293508.345792848, 8293527.772613332, 8293556.027068587, 8293758.10656231, 8293794.9695595205, 8293807.8125, 8293909.713330568, 8293968.75, 8294023.808022976, 8294093.247135823, 8294225.0, 8294227.7026465805, 8294328.027595391, 8294343.973431291, 8294384.9321336625, 8294438.769432186, 8294491.786001652, 8294514.311421194, 8294688.19406235, 8294700.217819866, 8294731.25, 8294815.625, 8294885.9375, 8294974.463827853, 8295023.126218456, 8295044.743247593, 8295097.188096916, 8295119.922400347, 8295135.670495993, 8295151.188154142, 8295240.625, 8295291.648043809, 8295292.413576449, 8295332.8125, 8295398.4375, 8295455.235734038, 8295504.871118949, 8295646.702184066, 8295656.372259977, 8295682.8125, 8295953.125, 8296059.375, 8296082.79544977, 8296110.250300418, 8296203.125, 8296279.5473509375, 8296315.944151755, 8296321.875, 8296327.075012162, 8296447.985056544, 8296542.2638839735, 8296582.8125, 8296645.3125, 8296657.8125, 8296696.875, 8296770.168908958, 8296787.298188471, 8296829.221363135, 8297187.5, 8297195.3125, 8297327.703639631, 8297363.365251539, 8297445.3125, 8297461.195194359, 8297490.625, 8297534.673678549, 8297569.303017472, 8297626.235535876, 8297838.533786732, 8297857.8125, 8297925.0, 8297962.581973399, 8298192.124857634, 8298196.875, 8298215.336045871, 8298292.1875, 8298352.641861143, 8298608.714691671, 8298693.712656921, 8298765.885273588, 8298862.5, 8298863.071262621, 8298953.050719404, 8299174.01808564, 8299184.73145591, 8299237.278827137, 8299262.387456072, 8299376.5625, 8299411.400223309, 8299417.419707144, 8299500.0, 8299504.354565286, 8299598.4375, 8299615.385896118, 8299629.676129423, 8299685.186787508, 8299709.98352176, 8299731.25, 8299733.32389844, 8299808.612893414, 8299879.993462354, 8299906.56086384, 8299932.128421451, 8299946.050384449, 8300072.019324471, 8300168.025665366, 8300171.547772603, 8300237.43543459, 8300251.031491069, 8300271.875, 8300278.659073979, 8300314.0625, 8300366.026096877, 8300433.505673696, 8300439.3554545995, 8300476.5625, 8300557.8125, 8300603.116439852, 8300678.766799457, 8300740.625, 8300744.951497385, 8300831.924049687, 8300832.8125, 8300865.833630337, 8300886.923723172, 8300970.381335325, 8301053.125, 8301086.090128758, 8301107.175901325, 8301142.1875, 8301154.6875, 8301165.76425799, 8301252.141635337, 8301268.75, 8301389.496946675, 8301431.25, 8301470.630669194, 8301470.987005343, 8301501.35098988, 8301508.871474895, 8301657.8125, 8301742.104877738, 8301784.584693943, 8301859.702134741, 8301859.817036429, 8301865.03639307, 8301874.693631551, 8301912.3447663905, 8301913.527342508, 8301921.3943979945, 8302034.375, 8302041.80280433, 8302042.61270082, 8302056.25, 8302060.9375, 8302099.189386553, 8302141.032097241, 8302150.270049284, 8302167.542067908, 8302228.047319608, 8302385.234392561, 8302388.022849014, 8302396.875, 8302405.042373977, 8302449.004347635, 8302511.8583851615, 8302557.8125, 8302579.175194116, 8302588.3586611, 8302890.625, 8303015.625, 8303135.05126951, 8303170.414908385, 8303410.9375, 8303415.215109935, 8303423.851805384, 8303487.233367805, 8303905.254494545, 8303935.756540446, 8304084.081134248, 8304474.015095086, 8304717.1582527235, 8304732.8125, 8304796.990411985, 8305206.25, 8305285.9375, 8305295.3125, 8305638.11656228, 8306083.166392767, 8306224.31052235, 8306558.443508287, 8306817.970972901, 8308188.138837641, 8308392.1875, 8309015.009551955, 8309124.911947339, 8309412.394003874, 8309886.918651359, 8309929.153032424, 8309979.06330189, 8310313.745989611, 8310343.163267588, 8310421.875, 8311033.3758434225, 8311607.571085763, 8312154.6594086345, 8312545.610292122, 8312951.5625, 8315260.342723328, 8315668.439442583, 8316637.5, 8317285.578087835, 8321411.789661745, 8322612.5, 8325893.75, 8326579.6875, 8327251.5625, 8330614.104447252, 8333908.230455671, 8334636.365111863, 8334709.267237575, 8335521.875, 8341546.875, 8344437.965246884, 8348043.75, 8381782.050732341, 8382330.688830182, 8383179.878198478, 8383673.4375, 8384205.010082226, 8384690.412566021, 8385978.944008422, 8387226.5625, 8387249.9553178055, 8388664.799408983, 8390491.901962636, 8391126.38224323, 8396990.625, 8397518.75, 8399432.405418929, 8400368.75, 8400535.9375, 8400541.38664046, 8400587.5, 8403196.260651967, 8403570.172282329, 8403679.6875, 8404002.98659029, 8404015.91147799, 8404138.87170088, 8404393.75, 8404716.526245229, 8404719.19437036, 8405052.479640108, 8405199.42250707, 8406132.8125, 8406256.412130268, 8406256.733433142, 8406545.578093652, 8407343.75, 8407532.487924194, 8407589.45584282, 8408612.778901866, 8408662.824075362, 8408712.56459275, 8408765.625, 8408798.91911475, 8408878.125, 8408901.070147218, 8408975.0, 8408985.842368968, 8409146.875, 8409202.576652927, 8409227.897899583, 8409244.911025975, 8409563.360271493, 8409563.852377037, 8411448.141726617, 8411580.177467322, 8411725.629637375, 8412912.5, 8413318.75, 8413660.9375, 8414682.61509796, 8415221.875, 8415818.039603129, 8416364.0625, 8417101.5625, 8417344.967422673, 8417345.679196002, 8417588.629355196, 8417635.735754987, 8418054.182677189, 8418166.237570113, 8418170.004451906, 8418172.893010542, 8418329.6875, 8418571.087931013, 8418673.4375, 8418707.686018322, 8418740.517276026, 8418749.445684083, 8418890.134425413, 8418928.125, 8419058.402689513, 8419574.966998696, 8419854.380466413, 8420227.406429827, 8420450.18570348, 8420455.943017686, 8420459.375, 8420461.493790895, 8420462.5, 8420710.9375, 8421017.1875, 8421127.955692902, 8421479.545308068, 8421555.966198733, 8421664.859590756, 8421746.875, 8421893.371250004, 8422003.125, 8422203.125, 8422414.884965025, 8422433.75457272, 8422457.8125, 8422496.750030983, 8422521.448888231, 8422759.375, 8422840.711319165, 8422898.338491581, 8422925.0, 8422959.401810633, 8423001.80190557, 8423089.109640995, 8423139.0625, 8423332.240819773, 8423443.742983546, 8423511.43606599, 8423731.25, 8423806.25, 8423860.540754775, 8423912.5, 8423931.009140411, 8423951.696807103, 8424129.375998171, 8424164.677704467, 8424175.0, 8424176.22062196, 8424276.346996088, 8424322.817430913, 8424373.325086746, 8424571.406226218, 8424704.50552212, 8424718.959224615, 8424853.125, 8424935.9375, 8424935.941700961, 8424989.58180857, 8425017.198894974, 8425107.565117221, 8425346.875, 8425415.488184636, 8425456.201954417, 8425623.4375, 8425705.931936549, 8425817.1875, 8425838.970858095, 8426011.409518939, 8426324.903143363, 8426413.393832263, 8426806.168726027, 8426860.77932396, 8426896.742790673, 8426920.20615848, 8427040.625, 8427048.4375, 8427399.652874961, 8427657.8125, 8427756.946601408, 8427770.671927555, 8427772.652285188, 8428139.5046765, 8428141.803619461, 8428181.677906003, 8428215.625, 8428376.5625, 8428379.399068043, 8428425.652570857, 8428442.1875, 8429025.01077809, 8429046.875, 8429216.132268583, 8429399.968086543, 8429424.32224573, 8429530.30635643, 8429540.274935827, 8429815.522029119, 8429993.482895158, 8430102.61849277, 8430121.34249182, 8430653.595329048, 8431040.625, 8431074.96546155, 8432103.975454265, 8432120.847853722, 8433317.85353801, 8433465.63095973, 8433594.622653153, 8433845.049858514, 8433895.764199872, 8434045.160186278, 8434170.535879157, 8434485.9375, 8434579.804803247, 8434911.007238124, 8434999.111511303, 8435039.294525564, 8435092.1875, 8435100.0, 8435326.5625, 8435458.337507568, 8435814.0625, 8436089.0625, 8436124.395119328, 8436367.184957348, 8436891.32844717, 8437109.375, 8437204.313706838, 8437839.751372186, 8437884.730445854, 8437895.392818127, 8437943.75, 8438067.886511588, ...], [10.138099645373096, 47.32729676922383, 18.06054565811126, 8.631545128116203, 23.575716790410798, 63.3071224072697, 10.503065954250847, 57.90076508911868, 27.05605690235164, 15.33962375198221, 19.90208891572244, 61.61106531646663, 8.506718973717081, 59.00657265203701, 31.418599278399157, 22.15594014827593, 34.2346931011651, 22.56642472289926, 9.725274165107928, 70.48301602332549, 19.09556974152283, 73.28155949881933, 137.51763420634083, 42.047027089854666, 27.43675527282123, 139.28776189278915, 88.88412538161431, 23.929402418094863, 10.706444925365698, 95.64302587090823, 39.508626938866556, 62.37240899528071, 47.0579109822625, 16.32391840908862, 12.812601317328367, 17.786268682602447, 13.349253158255669, 59.095111808451676, 14.343450596688383, 81.43533787837112, 34.75386419339803, 46.41825495477194, 5.873678954559835, 17.335786601499144, 16.28017016983366, 103.86064877491768, 18.01867473577155, 19.252880176486705, 68.55680989419542, 29.00721180668109, 37.93553088219239, 67.9740781886456, 27.619651613643942, 62.61922044742231, 103.1180871997274, 64.43944219291717, 9.929882452037765, 6.725360233101606, 268.1111438136313, 118.23729033584625, 100.83992318693073, 99.47001252906423, 174.9283634684237, 5.830169670815559, 5.945494772823935, 52.46311438890589, 7.766010200576583, 122.39800694009392, 78.37815878128194, 102.12827729612412, 193.03134369731112, 6.362159205309444, 59.32704763529504, 33.5480951004917, 43.79385634058665, 16.758921068422175, 34.13959141942318, 43.397987655608155, 106.99396586082324, 106.3447804448488, 29.81571436669196, 85.20778405267413, 64.27873067442016, 69.71611687651266, 5.235165197674851, 16.42402771272798, 29.22443866050567, 37.66938374668915, 12.049764123189508, 46.36689361034995, 78.07093565820615, 17.504283282409986, 23.499330679955868, 11.653541185587073, 40.114981141657736, 25.036050886454937, 5.633714008537886, 15.541818002914319, 15.008868865769948, 20.60678632382716, 32.583361725224286, 12.283274495286507, 23.76178695345907, 37.53105779223468, 51.99950106680556, 69.51022540431, 13.234446415696492, 40.22504925546205, 34.07879995131634, 152.73142729468418, 23.579179619856017, 6.835935067128376, 30.311070108704634, 30.84965839131182, 43.78866634064608, 22.732391894614082, 65.4829278664499, 63.50751102341256, 14.612288891503091, 16.361722201928668, 18.67889783232504, 107.02516147270052, 12.134587160063843, 6.090516289939248, 21.66667169064136, 12.47062438993783, 11.619682262060792, 80.5937611095218, 25.890759756680076, 134.09229224247537, 176.77925259605652, 19.181572864586816, 16.700768229696763, 127.48402997591423, 5.360996241368363, 10.894466647449786, 63.873313140910696, 17.13760178708143, 68.78806307363215, 28.826469703899747, 159.35807363851612, 24.279148617874394, 73.7356983059942, 11.45273247322484, 35.01140001446275, 55.87655186030225, 5.681722810502476, 98.33155952162748, 73.17166153690454, 29.31548630217393, 183.27136176077227, 57.981350001631895, 14.54619481388112, 62.170277096567915, 22.753991896600485, 13.860189845217002, 92.23498509392658, 35.043787080289825, 46.526058490984354, 66.30415316028727, 19.83033844270829, 11.687221936235925, 84.16264325011603, 37.13372960008935, 15.208871592493523, 30.304716262715257, 8.518940337658437, 35.82002855819195, 84.67340196747233, 35.032229161304954, 7.459924140893765, 76.7781424477022, 35.78992787912233, 39.730488595307335, 35.059993517050714, 88.44710377509305, 49.85534441865785, 59.77462651293209, 36.09144239173133, 39.05560376465098, 65.4170438077322, 50.56527881903557, 20.01363018080195, 12.744149501673213, 12.531428141281522, 17.789465447369928, 67.90526202384868, 35.00848300850867, 40.951260018454505, 44.16900928831904, 26.113777195346596, 18.019558829980607, 23.575098540233814, 20.678932111017218, 71.687400279853, 122.06768644792461, 44.994189094234414, 5.627650197632655, 12.054211424147114, 12.57417857976828, 23.480663137944184, 6.92426295022829, 27.123340517923317, 22.64781057892052, 51.01079538784739, 37.07082356798778, 28.725014909102267, 35.08218899598202, 19.10735923813659, 100.87335069154429, 20.621450126325712, 112.30385077664334, 65.32113994319013, 6.0333502888706185, 8.861972363722591, 24.854905017540446, 149.7068358675735, 48.635262700257385, 67.64038976883603, 23.843142848735184, 150.12022275783835, 139.53886963883224, 17.615130914310285, 9.465220449851584, 75.2944041277965, 49.026163538261294, 35.677890478365946, 21.827723470761228, 10.99701130992694, 28.780206428912763, 82.50784431056819, 33.85575686234317, 26.75121871456796, 84.00527951750075, 11.807010431661887, 5.521752794677598, 21.485474061751827, 14.60324854204583, 6.769766809698267, 7.777548790793838, 68.92888708729039, 23.65083736217807, 17.612625835757186, 9.993704859146089, 48.56008713944016, 56.73185955297153, 93.83836352370679, 14.754302755324893, 89.46493704440854, 11.208492399412718, 36.21913129239586, 245.30294344906127, 27.89991803968684, 123.87878918322122, 34.07030507545486, 106.37963745538704, 24.043689517073407, 27.048216141768727, 10.159255871720045, 13.2963055900574, 31.09390111227724, 16.463378986148093, 45.57598842158373, 56.46999678176376, 86.33175792225143, 105.19371252960389, 30.49974573026024, 39.93535858485857, 32.889451667891585, 34.22360995796776, 15.116425872814839, 13.812192354579588, 133.99912214236028, 63.44140558002313, 29.970812707006804, 92.53001580741662, 19.99696819484656, 38.9740999058563, 27.16167368064233, 13.80041160215754, 56.2458428356804, 65.6669905031443, 111.9662228415944, 8.851577481831516, 31.022637288294053, 42.11332909319252, 81.41366271453244, 69.918317651254, 7.693079566581537, 20.467285687737814, 71.12364937789162, 8.749101314988309, 9.948573638747016, 12.70504072204075, 103.0055716289869, 69.1826796290461, 149.59618072687854, 38.03260046299647, 71.35120716887175, 131.61331364520765, 11.808964305653939, 17.42070619551438, 98.13171792751504, 131.04430094936563, 20.25536248996282, 12.459870210704374, 32.12842532589914, 118.59617477686001, 18.314251489539377, 7.054569403285424, 52.8208006256387, 202.9812112489435, 30.967515339840084, 8.858206599472496, 77.4983899488334, 63.798611436092514, 138.99112568413267, 49.04837258546758, 26.876604671325154, 6.389158845109788, 135.03357139619666, 11.21015107128973, 53.20903086049925, 23.453748986614535, 24.102998386257426, 7.739089192416121, 10.886463720217039, 20.121867671250303, 72.28796221489516, 19.207767432008236, 18.505726887637227, 18.472574119149265, 13.095360505749337, 15.061640262415976, 515.5432913468344, 10.570893957193093, 117.50210540842907, 81.86679263048921, 25.076545939430364, 56.55687099901239, 42.46112495666665, 30.4689972802284, 60.4472926660745, 9.37591517286809, 45.25294021092823, 143.48555742508648, 39.777973141881205, 13.505520419501174, 9.111343385952209, 79.33480699607925, 128.276511981632, 9.116483090675823, 68.09087033358557, 15.44297041369574, 74.90333868074718, 98.53457433115679, 41.25011823166804, 98.83357605137238, 52.74394166656558, 48.865153073747514, 55.197608952844824, 59.08644497008787, 99.62803886244458, 82.6304413448826, 35.726694066394536, 9.61049603770236, 31.878255014764555, 32.94547438975835, 45.54498626991672, 5.741335928594428, 120.76073095882874, 6.746575565543248, 34.22812208758673, 20.934634734233008, 22.51823997610231, 38.29969983478194, 36.11667024401511, 20.410439058201327, 9.880423842883372, 33.154114347843894, 60.7342821006669, 25.61098537028943, 17.1419350250278, 128.0050605612957, 6.006057667169623, 18.56670584225235, 29.515733750990027, 15.62110085076674, 27.19115570195648, 10.857451350146302, 32.6433438674435, 56.44502773386853, 38.401115843982645, 58.988560464558674, 31.32308906961481, 93.92142523521669, 99.79985876776405, 47.31969819195762, 19.913397466014413, 68.22452956610302, 67.4712375422421, 41.53110862795056, 33.348822420644765, 139.1753913055482, 8.622701543512836, 30.4536651227578, 5.502586823265165, 66.58235032127996, 97.0721215107669, 165.28513011134626, 7.914509049028996, 24.495656168911324, 5.99938382840063, 25.0151914919898, 16.085126805478954, 5.74587388591009, 5.952687426159629, 74.8433996046812, 13.13148000292535, 63.40248026987962, 7.578473067582992, 129.56592960053433, 54.995415175925764, 19.7822756546659, 56.91620010409605, 77.30285889050344, 23.12427063500782, 5.3334044029215395, 86.23785407674208, 91.03886083646552, 12.587096537259447, 14.603006705529209, 40.637794643534974, 67.12523803198896, 42.07559421882437, 68.0497219340219, 60.481251382371504, 68.07700121799344, 53.231309272032505, 8.442203254199507, 18.929972401751122, 118.1427770324688, 46.678165127491525, 22.296286847606186, 96.48569186847635, 6.91575663442514, 5.18594730339544, 93.52374023886021, 76.32796216547213, 21.376408042565323, 52.65374684253848, 62.859025270542546, 338.37949220123477, 35.15796534831162, 22.466990225531276, 66.21678420444822, 56.86839042682605, 36.28145158002698, 69.14421641287139, 25.195973408149346, 8.167431910421765, 6.162415451773025, 32.04616394401833, 15.894292595474191, 22.805099055775187, 9.956286186675943, 70.55156730896665, 43.11147238051595, 195.7107638089458, 10.064394456470865, 51.42014159531778, 67.98433098582693, 18.651913672685343, 25.615765522473602, 6.188914326611029, 26.781459787243456, 9.017385792753474, 18.30049980599874, 80.36734147182928, 18.24607817072361, 38.248543961189625, 71.47382622640973, 6.880346492449902, 42.624690155790155, 17.924713181432356, 9.84653642982562, 43.426809899562585, 5.054665591654633, 91.49674690283335, 83.4328345443291, 167.88428963616389, 166.13020551054643, 33.76527371917325, 35.773089968692524, 6.07175891095438, 100.11591946044994, 32.25887631202168, 43.244776211551326, 7.675549545160529, 6.604664223610617, 15.415808246850647, 25.786532436641586, 5.195317628500428, 14.061013824571916, 8.906632789078996, 6.420467252838667, 41.19626717480779, 28.645093093593953, 16.249948354819256, 44.317550386106134, 11.816224142308354, 8.078817273173458, 62.98631907749891, 59.66049847545701, 56.80623784471929, 34.34568836897192, 47.90382277870361, 60.074225382428835, 12.031402068927626, 110.1979675765895, 34.181914080221375, 50.29686536995807, 169.41090336489762, 44.187440118003224, 80.89151576451303, 73.5129005369636, 10.173808221904613, 12.207841794403333, 113.11728028210506, 88.48371952882215, 10.92633236157042, 40.4562050079405, 92.13833096012455, 30.688591670711837, 32.38872111431262, 28.189523639143207, 86.74469182348157, 5.257354155248667, 46.68464856954614, 6.919824127642197, 7.186694263435065, 20.322845539339397, 30.299968532758612, 291.67136257128504, 5.422805484254019, 11.17297026932606, 12.461902067456952, 59.578756853386835, 25.180077382947992, 75.31924361844015, 186.2082476893423, 31.306853146358655, 42.81689552924267, 44.477891786255185, 14.678563019881778, 107.32289575159226, 130.03202457073908, 117.23091524396541, 10.258547909666369, 122.92787274075422, 71.05707053679852, 29.957937085078992, 76.66122389456322, 7.0251501509038015, 9.025323716402008, 5.816245199536817, 17.45614726404134, 5.5948422513746, 5.334340234102094, 165.14822752416626, 267.7156127299914, 101.50232402183426, 32.12052371309123, 145.21261704309478, 16.57072876136466, 169.39178565040862, 79.53547371455396, 30.593771114371954, 68.46729754272704, 15.867482556532769, 9.851546618309596, 55.300237020361905, 8.085088128630037, 225.96185312247047, 18.466174863679285, 5.543746247098329, 52.23655452207929, 74.60876037303854, 154.34715471916903, 85.43841637208077, 13.874430486997525, 5.152312749825621, 5.1046687664794375, 6.688047491534654, 24.181572942982967, 35.07972719602172, 61.68649444739542, 18.331764587854565, 17.135907751271855, 85.98851646499651, 42.171474573782056, 5.7425606496121135, 5.1344459570780705, 125.64454456013513, 245.86145340785947, 29.933420021542666, 37.61408214504985, 108.5510563540553, 39.451835648703195, 7.372262339390366, 35.80814235972415, 71.97155894401334, 8.46288278268348, 44.37706607408246, 34.82325322443073, 12.433264642840626, 35.53302467581012, 71.11205040178345, 61.6842461699198, 33.60782574925567, 33.38555493673441, 25.97783706158779, 14.224317725091801, 65.74524330666432, 66.28414171450572, 43.24304444626633, 13.546708116486966, 7.949338966360007, 43.02757967763723, 5.350830155623494, 63.87154835341235, 16.21683366302928, 8.602403775911817, 40.277374662436586, 22.371213826417204, 68.32412957523674, 42.9266520550653, 11.25830036100123, 14.708003209335246, 52.850943420197865, 13.943768435756423, 136.31239241884924, 21.662964421869358, 20.0302865816686, 33.492991995508824, 9.561622424649942, 39.48188200638743, 9.866149663482368, 19.547411275921707, 132.66083575590494, 72.43595397900786, 25.534268451101962, 26.482109573499674, 50.02787340929599, 15.084094967572625, 149.05550571209545, 38.8724071703043, 25.00910686719658, 32.072484872237936, 117.01949471211023, 7.599130310046968, 232.20457433867512, 89.1460276554915, 86.40794669544547, 17.329660316599593, 27.526938721770513, 11.642173923957166, 33.56350525803251, 27.406753176435696, 30.790466459680182, 15.521701795307173, 11.765594516330882, 94.74780567040527, 46.887679904394815, 219.94608682809962, 65.48821146536915, 6.337118251444108, 98.10384554080754, 52.17938153634704, 130.9643929016996, 11.356813361217387, 59.186550956973754, 63.03244561717556, 14.908982218170827, 7.301040024056125, 82.73769237550663, 74.9579124822378, 168.78457713205125, 40.88967369818747, 154.72975860953142, 61.94202563739972, 108.35715198875883, 68.64215386344463, 230.22987336632804, 23.764448279994618, 52.51250816068018, 50.61781539689805, 22.013059276687965, 12.172147594972861, 40.36654898210516, 11.882218924439991, 71.16366880519897, 38.19835056280847, 12.120073593765277, 45.18794626387387, 47.0313031255412, 49.385998395591145, 133.68814902659466, 25.414370804812446, 5.838588556397018, 11.89689311539464, 14.15686285543759, 23.669732988777042, 14.381097898085056, 13.230778351424314, 73.45245346130616, 62.7405889783251, 10.575311790840559, 134.0329011236881, 80.71596356549148, 50.368564016507484, 12.548891500069615, 109.53846501395543, 16.081449953979746, 16.490327206367386, 54.301508481153874, 19.6809940136934, 65.86519590280858, 55.00498248255856, 16.491859621844217, 12.146662483274593, 183.91797146870167, 51.6911885837253, 13.29246899873472, 19.67515948539769, 57.768716663383316, 39.29639539204481, 92.91798861308371, 75.22618949633649, 54.412228069476065, 31.04448900841118, 21.917359942099228, 24.186536698467332, 17.65573259105048, 19.68248526437966, 6.441991199340502, 19.384786394132913, 27.95887273067781, 98.20999457893933, 11.31302573671075, 64.81823365663898, 164.5568847977821, 55.47628529505918, 205.50665648869543, 9.649708142074175, 5.056569459102224, 12.281592512200605, 120.8682505669824, 7.851880218741313, 92.67156265213553, 13.020604044453787, 81.79134074004999, 26.59147564012198, 20.150639238751673, 68.67572066890828, 8.85404778311096, 7.4926369217793045, 34.804679248408156, 184.82459083720872, 17.63381741023284, 6.44990181965032, 71.10510713399341, 11.627425039005049, 37.22669098492599, 7.995246235585045, 10.674667331658837, 112.90897399923057, 23.020383284351897, 19.62351134722596, 65.96880952868348, 63.088452733569994, 108.89590316572232, 57.631794332808525, 6.272512686522146, 5.356450425207806, 5.214454798185875, 14.54608445790312, 161.33762760531795, 48.46796559708895, 250.41300533086704, 29.058901760315948, 8.760858435208862, 20.903855934090487, 42.49911359612047, 46.46848232138079, 16.332284833448195, 33.106090780504076, 6.17762151108986, 41.52684174674203, 44.28966292852016, 131.69576881584558, 23.937256607185073, 9.18349902405279, 50.86992718509802, 134.45280294877782, 46.38455009432823, 46.939088313394286, 51.115802403475676, 10.070735531315675, 32.37198239892718, 13.023416378835666, 26.03151308650878, 50.75273394838832, 9.217049262107698, 16.15875920091503, 25.253610264594045, 92.46236971917372, 8.828561560623681, 112.24973302720844, 12.944821983400532, 5.772451662365768, 65.81942374219811, 126.97274970406308, 323.09397092353106, 90.96149703234983, 34.128244353087965, 27.17280356755458, 7.751980533709029, 16.12298184294343, 77.5825756769219, 67.43988094782863, 32.50863371835894, 92.34927668541052, 123.77822577656426, 8.042312846947464, 57.59686914857602, 37.45952124788096, 85.8933471940824, 31.56533491546206, 24.72884672892258, 113.72028861416173, 34.47933489963542, 24.970952614777357, 44.31844554113938, 68.99049361871539, 79.08204437003563, 62.885672037175475, 88.73069705554701, 34.561144068609615, 14.238949924542494, 49.74666506516098, 99.04981427720912, 32.73817670968031, 56.20104293988765, 23.19152672782834, 28.414937085193607, 53.20857590625575, 18.306712130186703, 20.67572555086023, 57.905606464475085, 20.226718369091834, 30.934453271369225, 101.71316710860133, 58.67366095901978, 75.35703874249208, 8.220805367171781, 176.99950888509258, 48.02844115968362, 55.680850859988794, 70.02008437253878, 25.011035566326797, 114.68524543699921, 69.10039937918873, 12.76480615267648, 11.430933421574588, 169.44822898263448, 47.292779842782004, 7.81764354399339, 34.7973402777971, 66.81172425419976, 102.01984820412318, 45.5353774556074, 62.54563235478561, 61.914025144478686, 93.9652233245131, 75.94957606445553, 37.8804055483967, 60.624363841828, 71.55640938822818, 10.13932855348801, 20.370387090671, 28.90561459611696, 53.037668544480226, 118.80621334920211, 54.7166768893335, 108.30524715990154, 44.27256121687261, 34.209095523407505, 52.725143942563356, 28.08652293567651, 116.97755507619185, 40.60281164529098, 25.480729791616753, 109.02350502259077, 54.916501820874196, 50.23947483411931, 40.00020379775872, 13.618021302384424, 134.1102734759615, 30.87601478421965, 196.30263435050108, 34.74864528772064, 148.31465589405357, 35.537256056502876, 13.781022413207753, 34.703109499735845, 33.90870470853349, 78.32774157216188, 47.55815600328543, 101.04477399184398, 9.5148102132412, 46.358014314086496, 60.96191066041089, 20.36081655833768, 31.630872431140567, 8.292612384873424, 86.88269745941822, 35.06254573759954, 14.444473607298667, 27.60864486636341, 57.84031152884467, 127.03167461163649, 67.16148643533857, 10.39991354000788, 6.861548015187175, 26.745948599175552, 66.07437594877757, 27.01432635686454, 80.90776651049387, 146.5824750388806, 26.585679633053385, 74.07053806064508, 130.9072818364841, 167.69041894656152, 37.25015028654893, 8.692837452204989, 7.738623951921687, 10.088223012833067, 98.3268657203455, 16.52290337053809, 35.22748183364857, 54.60644753300147, 65.25432144900412, 5.519243883119897, 17.18238458070983, 34.118981825420796, 29.139186442521364, 70.89619221429179, 42.01203589244342, 8.269772750520135, 10.211285162426297, 12.111959629793425, 17.97871195528745, 58.894835077031075, 6.44601980696372, 41.38919534355192, 67.24714378238444, 188.92231554457823, 38.74815319366298, 27.272353941195455, 16.73086329206193, 302.95736001111703, 52.57914369419228, 9.336447552059612, 32.768720500113695, 14.02678781252128, 16.996847487097142, 54.78709177228469, 68.9099515409825, 120.5622997024457, 180.35630196281184, 17.578896309344863, 7.310665912241012, 11.510837657670141, 28.97532092958553, 71.1103339037129, 29.957073791638535, 17.407993517615168, 37.70733698132361, 41.376034293082796, 86.19183721703155, 96.3900840403746, 18.529960270821995, 185.56031651895944, 6.221099828749855, 5.8667719943578005, 16.494723916522833, 5.618503038579919, 221.09723559496638, 6.911572116417225, ...])
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);
([4240360.1963879485, 5007350.0, 5045299.0698403735, 5159747.474946221, 7041484.061173286, 7081621.875, 7083055.809894966, 7089990.625, 7090301.483615932, 7091998.5381708, 7285557.136706622, 7298820.3125, 7299134.769316074, 7299428.845694096, 7299449.040195379, 7301379.25147493, 7305638.520354427, 7305666.788760822, 7305939.494266804, 7306431.25, 7306960.249783403, 7311028.125, 7311869.77532539, 7312012.5, 7312048.380019799, 7313152.915596143, 7314893.75, 7373397.308157181, 7375255.962666617, 7418357.8125, 7418401.026449461, 7421698.4375, 7421698.4375, 7424230.008365468, 7425525.863670756, 7430036.829824671, 7430071.383451755, 7432283.557000394, 7432284.208714882, 7434301.915223044, 7442759.960315326, 7442911.405632812, 7445707.0255002, 7446056.762468696, 7450633.80083645, 7453773.4375, 7470936.5012591835, 7477509.040679579, 7503298.4375, 7515550.0, 7565121.569051346, 7624593.75, 7624596.522137592, 7656643.75, 7661421.50298818, 7701602.065611944, 7701756.882062745, 7701995.118375542, 7702170.966720107, 7702276.725377423, 7702465.625, 7702942.041444725, 7703430.304028298, 7703550.216429714, 7703561.007157609, 7704170.3125, 7704448.866182728, 7704455.334433713, 7704455.711239467, 7704495.3125, 7705835.605072393, 7707261.653879953, 7708404.4072053945, 7712470.946701178, 7713115.625, 7713773.637781088, 7714785.9375, 7715189.041981423, 7720212.33912297, 7721958.157177403, 7731203.125, 7739825.0, 7760268.75, 7760363.9579085605, 7760432.451955026, 7761795.65375161, 7763665.284525976, 7763689.0625, 7764341.144386607, 7764356.25, 7765524.525774075, 7765603.567005849, 7765704.725156503, 7766069.062236841, 7767603.125, 7768229.95470198, 7769369.100159053, 7770701.700416446, 7792304.705061, 7793699.406311278, 7795792.504587013, 7796045.944294339, 7797155.902699325, 7799179.626970518, 7799618.75, 7802651.5625, 7803321.491146764, 7823112.5, 7826781.25, 7832682.194953377, 7853810.623949284, 7854056.602279009, 7856426.5625, 7856749.2499095155, 7856828.721329501, 7856866.80336386, 7856975.0, 7857460.857834522, 7858313.97335785, 7858324.388448925, 7858496.037535513, 7858889.0625, 7858902.123497449, 7859423.460711028, 7859447.164273988, 7859755.404815031, 7860111.506423272, 7860206.25, 7860449.850900686, 7861199.631784318, 7861324.775929296, 7861550.794699525, 7862020.794055253, 7862033.425987359, 7862086.483792969, 7862349.845473148, 7862435.759466461, 7862769.227326585, 7863362.480585397, 7863695.3125, 7863814.507229636, 7864073.1777709965, 7864200.0, 7864209.573444012, 7866250.781070592, 7868714.644916771, 7884119.911808541, 7885279.6875, 7891387.5, 7900521.172966226, 7905928.111495735, 7908210.883424281, 7908773.329768814, 7909267.979901228, 7911643.367745034, 7911965.309092605, 7912218.75, 7912529.52354259, 7913048.779170018, 7913481.25, 7914692.104299172, 7915975.326465402, 7916324.912193272, 7918481.25, 7927287.56842067, 7941392.1875, 7947676.977490742, 7950418.411275663, 7951324.142314102, 7952017.0605562255, 7955532.3980789725, 7955701.5625, 7955708.736694367, 7956207.542765453, 7956532.619756474, 7956715.625, 7957079.176204683, 7957537.5, 7957818.75, 7958096.875, 7958989.0625, 7959223.4375, 7959387.405742482, 7961705.522828508, 7962836.681730011, 7963039.651516989, 7963237.370424159, 7963423.096407975, 7963774.419921784, 7963978.981378006, 7964090.4899200965, 7964272.500900108, 7964660.623624, 7965049.414317454, 7965410.9375, 7965429.047080173, 7966151.5625, 7966303.368349737, 7967417.709090998, 7968219.512915751, 7968338.494551838, 7969263.255202789, 7969698.362450824, 7971235.545954837, 7971975.0, 7974926.184797066, 7975990.625, 7976219.197401822, 7976789.84721285, 7993610.677805025, 7993626.245161488, 7996260.9375, 7997340.397424761, 7997835.394037851, 7998079.074739071, 7998209.1567893, 7998312.979038375, 7998443.75, 7998585.9375, 7998859.72306052, 7999031.25, 7999320.003644718, 7999461.7130090995, 7999487.654130257, 7999851.5625, 7999995.903151806, 8000025.0, 8000941.7204026645, 8000956.164744383, 8000984.375, 8000988.130040935, 8001071.0475704875, 8001088.9659529505, 8001116.748115654, 8001211.332579475, 8001304.451867327, 8001407.787716731, 8001512.909138865, 8001709.406276627, 8002039.520031803, 8002095.343046666, 8002218.4421384, 8002365.85971815, 8002450.691575581, 8002578.125, 8002627.225472001, 8002957.8125, 8002993.700001541, 8003288.496121446, 8003289.11357654, 8003471.642248832, 8003532.8125, 8003580.218100428, 8003713.935878746, 8003783.637139164, 8004179.6875, 8004484.097592916, 8005042.108167563, 8005846.152366859, 8005905.739104883, 8005959.843136471, 8006615.974172903, 8006839.198526815, 8007001.610809258, 8007818.75, 8007851.043537367, 8008525.0, 8008612.42368927, 8008645.41617729, 8008870.3125, 8009034.42014675, 8010071.543398961, 8010450.0, 8010647.757015177, 8010699.5470643565, 8010704.894932181, 8011658.710691512, 8011685.9375, 8011704.567290877, 8011794.977022702, 8012581.25, 8012887.5, 8013129.6875, 8013500.934728411, 8013509.375, 8013547.823929866, 8013628.125, 8013762.298782079, 8013847.116751165, 8013892.078811675, 8014323.4375, 8014496.095463267, 8014867.837131979, 8015314.915205526, 8016339.0625, 8019120.3125, 8019374.642612097, 8028295.3125, 8029836.532212457, 8031607.465137307, 8032331.646112239, 8033144.195176921, 8064160.9375, 8064323.4375, 8064327.491275348, 8064803.837512725, 8065704.3592447145, 8069791.875845929, 8069889.733864741, 8072345.0518082855, 8075706.25, 8076029.6875, 8076874.813331968, 8077127.506809116, 8078420.3125, 8079008.658701017, 8079014.0625, 8079759.375, 8080385.848275923, 8080933.720462576, 8081593.75, 8082279.739612654, 8082409.375, 8083184.051388319, 8083713.78958546, 8084551.923113378, 8084848.277475748, 8089241.538099771, 8091026.5625, 8112314.86070064, 8120919.721204824, 8120927.528389333, 8121331.438953849, 8123946.866425489, 8125908.305167884, 8126808.98695291, 8128079.649239733, 8134676.28933875, 8139896.985723826, 8152785.236090418, 8153585.9375, 8156537.067113172, 8157827.740288958, 8169835.98967729, 8172040.625, 8174987.744932094, 8179340.20282822, 8182424.564248458, 8182770.040251464, 8183176.5625, 8184452.3499194505, 8185637.234395978, 8185641.645115024, 8185754.813124065, 8186620.3125, 8186659.078278607, 8186807.8125, 8187076.5625, 8187323.4375, 8187818.75, 8187881.818270317, 8187895.151242184, 8188971.875, 8189643.75, 8189681.106763969, 8199673.750103588, 8200717.300072466, 8202017.1875, 8202073.01312426, 8202705.217441846, 8203216.843825539, 8204818.664597538, 8204868.75, 8205844.754632853, 8207582.409471231, 8207620.1864332175, 8207745.3125, 8207747.013020975, 8208231.835001456, 8208281.25, 8208310.845428763, 8208320.145397752, 8208383.290606585, 8208424.758003772, 8208652.297307275, 8209074.146315394, 8209161.718743872, 8209162.667561221, 8209312.117604419, 8209504.507433344, 8209525.0, 8209834.375, 8210041.992730518, 8210290.698789986, 8210423.4375, 8211054.6875, 8211281.119832957, 8211416.736805277, 8211596.200582837, 8211787.5, 8211981.25, 8212751.5625, 8214295.3125, 8214621.531912073, 8214769.3357721, 8215364.0625, 8215399.355264276, 8216506.098165136, 8216885.9375, 8218124.821600845, 8218449.223251778, 8219286.769233331, 8220295.976385069, 8220340.41793629, 8222073.708335536, 8224533.410060562, 8225232.9637614405, 8225415.625, 8225421.30238688, 8225727.744144624, 8225988.993506478, 8227367.1875, 8229253.125, 8229524.309501952, 8230403.125, 8232824.190199909, 8234082.4618205065, 8234143.4993155245, 8234648.510318967, 8234704.6875, 8235461.70602395, 8235976.47076167, 8236829.6875, 8237260.9375, 8237407.8125, 8237412.5, 8239853.65827187, 8243737.435204787, 8243943.31570251, 8250222.158136155, 8253335.691024294, 8258471.449774055, 8259772.837034636, 8260858.951914908, 8263607.401785573, 8263636.655100479, 8265225.862493428, 8269243.75, 8271298.4375, 8271466.9092651615, 8272442.1875, 8273176.5625, 8274545.607989202, 8274595.3125, 8275508.967383758, 8275871.875, 8277165.382551476, 8277247.4213650925, 8277540.625, 8278607.617803051, 8278779.455187315, 8278853.810555179, 8279296.774457521, 8279318.481691882, 8279880.974188417, 8280661.594347514, 8281661.277601598, 8282142.1875, 8282163.96168721, 8282985.130943979, 8283381.067819394, 8283672.231802592, 8283885.096157507, 8284413.89570932, 8284736.854200114, 8284881.15522662, 8284904.291213373, 8285031.919285841, 8285907.8125, 8286292.848518369, 8286544.231886439, 8286795.3125, 8286931.808367164, 8287273.4375, 8287549.0483480245, 8287994.302268875, 8288221.875, 8288253.889423504, 8288398.284067725, 8288465.547464565, 8288634.270427662, 8288791.078768109, 8288826.5625, 8288950.374060836, 8289071.716388823, 8289093.75, 8289150.104214083, 8289398.4375, 8289954.883101992, 8290055.3986486895, 8290231.3691108, 8290252.96924875, 8290268.42889609, 8290334.123075518, 8290472.888453767, 8290593.311403689, 8290614.0625, 8290614.0625, 8290743.935194405, 8290818.75, 8290859.77494486, 8290919.897812312, 8290951.5625, 8290975.0, 8291093.75, 8291137.538806965, 8291162.5, 8291175.0, 8291205.197758119, 8291401.347787722, 8291415.625, 8291473.4375, 8291537.850927413, 8291695.3125, 8291697.403329962, 8291729.6875, 8291739.914999858, 8291766.221211611, 8291910.690754998, 8291912.5, 8291976.429730029, 8292029.6875, 8292046.131505047, 8292059.034560545, 8292059.375, 8292108.940280163, 8292228.839274626, 8292237.930435861, 8292260.405909116, 8292342.923111794, 8292376.805012762, 8292413.436599897, 8292476.175760632, 8292506.882626645, 8292616.247210777, 8292667.216266435, 8292731.96342103, 8292738.013892026, 8292836.299082939, 8292860.255728616, 8292870.3125, 8292903.125, 8292917.1875, 8292946.875, 8292984.3042589575, 8293031.25, 8293046.631320217, 8293185.500529349, 8293196.237329614, 8293225.727062774, 8293245.3125, 8293332.144293123, 8293348.580828085, 8293473.05803175, 8293493.364384864, 8293506.280563899, 8293508.345792848, 8293527.772613332, 8293556.027068587, 8293758.10656231, 8293794.9695595205, 8293807.8125, 8293909.713330568, 8293968.75, 8294023.808022976, 8294093.247135823, 8294225.0, 8294227.7026465805, 8294328.027595391, 8294343.973431291, 8294384.9321336625, 8294438.769432186, 8294491.786001652, 8294514.311421194, 8294688.19406235, 8294700.217819866, 8294731.25, 8294815.625, 8294885.9375, 8294974.463827853, 8295023.126218456, 8295044.743247593, 8295097.188096916, 8295119.922400347, 8295135.670495993, 8295151.188154142, 8295240.625, 8295291.648043809, 8295292.413576449, 8295332.8125, 8295398.4375, 8295455.235734038, 8295504.871118949, 8295646.702184066, 8295656.372259977, 8295682.8125, 8295953.125, 8296059.375, 8296082.79544977, 8296110.250300418, 8296203.125, 8296279.5473509375, 8296315.944151755, 8296321.875, 8296327.075012162, 8296447.985056544, 8296542.2638839735, 8296582.8125, 8296645.3125, 8296657.8125, 8296696.875, 8296770.168908958, 8296787.298188471, 8296829.221363135, 8297187.5, 8297195.3125, 8297327.703639631, 8297363.365251539, 8297445.3125, 8297461.195194359, 8297490.625, 8297534.673678549, 8297569.303017472, 8297626.235535876, 8297838.533786732, 8297857.8125, 8297925.0, 8297962.581973399, 8298192.124857634, 8298196.875, 8298215.336045871, 8298292.1875, 8298352.641861143, 8298608.714691671, 8298693.712656921, 8298765.885273588, 8298862.5, 8298863.071262621, 8298953.050719404, 8299174.01808564, 8299184.73145591, 8299237.278827137, 8299262.387456072, 8299376.5625, 8299411.400223309, 8299417.419707144, 8299500.0, 8299504.354565286, 8299598.4375, 8299615.385896118, 8299629.676129423, 8299685.186787508, 8299709.98352176, 8299731.25, 8299733.32389844, 8299808.612893414, 8299879.993462354, 8299906.56086384, 8299932.128421451, 8299946.050384449, 8300072.019324471, 8300168.025665366, 8300171.547772603, 8300237.43543459, 8300251.031491069, 8300271.875, 8300278.659073979, 8300314.0625, 8300366.026096877, 8300433.505673696, 8300439.3554545995, 8300476.5625, 8300557.8125, 8300603.116439852, 8300678.766799457, 8300740.625, 8300744.951497385, 8300831.924049687, 8300832.8125, 8300865.833630337, 8300886.923723172, 8300970.381335325, 8301053.125, 8301086.090128758, 8301107.175901325, 8301142.1875, 8301154.6875, 8301165.76425799, 8301252.141635337, 8301268.75, 8301389.496946675, 8301431.25, 8301470.630669194, 8301470.987005343, 8301501.35098988, 8301508.871474895, 8301657.8125, 8301742.104877738, 8301784.584693943, 8301859.702134741, 8301859.817036429, 8301865.03639307, 8301874.693631551, 8301912.3447663905, 8301913.527342508, 8301921.3943979945, 8302034.375, 8302041.80280433, 8302042.61270082, 8302056.25, 8302060.9375, 8302099.189386553, 8302141.032097241, 8302150.270049284, 8302167.542067908, 8302228.047319608, 8302385.234392561, 8302388.022849014, 8302396.875, 8302405.042373977, 8302449.004347635, 8302511.8583851615, 8302557.8125, 8302579.175194116, 8302588.3586611, 8302890.625, 8303015.625, 8303135.05126951, 8303170.414908385, 8303410.9375, 8303415.215109935, 8303423.851805384, 8303487.233367805, 8303905.254494545, 8303935.756540446, 8304084.081134248, 8304474.015095086, 8304717.1582527235, 8304732.8125, 8304796.990411985, 8305206.25, 8305285.9375, 8305295.3125, 8305638.11656228, 8306083.166392767, 8306224.31052235, 8306558.443508287, 8306817.970972901, 8308188.138837641, 8308392.1875, 8309015.009551955, 8309124.911947339, 8309412.394003874, 8309886.918651359, 8309929.153032424, 8309979.06330189, 8310313.745989611, 8310343.163267588, 8310421.875, 8311033.3758434225, 8311607.571085763, 8312154.6594086345, 8312545.610292122, 8312951.5625, 8315260.342723328, 8315668.439442583, 8316637.5, 8317285.578087835, 8321411.789661745, 8322612.5, 8325893.75, 8326579.6875, 8327251.5625, 8330614.104447252, 8333908.230455671, 8334636.365111863, 8334709.267237575, 8335521.875, 8341546.875, 8344437.965246884, 8348043.75, 8381782.050732341, 8382330.688830182, 8383179.878198478, 8383673.4375, 8384205.010082226, 8384690.412566021, 8385978.944008422, 8387226.5625, 8387249.9553178055, 8388664.799408983, 8390491.901962636, 8391126.38224323, 8396990.625, 8397518.75, 8399432.405418929, 8400368.75, 8400535.9375, 8400541.38664046, 8400587.5, 8403196.260651967, 8403570.172282329, 8403679.6875, 8404002.98659029, 8404015.91147799, 8404138.87170088, 8404393.75, 8404716.526245229, 8404719.19437036, 8405052.479640108, 8405199.42250707, 8406132.8125, 8406256.412130268, 8406256.733433142, 8406545.578093652, 8407343.75, 8407532.487924194, 8407589.45584282, 8408612.778901866, 8408662.824075362, 8408712.56459275, 8408765.625, 8408798.91911475, 8408878.125, 8408901.070147218, 8408975.0, 8408985.842368968, 8409146.875, 8409202.576652927, 8409227.897899583, 8409244.911025975, 8409563.360271493, 8409563.852377037, 8411448.141726617, 8411580.177467322, 8411725.629637375, 8412912.5, 8413318.75, 8413660.9375, 8414682.61509796, 8415221.875, 8415818.039603129, 8416364.0625, 8417101.5625, 8417344.967422673, 8417345.679196002, 8417588.629355196, 8417635.735754987, 8418054.182677189, 8418166.237570113, 8418170.004451906, 8418172.893010542, 8418329.6875, 8418571.087931013, 8418673.4375, 8418707.686018322, 8418740.517276026, 8418749.445684083, 8418890.134425413, 8418928.125, 8419058.402689513, 8419574.966998696, 8419854.380466413, 8420227.406429827, 8420450.18570348, 8420455.943017686, 8420459.375, 8420461.493790895, 8420462.5, 8420710.9375, 8421017.1875, 8421127.955692902, 8421479.545308068, 8421555.966198733, 8421664.859590756, 8421746.875, 8421893.371250004, 8422003.125, 8422203.125, 8422414.884965025, 8422433.75457272, 8422457.8125, 8422496.750030983, 8422521.448888231, 8422759.375, 8422840.711319165, 8422898.338491581, 8422925.0, 8422959.401810633, 8423001.80190557, 8423089.109640995, 8423139.0625, 8423332.240819773, 8423443.742983546, 8423511.43606599, 8423731.25, 8423806.25, 8423860.540754775, 8423912.5, 8423931.009140411, 8423951.696807103, 8424129.375998171, 8424164.677704467, 8424175.0, 8424176.22062196, 8424276.346996088, 8424322.817430913, 8424373.325086746, 8424571.406226218, 8424704.50552212, 8424718.959224615, 8424853.125, 8424935.9375, 8424935.941700961, 8424989.58180857, 8425017.198894974, 8425107.565117221, 8425346.875, 8425415.488184636, 8425456.201954417, 8425623.4375, 8425705.931936549, 8425817.1875, 8425838.970858095, 8426011.409518939, 8426324.903143363, 8426413.393832263, 8426806.168726027, 8426860.77932396, 8426896.742790673, 8426920.20615848, 8427040.625, 8427048.4375, 8427399.652874961, 8427657.8125, 8427756.946601408, 8427770.671927555, 8427772.652285188, 8428139.5046765, 8428141.803619461, 8428181.677906003, 8428215.625, 8428376.5625, 8428379.399068043, 8428425.652570857, 8428442.1875, 8429025.01077809, 8429046.875, 8429216.132268583, 8429399.968086543, 8429424.32224573, 8429530.30635643, 8429540.274935827, 8429815.522029119, 8429993.482895158, 8430102.61849277, 8430121.34249182, 8430653.595329048, 8431040.625, 8431074.96546155, 8432103.975454265, 8432120.847853722, 8433317.85353801, 8433465.63095973, 8433594.622653153, 8433845.049858514, 8433895.764199872, 8434045.160186278, 8434170.535879157, 8434485.9375, 8434579.804803247, 8434911.007238124, 8434999.111511303, 8435039.294525564, 8435092.1875, 8435100.0, 8435326.5625, 8435458.337507568, 8435814.0625, 8436089.0625, 8436124.395119328, 8436367.184957348, 8436891.32844717, 8437109.375, 8437204.313706838, 8437839.751372186, 8437884.730445854, 8437895.392818127, 8437943.75, 8438067.886511588, ...], [10.138099645373096, 47.32729676922383, 18.06054565811126, 8.631545128116203, 23.575716790410798, 63.3071224072697, 10.503065954250847, 57.90076508911868, 27.05605690235164, 15.33962375198221, 19.90208891572244, 61.61106531646663, 8.506718973717081, 59.00657265203701, 31.418599278399157, 22.15594014827593, 34.2346931011651, 22.56642472289926, 9.725274165107928, 70.48301602332549, 19.09556974152283, 73.28155949881933, 137.51763420634083, 42.047027089854666, 27.43675527282123, 139.28776189278915, 88.88412538161431, 23.929402418094863, 10.706444925365698, 95.64302587090823, 39.508626938866556, 62.37240899528071, 47.0579109822625, 16.32391840908862, 12.812601317328367, 17.786268682602447, 13.349253158255669, 59.095111808451676, 14.343450596688383, 81.43533787837112, 34.75386419339803, 46.41825495477194, 5.873678954559835, 17.335786601499144, 16.28017016983366, 103.86064877491768, 18.01867473577155, 19.252880176486705, 68.55680989419542, 29.00721180668109, 37.93553088219239, 67.9740781886456, 27.619651613643942, 62.61922044742231, 103.1180871997274, 64.43944219291717, 9.929882452037765, 6.725360233101606, 268.1111438136313, 118.23729033584625, 100.83992318693073, 99.47001252906423, 174.9283634684237, 5.830169670815559, 5.945494772823935, 52.46311438890589, 7.766010200576583, 122.39800694009392, 78.37815878128194, 102.12827729612412, 193.03134369731112, 6.362159205309444, 59.32704763529504, 33.5480951004917, 43.79385634058665, 16.758921068422175, 34.13959141942318, 43.397987655608155, 106.99396586082324, 106.3447804448488, 29.81571436669196, 85.20778405267413, 64.27873067442016, 69.71611687651266, 5.235165197674851, 16.42402771272798, 29.22443866050567, 37.66938374668915, 12.049764123189508, 46.36689361034995, 78.07093565820615, 17.504283282409986, 23.499330679955868, 11.653541185587073, 40.114981141657736, 25.036050886454937, 5.633714008537886, 15.541818002914319, 15.008868865769948, 20.60678632382716, 32.583361725224286, 12.283274495286507, 23.76178695345907, 37.53105779223468, 51.99950106680556, 69.51022540431, 13.234446415696492, 40.22504925546205, 34.07879995131634, 152.73142729468418, 23.579179619856017, 6.835935067128376, 30.311070108704634, 30.84965839131182, 43.78866634064608, 22.732391894614082, 65.4829278664499, 63.50751102341256, 14.612288891503091, 16.361722201928668, 18.67889783232504, 107.02516147270052, 12.134587160063843, 6.090516289939248, 21.66667169064136, 12.47062438993783, 11.619682262060792, 80.5937611095218, 25.890759756680076, 134.09229224247537, 176.77925259605652, 19.181572864586816, 16.700768229696763, 127.48402997591423, 5.360996241368363, 10.894466647449786, 63.873313140910696, 17.13760178708143, 68.78806307363215, 28.826469703899747, 159.35807363851612, 24.279148617874394, 73.7356983059942, 11.45273247322484, 35.01140001446275, 55.87655186030225, 5.681722810502476, 98.33155952162748, 73.17166153690454, 29.31548630217393, 183.27136176077227, 57.981350001631895, 14.54619481388112, 62.170277096567915, 22.753991896600485, 13.860189845217002, 92.23498509392658, 35.043787080289825, 46.526058490984354, 66.30415316028727, 19.83033844270829, 11.687221936235925, 84.16264325011603, 37.13372960008935, 15.208871592493523, 30.304716262715257, 8.518940337658437, 35.82002855819195, 84.67340196747233, 35.032229161304954, 7.459924140893765, 76.7781424477022, 35.78992787912233, 39.730488595307335, 35.059993517050714, 88.44710377509305, 49.85534441865785, 59.77462651293209, 36.09144239173133, 39.05560376465098, 65.4170438077322, 50.56527881903557, 20.01363018080195, 12.744149501673213, 12.531428141281522, 17.789465447369928, 67.90526202384868, 35.00848300850867, 40.951260018454505, 44.16900928831904, 26.113777195346596, 18.019558829980607, 23.575098540233814, 20.678932111017218, 71.687400279853, 122.06768644792461, 44.994189094234414, 5.627650197632655, 12.054211424147114, 12.57417857976828, 23.480663137944184, 6.92426295022829, 27.123340517923317, 22.64781057892052, 51.01079538784739, 37.07082356798778, 28.725014909102267, 35.08218899598202, 19.10735923813659, 100.87335069154429, 20.621450126325712, 112.30385077664334, 65.32113994319013, 6.0333502888706185, 8.861972363722591, 24.854905017540446, 149.7068358675735, 48.635262700257385, 67.64038976883603, 23.843142848735184, 150.12022275783835, 139.53886963883224, 17.615130914310285, 9.465220449851584, 75.2944041277965, 49.026163538261294, 35.677890478365946, 21.827723470761228, 10.99701130992694, 28.780206428912763, 82.50784431056819, 33.85575686234317, 26.75121871456796, 84.00527951750075, 11.807010431661887, 5.521752794677598, 21.485474061751827, 14.60324854204583, 6.769766809698267, 7.777548790793838, 68.92888708729039, 23.65083736217807, 17.612625835757186, 9.993704859146089, 48.56008713944016, 56.73185955297153, 93.83836352370679, 14.754302755324893, 89.46493704440854, 11.208492399412718, 36.21913129239586, 245.30294344906127, 27.89991803968684, 123.87878918322122, 34.07030507545486, 106.37963745538704, 24.043689517073407, 27.048216141768727, 10.159255871720045, 13.2963055900574, 31.09390111227724, 16.463378986148093, 45.57598842158373, 56.46999678176376, 86.33175792225143, 105.19371252960389, 30.49974573026024, 39.93535858485857, 32.889451667891585, 34.22360995796776, 15.116425872814839, 13.812192354579588, 133.99912214236028, 63.44140558002313, 29.970812707006804, 92.53001580741662, 19.99696819484656, 38.9740999058563, 27.16167368064233, 13.80041160215754, 56.2458428356804, 65.6669905031443, 111.9662228415944, 8.851577481831516, 31.022637288294053, 42.11332909319252, 81.41366271453244, 69.918317651254, 7.693079566581537, 20.467285687737814, 71.12364937789162, 8.749101314988309, 9.948573638747016, 12.70504072204075, 103.0055716289869, 69.1826796290461, 149.59618072687854, 38.03260046299647, 71.35120716887175, 131.61331364520765, 11.808964305653939, 17.42070619551438, 98.13171792751504, 131.04430094936563, 20.25536248996282, 12.459870210704374, 32.12842532589914, 118.59617477686001, 18.314251489539377, 7.054569403285424, 52.8208006256387, 202.9812112489435, 30.967515339840084, 8.858206599472496, 77.4983899488334, 63.798611436092514, 138.99112568413267, 49.04837258546758, 26.876604671325154, 6.389158845109788, 135.03357139619666, 11.21015107128973, 53.20903086049925, 23.453748986614535, 24.102998386257426, 7.739089192416121, 10.886463720217039, 20.121867671250303, 72.28796221489516, 19.207767432008236, 18.505726887637227, 18.472574119149265, 13.095360505749337, 15.061640262415976, 515.5432913468344, 10.570893957193093, 117.50210540842907, 81.86679263048921, 25.076545939430364, 56.55687099901239, 42.46112495666665, 30.4689972802284, 60.4472926660745, 9.37591517286809, 45.25294021092823, 143.48555742508648, 39.777973141881205, 13.505520419501174, 9.111343385952209, 79.33480699607925, 128.276511981632, 9.116483090675823, 68.09087033358557, 15.44297041369574, 74.90333868074718, 98.53457433115679, 41.25011823166804, 98.83357605137238, 52.74394166656558, 48.865153073747514, 55.197608952844824, 59.08644497008787, 99.62803886244458, 82.6304413448826, 35.726694066394536, 9.61049603770236, 31.878255014764555, 32.94547438975835, 45.54498626991672, 5.741335928594428, 120.76073095882874, 6.746575565543248, 34.22812208758673, 20.934634734233008, 22.51823997610231, 38.29969983478194, 36.11667024401511, 20.410439058201327, 9.880423842883372, 33.154114347843894, 60.7342821006669, 25.61098537028943, 17.1419350250278, 128.0050605612957, 6.006057667169623, 18.56670584225235, 29.515733750990027, 15.62110085076674, 27.19115570195648, 10.857451350146302, 32.6433438674435, 56.44502773386853, 38.401115843982645, 58.988560464558674, 31.32308906961481, 93.92142523521669, 99.79985876776405, 47.31969819195762, 19.913397466014413, 68.22452956610302, 67.4712375422421, 41.53110862795056, 33.348822420644765, 139.1753913055482, 8.622701543512836, 30.4536651227578, 5.502586823265165, 66.58235032127996, 97.0721215107669, 165.28513011134626, 7.914509049028996, 24.495656168911324, 5.99938382840063, 25.0151914919898, 16.085126805478954, 5.74587388591009, 5.952687426159629, 74.8433996046812, 13.13148000292535, 63.40248026987962, 7.578473067582992, 129.56592960053433, 54.995415175925764, 19.7822756546659, 56.91620010409605, 77.30285889050344, 23.12427063500782, 5.3334044029215395, 86.23785407674208, 91.03886083646552, 12.587096537259447, 14.603006705529209, 40.637794643534974, 67.12523803198896, 42.07559421882437, 68.0497219340219, 60.481251382371504, 68.07700121799344, 53.231309272032505, 8.442203254199507, 18.929972401751122, 118.1427770324688, 46.678165127491525, 22.296286847606186, 96.48569186847635, 6.91575663442514, 5.18594730339544, 93.52374023886021, 76.32796216547213, 21.376408042565323, 52.65374684253848, 62.859025270542546, 338.37949220123477, 35.15796534831162, 22.466990225531276, 66.21678420444822, 56.86839042682605, 36.28145158002698, 69.14421641287139, 25.195973408149346, 8.167431910421765, 6.162415451773025, 32.04616394401833, 15.894292595474191, 22.805099055775187, 9.956286186675943, 70.55156730896665, 43.11147238051595, 195.7107638089458, 10.064394456470865, 51.42014159531778, 67.98433098582693, 18.651913672685343, 25.615765522473602, 6.188914326611029, 26.781459787243456, 9.017385792753474, 18.30049980599874, 80.36734147182928, 18.24607817072361, 38.248543961189625, 71.47382622640973, 6.880346492449902, 42.624690155790155, 17.924713181432356, 9.84653642982562, 43.426809899562585, 5.054665591654633, 91.49674690283335, 83.4328345443291, 167.88428963616389, 166.13020551054643, 33.76527371917325, 35.773089968692524, 6.07175891095438, 100.11591946044994, 32.25887631202168, 43.244776211551326, 7.675549545160529, 6.604664223610617, 15.415808246850647, 25.786532436641586, 5.195317628500428, 14.061013824571916, 8.906632789078996, 6.420467252838667, 41.19626717480779, 28.645093093593953, 16.249948354819256, 44.317550386106134, 11.816224142308354, 8.078817273173458, 62.98631907749891, 59.66049847545701, 56.80623784471929, 34.34568836897192, 47.90382277870361, 60.074225382428835, 12.031402068927626, 110.1979675765895, 34.181914080221375, 50.29686536995807, 169.41090336489762, 44.187440118003224, 80.89151576451303, 73.5129005369636, 10.173808221904613, 12.207841794403333, 113.11728028210506, 88.48371952882215, 10.92633236157042, 40.4562050079405, 92.13833096012455, 30.688591670711837, 32.38872111431262, 28.189523639143207, 86.74469182348157, 5.257354155248667, 46.68464856954614, 6.919824127642197, 7.186694263435065, 20.322845539339397, 30.299968532758612, 291.67136257128504, 5.422805484254019, 11.17297026932606, 12.461902067456952, 59.578756853386835, 25.180077382947992, 75.31924361844015, 186.2082476893423, 31.306853146358655, 42.81689552924267, 44.477891786255185, 14.678563019881778, 107.32289575159226, 130.03202457073908, 117.23091524396541, 10.258547909666369, 122.92787274075422, 71.05707053679852, 29.957937085078992, 76.66122389456322, 7.0251501509038015, 9.025323716402008, 5.816245199536817, 17.45614726404134, 5.5948422513746, 5.334340234102094, 165.14822752416626, 267.7156127299914, 101.50232402183426, 32.12052371309123, 145.21261704309478, 16.57072876136466, 169.39178565040862, 79.53547371455396, 30.593771114371954, 68.46729754272704, 15.867482556532769, 9.851546618309596, 55.300237020361905, 8.085088128630037, 225.96185312247047, 18.466174863679285, 5.543746247098329, 52.23655452207929, 74.60876037303854, 154.34715471916903, 85.43841637208077, 13.874430486997525, 5.152312749825621, 5.1046687664794375, 6.688047491534654, 24.181572942982967, 35.07972719602172, 61.68649444739542, 18.331764587854565, 17.135907751271855, 85.98851646499651, 42.171474573782056, 5.7425606496121135, 5.1344459570780705, 125.64454456013513, 245.86145340785947, 29.933420021542666, 37.61408214504985, 108.5510563540553, 39.451835648703195, 7.372262339390366, 35.80814235972415, 71.97155894401334, 8.46288278268348, 44.37706607408246, 34.82325322443073, 12.433264642840626, 35.53302467581012, 71.11205040178345, 61.6842461699198, 33.60782574925567, 33.38555493673441, 25.97783706158779, 14.224317725091801, 65.74524330666432, 66.28414171450572, 43.24304444626633, 13.546708116486966, 7.949338966360007, 43.02757967763723, 5.350830155623494, 63.87154835341235, 16.21683366302928, 8.602403775911817, 40.277374662436586, 22.371213826417204, 68.32412957523674, 42.9266520550653, 11.25830036100123, 14.708003209335246, 52.850943420197865, 13.943768435756423, 136.31239241884924, 21.662964421869358, 20.0302865816686, 33.492991995508824, 9.561622424649942, 39.48188200638743, 9.866149663482368, 19.547411275921707, 132.66083575590494, 72.43595397900786, 25.534268451101962, 26.482109573499674, 50.02787340929599, 15.084094967572625, 149.05550571209545, 38.8724071703043, 25.00910686719658, 32.072484872237936, 117.01949471211023, 7.599130310046968, 232.20457433867512, 89.1460276554915, 86.40794669544547, 17.329660316599593, 27.526938721770513, 11.642173923957166, 33.56350525803251, 27.406753176435696, 30.790466459680182, 15.521701795307173, 11.765594516330882, 94.74780567040527, 46.887679904394815, 219.94608682809962, 65.48821146536915, 6.337118251444108, 98.10384554080754, 52.17938153634704, 130.9643929016996, 11.356813361217387, 59.186550956973754, 63.03244561717556, 14.908982218170827, 7.301040024056125, 82.73769237550663, 74.9579124822378, 168.78457713205125, 40.88967369818747, 154.72975860953142, 61.94202563739972, 108.35715198875883, 68.64215386344463, 230.22987336632804, 23.764448279994618, 52.51250816068018, 50.61781539689805, 22.013059276687965, 12.172147594972861, 40.36654898210516, 11.882218924439991, 71.16366880519897, 38.19835056280847, 12.120073593765277, 45.18794626387387, 47.0313031255412, 49.385998395591145, 133.68814902659466, 25.414370804812446, 5.838588556397018, 11.89689311539464, 14.15686285543759, 23.669732988777042, 14.381097898085056, 13.230778351424314, 73.45245346130616, 62.7405889783251, 10.575311790840559, 134.0329011236881, 80.71596356549148, 50.368564016507484, 12.548891500069615, 109.53846501395543, 16.081449953979746, 16.490327206367386, 54.301508481153874, 19.6809940136934, 65.86519590280858, 55.00498248255856, 16.491859621844217, 12.146662483274593, 183.91797146870167, 51.6911885837253, 13.29246899873472, 19.67515948539769, 57.768716663383316, 39.29639539204481, 92.91798861308371, 75.22618949633649, 54.412228069476065, 31.04448900841118, 21.917359942099228, 24.186536698467332, 17.65573259105048, 19.68248526437966, 6.441991199340502, 19.384786394132913, 27.95887273067781, 98.20999457893933, 11.31302573671075, 64.81823365663898, 164.5568847977821, 55.47628529505918, 205.50665648869543, 9.649708142074175, 5.056569459102224, 12.281592512200605, 120.8682505669824, 7.851880218741313, 92.67156265213553, 13.020604044453787, 81.79134074004999, 26.59147564012198, 20.150639238751673, 68.67572066890828, 8.85404778311096, 7.4926369217793045, 34.804679248408156, 184.82459083720872, 17.63381741023284, 6.44990181965032, 71.10510713399341, 11.627425039005049, 37.22669098492599, 7.995246235585045, 10.674667331658837, 112.90897399923057, 23.020383284351897, 19.62351134722596, 65.96880952868348, 63.088452733569994, 108.89590316572232, 57.631794332808525, 6.272512686522146, 5.356450425207806, 5.214454798185875, 14.54608445790312, 161.33762760531795, 48.46796559708895, 250.41300533086704, 29.058901760315948, 8.760858435208862, 20.903855934090487, 42.49911359612047, 46.46848232138079, 16.332284833448195, 33.106090780504076, 6.17762151108986, 41.52684174674203, 44.28966292852016, 131.69576881584558, 23.937256607185073, 9.18349902405279, 50.86992718509802, 134.45280294877782, 46.38455009432823, 46.939088313394286, 51.115802403475676, 10.070735531315675, 32.37198239892718, 13.023416378835666, 26.03151308650878, 50.75273394838832, 9.217049262107698, 16.15875920091503, 25.253610264594045, 92.46236971917372, 8.828561560623681, 112.24973302720844, 12.944821983400532, 5.772451662365768, 65.81942374219811, 126.97274970406308, 323.09397092353106, 90.96149703234983, 34.128244353087965, 27.17280356755458, 7.751980533709029, 16.12298184294343, 77.5825756769219, 67.43988094782863, 32.50863371835894, 92.34927668541052, 123.77822577656426, 8.042312846947464, 57.59686914857602, 37.45952124788096, 85.8933471940824, 31.56533491546206, 24.72884672892258, 113.72028861416173, 34.47933489963542, 24.970952614777357, 44.31844554113938, 68.99049361871539, 79.08204437003563, 62.885672037175475, 88.73069705554701, 34.561144068609615, 14.238949924542494, 49.74666506516098, 99.04981427720912, 32.73817670968031, 56.20104293988765, 23.19152672782834, 28.414937085193607, 53.20857590625575, 18.306712130186703, 20.67572555086023, 57.905606464475085, 20.226718369091834, 30.934453271369225, 101.71316710860133, 58.67366095901978, 75.35703874249208, 8.220805367171781, 176.99950888509258, 48.02844115968362, 55.680850859988794, 70.02008437253878, 25.011035566326797, 114.68524543699921, 69.10039937918873, 12.76480615267648, 11.430933421574588, 169.44822898263448, 47.292779842782004, 7.81764354399339, 34.7973402777971, 66.81172425419976, 102.01984820412318, 45.5353774556074, 62.54563235478561, 61.914025144478686, 93.9652233245131, 75.94957606445553, 37.8804055483967, 60.624363841828, 71.55640938822818, 10.13932855348801, 20.370387090671, 28.90561459611696, 53.037668544480226, 118.80621334920211, 54.7166768893335, 108.30524715990154, 44.27256121687261, 34.209095523407505, 52.725143942563356, 28.08652293567651, 116.97755507619185, 40.60281164529098, 25.480729791616753, 109.02350502259077, 54.916501820874196, 50.23947483411931, 40.00020379775872, 13.618021302384424, 134.1102734759615, 30.87601478421965, 196.30263435050108, 34.74864528772064, 148.31465589405357, 35.537256056502876, 13.781022413207753, 34.703109499735845, 33.90870470853349, 78.32774157216188, 47.55815600328543, 101.04477399184398, 9.5148102132412, 46.358014314086496, 60.96191066041089, 20.36081655833768, 31.630872431140567, 8.292612384873424, 86.88269745941822, 35.06254573759954, 14.444473607298667, 27.60864486636341, 57.84031152884467, 127.03167461163649, 67.16148643533857, 10.39991354000788, 6.861548015187175, 26.745948599175552, 66.07437594877757, 27.01432635686454, 80.90776651049387, 146.5824750388806, 26.585679633053385, 74.07053806064508, 130.9072818364841, 167.69041894656152, 37.25015028654893, 8.692837452204989, 7.738623951921687, 10.088223012833067, 98.3268657203455, 16.52290337053809, 35.22748183364857, 54.60644753300147, 65.25432144900412, 5.519243883119897, 17.18238458070983, 34.118981825420796, 29.139186442521364, 70.89619221429179, 42.01203589244342, 8.269772750520135, 10.211285162426297, 12.111959629793425, 17.97871195528745, 58.894835077031075, 6.44601980696372, 41.38919534355192, 67.24714378238444, 188.92231554457823, 38.74815319366298, 27.272353941195455, 16.73086329206193, 302.95736001111703, 52.57914369419228, 9.336447552059612, 32.768720500113695, 14.02678781252128, 16.996847487097142, 54.78709177228469, 68.9099515409825, 120.5622997024457, 180.35630196281184, 17.578896309344863, 7.310665912241012, 11.510837657670141, 28.97532092958553, 71.1103339037129, 29.957073791638535, 17.407993517615168, 37.70733698132361, 41.376034293082796, 86.19183721703155, 96.3900840403746, 18.529960270821995, 185.56031651895944, 6.221099828749855, 5.8667719943578005, 16.494723916522833, 5.618503038579919, 221.09723559496638, 6.911572116417225, ...])
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)