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 = 46537
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);
([4051164.0625, 4095983.0167907444, 4099499.8541189423, 4100128.125, 4100136.33334298, 4100247.917048518, 4100349.900798569, 4100373.7663041004, 4100480.7997963307, 4101556.25, 4102291.350306708, 4104709.1744763954, 4117217.1875, 4247289.186146422, 4267225.0, 4276370.384620449, 4277651.5625, 4280145.3125, 4280241.811091502, 4312699.387879882, 4397560.503002172, 4429236.132321757, 4434125.8095679665, 4434300.9320681635, 4434896.885758416, 4435926.5625, 4442106.249880477, 4444305.859578892, 4454726.474301451, 4454985.390902744, 4467027.654782926, 4470086.981868467, 4480007.8125, 4481999.230169345, 4482396.734499546, 4490478.628881262, 4524598.414653022, 4524883.730506191, 4529572.574862887, 4575295.7719766665, 4585927.53385607, 4590224.575395535, 4590700.204058118, 4597659.375, 4622532.432653511, 4631565.625, 4632956.743219628, 4633121.671138074, 4633431.023674547, 4635309.169223906, 4635335.592990409, 4637338.42072891, 4639221.082329904, 4640721.875, 4641519.179852891, 4647113.411699109, 4648131.468626149, 4648460.859519508, 4657601.241106923, 4658221.517204242, 4658969.267211772, 4683896.812679682, 4684193.772305919, 4686272.766043782, 4693935.690520462, 4715756.25, 4770738.664088914, 4821649.237054461, 4823617.80063033, 4831834.375, 4834275.598022434, 4845609.375, 4846361.009593488, 4850582.8125, 4852344.79334246, 4853513.512743636, 4853584.375, 4855320.701789661, 4856532.984778556, 4858235.801536166, 4859815.625, 4859816.825219373, 4863926.5625, 4866214.0625, 4866296.501332899, 4867313.947928765, 4868298.038669012, 4868546.654942679, 4868856.072015878, 4869168.75, 4869310.9375, 4870044.634098094, 4870150.0, 4870190.383410267, 4870876.5625, 4870989.981902539, 4874107.8125, 4878568.75, 4878706.538231654, 4879265.322692672, 4879531.444972316, 4880774.533042018, 4882450.0943054315, 4882583.269107342, 4883470.3125, 4884015.669196115, 4884671.579186683, 4885480.147469337, 4891703.125, 4895020.3125, 4895028.7524220785, 4896818.75, 4898215.625, 4898220.91915297, 4905016.673268246, 4906500.998270243, 4906755.37644134, 4907369.752418174, 4907371.72228377, 4908204.192162107, 4948694.5677756155, 4949646.38080008, 4953009.375, 4954659.214089067, 4957407.483836811, 4963204.6875, 4963691.289185431, 4980437.404108574, 4984620.50912158, 4988094.071038344, 5007062.473274467, 5008843.758218667, 5010074.175898229, 5010672.912264962, 5011433.875399673, 5012190.625, 5012275.590369626, 5013022.432059876, 5013395.861075012, 5014207.934529894, 5014655.560615555, 5018296.01355696, 5018315.625, 5018330.934686351, 5018339.0625, 5018505.706735285, 5018787.5, 5018805.491635838, 5018950.05733111, 5019096.369469698, 5019118.75, 5019229.661067671, 5019237.859599489, 5019363.3351113, 5019388.390011012, 5019391.347982668, 5019402.414581682, 5019405.734623456, 5019462.218881821, 5019517.1875, 5019519.575866837, 5019520.026514045, 5019532.234646892, 5019548.669553991, 5019594.636248169, 5019637.510185278, 5019807.188713345, 5019860.9375, 5019879.160105442, 5019907.104677209, 5019914.0625, 5019937.670283368, 5019939.0625, 5019979.1567622805, 5019994.789273995, 5020016.747557978, 5020023.309630282, 5020052.072351683, 5020107.183281749, 5020148.439614539, 5020216.219402694, 5020243.75, 5020277.320684788, 5020403.125, 5020416.524295036, 5020435.9375, 5020445.633366611, 5020445.779218198, 5020461.9303939305, 5020475.0, 5020482.8125, 5020488.504453033, 5020548.603632594, 5020585.199442183, 5020595.72527024, 5020621.181320212, 5020642.946147837, 5020674.9384731855, 5020684.047589855, 5020698.4375, 5020722.012397793, 5020740.625, 5020743.75, 5020769.686721131, 5020782.655277098, 5020821.49704248, 5020847.929727901, 5020935.9375, 5020959.679730673, 5021030.594169931, 5021097.862301357, 5021361.407646047, 5021568.523753359, 5021607.211505689, 5021662.466218548, 5021878.773530738, 5022093.805331482, 5022583.12207472, 5023005.7140278, 5044596.290715118, 5325084.186944461, 5325792.998208909, 5362165.535498296, 5426492.327210474, 6517607.338572955, 6654913.815469841, 6924316.552939807, 6924979.232665235, 6925735.614275104, 6925899.573536708, 6926406.25, 6926606.16024306, 6926808.752020092, 6927602.704857156, 6931111.45822507, 6944551.5625, 7171807.8125, 7216948.252779427, 7224810.9375, 7229507.8125, 7231635.440301106, 7232687.5, 7233325.293692441, 7233345.925021656, 7235025.1880421005, 7243419.154409217, 7251553.515905689, 7253990.625, 7254629.6875, 7255395.591882018, 7256138.087175984, 7263052.346996088, 7264045.549176633, 7264329.6875, 7264935.9375, 7264951.562002583, 7265252.386876954, 7265509.160877614, 7265868.75, 7266101.533024218, 7266162.5, 7266358.911512508, 7266681.645433435, 7268101.5625, 7276482.676764842, 7278767.1875, 7279035.9375, 7291539.2209984725, 7309994.669139103, 7320840.31202146, 7333385.755205003, 7339003.963075155, 7339482.951426062, 7364029.6875, 7365066.019198464, 7365207.614283574, 7367106.996013996, 7367155.364236558, 7367155.604151868, 7367385.9375, 7367427.975179796, 7367523.4375, 7367528.125, 7367637.5, 7367638.923415238, 7367709.85747349, 7367822.349450029, 7367873.282170754, 7367989.0625, 7367990.625, 7368072.710901921, 7368297.494077441, 7368405.399779426, 7368453.125, 7368497.507073258, 7368607.441804254, 7368633.11787961, 7368646.875, 7368710.262414258, 7368717.153869113, 7368966.390631809, 7369445.053032798, 7369831.093728565, 7370271.39420872, 7376027.160857276, 7376160.523498635, 7376232.460613452, 7376391.168719782, 7376476.448623342, 7377291.867289651, 7378899.96915475, 7378933.992431141, 7378948.2572592655, 7379965.625, 7380006.682467161, 7380203.492057149, 7380713.591539167, 7381201.335843533, 7385935.581398681, 7386216.694694133, 7386385.772805269, 7387437.215935859, 7387540.747394073, 7388333.141593528, 7388338.279347531, 7407753.679862298, 7428269.355046575, 7436055.9637876125, 7438018.496679591, 7520744.884796503, 7521880.102437585, 7523761.689835562, 7524454.6875, 7525448.4375, 7525493.973046042, 7525878.067465556, 7527460.222357891, 7534154.973677163, 7534342.8744940655, 7534425.760891303, 7534851.871962974, 7535553.5807599025, 7535578.125, 7535633.9384313, 7535674.663418944, 7535706.25, 7535714.0625, 7535801.5625, 7536919.571110638, 7536988.889178536, 7537053.125, 7537095.3125, 7537097.9035950005, 7537101.9810264, 7537985.305898591, 7538461.347220878, 7538498.163911451, 7538665.58166699, 7538989.0625, 7539180.761160004, 7540320.3125, 7540912.187326925, 7541095.161259589, 7541102.43396021, 7541251.5625, 7541314.67239934, 7542556.141220278, 7542557.507908499, 7544153.5702930875, 7546023.371080283, 7547318.108462726, 7548774.704511685, 7549345.364563821, 7549664.0625, 7550004.21289876, 7550110.633399221, 7550639.0625, 7552098.4375, 7552669.39259664, 7552669.834025229, 7553482.108556445, 7554146.294947668, 7555517.09451914, 7560909.375, 7564559.28445138, 7566393.75, 7566960.2244798895, 7567318.493006836, 7567963.515699194, 7572926.85260658, 7575835.803182498, 7576630.915491337, 7576684.375, 7576860.216135692, 7576950.008886531, 7586592.1875, 7588025.802837112, 7588038.974032314, 7588145.3125, 7588182.777340233, 7596034.117109175, 7596408.636305972, 7598948.941963961, 7601815.380195289, 7602285.127627708, 7602817.92579794, 7602832.8125, 7602989.0625, 7603001.5625, 7603008.119403599, 7603171.18320541, 7603209.325890875, 7603223.758433198, 7603468.32551716, 7603606.316448248, 7603637.507385409, 7603685.9375, 7603813.734797111, 7603860.9375, 7604153.024102444, 7604167.858296683, 7604292.1875, 7604625.0, 7604880.9462109385, 7604933.820121802, 7605026.036806003, 7605145.724691585, 7605259.260518523, 7605322.367207915, 7605517.326407273, 7605586.36091973, 7605786.818238562, 7605809.392760511, 7606037.337518025, 7606056.0942196995, 7606134.375, 7606450.0, 7606458.40846167, 7606528.351698734, 7606566.076970229, 7606654.6875, 7606892.0299991295, 7607273.399695581, 7607412.5, 7607468.244094196, 7611433.121781292, 7614241.652615392, 7615282.8125, 7615377.688646466, 7615989.0625, 7616141.619929893, 7616142.1875, 7616193.209260892, 7616483.064306992, 7616498.83892002, 7616812.32227998, 7616835.9375, 7617276.5625, 7617307.8125, 7618138.596017768, 7628068.391646649, 7637297.7875700705, 7639875.0, 7640479.619796901, 7640675.579181249, 7640700.0, 7641384.376844455, 7642717.491435252, 7645121.6510292115, 7646000.0, 7649853.985314626, 7650162.311986108, 7650236.265125864, 7651198.299012725, 7651431.0275759455, 7651806.25, 7653515.625, 7654330.474802725, 7658491.159153676, 7659258.586508784, 7671798.344653476, 7671887.5, 7677479.597210716, 7680546.875, 7680753.125, 7680809.959369421, 7681282.8125, 7681498.4375, 7681622.877947872, 7681636.075749334, 7681669.823806257, 7681752.422073617, 7681786.591237285, 7681843.021015466, 7681893.857700857, 7681911.47695612, 7682029.547550619, 7682085.9375, 7682207.8125, 7682259.147052277, 7682392.1875, 7682403.125, 7682406.506643677, 7682411.528582756, 7682429.015601004, 7682482.823074375, 7682566.312439871, 7682575.0162841575, 7682677.625592879, 7682721.581905267, 7682790.625, 7682806.061761889, 7682897.098174463, 7683003.125, 7683071.579424123, 7683082.278042853, 7683101.366501683, 7683102.972772596, 7683153.938734622, 7683250.739999795, 7683344.819648564, 7683364.0625, 7683457.8125, 7683464.0625, 7683519.609629475, 7683532.313694149, 7683543.4553829245, 7683585.927237033, 7683602.549013209, 7683637.5, 7683653.783808987, 7683689.363573632, 7683695.690060926, 7683714.0625, 7683751.648614316, 7683884.792368676, 7683926.796395459, 7683945.260990547, 7683985.596116323, 7684089.0625, 7684117.1875, 7684139.982590619, 7684255.103100121, 7684328.02384449, 7684363.313393402, 7691514.0625, 7691651.210232047, 7691875.0, 7694322.881603464, 7694334.375, 7694363.604267632, 7695651.9485002905, 7696810.531524497, 7696874.405017545, 7697620.3125, 7697855.090005994, 7698265.998875517, 7698726.575298759, 7698904.7251650775, 7699401.5625, 7699443.75, 7699536.853491476, 7699571.038701953, 7699587.482001596, 7699597.395793354, 7699598.104258813, 7699614.0625, 7699623.4375, 7699888.2969050165, 7699899.920015874, 7699931.187082529, 7699980.759947692, 7699984.375, 7700021.875, 7700022.904357263, 7700203.509002324, 7700210.01409081, 7700212.042868267, 7700251.966120873, 7700256.945556604, 7700296.338026305, 7700303.125, 7700354.88813285, 7700354.976025848, 7700359.412852887, 7700387.5, 7700400.687293144, 7700412.460695212, 7700416.718355804, 7700482.02596946, 7700507.183750514, 7700517.721079835, 7700527.285176602, 7700561.137395204, 7700570.935529114, 7700579.6875, 7700602.374210023, 7700634.819524254, 7700651.5625, 7700656.25, 7700667.8225767035, 7700771.784571947, 7700776.05351575, 7700780.169537387, 7700841.296849059, 7700856.6564535005, 7700856.857511781, 7700868.75, 7700871.875, 7700879.416314641, 7700898.141492325, 7700907.269190026, 7700927.375509102, 7701012.367217775, 7701030.415910535, 7701030.514733588, 7701032.088813468, 7701116.697488285, 7701351.819771909, 7701544.987933402, 7701607.586884373, 7702187.440190756, 7702490.059022708, 7703562.014026298, 7703589.0625, 7703981.669539221, 7704276.047220586, 7705103.125, 7713879.560322589, 7714967.744539907, 7716172.479391499, 7716430.709129064, 7717480.952214467, 7717573.8044204395, 7718089.969987748, 7718187.857623459, 7718336.60887547, 7718647.050078681, 7719095.3125, 7719379.564672444, 7719545.621080241, 7719686.374665376, 7719834.4394198675, 7720409.375, 7720427.907916488, 7720857.585344729, 7720951.905485555, 7720998.079901345, 7721271.759746248, 7721301.4785156995, 7721335.610777229, 7721352.92207801, 7721432.246077197, 7721493.75, 7721535.9375, 7721574.607157407, 7721596.875, 7721672.770766829, 7721934.790323163, 7722026.51449136, 7722048.342072755, 7722201.5625, 7722313.89885837, 7722366.221983927, 7722428.125, 7724771.807283586, 7725390.26459775, 7726654.974076658, 7730118.809636744, 7730585.9375, 7730693.75, 7730730.403257369, 7730929.492600983, 7731660.445076391, 7732024.979249251, 7732126.5625, 7732372.301622604, 7732819.288454907, 7732958.194082889, 7733041.61556845, 7733048.137163907, 7733105.116747262, 7733149.449887275, 7733679.954739381, 7733869.40749144, 7733925.780694014, 7734060.191530731, 7734120.018844562, 7734125.0, 7734313.870154824, 7734512.332301169, 7734689.0625, 7734749.989307153, 7734826.16811896, 7734911.720252218, 7734946.159338342, 7735261.694077682, 7735618.395135916, 7736180.837815836, 7742120.3125, 7742604.6875, 7742613.732519387, 7742844.128184498, 7746082.911318895, 7747200.0, 7747394.7661818955, 7747624.463146214, 7747633.623057361, 7752716.269983984, 7754456.314369103, 7756937.383058059, 7758439.761847835, 7758583.085223595, 7758600.05434167, 7758745.3125, 7759344.305634503, 7759989.0625, 7760362.5, 7760501.5625, 7762451.5625, 7762892.1875, 7767113.408112224, 7768217.251024894, 7768412.5, 7768923.248871932, 7770407.359859575, 7770421.875, 7770543.264135403, 7770553.437874481, 7771285.473863528, 7771820.311992705, 7772420.3125, 7772603.125, 7773443.75, 7773472.96401998, 7775739.992968983, 7775856.25, 7776285.9375, 7784629.453328134, 7785223.4375, 7787195.005339016, 7793037.08726019, 7793950.869245626, 7794296.0446347175, 7802613.54004381, 7804383.734381497, 7804839.736411416, 7805391.227372623, 7806477.52711686, 7806929.481304306, 7807539.0625, 7807599.047413144, 7808245.1044428125, 7810437.515387633, 7813495.383512041, 7813533.405800523, 7814622.83353241, 7814669.829160766, 7815671.875, 7816759.375, 7817140.136653918, 7817210.078737422, 7817340.59635366, 7817491.535663049, 7817548.4375, 7817566.2456006585, 7817631.119069047, 7817714.025774561, 7817744.781117852, 7817841.201381011, 7817841.327137951, 7817854.466844823, 7817858.219621465, 7817926.465563528, 7818117.312417573, 7818173.619101603, 7818482.8125, 7818486.481867642, 7818535.9375, 7818558.411279477, 7818559.241106503, 7818580.227295118, 7818585.957728902, 7818676.749602587, 7818902.37247533, 7818954.339886837, 7819073.232562265, 7819369.897883518, 7819671.177076695, 7819901.5625, 7819967.77046256, 7820451.324072875, 7820573.917866108, 7820860.591582775, 7821545.682943886, 7821546.030462377, 7821546.875, 7823066.830758546, 7823435.9375, 7824305.885153911, 7824330.274140719, 7824723.403257231, 7824979.012123883, 7825020.771585377, 7825029.867228585, 7825923.827967111, 7829661.9980718, 7831552.81797936, 7834242.373969584, 7834592.1226002015, 7834696.875, 7835001.5625, 7835139.922016757, 7835302.3019316, 7835318.75, 7835432.8125, 7835517.1875, 7836097.104968947, 7836139.968739322, 7836405.454653447, 7837478.311433825, 7838268.439497866, 7840016.65043813, 7840377.808153324, 7845487.296397058, 7845647.195957991, 7846007.794560663, 7846064.948204617, 7846573.287457595, 7846662.966711158, 7846855.381676238, 7846865.610961666, 7847029.210526551, 7847189.789178872, 7847247.937284224, 7847517.145513776, 7847945.068001758, 7848059.375, 7848462.2644480895, 7848662.180860807, 7848723.348352801, 7849063.052732681, 7851009.05626863, 7851583.308459478, 7853601.829429633, 7855948.020654052, 7859642.723246263, 7861597.059297703, 7861725.221512943, 7861920.945907388, 7861965.832612807, 7862299.57539895, 7862505.545654757, 7863961.138343391, 7864105.473470925, 7864284.266404513, 7864306.074137244, 7864347.218444122, 7864367.391193217, 7864726.5625, 7864798.4375, 7864849.4668294685, 7864897.760048239, 7865037.099652966, 7865051.4193135025, 7865151.486826103, 7865317.75852014, 7865343.564148287, 7865356.725091549, 7865412.337107139, 7865763.364293048, 7865832.7199810045, 7865898.316557839, 7866451.455099968, 7866814.567249073, 7868213.962211837, 7868379.6875, 7868402.3789748335, 7868515.625, 7868871.875, 7868882.8125, 7869028.772864349, 7869029.195740754, 7869553.353815839, 7870441.97949666, 7871149.436028712, 7872649.142028992, 7873200.046323141, 7873498.4375, 7873582.902226597, 7873979.952542535, 7876237.689203659, 7876821.631263234, 7878243.75, 7882648.880964033, 7893157.8125, 7895539.0625, 7895760.41204622, 7896105.211348825, 7896300.7136442745, 7896330.991484888, 7897857.010468374, 7898134.103358242, 7898334.881942119, 7898687.5, 7898845.861498204, 7901127.698889124, 7903344.393961335, 7904198.052449087, 7907801.430069244, 7913782.8125, 7914809.347266207, 7915120.617188906, 7915133.035848204, 7915898.453382116, 7916959.340804102, 7918804.993257665, 7921183.344729089, 7921331.881687819, 7921722.045702469, 7922026.874508533, 7922120.3125, 7922349.331219063, 7922668.75, 7923663.776881611, 7923989.257750447, 7924015.561870797, 7926090.625, 7926713.517368593, 7928843.481836882, 7929303.125, 7929408.116487552, 7929707.8125, 7929756.002042489, 7929760.9375, 7929858.939976415, 7929875.0, 7929906.341550835, 7929927.270086551, 7929973.315696239, 7930047.493503795, 7930124.655193348, 7930124.703864202, 7930229.750729727, 7930236.13420624, 7930266.671208806, 7930283.700987963, 7930302.756405183, 7930372.17330079, 7930424.342367109, 7930468.990242513, 7930511.106598363, 7930517.1875, 7930642.347808415, 7930651.020019438, 7930726.665948402, 7930779.6875, 7930793.674218702, 7930804.996033051, 7930863.770273993, 7930865.625, 7930880.871596589, 7930974.026409059, 7931002.44457384, 7931010.9375, 7931017.231173322, 7931035.965709758, 7931090.323552642, 7931127.785534506, 7931145.03324835, 7931173.4375, 7931192.709113288, 7931205.215786531, 7931215.625, 7931229.083402056, 7931328.881210751, 7931421.9404234085, 7931423.0223675305, 7931429.735168765, 7931458.833428364, 7931484.375, 7931498.4375, 7931529.017407243, 7931540.185317267, 7931616.813303637, 7931696.412125317, 7931723.475690353, 7931733.7326798, 7931743.380783202, 7931798.4375, 7931838.036971162, 7931853.125, 7931880.470701177, 7931884.375, 7931891.735462205, 7931905.856835093, 7931906.265483768, 7931936.324197012, 7931939.418401495, 7931945.2139985, ...], [31.139498131470983, 13.546751982946343, 41.10975297452049, 71.84583079177014, 11.808454799724956, 68.25438836538378, 67.23194343942278, 7.7266531865777175, 56.56789010831639, 88.57479161868474, 18.680788686332736, 52.98466597652608, 118.77541797755939, 75.38004606228422, 79.08049793858741, 90.56160066128025, 40.81739399221184, 52.70753820112844, 13.677777823306855, 7.9873945469703695, 10.510300762648171, 11.446521176972107, 25.739559513786823, 10.267164033045457, 14.982674634525393, 47.0891063695882, 14.941053876047775, 22.66059269248965, 7.571646254234698, 21.04052939862359, 45.17245642245018, 21.314115446042646, 82.47857262116042, 151.5265329619588, 8.21365002309947, 17.28679313975674, 11.092182307627574, 108.87879834298111, 29.616774238706892, 6.561613973578537, 13.083168406546017, 106.83049725370338, 7.678747937382143, 34.89218154494337, 80.30332382462656, 97.72857441572857, 11.997361797295268, 10.823338478238037, 121.06417098377918, 5.7989098855970616, 13.773073922342734, 7.974048789430579, 152.28242125306545, 29.19225218374982, 7.239225185139074, 20.110048366614006, 11.487539639624956, 27.071874439125548, 23.481267710073425, 6.432429128204749, 21.014703326591246, 27.34955476871937, 15.027216237518761, 98.14082446596129, 44.53239770774566, 52.2318481800407, 140.4530617130002, 19.217921222507513, 65.85273690563298, 52.15247121067831, 12.211646000199813, 123.84117396431157, 15.223605342867518, 63.62187150307746, 13.273882493522189, 172.0140808003304, 67.08121091251253, 7.750378794838487, 29.819567836323657, 104.430630015242, 31.052423032655994, 13.719745489390174, 72.92148574039383, 86.25259546200554, 22.853247167184147, 98.36234413501411, 10.556721009571069, 6.239790372791321, 14.30390385260986, 91.17169835643924, 95.24175222654391, 14.240195154589605, 48.23932980682119, 5.197310327863309, 75.68800756628472, 44.82846252723439, 46.637022642388736, 35.33798950267844, 24.25699291301958, 23.72131341623271, 59.710340164460256, 21.03837827678364, 64.2786165806106, 7.246885664434555, 63.736530769832626, 22.8034594381968, 54.72561162517284, 19.0890195002389, 75.37159086319211, 60.6538996556456, 24.117203501708715, 91.31836644410657, 63.56276119774333, 12.229827820023475, 29.519709885201912, 5.506309290179371, 7.872991366561111, 22.15170318285822, 25.83396199931828, 21.539733644620014, 19.355943347059775, 21.551154907396896, 42.7821450907571, 38.95516393062495, 35.617163954132934, 42.97104817966891, 5.7503739084126, 35.491177194353, 45.138915927906694, 16.324760373753396, 14.840613339958194, 72.80508593040291, 12.518176518665046, 21.245007425946095, 21.497088113444338, 90.93535281921204, 19.96469879311554, 6.148009780750013, 25.686200467462818, 9.436762769904684, 7.952821187859106, 143.14857679857664, 42.04385788659872, 7.493041001731346, 42.44262497333033, 37.92371456819892, 30.54653652897854, 5.430131684576317, 22.605023203443366, 13.310925314132383, 35.49314352711758, 109.72775304242053, 5.730032571281302, 31.622814958543273, 19.929269218718876, 34.2620935623464, 119.50465140361062, 16.71229321768805, 22.76575079157346, 34.03546243378879, 19.41805722007171, 5.449624141868292, 16.202619333239603, 15.906469430472777, 19.89832538168226, 9.340030276679059, 80.43196387418031, 49.19636171721354, 58.04132245050711, 11.810070603623398, 78.64072759747783, 5.296376331240706, 29.722232040091367, 21.19185888170539, 13.262882418689934, 6.678742920385425, 28.522192170920576, 17.32081666268783, 25.884978260663907, 98.96428759107557, 17.822580209373516, 34.08654850629372, 37.47766421756103, 42.11422166119045, 51.660324877498006, 29.179926099181625, 5.727487718655504, 22.82614651896918, 13.1393700441246, 74.25095027924421, 87.87449746977089, 8.90027038964431, 7.165818555968408, 45.23164133690704, 16.78885234071201, 12.825158041296262, 18.91711382083132, 127.01251787461224, 73.91812279105281, 37.316800563145875, 9.450347242975473, 47.835679891841814, 58.03832631494884, 27.93918011027486, 108.32905469475848, 22.803526776267965, 10.417075545137044, 59.808998691267945, 16.24585390561046, 7.382092240830991, 72.61787102295136, 67.40958867874247, 24.740886193582405, 13.057702942397105, 5.811484948673193, 40.40460553620163, 16.30343719671344, 60.28887634857543, 21.141609959329745, 100.93254109498415, 30.88369661260406, 15.46267859588216, 5.395063454296774, 112.94021899001169, 59.55954452617311, 65.8287005045098, 14.91118128480257, 49.662662019716464, 54.87945010930117, 5.090154108084964, 94.93314959260512, 26.867433535723304, 13.00139656120853, 13.550209670681696, 17.383242099701153, 60.430002121704234, 58.383051353460495, 111.1693088225368, 82.52217710387204, 67.44955761592439, 8.943630607592581, 60.894108637227575, 71.05952428123211, 12.24223931997259, 8.388585007382353, 22.46665919061423, 16.67500303068767, 30.94311780502644, 39.26168449296766, 103.61225328918326, 6.886680751671291, 72.71008221175892, 11.5189601614761, 58.114450724809366, 58.75759549425339, 14.939613842236843, 117.60991966357247, 18.35355323028496, 94.89202113827228, 38.97517165343612, 56.603023676367656, 21.865232220662794, 16.698407888261148, 37.92373772675441, 26.103250803813527, 39.321034269684475, 37.065057937279306, 9.469117534962058, 18.21912287166221, 5.912605152842478, 52.337647303719436, 12.750734749485767, 6.284911696976787, 39.05350637804736, 66.68864162864233, 25.144203399243853, 90.79514137177497, 5.865809358566123, 10.24884391711102, 44.97156954182232, 10.901333981543983, 33.33646696818027, 81.84289294505726, 150.2482659269411, 26.0495993813143, 5.738167698450378, 18.423022620772564, 13.632953499371482, 76.03225959434498, 56.51058212067085, 7.360006014953107, 25.649258537959977, 48.15837013529702, 37.784054020611784, 9.929893598527539, 166.4735653156148, 17.799919896578373, 51.69792930226102, 12.870810188312968, 6.756810944882025, 53.97709552676406, 19.266829716548443, 5.455098933350285, 45.033985281659184, 50.64095449549566, 28.821352561087224, 7.480738682664239, 42.866220051111235, 14.524530943746612, 23.4959702327217, 27.928691733080623, 20.41450324633533, 6.06955419949001, 79.45855463473491, 16.893228708723402, 27.669412548504873, 6.672989408102754, 24.735105279776562, 8.106833671872238, 8.946792980381588, 5.336309692958424, 9.10223095922576, 9.437083851336583, 11.684255740949697, 6.616618473235918, 56.29836832520938, 80.10474466790706, 49.00119363434612, 29.421033069318604, 13.528508500358049, 11.844759736470799, 18.87177609973451, 110.58478318285093, 92.27326134189762, 7.685952185697589, 27.435774362379505, 19.585559764280138, 16.15733443607123, 23.815105944769563, 6.925554682275466, 7.2052476332719015, 46.47449290147455, 41.99905931858909, 33.22553617168255, 23.294451505119813, 90.68185034376793, 95.24253115869965, 73.89731262738965, 19.381483222735397, 57.68509157456339, 80.11406510714863, 63.28290140072451, 66.1541459685621, 29.512657337034604, 29.51953845327709, 37.95746998532873, 56.516784763787854, 64.34212583339021, 30.891494730755152, 102.18123051684145, 66.4485734789655, 23.59019931158253, 71.11152141155824, 19.777896777696608, 41.53930009181475, 28.78084947214729, 26.54485031376354, 13.895101223074246, 34.965298516209856, 77.16135881654941, 21.36898863448812, 13.923372354183993, 9.375817512712283, 61.85152171022485, 13.396149715289665, 105.67762011350254, 44.41856878189375, 39.59269476249622, 14.228227559983907, 10.454010031796177, 10.180810821921522, 52.1780769533015, 25.84252088127571, 63.16173972736988, 5.609054337162614, 29.903702415091313, 5.763041630754833, 14.044796309596158, 13.19967151643258, 7.199858777816696, 55.32671689892068, 64.97228794491905, 164.14670860288507, 10.160714202423426, 11.141625489627144, 30.29159596405837, 19.242599099852963, 26.88963575644107, 69.68161588727996, 11.073190980889652, 22.152378250493143, 39.551789010577764, 9.797782655028062, 66.42100257796392, 6.923678631752409, 18.771955059438007, 48.68673381005118, 58.29824161771937, 37.89861906643686, 11.643876891007672, 16.8685964935897, 22.811657932171507, 5.074779191249298, 10.52326512283438, 11.233182779877787, 9.337655771697328, 60.538108232874656, 75.48936863819102, 59.49274092488543, 14.570393001429593, 6.905246579897708, 49.98240734181736, 30.753136477213776, 82.03437808520165, 37.3752094842929, 5.088248223471623, 11.839517010329633, 85.89923688028485, 11.995350020344066, 126.57718992248724, 29.381582257261, 8.814581033870514, 11.155581566144757, 53.5431767891834, 68.35096265645197, 75.01727005963188, 101.07938451547476, 6.888618761667675, 68.81228043063207, 16.998316269764267, 41.491168829734946, 5.8024177418230085, 27.798147952950227, 48.37782714476459, 115.2414514145484, 5.726728337271022, 6.034187804956691, 37.64621591791638, 10.507904520710884, 29.64056111378097, 42.2548147827837, 35.01059003491636, 13.215839038389454, 29.49081621394606, 86.85089616198985, 14.864399912339401, 31.149918653008356, 111.75007250691897, 92.75803414833034, 6.0408963519318, 7.478573361883879, 7.970393635368331, 64.40944631613695, 7.578932807346035, 12.172243130149255, 32.082039969774584, 11.130591028072727, 6.306377586331011, 51.687918383558916, 54.90232019003854, 12.804437514920972, 14.27024772020106, 5.074902877648009, 26.059150088791494, 14.156487887561019, 42.79807069218994, 29.457320916096965, 6.61802111233935, 79.99364899719667, 33.853275655061275, 170.91657266897474, 129.95580127681512, 58.50584457529895, 50.62987528043149, 56.61550612915878, 6.582771552281248, 103.19268506129842, 119.72137506320024, 68.23343828971247, 35.69324256432487, 13.357118240925747, 10.18198852009077, 18.19849965035045, 28.38428682265582, 15.368544393612819, 26.957687039665807, 14.433633302089408, 57.63284222756332, 32.19217957154492, 63.09597090329643, 49.732001167726025, 104.57925374597677, 11.554040055041972, 23.329567005425805, 19.934132198887706, 14.981967749213204, 106.83481718104957, 9.345210409636893, 10.427575518017655, 60.76065224030639, 88.27503519510654, 14.269497921648373, 33.50671987532657, 56.547476501078414, 103.70642295188021, 43.3435231118042, 90.03193986284239, 10.897819909994299, 42.269784786457265, 6.168588599217844, 21.564708604440984, 43.707669408333196, 61.99651848177715, 62.17263621344391, 5.056334120614419, 13.329317718624706, 5.51895067403645, 100.86507753822518, 20.76716436641583, 67.1005791035079, 82.64816764663382, 8.452476667518743, 31.61399266583979, 46.94460439578822, 23.99582643620932, 62.7249385393811, 11.514100982389543, 11.04813752570115, 43.29817639455386, 83.49197694275307, 110.13128592847032, 5.667057802295551, 16.803741353202714, 15.138727592227106, 66.00733162527285, 47.10266087288482, 23.105287817301317, 43.220066723459546, 20.95305411388746, 71.97641424852836, 47.13841274675341, 11.78987749564742, 7.018671390181852, 60.65434936939315, 28.633005835919136, 16.658442451161733, 23.037493641125977, 17.051877844114163, 62.486506717154306, 44.48177545267066, 41.20634243227864, 20.806936217385285, 18.68703413955111, 16.35699989655203, 73.4914235954081, 13.807204027653603, 72.28789123693687, 60.79226230680199, 47.229148297605725, 15.408187105715193, 14.70700040187616, 13.35337324142731, 53.81983940788981, 49.704625680374534, 102.29929565749929, 8.500648895068231, 13.202581059041005, 21.93166536019755, 80.54147319646215, 18.476292394346412, 179.41072218648026, 32.70209736875722, 67.93499858128126, 16.168467281385535, 11.18739329206466, 36.61916055970288, 13.436302981433997, 27.77019231917197, 8.963901058924057, 66.49393662313615, 5.768878216426662, 17.457821580915546, 6.606676085773855, 44.13003467801407, 9.920320324467522, 55.80566728854982, 8.7681533106408, 18.604499006702493, 31.48592199544904, 50.96605111753211, 18.078034498288154, 14.60303615134667, 21.403943288312735, 17.163817024348575, 13.93073051028443, 48.587513510225925, 12.231641657765088, 170.18718466186561, 54.10274756655318, 29.207748065801137, 8.136010027501902, 5.05914794388683, 5.760530382995549, 38.82817020453072, 5.222385496445071, 12.724801275315805, 20.022277096187686, 48.58867554720965, 16.022018371319447, 102.57103882742877, 30.91310362020999, 11.035490507871046, 13.148910273415531, 10.444513638460458, 113.78085968612018, 6.850258025392662, 21.342022108191276, 70.21322375917511, 84.38002322386369, 12.126439578671913, 76.86525759136578, 21.094854696082866, 13.91622228013107, 109.32621073812459, 26.058899430161432, 6.544652226191903, 67.84594934042964, 8.381383929468727, 43.274196825661356, 26.312498225939947, 6.306988694868017, 16.91838409311143, 15.40095366350838, 77.5938282468293, 23.37657855429542, 20.925437975730713, 14.070097530471488, 28.494753914279322, 10.952212986023591, 94.82330022424195, 6.4370658726922, 10.824679197102434, 134.43663589296767, 120.61203782569278, 35.22036674188513, 45.213270812402456, 46.25852983763805, 19.976841144953283, 5.8453633150839766, 22.110587334185293, 32.4115248331487, 69.10414667355454, 77.95693158820677, 20.530824806028594, 38.3596525983384, 9.27479403649106, 60.414555977374704, 6.822100565657751, 15.173795513207349, 42.89741123422542, 98.3585835851246, 6.605468106728224, 14.2472750917004, 5.509649599178856, 14.863002781051549, 30.790780144609585, 20.44676560137347, 17.486328765215028, 49.88283321083746, 6.030576432825681, 5.913670346637699, 11.872199105965883, 83.52699693530826, 79.63447478973953, 17.16830364003878, 19.07770317151276, 104.13222101970695, 5.449302117413586, 67.50460692106924, 56.46017887949675, 48.5287979991964, 52.22586201676378, 11.111034227902705, 21.842553795962527, 48.4735424569314, 15.797345567816695, 18.90221386288621, 5.446738764191721, 10.539260386800796, 42.51179139020221, 69.94901171947281, 23.375188878722877, 11.775191470847844, 99.67571399013927, 74.88291877211387, 21.043169531252687, 12.994794439011468, 66.22548049919149, 23.89109206138388, 15.192664656867077, 33.399317577647935, 5.265149459915054, 11.582540772243613, 5.818012055895996, 95.90003508996682, 9.850001680611546, 63.10803065668211, 93.483762679814, 84.36630702280375, 86.79514675799517, 42.36148859742871, 20.079861471845778, 7.138251146014275, 36.6669525024995, 75.04844650020267, 22.69312033103816, 52.90844657888325, 10.444651593536735, 109.69315245737938, 29.67167639251027, 14.939576203120986, 60.85085142778861, 126.39995857002741, 76.14816868928285, 21.761794353461617, 12.978426857317833, 77.57933213238931, 31.759568356372466, 16.952997374142672, 43.061018431110185, 23.65969896297537, 5.382926359777908, 7.370372320244502, 18.728560411546766, 103.78025912880773, 13.099916273816977, 18.331134401469107, 9.89857773229578, 20.569242989388716, 22.553420443470625, 46.57471641035244, 7.291572583653427, 25.000804361225928, 12.546621932139162, 88.2767289038089, 9.889082049111526, 20.5150893191694, 93.11862196225016, 31.403285128627825, 105.66080602198686, 6.669777055090054, 62.54653258553775, 15.549899635002324, 20.101317093577787, 50.85101550564519, 36.284231424091885, 26.180665427477805, 146.96575069130878, 25.508745149354485, 98.62063170688204, 129.73289380346947, 60.48250564095426, 7.757436873877743, 34.15608583196329, 93.25929301035822, 28.95238253373103, 71.94112622037187, 17.52107037820497, 45.40100688930135, 18.72431305939384, 64.61181508511811, 9.83373135104462, 15.019177193606373, 6.80144400661388, 79.07455184850454, 59.882149233985984, 150.36023198680198, 7.4598595158631475, 50.40870950917842, 63.653759298138276, 17.75243256602232, 24.57045792356977, 9.773532103381003, 7.482740079206079, 16.570327588713557, 21.774767528377414, 53.745305555853314, 43.28885817440722, 30.623298875347334, 81.55379863928827, 68.09432050406788, 27.86477829050603, 90.63102203409255, 5.1076002605944195, 5.827399415723322, 11.79829680726674, 8.037861427892652, 35.8520822264384, 5.405650756258442, 64.15806066582633, 32.06964637123682, 72.03547771740486, 19.68198509979438, 7.89452344641482, 63.99280223770876, 75.12563956907691, 94.02137656883214, 5.544346736072904, 20.064145170004736, 119.94732327396528, 5.8279047697005, 13.876834087717059, 43.79470892263993, 200.56009915881214, 39.18654268032256, 27.373463212047334, 5.812654099927961, 12.866592183983846, 14.398879844205425, 9.75988598006006, 8.691278182946839, 21.49253038165267, 10.45591480368675, 24.925005913122803, 21.490948023912487, 16.260047337497152, 14.08487255386083, 55.87426631147835, 17.227619502931336, 5.386412199248991, 5.163290590426527, 12.117591412367956, 5.6867689802148735, 27.94087369073032, 16.066883764773518, 36.02892881595621, 17.677549509775623, 14.937368344980294, 5.349569853424553, 5.996532214935979, 6.520136402848329, 45.6690681157768, 19.671123222775428, 9.507204620962678, 19.11666745554155, 26.547930228200883, 14.311051600527824, 9.639730118593596, 9.509788204730434, 35.91415373236257, 76.43433395081522, 13.236108632138071, 27.431194852053117, 33.33617311698563, 25.984260015497547, 8.246961039199036, 130.98989867035183, 25.32722749101186, 17.1252014320649, 10.882295446025518, 78.5489279180895, 5.338761358641003, 26.343399907480762, 5.806076091944005, 25.28792799431421, 26.68769918823991, 179.55535690023726, 110.16830083639411, 50.0389069559847, 33.51874542726629, 32.597348384620226, 19.99659327147442, 56.521529055833064, 36.225834016517226, 25.001583632765513, 43.956863834409035, 7.879611017411063, 21.326102673896358, 62.5751934038689, 36.354417046040155, 41.2151828965484, 15.715282211592035, 160.0410036531802, 49.592084922287825, 44.14888604147357, 51.72859237181841, 47.124123109877914, 21.242888283045946, 17.401287108874033, 20.02670742043314, 7.51233879025044, 24.76922086909599, 24.119866115441393, 23.06122419916651, 56.08372242127515, 79.48264158251699, 13.83025399693598, 12.309400395501847, 46.70170834015338, 43.06391001560209, 57.04240591632722, 61.76121454770616, 19.46670625415198, 26.857072632620483, 11.152622647224607, 93.95255152632697, 11.641803691605798, 12.075745782292739, 7.848888179746581, 18.448469126512435, 6.827437379008772, 28.534237354221993, 155.94405161262912, 107.28788797685753, 10.708804202180374, 15.741877635155532, 8.253473316060232, 84.24847480132762, 43.2038866693676, 82.85756468996159, 59.58745059035384, 16.24228296987058, 29.661821196413165, 6.448911734259698, 61.30517479247053, 22.1667238722219, 120.60385764824515, 15.302330714431534, 23.31321431440352, 10.942511433323657, 5.747285358302977, 23.19478846960232, 47.079468190712184, 11.2279984457424, 15.748299191654072, 21.33211182031719, 59.875547836115516, 22.912374834846045, 16.215026974557205, 20.052650256630855, 181.0856892120408, 15.627738568245553, 38.02622460202393, 11.38787843970194, 5.438954637666958, 128.83322916839518, 38.72439849334415, 40.32939118446628, 6.5365691466663005, 6.058228484114361, 41.49629624808543, 64.1016486253536, 37.84721223368851, 19.864141063063183, 57.01841484380434, 5.204536010746139, 9.35537056918591, 13.904846900111647, 140.7911432607838, 31.630245629160996, 92.26776636119297, 27.029819048308383, 12.067750981587047, 71.13508518227857, 20.513933077630526, 12.558787234962766, 18.609217148771354, 9.003432875504698, 30.467543098529063, 21.08818822372335, 33.855513478959175, 83.06307971430554, 7.961392132089008, 10.503610246033942, 34.45217055320779, 8.968455398954477, 32.239607579256955, 17.120263412874984, 7.027664156209926, 49.89318416229037, 17.47763939861577, 52.48993109384986, 56.671609664282485, 65.42624991222985, 21.985274027602003, 10.564159724349508, 100.59491392151999, 40.08961628950655, 6.836702310266596, 26.717989575298557, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4051164.0625, 4095983.0167907444, 4099499.8541189423, 4100128.125, 4100136.33334298, 4100247.917048518, 4100349.900798569, 4100373.7663041004, 4100480.7997963307, 4101556.25, 4102291.350306708, 4104709.1744763954, 4117217.1875, 4247289.186146422, 4267225.0, 4276370.384620449, 4277651.5625, 4280145.3125, 4280241.811091502, 4312699.387879882, 4397560.503002172, 4429236.132321757, 4434125.8095679665, 4434300.9320681635, 4434896.885758416, 4435926.5625, 4442106.249880477, 4444305.859578892, 4454726.474301451, 4454985.390902744, 4467027.654782926, 4470086.981868467, 4480007.8125, 4481999.230169345, 4482396.734499546, 4490478.628881262, 4524598.414653022, 4524883.730506191, 4529572.574862887, 4575295.7719766665, 4585927.53385607, 4590224.575395535, 4590700.204058118, 4597659.375, 4622532.432653511, 4631565.625, 4632956.743219628, 4633121.671138074, 4633431.023674547, 4635309.169223906, 4635335.592990409, 4637338.42072891, 4639221.082329904, 4640721.875, 4641519.179852891, 4647113.411699109, 4648131.468626149, 4648460.859519508, 4657601.241106923, 4658221.517204242, 4658969.267211772, 4683896.812679682, 4684193.772305919, 4686272.766043782, 4693935.690520462, 4715756.25, 4770738.664088914, 4821649.237054461, 4823617.80063033, 4831834.375, 4834275.598022434, 4845609.375, 4846361.009593488, 4850582.8125, 4852344.79334246, 4853513.512743636, 4853584.375, 4855320.701789661, 4856532.984778556, 4858235.801536166, 4859815.625, 4859816.825219373, 4863926.5625, 4866214.0625, 4866296.501332899, 4867313.947928765, 4868298.038669012, 4868546.654942679, 4868856.072015878, 4869168.75, 4869310.9375, 4870044.634098094, 4870150.0, 4870190.383410267, 4870876.5625, 4870989.981902539, 4874107.8125, 4878568.75, 4878706.538231654, 4879265.322692672, 4879531.444972316, 4880774.533042018, 4882450.0943054315, 4882583.269107342, 4883470.3125, 4884015.669196115, 4884671.579186683, 4885480.147469337, 4891703.125, 4895020.3125, 4895028.7524220785, 4896818.75, 4898215.625, 4898220.91915297, 4905016.673268246, 4906500.998270243, 4906755.37644134, 4907369.752418174, 4907371.72228377, 4908204.192162107, 4948694.5677756155, 4949646.38080008, 4953009.375, 4954659.214089067, 4957407.483836811, 4963204.6875, 4963691.289185431, 4980437.404108574, 4984620.50912158, 4988094.071038344, 5007062.473274467, 5008843.758218667, 5010074.175898229, 5010672.912264962, 5011433.875399673, 5012190.625, 5012275.590369626, 5013022.432059876, 5013395.861075012, 5014207.934529894, 5014655.560615555, 5018296.01355696, 5018315.625, 5018330.934686351, 5018339.0625, 5018505.706735285, 5018787.5, 5018805.491635838, 5018950.05733111, 5019096.369469698, 5019118.75, 5019229.661067671, 5019237.859599489, 5019363.3351113, 5019388.390011012, 5019391.347982668, 5019402.414581682, 5019405.734623456, 5019462.218881821, 5019517.1875, 5019519.575866837, 5019520.026514045, 5019532.234646892, 5019548.669553991, 5019594.636248169, 5019637.510185278, 5019807.188713345, 5019860.9375, 5019879.160105442, 5019907.104677209, 5019914.0625, 5019937.670283368, 5019939.0625, 5019979.1567622805, 5019994.789273995, 5020016.747557978, 5020023.309630282, 5020052.072351683, 5020107.183281749, 5020148.439614539, 5020216.219402694, 5020243.75, 5020277.320684788, 5020403.125, 5020416.524295036, 5020435.9375, 5020445.633366611, 5020445.779218198, 5020461.9303939305, 5020475.0, 5020482.8125, 5020488.504453033, 5020548.603632594, 5020585.199442183, 5020595.72527024, 5020621.181320212, 5020642.946147837, 5020674.9384731855, 5020684.047589855, 5020698.4375, 5020722.012397793, 5020740.625, 5020743.75, 5020769.686721131, 5020782.655277098, 5020821.49704248, 5020847.929727901, 5020935.9375, 5020959.679730673, 5021030.594169931, 5021097.862301357, 5021361.407646047, 5021568.523753359, 5021607.211505689, 5021662.466218548, 5021878.773530738, 5022093.805331482, 5022583.12207472, 5023005.7140278, 5044596.290715118, 5325084.186944461, 5325792.998208909, 5362165.535498296, 5426492.327210474, 6517607.338572955, 6654913.815469841, 6924316.552939807, 6924979.232665235, 6925735.614275104, 6925899.573536708, 6926406.25, 6926606.16024306, 6926808.752020092, 6927602.704857156, 6931111.45822507, 6944551.5625, 7171807.8125, 7216948.252779427, 7224810.9375, 7229507.8125, 7231635.440301106, 7232687.5, 7233325.293692441, 7233345.925021656, 7235025.1880421005, 7243419.154409217, 7251553.515905689, 7253990.625, 7254629.6875, 7255395.591882018, 7256138.087175984, 7263052.346996088, 7264045.549176633, 7264329.6875, 7264935.9375, 7264951.562002583, 7265252.386876954, 7265509.160877614, 7265868.75, 7266101.533024218, 7266162.5, 7266358.911512508, 7266681.645433435, 7268101.5625, 7276482.676764842, 7278767.1875, 7279035.9375, 7291539.2209984725, 7309994.669139103, 7320840.31202146, 7333385.755205003, 7339003.963075155, 7339482.951426062, 7364029.6875, 7365066.019198464, 7365207.614283574, 7367106.996013996, 7367155.364236558, 7367155.604151868, 7367385.9375, 7367427.975179796, 7367523.4375, 7367528.125, 7367637.5, 7367638.923415238, 7367709.85747349, 7367822.349450029, 7367873.282170754, 7367989.0625, 7367990.625, 7368072.710901921, 7368297.494077441, 7368405.399779426, 7368453.125, 7368497.507073258, 7368607.441804254, 7368633.11787961, 7368646.875, 7368710.262414258, 7368717.153869113, 7368966.390631809, 7369445.053032798, 7369831.093728565, 7370271.39420872, 7376027.160857276, 7376160.523498635, 7376232.460613452, 7376391.168719782, 7376476.448623342, 7377291.867289651, 7378899.96915475, 7378933.992431141, 7378948.2572592655, 7379965.625, 7380006.682467161, 7380203.492057149, 7380713.591539167, 7381201.335843533, 7385935.581398681, 7386216.694694133, 7386385.772805269, 7387437.215935859, 7387540.747394073, 7388333.141593528, 7388338.279347531, 7407753.679862298, 7428269.355046575, 7436055.9637876125, 7438018.496679591, 7520744.884796503, 7521880.102437585, 7523761.689835562, 7524454.6875, 7525448.4375, 7525493.973046042, 7525878.067465556, 7527460.222357891, 7534154.973677163, 7534342.8744940655, 7534425.760891303, 7534851.871962974, 7535553.5807599025, 7535578.125, 7535633.9384313, 7535674.663418944, 7535706.25, 7535714.0625, 7535801.5625, 7536919.571110638, 7536988.889178536, 7537053.125, 7537095.3125, 7537097.9035950005, 7537101.9810264, 7537985.305898591, 7538461.347220878, 7538498.163911451, 7538665.58166699, 7538989.0625, 7539180.761160004, 7540320.3125, 7540912.187326925, 7541095.161259589, 7541102.43396021, 7541251.5625, 7541314.67239934, 7542556.141220278, 7542557.507908499, 7544153.5702930875, 7546023.371080283, 7547318.108462726, 7548774.704511685, 7549345.364563821, 7549664.0625, 7550004.21289876, 7550110.633399221, 7550639.0625, 7552098.4375, 7552669.39259664, 7552669.834025229, 7553482.108556445, 7554146.294947668, 7555517.09451914, 7560909.375, 7564559.28445138, 7566393.75, 7566960.2244798895, 7567318.493006836, 7567963.515699194, 7572926.85260658, 7575835.803182498, 7576630.915491337, 7576684.375, 7576860.216135692, 7576950.008886531, 7586592.1875, 7588025.802837112, 7588038.974032314, 7588145.3125, 7588182.777340233, 7596034.117109175, 7596408.636305972, 7598948.941963961, 7601815.380195289, 7602285.127627708, 7602817.92579794, 7602832.8125, 7602989.0625, 7603001.5625, 7603008.119403599, 7603171.18320541, 7603209.325890875, 7603223.758433198, 7603468.32551716, 7603606.316448248, 7603637.507385409, 7603685.9375, 7603813.734797111, 7603860.9375, 7604153.024102444, 7604167.858296683, 7604292.1875, 7604625.0, 7604880.9462109385, 7604933.820121802, 7605026.036806003, 7605145.724691585, 7605259.260518523, 7605322.367207915, 7605517.326407273, 7605586.36091973, 7605786.818238562, 7605809.392760511, 7606037.337518025, 7606056.0942196995, 7606134.375, 7606450.0, 7606458.40846167, 7606528.351698734, 7606566.076970229, 7606654.6875, 7606892.0299991295, 7607273.399695581, 7607412.5, 7607468.244094196, 7611433.121781292, 7614241.652615392, 7615282.8125, 7615377.688646466, 7615989.0625, 7616141.619929893, 7616142.1875, 7616193.209260892, 7616483.064306992, 7616498.83892002, 7616812.32227998, 7616835.9375, 7617276.5625, 7617307.8125, 7618138.596017768, 7628068.391646649, 7637297.7875700705, 7639875.0, 7640479.619796901, 7640675.579181249, 7640700.0, 7641384.376844455, 7642717.491435252, 7645121.6510292115, 7646000.0, 7649853.985314626, 7650162.311986108, 7650236.265125864, 7651198.299012725, 7651431.0275759455, 7651806.25, 7653515.625, 7654330.474802725, 7658491.159153676, 7659258.586508784, 7671798.344653476, 7671887.5, 7677479.597210716, 7680546.875, 7680753.125, 7680809.959369421, 7681282.8125, 7681498.4375, 7681622.877947872, 7681636.075749334, 7681669.823806257, 7681752.422073617, 7681786.591237285, 7681843.021015466, 7681893.857700857, 7681911.47695612, 7682029.547550619, 7682085.9375, 7682207.8125, 7682259.147052277, 7682392.1875, 7682403.125, 7682406.506643677, 7682411.528582756, 7682429.015601004, 7682482.823074375, 7682566.312439871, 7682575.0162841575, 7682677.625592879, 7682721.581905267, 7682790.625, 7682806.061761889, 7682897.098174463, 7683003.125, 7683071.579424123, 7683082.278042853, 7683101.366501683, 7683102.972772596, 7683153.938734622, 7683250.739999795, 7683344.819648564, 7683364.0625, 7683457.8125, 7683464.0625, 7683519.609629475, 7683532.313694149, 7683543.4553829245, 7683585.927237033, 7683602.549013209, 7683637.5, 7683653.783808987, 7683689.363573632, 7683695.690060926, 7683714.0625, 7683751.648614316, 7683884.792368676, 7683926.796395459, 7683945.260990547, 7683985.596116323, 7684089.0625, 7684117.1875, 7684139.982590619, 7684255.103100121, 7684328.02384449, 7684363.313393402, 7691514.0625, 7691651.210232047, 7691875.0, 7694322.881603464, 7694334.375, 7694363.604267632, 7695651.9485002905, 7696810.531524497, 7696874.405017545, 7697620.3125, 7697855.090005994, 7698265.998875517, 7698726.575298759, 7698904.7251650775, 7699401.5625, 7699443.75, 7699536.853491476, 7699571.038701953, 7699587.482001596, 7699597.395793354, 7699598.104258813, 7699614.0625, 7699623.4375, 7699888.2969050165, 7699899.920015874, 7699931.187082529, 7699980.759947692, 7699984.375, 7700021.875, 7700022.904357263, 7700203.509002324, 7700210.01409081, 7700212.042868267, 7700251.966120873, 7700256.945556604, 7700296.338026305, 7700303.125, 7700354.88813285, 7700354.976025848, 7700359.412852887, 7700387.5, 7700400.687293144, 7700412.460695212, 7700416.718355804, 7700482.02596946, 7700507.183750514, 7700517.721079835, 7700527.285176602, 7700561.137395204, 7700570.935529114, 7700579.6875, 7700602.374210023, 7700634.819524254, 7700651.5625, 7700656.25, 7700667.8225767035, 7700771.784571947, 7700776.05351575, 7700780.169537387, 7700841.296849059, 7700856.6564535005, 7700856.857511781, 7700868.75, 7700871.875, 7700879.416314641, 7700898.141492325, 7700907.269190026, 7700927.375509102, 7701012.367217775, 7701030.415910535, 7701030.514733588, 7701032.088813468, 7701116.697488285, 7701351.819771909, 7701544.987933402, 7701607.586884373, 7702187.440190756, 7702490.059022708, 7703562.014026298, 7703589.0625, 7703981.669539221, 7704276.047220586, 7705103.125, 7713879.560322589, 7714967.744539907, 7716172.479391499, 7716430.709129064, 7717480.952214467, 7717573.8044204395, 7718089.969987748, 7718187.857623459, 7718336.60887547, 7718647.050078681, 7719095.3125, 7719379.564672444, 7719545.621080241, 7719686.374665376, 7719834.4394198675, 7720409.375, 7720427.907916488, 7720857.585344729, 7720951.905485555, 7720998.079901345, 7721271.759746248, 7721301.4785156995, 7721335.610777229, 7721352.92207801, 7721432.246077197, 7721493.75, 7721535.9375, 7721574.607157407, 7721596.875, 7721672.770766829, 7721934.790323163, 7722026.51449136, 7722048.342072755, 7722201.5625, 7722313.89885837, 7722366.221983927, 7722428.125, 7724771.807283586, 7725390.26459775, 7726654.974076658, 7730118.809636744, 7730585.9375, 7730693.75, 7730730.403257369, 7730929.492600983, 7731660.445076391, 7732024.979249251, 7732126.5625, 7732372.301622604, 7732819.288454907, 7732958.194082889, 7733041.61556845, 7733048.137163907, 7733105.116747262, 7733149.449887275, 7733679.954739381, 7733869.40749144, 7733925.780694014, 7734060.191530731, 7734120.018844562, 7734125.0, 7734313.870154824, 7734512.332301169, 7734689.0625, 7734749.989307153, 7734826.16811896, 7734911.720252218, 7734946.159338342, 7735261.694077682, 7735618.395135916, 7736180.837815836, 7742120.3125, 7742604.6875, 7742613.732519387, 7742844.128184498, 7746082.911318895, 7747200.0, 7747394.7661818955, 7747624.463146214, 7747633.623057361, 7752716.269983984, 7754456.314369103, 7756937.383058059, 7758439.761847835, 7758583.085223595, 7758600.05434167, 7758745.3125, 7759344.305634503, 7759989.0625, 7760362.5, 7760501.5625, 7762451.5625, 7762892.1875, 7767113.408112224, 7768217.251024894, 7768412.5, 7768923.248871932, 7770407.359859575, 7770421.875, 7770543.264135403, 7770553.437874481, 7771285.473863528, 7771820.311992705, 7772420.3125, 7772603.125, 7773443.75, 7773472.96401998, 7775739.992968983, 7775856.25, 7776285.9375, 7784629.453328134, 7785223.4375, 7787195.005339016, 7793037.08726019, 7793950.869245626, 7794296.0446347175, 7802613.54004381, 7804383.734381497, 7804839.736411416, 7805391.227372623, 7806477.52711686, 7806929.481304306, 7807539.0625, 7807599.047413144, 7808245.1044428125, 7810437.515387633, 7813495.383512041, 7813533.405800523, 7814622.83353241, 7814669.829160766, 7815671.875, 7816759.375, 7817140.136653918, 7817210.078737422, 7817340.59635366, 7817491.535663049, 7817548.4375, 7817566.2456006585, 7817631.119069047, 7817714.025774561, 7817744.781117852, 7817841.201381011, 7817841.327137951, 7817854.466844823, 7817858.219621465, 7817926.465563528, 7818117.312417573, 7818173.619101603, 7818482.8125, 7818486.481867642, 7818535.9375, 7818558.411279477, 7818559.241106503, 7818580.227295118, 7818585.957728902, 7818676.749602587, 7818902.37247533, 7818954.339886837, 7819073.232562265, 7819369.897883518, 7819671.177076695, 7819901.5625, 7819967.77046256, 7820451.324072875, 7820573.917866108, 7820860.591582775, 7821545.682943886, 7821546.030462377, 7821546.875, 7823066.830758546, 7823435.9375, 7824305.885153911, 7824330.274140719, 7824723.403257231, 7824979.012123883, 7825020.771585377, 7825029.867228585, 7825923.827967111, 7829661.9980718, 7831552.81797936, 7834242.373969584, 7834592.1226002015, 7834696.875, 7835001.5625, 7835139.922016757, 7835302.3019316, 7835318.75, 7835432.8125, 7835517.1875, 7836097.104968947, 7836139.968739322, 7836405.454653447, 7837478.311433825, 7838268.439497866, 7840016.65043813, 7840377.808153324, 7845487.296397058, 7845647.195957991, 7846007.794560663, 7846064.948204617, 7846573.287457595, 7846662.966711158, 7846855.381676238, 7846865.610961666, 7847029.210526551, 7847189.789178872, 7847247.937284224, 7847517.145513776, 7847945.068001758, 7848059.375, 7848462.2644480895, 7848662.180860807, 7848723.348352801, 7849063.052732681, 7851009.05626863, 7851583.308459478, 7853601.829429633, 7855948.020654052, 7859642.723246263, 7861597.059297703, 7861725.221512943, 7861920.945907388, 7861965.832612807, 7862299.57539895, 7862505.545654757, 7863961.138343391, 7864105.473470925, 7864284.266404513, 7864306.074137244, 7864347.218444122, 7864367.391193217, 7864726.5625, 7864798.4375, 7864849.4668294685, 7864897.760048239, 7865037.099652966, 7865051.4193135025, 7865151.486826103, 7865317.75852014, 7865343.564148287, 7865356.725091549, 7865412.337107139, 7865763.364293048, 7865832.7199810045, 7865898.316557839, 7866451.455099968, 7866814.567249073, 7868213.962211837, 7868379.6875, 7868402.3789748335, 7868515.625, 7868871.875, 7868882.8125, 7869028.772864349, 7869029.195740754, 7869553.353815839, 7870441.97949666, 7871149.436028712, 7872649.142028992, 7873200.046323141, 7873498.4375, 7873582.902226597, 7873979.952542535, 7876237.689203659, 7876821.631263234, 7878243.75, 7882648.880964033, 7893157.8125, 7895539.0625, 7895760.41204622, 7896105.211348825, 7896300.7136442745, 7896330.991484888, 7897857.010468374, 7898134.103358242, 7898334.881942119, 7898687.5, 7898845.861498204, 7901127.698889124, 7903344.393961335, 7904198.052449087, 7907801.430069244, 7913782.8125, 7914809.347266207, 7915120.617188906, 7915133.035848204, 7915898.453382116, 7916959.340804102, 7918804.993257665, 7921183.344729089, 7921331.881687819, 7921722.045702469, 7922026.874508533, 7922120.3125, 7922349.331219063, 7922668.75, 7923663.776881611, 7923989.257750447, 7924015.561870797, 7926090.625, 7926713.517368593, 7928843.481836882, 7929303.125, 7929408.116487552, 7929707.8125, 7929756.002042489, 7929760.9375, 7929858.939976415, 7929875.0, 7929906.341550835, 7929927.270086551, 7929973.315696239, 7930047.493503795, 7930124.655193348, 7930124.703864202, 7930229.750729727, 7930236.13420624, 7930266.671208806, 7930283.700987963, 7930302.756405183, 7930372.17330079, 7930424.342367109, 7930468.990242513, 7930511.106598363, 7930517.1875, 7930642.347808415, 7930651.020019438, 7930726.665948402, 7930779.6875, 7930793.674218702, 7930804.996033051, 7930863.770273993, 7930865.625, 7930880.871596589, 7930974.026409059, 7931002.44457384, 7931010.9375, 7931017.231173322, 7931035.965709758, 7931090.323552642, 7931127.785534506, 7931145.03324835, 7931173.4375, 7931192.709113288, 7931205.215786531, 7931215.625, 7931229.083402056, 7931328.881210751, 7931421.9404234085, 7931423.0223675305, 7931429.735168765, 7931458.833428364, 7931484.375, 7931498.4375, 7931529.017407243, 7931540.185317267, 7931616.813303637, 7931696.412125317, 7931723.475690353, 7931733.7326798, 7931743.380783202, 7931798.4375, 7931838.036971162, 7931853.125, 7931880.470701177, 7931884.375, 7931891.735462205, 7931905.856835093, 7931906.265483768, 7931936.324197012, 7931939.418401495, 7931945.2139985, ...], [31.139498131470983, 13.546751982946343, 41.10975297452049, 71.84583079177014, 11.808454799724956, 68.25438836538378, 67.23194343942278, 7.7266531865777175, 56.56789010831639, 88.57479161868474, 18.680788686332736, 52.98466597652608, 118.77541797755939, 75.38004606228422, 79.08049793858741, 90.56160066128025, 40.81739399221184, 52.70753820112844, 13.677777823306855, 7.9873945469703695, 10.510300762648171, 11.446521176972107, 25.739559513786823, 10.267164033045457, 14.982674634525393, 47.0891063695882, 14.941053876047775, 22.66059269248965, 7.571646254234698, 21.04052939862359, 45.17245642245018, 21.314115446042646, 82.47857262116042, 151.5265329619588, 8.21365002309947, 17.28679313975674, 11.092182307627574, 108.87879834298111, 29.616774238706892, 6.561613973578537, 13.083168406546017, 106.83049725370338, 7.678747937382143, 34.89218154494337, 80.30332382462656, 97.72857441572857, 11.997361797295268, 10.823338478238037, 121.06417098377918, 5.7989098855970616, 13.773073922342734, 7.974048789430579, 152.28242125306545, 29.19225218374982, 7.239225185139074, 20.110048366614006, 11.487539639624956, 27.071874439125548, 23.481267710073425, 6.432429128204749, 21.014703326591246, 27.34955476871937, 15.027216237518761, 98.14082446596129, 44.53239770774566, 52.2318481800407, 140.4530617130002, 19.217921222507513, 65.85273690563298, 52.15247121067831, 12.211646000199813, 123.84117396431157, 15.223605342867518, 63.62187150307746, 13.273882493522189, 172.0140808003304, 67.08121091251253, 7.750378794838487, 29.819567836323657, 104.430630015242, 31.052423032655994, 13.719745489390174, 72.92148574039383, 86.25259546200554, 22.853247167184147, 98.36234413501411, 10.556721009571069, 6.239790372791321, 14.30390385260986, 91.17169835643924, 95.24175222654391, 14.240195154589605, 48.23932980682119, 5.197310327863309, 75.68800756628472, 44.82846252723439, 46.637022642388736, 35.33798950267844, 24.25699291301958, 23.72131341623271, 59.710340164460256, 21.03837827678364, 64.2786165806106, 7.246885664434555, 63.736530769832626, 22.8034594381968, 54.72561162517284, 19.0890195002389, 75.37159086319211, 60.6538996556456, 24.117203501708715, 91.31836644410657, 63.56276119774333, 12.229827820023475, 29.519709885201912, 5.506309290179371, 7.872991366561111, 22.15170318285822, 25.83396199931828, 21.539733644620014, 19.355943347059775, 21.551154907396896, 42.7821450907571, 38.95516393062495, 35.617163954132934, 42.97104817966891, 5.7503739084126, 35.491177194353, 45.138915927906694, 16.324760373753396, 14.840613339958194, 72.80508593040291, 12.518176518665046, 21.245007425946095, 21.497088113444338, 90.93535281921204, 19.96469879311554, 6.148009780750013, 25.686200467462818, 9.436762769904684, 7.952821187859106, 143.14857679857664, 42.04385788659872, 7.493041001731346, 42.44262497333033, 37.92371456819892, 30.54653652897854, 5.430131684576317, 22.605023203443366, 13.310925314132383, 35.49314352711758, 109.72775304242053, 5.730032571281302, 31.622814958543273, 19.929269218718876, 34.2620935623464, 119.50465140361062, 16.71229321768805, 22.76575079157346, 34.03546243378879, 19.41805722007171, 5.449624141868292, 16.202619333239603, 15.906469430472777, 19.89832538168226, 9.340030276679059, 80.43196387418031, 49.19636171721354, 58.04132245050711, 11.810070603623398, 78.64072759747783, 5.296376331240706, 29.722232040091367, 21.19185888170539, 13.262882418689934, 6.678742920385425, 28.522192170920576, 17.32081666268783, 25.884978260663907, 98.96428759107557, 17.822580209373516, 34.08654850629372, 37.47766421756103, 42.11422166119045, 51.660324877498006, 29.179926099181625, 5.727487718655504, 22.82614651896918, 13.1393700441246, 74.25095027924421, 87.87449746977089, 8.90027038964431, 7.165818555968408, 45.23164133690704, 16.78885234071201, 12.825158041296262, 18.91711382083132, 127.01251787461224, 73.91812279105281, 37.316800563145875, 9.450347242975473, 47.835679891841814, 58.03832631494884, 27.93918011027486, 108.32905469475848, 22.803526776267965, 10.417075545137044, 59.808998691267945, 16.24585390561046, 7.382092240830991, 72.61787102295136, 67.40958867874247, 24.740886193582405, 13.057702942397105, 5.811484948673193, 40.40460553620163, 16.30343719671344, 60.28887634857543, 21.141609959329745, 100.93254109498415, 30.88369661260406, 15.46267859588216, 5.395063454296774, 112.94021899001169, 59.55954452617311, 65.8287005045098, 14.91118128480257, 49.662662019716464, 54.87945010930117, 5.090154108084964, 94.93314959260512, 26.867433535723304, 13.00139656120853, 13.550209670681696, 17.383242099701153, 60.430002121704234, 58.383051353460495, 111.1693088225368, 82.52217710387204, 67.44955761592439, 8.943630607592581, 60.894108637227575, 71.05952428123211, 12.24223931997259, 8.388585007382353, 22.46665919061423, 16.67500303068767, 30.94311780502644, 39.26168449296766, 103.61225328918326, 6.886680751671291, 72.71008221175892, 11.5189601614761, 58.114450724809366, 58.75759549425339, 14.939613842236843, 117.60991966357247, 18.35355323028496, 94.89202113827228, 38.97517165343612, 56.603023676367656, 21.865232220662794, 16.698407888261148, 37.92373772675441, 26.103250803813527, 39.321034269684475, 37.065057937279306, 9.469117534962058, 18.21912287166221, 5.912605152842478, 52.337647303719436, 12.750734749485767, 6.284911696976787, 39.05350637804736, 66.68864162864233, 25.144203399243853, 90.79514137177497, 5.865809358566123, 10.24884391711102, 44.97156954182232, 10.901333981543983, 33.33646696818027, 81.84289294505726, 150.2482659269411, 26.0495993813143, 5.738167698450378, 18.423022620772564, 13.632953499371482, 76.03225959434498, 56.51058212067085, 7.360006014953107, 25.649258537959977, 48.15837013529702, 37.784054020611784, 9.929893598527539, 166.4735653156148, 17.799919896578373, 51.69792930226102, 12.870810188312968, 6.756810944882025, 53.97709552676406, 19.266829716548443, 5.455098933350285, 45.033985281659184, 50.64095449549566, 28.821352561087224, 7.480738682664239, 42.866220051111235, 14.524530943746612, 23.4959702327217, 27.928691733080623, 20.41450324633533, 6.06955419949001, 79.45855463473491, 16.893228708723402, 27.669412548504873, 6.672989408102754, 24.735105279776562, 8.106833671872238, 8.946792980381588, 5.336309692958424, 9.10223095922576, 9.437083851336583, 11.684255740949697, 6.616618473235918, 56.29836832520938, 80.10474466790706, 49.00119363434612, 29.421033069318604, 13.528508500358049, 11.844759736470799, 18.87177609973451, 110.58478318285093, 92.27326134189762, 7.685952185697589, 27.435774362379505, 19.585559764280138, 16.15733443607123, 23.815105944769563, 6.925554682275466, 7.2052476332719015, 46.47449290147455, 41.99905931858909, 33.22553617168255, 23.294451505119813, 90.68185034376793, 95.24253115869965, 73.89731262738965, 19.381483222735397, 57.68509157456339, 80.11406510714863, 63.28290140072451, 66.1541459685621, 29.512657337034604, 29.51953845327709, 37.95746998532873, 56.516784763787854, 64.34212583339021, 30.891494730755152, 102.18123051684145, 66.4485734789655, 23.59019931158253, 71.11152141155824, 19.777896777696608, 41.53930009181475, 28.78084947214729, 26.54485031376354, 13.895101223074246, 34.965298516209856, 77.16135881654941, 21.36898863448812, 13.923372354183993, 9.375817512712283, 61.85152171022485, 13.396149715289665, 105.67762011350254, 44.41856878189375, 39.59269476249622, 14.228227559983907, 10.454010031796177, 10.180810821921522, 52.1780769533015, 25.84252088127571, 63.16173972736988, 5.609054337162614, 29.903702415091313, 5.763041630754833, 14.044796309596158, 13.19967151643258, 7.199858777816696, 55.32671689892068, 64.97228794491905, 164.14670860288507, 10.160714202423426, 11.141625489627144, 30.29159596405837, 19.242599099852963, 26.88963575644107, 69.68161588727996, 11.073190980889652, 22.152378250493143, 39.551789010577764, 9.797782655028062, 66.42100257796392, 6.923678631752409, 18.771955059438007, 48.68673381005118, 58.29824161771937, 37.89861906643686, 11.643876891007672, 16.8685964935897, 22.811657932171507, 5.074779191249298, 10.52326512283438, 11.233182779877787, 9.337655771697328, 60.538108232874656, 75.48936863819102, 59.49274092488543, 14.570393001429593, 6.905246579897708, 49.98240734181736, 30.753136477213776, 82.03437808520165, 37.3752094842929, 5.088248223471623, 11.839517010329633, 85.89923688028485, 11.995350020344066, 126.57718992248724, 29.381582257261, 8.814581033870514, 11.155581566144757, 53.5431767891834, 68.35096265645197, 75.01727005963188, 101.07938451547476, 6.888618761667675, 68.81228043063207, 16.998316269764267, 41.491168829734946, 5.8024177418230085, 27.798147952950227, 48.37782714476459, 115.2414514145484, 5.726728337271022, 6.034187804956691, 37.64621591791638, 10.507904520710884, 29.64056111378097, 42.2548147827837, 35.01059003491636, 13.215839038389454, 29.49081621394606, 86.85089616198985, 14.864399912339401, 31.149918653008356, 111.75007250691897, 92.75803414833034, 6.0408963519318, 7.478573361883879, 7.970393635368331, 64.40944631613695, 7.578932807346035, 12.172243130149255, 32.082039969774584, 11.130591028072727, 6.306377586331011, 51.687918383558916, 54.90232019003854, 12.804437514920972, 14.27024772020106, 5.074902877648009, 26.059150088791494, 14.156487887561019, 42.79807069218994, 29.457320916096965, 6.61802111233935, 79.99364899719667, 33.853275655061275, 170.91657266897474, 129.95580127681512, 58.50584457529895, 50.62987528043149, 56.61550612915878, 6.582771552281248, 103.19268506129842, 119.72137506320024, 68.23343828971247, 35.69324256432487, 13.357118240925747, 10.18198852009077, 18.19849965035045, 28.38428682265582, 15.368544393612819, 26.957687039665807, 14.433633302089408, 57.63284222756332, 32.19217957154492, 63.09597090329643, 49.732001167726025, 104.57925374597677, 11.554040055041972, 23.329567005425805, 19.934132198887706, 14.981967749213204, 106.83481718104957, 9.345210409636893, 10.427575518017655, 60.76065224030639, 88.27503519510654, 14.269497921648373, 33.50671987532657, 56.547476501078414, 103.70642295188021, 43.3435231118042, 90.03193986284239, 10.897819909994299, 42.269784786457265, 6.168588599217844, 21.564708604440984, 43.707669408333196, 61.99651848177715, 62.17263621344391, 5.056334120614419, 13.329317718624706, 5.51895067403645, 100.86507753822518, 20.76716436641583, 67.1005791035079, 82.64816764663382, 8.452476667518743, 31.61399266583979, 46.94460439578822, 23.99582643620932, 62.7249385393811, 11.514100982389543, 11.04813752570115, 43.29817639455386, 83.49197694275307, 110.13128592847032, 5.667057802295551, 16.803741353202714, 15.138727592227106, 66.00733162527285, 47.10266087288482, 23.105287817301317, 43.220066723459546, 20.95305411388746, 71.97641424852836, 47.13841274675341, 11.78987749564742, 7.018671390181852, 60.65434936939315, 28.633005835919136, 16.658442451161733, 23.037493641125977, 17.051877844114163, 62.486506717154306, 44.48177545267066, 41.20634243227864, 20.806936217385285, 18.68703413955111, 16.35699989655203, 73.4914235954081, 13.807204027653603, 72.28789123693687, 60.79226230680199, 47.229148297605725, 15.408187105715193, 14.70700040187616, 13.35337324142731, 53.81983940788981, 49.704625680374534, 102.29929565749929, 8.500648895068231, 13.202581059041005, 21.93166536019755, 80.54147319646215, 18.476292394346412, 179.41072218648026, 32.70209736875722, 67.93499858128126, 16.168467281385535, 11.18739329206466, 36.61916055970288, 13.436302981433997, 27.77019231917197, 8.963901058924057, 66.49393662313615, 5.768878216426662, 17.457821580915546, 6.606676085773855, 44.13003467801407, 9.920320324467522, 55.80566728854982, 8.7681533106408, 18.604499006702493, 31.48592199544904, 50.96605111753211, 18.078034498288154, 14.60303615134667, 21.403943288312735, 17.163817024348575, 13.93073051028443, 48.587513510225925, 12.231641657765088, 170.18718466186561, 54.10274756655318, 29.207748065801137, 8.136010027501902, 5.05914794388683, 5.760530382995549, 38.82817020453072, 5.222385496445071, 12.724801275315805, 20.022277096187686, 48.58867554720965, 16.022018371319447, 102.57103882742877, 30.91310362020999, 11.035490507871046, 13.148910273415531, 10.444513638460458, 113.78085968612018, 6.850258025392662, 21.342022108191276, 70.21322375917511, 84.38002322386369, 12.126439578671913, 76.86525759136578, 21.094854696082866, 13.91622228013107, 109.32621073812459, 26.058899430161432, 6.544652226191903, 67.84594934042964, 8.381383929468727, 43.274196825661356, 26.312498225939947, 6.306988694868017, 16.91838409311143, 15.40095366350838, 77.5938282468293, 23.37657855429542, 20.925437975730713, 14.070097530471488, 28.494753914279322, 10.952212986023591, 94.82330022424195, 6.4370658726922, 10.824679197102434, 134.43663589296767, 120.61203782569278, 35.22036674188513, 45.213270812402456, 46.25852983763805, 19.976841144953283, 5.8453633150839766, 22.110587334185293, 32.4115248331487, 69.10414667355454, 77.95693158820677, 20.530824806028594, 38.3596525983384, 9.27479403649106, 60.414555977374704, 6.822100565657751, 15.173795513207349, 42.89741123422542, 98.3585835851246, 6.605468106728224, 14.2472750917004, 5.509649599178856, 14.863002781051549, 30.790780144609585, 20.44676560137347, 17.486328765215028, 49.88283321083746, 6.030576432825681, 5.913670346637699, 11.872199105965883, 83.52699693530826, 79.63447478973953, 17.16830364003878, 19.07770317151276, 104.13222101970695, 5.449302117413586, 67.50460692106924, 56.46017887949675, 48.5287979991964, 52.22586201676378, 11.111034227902705, 21.842553795962527, 48.4735424569314, 15.797345567816695, 18.90221386288621, 5.446738764191721, 10.539260386800796, 42.51179139020221, 69.94901171947281, 23.375188878722877, 11.775191470847844, 99.67571399013927, 74.88291877211387, 21.043169531252687, 12.994794439011468, 66.22548049919149, 23.89109206138388, 15.192664656867077, 33.399317577647935, 5.265149459915054, 11.582540772243613, 5.818012055895996, 95.90003508996682, 9.850001680611546, 63.10803065668211, 93.483762679814, 84.36630702280375, 86.79514675799517, 42.36148859742871, 20.079861471845778, 7.138251146014275, 36.6669525024995, 75.04844650020267, 22.69312033103816, 52.90844657888325, 10.444651593536735, 109.69315245737938, 29.67167639251027, 14.939576203120986, 60.85085142778861, 126.39995857002741, 76.14816868928285, 21.761794353461617, 12.978426857317833, 77.57933213238931, 31.759568356372466, 16.952997374142672, 43.061018431110185, 23.65969896297537, 5.382926359777908, 7.370372320244502, 18.728560411546766, 103.78025912880773, 13.099916273816977, 18.331134401469107, 9.89857773229578, 20.569242989388716, 22.553420443470625, 46.57471641035244, 7.291572583653427, 25.000804361225928, 12.546621932139162, 88.2767289038089, 9.889082049111526, 20.5150893191694, 93.11862196225016, 31.403285128627825, 105.66080602198686, 6.669777055090054, 62.54653258553775, 15.549899635002324, 20.101317093577787, 50.85101550564519, 36.284231424091885, 26.180665427477805, 146.96575069130878, 25.508745149354485, 98.62063170688204, 129.73289380346947, 60.48250564095426, 7.757436873877743, 34.15608583196329, 93.25929301035822, 28.95238253373103, 71.94112622037187, 17.52107037820497, 45.40100688930135, 18.72431305939384, 64.61181508511811, 9.83373135104462, 15.019177193606373, 6.80144400661388, 79.07455184850454, 59.882149233985984, 150.36023198680198, 7.4598595158631475, 50.40870950917842, 63.653759298138276, 17.75243256602232, 24.57045792356977, 9.773532103381003, 7.482740079206079, 16.570327588713557, 21.774767528377414, 53.745305555853314, 43.28885817440722, 30.623298875347334, 81.55379863928827, 68.09432050406788, 27.86477829050603, 90.63102203409255, 5.1076002605944195, 5.827399415723322, 11.79829680726674, 8.037861427892652, 35.8520822264384, 5.405650756258442, 64.15806066582633, 32.06964637123682, 72.03547771740486, 19.68198509979438, 7.89452344641482, 63.99280223770876, 75.12563956907691, 94.02137656883214, 5.544346736072904, 20.064145170004736, 119.94732327396528, 5.8279047697005, 13.876834087717059, 43.79470892263993, 200.56009915881214, 39.18654268032256, 27.373463212047334, 5.812654099927961, 12.866592183983846, 14.398879844205425, 9.75988598006006, 8.691278182946839, 21.49253038165267, 10.45591480368675, 24.925005913122803, 21.490948023912487, 16.260047337497152, 14.08487255386083, 55.87426631147835, 17.227619502931336, 5.386412199248991, 5.163290590426527, 12.117591412367956, 5.6867689802148735, 27.94087369073032, 16.066883764773518, 36.02892881595621, 17.677549509775623, 14.937368344980294, 5.349569853424553, 5.996532214935979, 6.520136402848329, 45.6690681157768, 19.671123222775428, 9.507204620962678, 19.11666745554155, 26.547930228200883, 14.311051600527824, 9.639730118593596, 9.509788204730434, 35.91415373236257, 76.43433395081522, 13.236108632138071, 27.431194852053117, 33.33617311698563, 25.984260015497547, 8.246961039199036, 130.98989867035183, 25.32722749101186, 17.1252014320649, 10.882295446025518, 78.5489279180895, 5.338761358641003, 26.343399907480762, 5.806076091944005, 25.28792799431421, 26.68769918823991, 179.55535690023726, 110.16830083639411, 50.0389069559847, 33.51874542726629, 32.597348384620226, 19.99659327147442, 56.521529055833064, 36.225834016517226, 25.001583632765513, 43.956863834409035, 7.879611017411063, 21.326102673896358, 62.5751934038689, 36.354417046040155, 41.2151828965484, 15.715282211592035, 160.0410036531802, 49.592084922287825, 44.14888604147357, 51.72859237181841, 47.124123109877914, 21.242888283045946, 17.401287108874033, 20.02670742043314, 7.51233879025044, 24.76922086909599, 24.119866115441393, 23.06122419916651, 56.08372242127515, 79.48264158251699, 13.83025399693598, 12.309400395501847, 46.70170834015338, 43.06391001560209, 57.04240591632722, 61.76121454770616, 19.46670625415198, 26.857072632620483, 11.152622647224607, 93.95255152632697, 11.641803691605798, 12.075745782292739, 7.848888179746581, 18.448469126512435, 6.827437379008772, 28.534237354221993, 155.94405161262912, 107.28788797685753, 10.708804202180374, 15.741877635155532, 8.253473316060232, 84.24847480132762, 43.2038866693676, 82.85756468996159, 59.58745059035384, 16.24228296987058, 29.661821196413165, 6.448911734259698, 61.30517479247053, 22.1667238722219, 120.60385764824515, 15.302330714431534, 23.31321431440352, 10.942511433323657, 5.747285358302977, 23.19478846960232, 47.079468190712184, 11.2279984457424, 15.748299191654072, 21.33211182031719, 59.875547836115516, 22.912374834846045, 16.215026974557205, 20.052650256630855, 181.0856892120408, 15.627738568245553, 38.02622460202393, 11.38787843970194, 5.438954637666958, 128.83322916839518, 38.72439849334415, 40.32939118446628, 6.5365691466663005, 6.058228484114361, 41.49629624808543, 64.1016486253536, 37.84721223368851, 19.864141063063183, 57.01841484380434, 5.204536010746139, 9.35537056918591, 13.904846900111647, 140.7911432607838, 31.630245629160996, 92.26776636119297, 27.029819048308383, 12.067750981587047, 71.13508518227857, 20.513933077630526, 12.558787234962766, 18.609217148771354, 9.003432875504698, 30.467543098529063, 21.08818822372335, 33.855513478959175, 83.06307971430554, 7.961392132089008, 10.503610246033942, 34.45217055320779, 8.968455398954477, 32.239607579256955, 17.120263412874984, 7.027664156209926, 49.89318416229037, 17.47763939861577, 52.48993109384986, 56.671609664282485, 65.42624991222985, 21.985274027602003, 10.564159724349508, 100.59491392151999, 40.08961628950655, 6.836702310266596, 26.717989575298557, ...])
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);
([4051164.0625, 4095983.0167907444, 4099499.8541189423, 4100128.125, 4100136.33334298, 4100247.917048518, 4100349.900798569, 4100373.7663041004, 4100480.7997963307, 4101556.25, 4102291.350306708, 4104709.1744763954, 4117217.1875, 4247289.186146422, 4267225.0, 4276370.384620449, 4277651.5625, 4280145.3125, 4280241.811091502, 4312699.387879882, 4397560.503002172, 4429236.132321757, 4434125.8095679665, 4434300.9320681635, 4434896.885758416, 4435926.5625, 4442106.249880477, 4444305.859578892, 4454726.474301451, 4454985.390902744, 4467027.654782926, 4470086.981868467, 4480007.8125, 4481999.230169345, 4482396.734499546, 4490478.628881262, 4524598.414653022, 4524883.730506191, 4529572.574862887, 4575295.7719766665, 4585927.53385607, 4590224.575395535, 4590700.204058118, 4597659.375, 4622532.432653511, 4631565.625, 4632956.743219628, 4633121.671138074, 4633431.023674547, 4635309.169223906, 4635335.592990409, 4637338.42072891, 4639221.082329904, 4640721.875, 4641519.179852891, 4647113.411699109, 4648131.468626149, 4648460.859519508, 4657601.241106923, 4658221.517204242, 4658969.267211772, 4683896.812679682, 4684193.772305919, 4686272.766043782, 4693935.690520462, 4715756.25, 4770738.664088914, 4821649.237054461, 4823617.80063033, 4831834.375, 4834275.598022434, 4845609.375, 4846361.009593488, 4850582.8125, 4852344.79334246, 4853513.512743636, 4853584.375, 4855320.701789661, 4856532.984778556, 4858235.801536166, 4859815.625, 4859816.825219373, 4863926.5625, 4866214.0625, 4866296.501332899, 4867313.947928765, 4868298.038669012, 4868546.654942679, 4868856.072015878, 4869168.75, 4869310.9375, 4870044.634098094, 4870150.0, 4870190.383410267, 4870876.5625, 4870989.981902539, 4874107.8125, 4878568.75, 4878706.538231654, 4879265.322692672, 4879531.444972316, 4880774.533042018, 4882450.0943054315, 4882583.269107342, 4883470.3125, 4884015.669196115, 4884671.579186683, 4885480.147469337, 4891703.125, 4895020.3125, 4895028.7524220785, 4896818.75, 4898215.625, 4898220.91915297, 4905016.673268246, 4906500.998270243, 4906755.37644134, 4907369.752418174, 4907371.72228377, 4908204.192162107, 4948694.5677756155, 4949646.38080008, 4953009.375, 4954659.214089067, 4957407.483836811, 4963204.6875, 4963691.289185431, 4980437.404108574, 4984620.50912158, 4988094.071038344, 5007062.473274467, 5008843.758218667, 5010074.175898229, 5010672.912264962, 5011433.875399673, 5012190.625, 5012275.590369626, 5013022.432059876, 5013395.861075012, 5014207.934529894, 5014655.560615555, 5018296.01355696, 5018315.625, 5018330.934686351, 5018339.0625, 5018505.706735285, 5018787.5, 5018805.491635838, 5018950.05733111, 5019096.369469698, 5019118.75, 5019229.661067671, 5019237.859599489, 5019363.3351113, 5019388.390011012, 5019391.347982668, 5019402.414581682, 5019405.734623456, 5019462.218881821, 5019517.1875, 5019519.575866837, 5019520.026514045, 5019532.234646892, 5019548.669553991, 5019594.636248169, 5019637.510185278, 5019807.188713345, 5019860.9375, 5019879.160105442, 5019907.104677209, 5019914.0625, 5019937.670283368, 5019939.0625, 5019979.1567622805, 5019994.789273995, 5020016.747557978, 5020023.309630282, 5020052.072351683, 5020107.183281749, 5020148.439614539, 5020216.219402694, 5020243.75, 5020277.320684788, 5020403.125, 5020416.524295036, 5020435.9375, 5020445.633366611, 5020445.779218198, 5020461.9303939305, 5020475.0, 5020482.8125, 5020488.504453033, 5020548.603632594, 5020585.199442183, 5020595.72527024, 5020621.181320212, 5020642.946147837, 5020674.9384731855, 5020684.047589855, 5020698.4375, 5020722.012397793, 5020740.625, 5020743.75, 5020769.686721131, 5020782.655277098, 5020821.49704248, 5020847.929727901, 5020935.9375, 5020959.679730673, 5021030.594169931, 5021097.862301357, 5021361.407646047, 5021568.523753359, 5021607.211505689, 5021662.466218548, 5021878.773530738, 5022093.805331482, 5022583.12207472, 5023005.7140278, 5044596.290715118, 5325084.186944461, 5325792.998208909, 5362165.535498296, 5426492.327210474, 6517607.338572955, 6654913.815469841, 6924316.552939807, 6924979.232665235, 6925735.614275104, 6925899.573536708, 6926406.25, 6926606.16024306, 6926808.752020092, 6927602.704857156, 6931111.45822507, 6944551.5625, 7171807.8125, 7216948.252779427, 7224810.9375, 7229507.8125, 7231635.440301106, 7232687.5, 7233325.293692441, 7233345.925021656, 7235025.1880421005, 7243419.154409217, 7251553.515905689, 7253990.625, 7254629.6875, 7255395.591882018, 7256138.087175984, 7263052.346996088, 7264045.549176633, 7264329.6875, 7264935.9375, 7264951.562002583, 7265252.386876954, 7265509.160877614, 7265868.75, 7266101.533024218, 7266162.5, 7266358.911512508, 7266681.645433435, 7268101.5625, 7276482.676764842, 7278767.1875, 7279035.9375, 7291539.2209984725, 7309994.669139103, 7320840.31202146, 7333385.755205003, 7339003.963075155, 7339482.951426062, 7364029.6875, 7365066.019198464, 7365207.614283574, 7367106.996013996, 7367155.364236558, 7367155.604151868, 7367385.9375, 7367427.975179796, 7367523.4375, 7367528.125, 7367637.5, 7367638.923415238, 7367709.85747349, 7367822.349450029, 7367873.282170754, 7367989.0625, 7367990.625, 7368072.710901921, 7368297.494077441, 7368405.399779426, 7368453.125, 7368497.507073258, 7368607.441804254, 7368633.11787961, 7368646.875, 7368710.262414258, 7368717.153869113, 7368966.390631809, 7369445.053032798, 7369831.093728565, 7370271.39420872, 7376027.160857276, 7376160.523498635, 7376232.460613452, 7376391.168719782, 7376476.448623342, 7377291.867289651, 7378899.96915475, 7378933.992431141, 7378948.2572592655, 7379965.625, 7380006.682467161, 7380203.492057149, 7380713.591539167, 7381201.335843533, 7385935.581398681, 7386216.694694133, 7386385.772805269, 7387437.215935859, 7387540.747394073, 7388333.141593528, 7388338.279347531, 7407753.679862298, 7428269.355046575, 7436055.9637876125, 7438018.496679591, 7520744.884796503, 7521880.102437585, 7523761.689835562, 7524454.6875, 7525448.4375, 7525493.973046042, 7525878.067465556, 7527460.222357891, 7534154.973677163, 7534342.8744940655, 7534425.760891303, 7534851.871962974, 7535553.5807599025, 7535578.125, 7535633.9384313, 7535674.663418944, 7535706.25, 7535714.0625, 7535801.5625, 7536919.571110638, 7536988.889178536, 7537053.125, 7537095.3125, 7537097.9035950005, 7537101.9810264, 7537985.305898591, 7538461.347220878, 7538498.163911451, 7538665.58166699, 7538989.0625, 7539180.761160004, 7540320.3125, 7540912.187326925, 7541095.161259589, 7541102.43396021, 7541251.5625, 7541314.67239934, 7542556.141220278, 7542557.507908499, 7544153.5702930875, 7546023.371080283, 7547318.108462726, 7548774.704511685, 7549345.364563821, 7549664.0625, 7550004.21289876, 7550110.633399221, 7550639.0625, 7552098.4375, 7552669.39259664, 7552669.834025229, 7553482.108556445, 7554146.294947668, 7555517.09451914, 7560909.375, 7564559.28445138, 7566393.75, 7566960.2244798895, 7567318.493006836, 7567963.515699194, 7572926.85260658, 7575835.803182498, 7576630.915491337, 7576684.375, 7576860.216135692, 7576950.008886531, 7586592.1875, 7588025.802837112, 7588038.974032314, 7588145.3125, 7588182.777340233, 7596034.117109175, 7596408.636305972, 7598948.941963961, 7601815.380195289, 7602285.127627708, 7602817.92579794, 7602832.8125, 7602989.0625, 7603001.5625, 7603008.119403599, 7603171.18320541, 7603209.325890875, 7603223.758433198, 7603468.32551716, 7603606.316448248, 7603637.507385409, 7603685.9375, 7603813.734797111, 7603860.9375, 7604153.024102444, 7604167.858296683, 7604292.1875, 7604625.0, 7604880.9462109385, 7604933.820121802, 7605026.036806003, 7605145.724691585, 7605259.260518523, 7605322.367207915, 7605517.326407273, 7605586.36091973, 7605786.818238562, 7605809.392760511, 7606037.337518025, 7606056.0942196995, 7606134.375, 7606450.0, 7606458.40846167, 7606528.351698734, 7606566.076970229, 7606654.6875, 7606892.0299991295, 7607273.399695581, 7607412.5, 7607468.244094196, 7611433.121781292, 7614241.652615392, 7615282.8125, 7615377.688646466, 7615989.0625, 7616141.619929893, 7616142.1875, 7616193.209260892, 7616483.064306992, 7616498.83892002, 7616812.32227998, 7616835.9375, 7617276.5625, 7617307.8125, 7618138.596017768, 7628068.391646649, 7637297.7875700705, 7639875.0, 7640479.619796901, 7640675.579181249, 7640700.0, 7641384.376844455, 7642717.491435252, 7645121.6510292115, 7646000.0, 7649853.985314626, 7650162.311986108, 7650236.265125864, 7651198.299012725, 7651431.0275759455, 7651806.25, 7653515.625, 7654330.474802725, 7658491.159153676, 7659258.586508784, 7671798.344653476, 7671887.5, 7677479.597210716, 7680546.875, 7680753.125, 7680809.959369421, 7681282.8125, 7681498.4375, 7681622.877947872, 7681636.075749334, 7681669.823806257, 7681752.422073617, 7681786.591237285, 7681843.021015466, 7681893.857700857, 7681911.47695612, 7682029.547550619, 7682085.9375, 7682207.8125, 7682259.147052277, 7682392.1875, 7682403.125, 7682406.506643677, 7682411.528582756, 7682429.015601004, 7682482.823074375, 7682566.312439871, 7682575.0162841575, 7682677.625592879, 7682721.581905267, 7682790.625, 7682806.061761889, 7682897.098174463, 7683003.125, 7683071.579424123, 7683082.278042853, 7683101.366501683, 7683102.972772596, 7683153.938734622, 7683250.739999795, 7683344.819648564, 7683364.0625, 7683457.8125, 7683464.0625, 7683519.609629475, 7683532.313694149, 7683543.4553829245, 7683585.927237033, 7683602.549013209, 7683637.5, 7683653.783808987, 7683689.363573632, 7683695.690060926, 7683714.0625, 7683751.648614316, 7683884.792368676, 7683926.796395459, 7683945.260990547, 7683985.596116323, 7684089.0625, 7684117.1875, 7684139.982590619, 7684255.103100121, 7684328.02384449, 7684363.313393402, 7691514.0625, 7691651.210232047, 7691875.0, 7694322.881603464, 7694334.375, 7694363.604267632, 7695651.9485002905, 7696810.531524497, 7696874.405017545, 7697620.3125, 7697855.090005994, 7698265.998875517, 7698726.575298759, 7698904.7251650775, 7699401.5625, 7699443.75, 7699536.853491476, 7699571.038701953, 7699587.482001596, 7699597.395793354, 7699598.104258813, 7699614.0625, 7699623.4375, 7699888.2969050165, 7699899.920015874, 7699931.187082529, 7699980.759947692, 7699984.375, 7700021.875, 7700022.904357263, 7700203.509002324, 7700210.01409081, 7700212.042868267, 7700251.966120873, 7700256.945556604, 7700296.338026305, 7700303.125, 7700354.88813285, 7700354.976025848, 7700359.412852887, 7700387.5, 7700400.687293144, 7700412.460695212, 7700416.718355804, 7700482.02596946, 7700507.183750514, 7700517.721079835, 7700527.285176602, 7700561.137395204, 7700570.935529114, 7700579.6875, 7700602.374210023, 7700634.819524254, 7700651.5625, 7700656.25, 7700667.8225767035, 7700771.784571947, 7700776.05351575, 7700780.169537387, 7700841.296849059, 7700856.6564535005, 7700856.857511781, 7700868.75, 7700871.875, 7700879.416314641, 7700898.141492325, 7700907.269190026, 7700927.375509102, 7701012.367217775, 7701030.415910535, 7701030.514733588, 7701032.088813468, 7701116.697488285, 7701351.819771909, 7701544.987933402, 7701607.586884373, 7702187.440190756, 7702490.059022708, 7703562.014026298, 7703589.0625, 7703981.669539221, 7704276.047220586, 7705103.125, 7713879.560322589, 7714967.744539907, 7716172.479391499, 7716430.709129064, 7717480.952214467, 7717573.8044204395, 7718089.969987748, 7718187.857623459, 7718336.60887547, 7718647.050078681, 7719095.3125, 7719379.564672444, 7719545.621080241, 7719686.374665376, 7719834.4394198675, 7720409.375, 7720427.907916488, 7720857.585344729, 7720951.905485555, 7720998.079901345, 7721271.759746248, 7721301.4785156995, 7721335.610777229, 7721352.92207801, 7721432.246077197, 7721493.75, 7721535.9375, 7721574.607157407, 7721596.875, 7721672.770766829, 7721934.790323163, 7722026.51449136, 7722048.342072755, 7722201.5625, 7722313.89885837, 7722366.221983927, 7722428.125, 7724771.807283586, 7725390.26459775, 7726654.974076658, 7730118.809636744, 7730585.9375, 7730693.75, 7730730.403257369, 7730929.492600983, 7731660.445076391, 7732024.979249251, 7732126.5625, 7732372.301622604, 7732819.288454907, 7732958.194082889, 7733041.61556845, 7733048.137163907, 7733105.116747262, 7733149.449887275, 7733679.954739381, 7733869.40749144, 7733925.780694014, 7734060.191530731, 7734120.018844562, 7734125.0, 7734313.870154824, 7734512.332301169, 7734689.0625, 7734749.989307153, 7734826.16811896, 7734911.720252218, 7734946.159338342, 7735261.694077682, 7735618.395135916, 7736180.837815836, 7742120.3125, 7742604.6875, 7742613.732519387, 7742844.128184498, 7746082.911318895, 7747200.0, 7747394.7661818955, 7747624.463146214, 7747633.623057361, 7752716.269983984, 7754456.314369103, 7756937.383058059, 7758439.761847835, 7758583.085223595, 7758600.05434167, 7758745.3125, 7759344.305634503, 7759989.0625, 7760362.5, 7760501.5625, 7762451.5625, 7762892.1875, 7767113.408112224, 7768217.251024894, 7768412.5, 7768923.248871932, 7770407.359859575, 7770421.875, 7770543.264135403, 7770553.437874481, 7771285.473863528, 7771820.311992705, 7772420.3125, 7772603.125, 7773443.75, 7773472.96401998, 7775739.992968983, 7775856.25, 7776285.9375, 7784629.453328134, 7785223.4375, 7787195.005339016, 7793037.08726019, 7793950.869245626, 7794296.0446347175, 7802613.54004381, 7804383.734381497, 7804839.736411416, 7805391.227372623, 7806477.52711686, 7806929.481304306, 7807539.0625, 7807599.047413144, 7808245.1044428125, 7810437.515387633, 7813495.383512041, 7813533.405800523, 7814622.83353241, 7814669.829160766, 7815671.875, 7816759.375, 7817140.136653918, 7817210.078737422, 7817340.59635366, 7817491.535663049, 7817548.4375, 7817566.2456006585, 7817631.119069047, 7817714.025774561, 7817744.781117852, 7817841.201381011, 7817841.327137951, 7817854.466844823, 7817858.219621465, 7817926.465563528, 7818117.312417573, 7818173.619101603, 7818482.8125, 7818486.481867642, 7818535.9375, 7818558.411279477, 7818559.241106503, 7818580.227295118, 7818585.957728902, 7818676.749602587, 7818902.37247533, 7818954.339886837, 7819073.232562265, 7819369.897883518, 7819671.177076695, 7819901.5625, 7819967.77046256, 7820451.324072875, 7820573.917866108, 7820860.591582775, 7821545.682943886, 7821546.030462377, 7821546.875, 7823066.830758546, 7823435.9375, 7824305.885153911, 7824330.274140719, 7824723.403257231, 7824979.012123883, 7825020.771585377, 7825029.867228585, 7825923.827967111, 7829661.9980718, 7831552.81797936, 7834242.373969584, 7834592.1226002015, 7834696.875, 7835001.5625, 7835139.922016757, 7835302.3019316, 7835318.75, 7835432.8125, 7835517.1875, 7836097.104968947, 7836139.968739322, 7836405.454653447, 7837478.311433825, 7838268.439497866, 7840016.65043813, 7840377.808153324, 7845487.296397058, 7845647.195957991, 7846007.794560663, 7846064.948204617, 7846573.287457595, 7846662.966711158, 7846855.381676238, 7846865.610961666, 7847029.210526551, 7847189.789178872, 7847247.937284224, 7847517.145513776, 7847945.068001758, 7848059.375, 7848462.2644480895, 7848662.180860807, 7848723.348352801, 7849063.052732681, 7851009.05626863, 7851583.308459478, 7853601.829429633, 7855948.020654052, 7859642.723246263, 7861597.059297703, 7861725.221512943, 7861920.945907388, 7861965.832612807, 7862299.57539895, 7862505.545654757, 7863961.138343391, 7864105.473470925, 7864284.266404513, 7864306.074137244, 7864347.218444122, 7864367.391193217, 7864726.5625, 7864798.4375, 7864849.4668294685, 7864897.760048239, 7865037.099652966, 7865051.4193135025, 7865151.486826103, 7865317.75852014, 7865343.564148287, 7865356.725091549, 7865412.337107139, 7865763.364293048, 7865832.7199810045, 7865898.316557839, 7866451.455099968, 7866814.567249073, 7868213.962211837, 7868379.6875, 7868402.3789748335, 7868515.625, 7868871.875, 7868882.8125, 7869028.772864349, 7869029.195740754, 7869553.353815839, 7870441.97949666, 7871149.436028712, 7872649.142028992, 7873200.046323141, 7873498.4375, 7873582.902226597, 7873979.952542535, 7876237.689203659, 7876821.631263234, 7878243.75, 7882648.880964033, 7893157.8125, 7895539.0625, 7895760.41204622, 7896105.211348825, 7896300.7136442745, 7896330.991484888, 7897857.010468374, 7898134.103358242, 7898334.881942119, 7898687.5, 7898845.861498204, 7901127.698889124, 7903344.393961335, 7904198.052449087, 7907801.430069244, 7913782.8125, 7914809.347266207, 7915120.617188906, 7915133.035848204, 7915898.453382116, 7916959.340804102, 7918804.993257665, 7921183.344729089, 7921331.881687819, 7921722.045702469, 7922026.874508533, 7922120.3125, 7922349.331219063, 7922668.75, 7923663.776881611, 7923989.257750447, 7924015.561870797, 7926090.625, 7926713.517368593, 7928843.481836882, 7929303.125, 7929408.116487552, 7929707.8125, 7929756.002042489, 7929760.9375, 7929858.939976415, 7929875.0, 7929906.341550835, 7929927.270086551, 7929973.315696239, 7930047.493503795, 7930124.655193348, 7930124.703864202, 7930229.750729727, 7930236.13420624, 7930266.671208806, 7930283.700987963, 7930302.756405183, 7930372.17330079, 7930424.342367109, 7930468.990242513, 7930511.106598363, 7930517.1875, 7930642.347808415, 7930651.020019438, 7930726.665948402, 7930779.6875, 7930793.674218702, 7930804.996033051, 7930863.770273993, 7930865.625, 7930880.871596589, 7930974.026409059, 7931002.44457384, 7931010.9375, 7931017.231173322, 7931035.965709758, 7931090.323552642, 7931127.785534506, 7931145.03324835, 7931173.4375, 7931192.709113288, 7931205.215786531, 7931215.625, 7931229.083402056, 7931328.881210751, 7931421.9404234085, 7931423.0223675305, 7931429.735168765, 7931458.833428364, 7931484.375, 7931498.4375, 7931529.017407243, 7931540.185317267, 7931616.813303637, 7931696.412125317, 7931723.475690353, 7931733.7326798, 7931743.380783202, 7931798.4375, 7931838.036971162, 7931853.125, 7931880.470701177, 7931884.375, 7931891.735462205, 7931905.856835093, 7931906.265483768, 7931936.324197012, 7931939.418401495, 7931945.2139985, ...], [31.139498131470983, 13.546751982946343, 41.10975297452049, 71.84583079177014, 11.808454799724956, 68.25438836538378, 67.23194343942278, 7.7266531865777175, 56.56789010831639, 88.57479161868474, 18.680788686332736, 52.98466597652608, 118.77541797755939, 75.38004606228422, 79.08049793858741, 90.56160066128025, 40.81739399221184, 52.70753820112844, 13.677777823306855, 7.9873945469703695, 10.510300762648171, 11.446521176972107, 25.739559513786823, 10.267164033045457, 14.982674634525393, 47.0891063695882, 14.941053876047775, 22.66059269248965, 7.571646254234698, 21.04052939862359, 45.17245642245018, 21.314115446042646, 82.47857262116042, 151.5265329619588, 8.21365002309947, 17.28679313975674, 11.092182307627574, 108.87879834298111, 29.616774238706892, 6.561613973578537, 13.083168406546017, 106.83049725370338, 7.678747937382143, 34.89218154494337, 80.30332382462656, 97.72857441572857, 11.997361797295268, 10.823338478238037, 121.06417098377918, 5.7989098855970616, 13.773073922342734, 7.974048789430579, 152.28242125306545, 29.19225218374982, 7.239225185139074, 20.110048366614006, 11.487539639624956, 27.071874439125548, 23.481267710073425, 6.432429128204749, 21.014703326591246, 27.34955476871937, 15.027216237518761, 98.14082446596129, 44.53239770774566, 52.2318481800407, 140.4530617130002, 19.217921222507513, 65.85273690563298, 52.15247121067831, 12.211646000199813, 123.84117396431157, 15.223605342867518, 63.62187150307746, 13.273882493522189, 172.0140808003304, 67.08121091251253, 7.750378794838487, 29.819567836323657, 104.430630015242, 31.052423032655994, 13.719745489390174, 72.92148574039383, 86.25259546200554, 22.853247167184147, 98.36234413501411, 10.556721009571069, 6.239790372791321, 14.30390385260986, 91.17169835643924, 95.24175222654391, 14.240195154589605, 48.23932980682119, 5.197310327863309, 75.68800756628472, 44.82846252723439, 46.637022642388736, 35.33798950267844, 24.25699291301958, 23.72131341623271, 59.710340164460256, 21.03837827678364, 64.2786165806106, 7.246885664434555, 63.736530769832626, 22.8034594381968, 54.72561162517284, 19.0890195002389, 75.37159086319211, 60.6538996556456, 24.117203501708715, 91.31836644410657, 63.56276119774333, 12.229827820023475, 29.519709885201912, 5.506309290179371, 7.872991366561111, 22.15170318285822, 25.83396199931828, 21.539733644620014, 19.355943347059775, 21.551154907396896, 42.7821450907571, 38.95516393062495, 35.617163954132934, 42.97104817966891, 5.7503739084126, 35.491177194353, 45.138915927906694, 16.324760373753396, 14.840613339958194, 72.80508593040291, 12.518176518665046, 21.245007425946095, 21.497088113444338, 90.93535281921204, 19.96469879311554, 6.148009780750013, 25.686200467462818, 9.436762769904684, 7.952821187859106, 143.14857679857664, 42.04385788659872, 7.493041001731346, 42.44262497333033, 37.92371456819892, 30.54653652897854, 5.430131684576317, 22.605023203443366, 13.310925314132383, 35.49314352711758, 109.72775304242053, 5.730032571281302, 31.622814958543273, 19.929269218718876, 34.2620935623464, 119.50465140361062, 16.71229321768805, 22.76575079157346, 34.03546243378879, 19.41805722007171, 5.449624141868292, 16.202619333239603, 15.906469430472777, 19.89832538168226, 9.340030276679059, 80.43196387418031, 49.19636171721354, 58.04132245050711, 11.810070603623398, 78.64072759747783, 5.296376331240706, 29.722232040091367, 21.19185888170539, 13.262882418689934, 6.678742920385425, 28.522192170920576, 17.32081666268783, 25.884978260663907, 98.96428759107557, 17.822580209373516, 34.08654850629372, 37.47766421756103, 42.11422166119045, 51.660324877498006, 29.179926099181625, 5.727487718655504, 22.82614651896918, 13.1393700441246, 74.25095027924421, 87.87449746977089, 8.90027038964431, 7.165818555968408, 45.23164133690704, 16.78885234071201, 12.825158041296262, 18.91711382083132, 127.01251787461224, 73.91812279105281, 37.316800563145875, 9.450347242975473, 47.835679891841814, 58.03832631494884, 27.93918011027486, 108.32905469475848, 22.803526776267965, 10.417075545137044, 59.808998691267945, 16.24585390561046, 7.382092240830991, 72.61787102295136, 67.40958867874247, 24.740886193582405, 13.057702942397105, 5.811484948673193, 40.40460553620163, 16.30343719671344, 60.28887634857543, 21.141609959329745, 100.93254109498415, 30.88369661260406, 15.46267859588216, 5.395063454296774, 112.94021899001169, 59.55954452617311, 65.8287005045098, 14.91118128480257, 49.662662019716464, 54.87945010930117, 5.090154108084964, 94.93314959260512, 26.867433535723304, 13.00139656120853, 13.550209670681696, 17.383242099701153, 60.430002121704234, 58.383051353460495, 111.1693088225368, 82.52217710387204, 67.44955761592439, 8.943630607592581, 60.894108637227575, 71.05952428123211, 12.24223931997259, 8.388585007382353, 22.46665919061423, 16.67500303068767, 30.94311780502644, 39.26168449296766, 103.61225328918326, 6.886680751671291, 72.71008221175892, 11.5189601614761, 58.114450724809366, 58.75759549425339, 14.939613842236843, 117.60991966357247, 18.35355323028496, 94.89202113827228, 38.97517165343612, 56.603023676367656, 21.865232220662794, 16.698407888261148, 37.92373772675441, 26.103250803813527, 39.321034269684475, 37.065057937279306, 9.469117534962058, 18.21912287166221, 5.912605152842478, 52.337647303719436, 12.750734749485767, 6.284911696976787, 39.05350637804736, 66.68864162864233, 25.144203399243853, 90.79514137177497, 5.865809358566123, 10.24884391711102, 44.97156954182232, 10.901333981543983, 33.33646696818027, 81.84289294505726, 150.2482659269411, 26.0495993813143, 5.738167698450378, 18.423022620772564, 13.632953499371482, 76.03225959434498, 56.51058212067085, 7.360006014953107, 25.649258537959977, 48.15837013529702, 37.784054020611784, 9.929893598527539, 166.4735653156148, 17.799919896578373, 51.69792930226102, 12.870810188312968, 6.756810944882025, 53.97709552676406, 19.266829716548443, 5.455098933350285, 45.033985281659184, 50.64095449549566, 28.821352561087224, 7.480738682664239, 42.866220051111235, 14.524530943746612, 23.4959702327217, 27.928691733080623, 20.41450324633533, 6.06955419949001, 79.45855463473491, 16.893228708723402, 27.669412548504873, 6.672989408102754, 24.735105279776562, 8.106833671872238, 8.946792980381588, 5.336309692958424, 9.10223095922576, 9.437083851336583, 11.684255740949697, 6.616618473235918, 56.29836832520938, 80.10474466790706, 49.00119363434612, 29.421033069318604, 13.528508500358049, 11.844759736470799, 18.87177609973451, 110.58478318285093, 92.27326134189762, 7.685952185697589, 27.435774362379505, 19.585559764280138, 16.15733443607123, 23.815105944769563, 6.925554682275466, 7.2052476332719015, 46.47449290147455, 41.99905931858909, 33.22553617168255, 23.294451505119813, 90.68185034376793, 95.24253115869965, 73.89731262738965, 19.381483222735397, 57.68509157456339, 80.11406510714863, 63.28290140072451, 66.1541459685621, 29.512657337034604, 29.51953845327709, 37.95746998532873, 56.516784763787854, 64.34212583339021, 30.891494730755152, 102.18123051684145, 66.4485734789655, 23.59019931158253, 71.11152141155824, 19.777896777696608, 41.53930009181475, 28.78084947214729, 26.54485031376354, 13.895101223074246, 34.965298516209856, 77.16135881654941, 21.36898863448812, 13.923372354183993, 9.375817512712283, 61.85152171022485, 13.396149715289665, 105.67762011350254, 44.41856878189375, 39.59269476249622, 14.228227559983907, 10.454010031796177, 10.180810821921522, 52.1780769533015, 25.84252088127571, 63.16173972736988, 5.609054337162614, 29.903702415091313, 5.763041630754833, 14.044796309596158, 13.19967151643258, 7.199858777816696, 55.32671689892068, 64.97228794491905, 164.14670860288507, 10.160714202423426, 11.141625489627144, 30.29159596405837, 19.242599099852963, 26.88963575644107, 69.68161588727996, 11.073190980889652, 22.152378250493143, 39.551789010577764, 9.797782655028062, 66.42100257796392, 6.923678631752409, 18.771955059438007, 48.68673381005118, 58.29824161771937, 37.89861906643686, 11.643876891007672, 16.8685964935897, 22.811657932171507, 5.074779191249298, 10.52326512283438, 11.233182779877787, 9.337655771697328, 60.538108232874656, 75.48936863819102, 59.49274092488543, 14.570393001429593, 6.905246579897708, 49.98240734181736, 30.753136477213776, 82.03437808520165, 37.3752094842929, 5.088248223471623, 11.839517010329633, 85.89923688028485, 11.995350020344066, 126.57718992248724, 29.381582257261, 8.814581033870514, 11.155581566144757, 53.5431767891834, 68.35096265645197, 75.01727005963188, 101.07938451547476, 6.888618761667675, 68.81228043063207, 16.998316269764267, 41.491168829734946, 5.8024177418230085, 27.798147952950227, 48.37782714476459, 115.2414514145484, 5.726728337271022, 6.034187804956691, 37.64621591791638, 10.507904520710884, 29.64056111378097, 42.2548147827837, 35.01059003491636, 13.215839038389454, 29.49081621394606, 86.85089616198985, 14.864399912339401, 31.149918653008356, 111.75007250691897, 92.75803414833034, 6.0408963519318, 7.478573361883879, 7.970393635368331, 64.40944631613695, 7.578932807346035, 12.172243130149255, 32.082039969774584, 11.130591028072727, 6.306377586331011, 51.687918383558916, 54.90232019003854, 12.804437514920972, 14.27024772020106, 5.074902877648009, 26.059150088791494, 14.156487887561019, 42.79807069218994, 29.457320916096965, 6.61802111233935, 79.99364899719667, 33.853275655061275, 170.91657266897474, 129.95580127681512, 58.50584457529895, 50.62987528043149, 56.61550612915878, 6.582771552281248, 103.19268506129842, 119.72137506320024, 68.23343828971247, 35.69324256432487, 13.357118240925747, 10.18198852009077, 18.19849965035045, 28.38428682265582, 15.368544393612819, 26.957687039665807, 14.433633302089408, 57.63284222756332, 32.19217957154492, 63.09597090329643, 49.732001167726025, 104.57925374597677, 11.554040055041972, 23.329567005425805, 19.934132198887706, 14.981967749213204, 106.83481718104957, 9.345210409636893, 10.427575518017655, 60.76065224030639, 88.27503519510654, 14.269497921648373, 33.50671987532657, 56.547476501078414, 103.70642295188021, 43.3435231118042, 90.03193986284239, 10.897819909994299, 42.269784786457265, 6.168588599217844, 21.564708604440984, 43.707669408333196, 61.99651848177715, 62.17263621344391, 5.056334120614419, 13.329317718624706, 5.51895067403645, 100.86507753822518, 20.76716436641583, 67.1005791035079, 82.64816764663382, 8.452476667518743, 31.61399266583979, 46.94460439578822, 23.99582643620932, 62.7249385393811, 11.514100982389543, 11.04813752570115, 43.29817639455386, 83.49197694275307, 110.13128592847032, 5.667057802295551, 16.803741353202714, 15.138727592227106, 66.00733162527285, 47.10266087288482, 23.105287817301317, 43.220066723459546, 20.95305411388746, 71.97641424852836, 47.13841274675341, 11.78987749564742, 7.018671390181852, 60.65434936939315, 28.633005835919136, 16.658442451161733, 23.037493641125977, 17.051877844114163, 62.486506717154306, 44.48177545267066, 41.20634243227864, 20.806936217385285, 18.68703413955111, 16.35699989655203, 73.4914235954081, 13.807204027653603, 72.28789123693687, 60.79226230680199, 47.229148297605725, 15.408187105715193, 14.70700040187616, 13.35337324142731, 53.81983940788981, 49.704625680374534, 102.29929565749929, 8.500648895068231, 13.202581059041005, 21.93166536019755, 80.54147319646215, 18.476292394346412, 179.41072218648026, 32.70209736875722, 67.93499858128126, 16.168467281385535, 11.18739329206466, 36.61916055970288, 13.436302981433997, 27.77019231917197, 8.963901058924057, 66.49393662313615, 5.768878216426662, 17.457821580915546, 6.606676085773855, 44.13003467801407, 9.920320324467522, 55.80566728854982, 8.7681533106408, 18.604499006702493, 31.48592199544904, 50.96605111753211, 18.078034498288154, 14.60303615134667, 21.403943288312735, 17.163817024348575, 13.93073051028443, 48.587513510225925, 12.231641657765088, 170.18718466186561, 54.10274756655318, 29.207748065801137, 8.136010027501902, 5.05914794388683, 5.760530382995549, 38.82817020453072, 5.222385496445071, 12.724801275315805, 20.022277096187686, 48.58867554720965, 16.022018371319447, 102.57103882742877, 30.91310362020999, 11.035490507871046, 13.148910273415531, 10.444513638460458, 113.78085968612018, 6.850258025392662, 21.342022108191276, 70.21322375917511, 84.38002322386369, 12.126439578671913, 76.86525759136578, 21.094854696082866, 13.91622228013107, 109.32621073812459, 26.058899430161432, 6.544652226191903, 67.84594934042964, 8.381383929468727, 43.274196825661356, 26.312498225939947, 6.306988694868017, 16.91838409311143, 15.40095366350838, 77.5938282468293, 23.37657855429542, 20.925437975730713, 14.070097530471488, 28.494753914279322, 10.952212986023591, 94.82330022424195, 6.4370658726922, 10.824679197102434, 134.43663589296767, 120.61203782569278, 35.22036674188513, 45.213270812402456, 46.25852983763805, 19.976841144953283, 5.8453633150839766, 22.110587334185293, 32.4115248331487, 69.10414667355454, 77.95693158820677, 20.530824806028594, 38.3596525983384, 9.27479403649106, 60.414555977374704, 6.822100565657751, 15.173795513207349, 42.89741123422542, 98.3585835851246, 6.605468106728224, 14.2472750917004, 5.509649599178856, 14.863002781051549, 30.790780144609585, 20.44676560137347, 17.486328765215028, 49.88283321083746, 6.030576432825681, 5.913670346637699, 11.872199105965883, 83.52699693530826, 79.63447478973953, 17.16830364003878, 19.07770317151276, 104.13222101970695, 5.449302117413586, 67.50460692106924, 56.46017887949675, 48.5287979991964, 52.22586201676378, 11.111034227902705, 21.842553795962527, 48.4735424569314, 15.797345567816695, 18.90221386288621, 5.446738764191721, 10.539260386800796, 42.51179139020221, 69.94901171947281, 23.375188878722877, 11.775191470847844, 99.67571399013927, 74.88291877211387, 21.043169531252687, 12.994794439011468, 66.22548049919149, 23.89109206138388, 15.192664656867077, 33.399317577647935, 5.265149459915054, 11.582540772243613, 5.818012055895996, 95.90003508996682, 9.850001680611546, 63.10803065668211, 93.483762679814, 84.36630702280375, 86.79514675799517, 42.36148859742871, 20.079861471845778, 7.138251146014275, 36.6669525024995, 75.04844650020267, 22.69312033103816, 52.90844657888325, 10.444651593536735, 109.69315245737938, 29.67167639251027, 14.939576203120986, 60.85085142778861, 126.39995857002741, 76.14816868928285, 21.761794353461617, 12.978426857317833, 77.57933213238931, 31.759568356372466, 16.952997374142672, 43.061018431110185, 23.65969896297537, 5.382926359777908, 7.370372320244502, 18.728560411546766, 103.78025912880773, 13.099916273816977, 18.331134401469107, 9.89857773229578, 20.569242989388716, 22.553420443470625, 46.57471641035244, 7.291572583653427, 25.000804361225928, 12.546621932139162, 88.2767289038089, 9.889082049111526, 20.5150893191694, 93.11862196225016, 31.403285128627825, 105.66080602198686, 6.669777055090054, 62.54653258553775, 15.549899635002324, 20.101317093577787, 50.85101550564519, 36.284231424091885, 26.180665427477805, 146.96575069130878, 25.508745149354485, 98.62063170688204, 129.73289380346947, 60.48250564095426, 7.757436873877743, 34.15608583196329, 93.25929301035822, 28.95238253373103, 71.94112622037187, 17.52107037820497, 45.40100688930135, 18.72431305939384, 64.61181508511811, 9.83373135104462, 15.019177193606373, 6.80144400661388, 79.07455184850454, 59.882149233985984, 150.36023198680198, 7.4598595158631475, 50.40870950917842, 63.653759298138276, 17.75243256602232, 24.57045792356977, 9.773532103381003, 7.482740079206079, 16.570327588713557, 21.774767528377414, 53.745305555853314, 43.28885817440722, 30.623298875347334, 81.55379863928827, 68.09432050406788, 27.86477829050603, 90.63102203409255, 5.1076002605944195, 5.827399415723322, 11.79829680726674, 8.037861427892652, 35.8520822264384, 5.405650756258442, 64.15806066582633, 32.06964637123682, 72.03547771740486, 19.68198509979438, 7.89452344641482, 63.99280223770876, 75.12563956907691, 94.02137656883214, 5.544346736072904, 20.064145170004736, 119.94732327396528, 5.8279047697005, 13.876834087717059, 43.79470892263993, 200.56009915881214, 39.18654268032256, 27.373463212047334, 5.812654099927961, 12.866592183983846, 14.398879844205425, 9.75988598006006, 8.691278182946839, 21.49253038165267, 10.45591480368675, 24.925005913122803, 21.490948023912487, 16.260047337497152, 14.08487255386083, 55.87426631147835, 17.227619502931336, 5.386412199248991, 5.163290590426527, 12.117591412367956, 5.6867689802148735, 27.94087369073032, 16.066883764773518, 36.02892881595621, 17.677549509775623, 14.937368344980294, 5.349569853424553, 5.996532214935979, 6.520136402848329, 45.6690681157768, 19.671123222775428, 9.507204620962678, 19.11666745554155, 26.547930228200883, 14.311051600527824, 9.639730118593596, 9.509788204730434, 35.91415373236257, 76.43433395081522, 13.236108632138071, 27.431194852053117, 33.33617311698563, 25.984260015497547, 8.246961039199036, 130.98989867035183, 25.32722749101186, 17.1252014320649, 10.882295446025518, 78.5489279180895, 5.338761358641003, 26.343399907480762, 5.806076091944005, 25.28792799431421, 26.68769918823991, 179.55535690023726, 110.16830083639411, 50.0389069559847, 33.51874542726629, 32.597348384620226, 19.99659327147442, 56.521529055833064, 36.225834016517226, 25.001583632765513, 43.956863834409035, 7.879611017411063, 21.326102673896358, 62.5751934038689, 36.354417046040155, 41.2151828965484, 15.715282211592035, 160.0410036531802, 49.592084922287825, 44.14888604147357, 51.72859237181841, 47.124123109877914, 21.242888283045946, 17.401287108874033, 20.02670742043314, 7.51233879025044, 24.76922086909599, 24.119866115441393, 23.06122419916651, 56.08372242127515, 79.48264158251699, 13.83025399693598, 12.309400395501847, 46.70170834015338, 43.06391001560209, 57.04240591632722, 61.76121454770616, 19.46670625415198, 26.857072632620483, 11.152622647224607, 93.95255152632697, 11.641803691605798, 12.075745782292739, 7.848888179746581, 18.448469126512435, 6.827437379008772, 28.534237354221993, 155.94405161262912, 107.28788797685753, 10.708804202180374, 15.741877635155532, 8.253473316060232, 84.24847480132762, 43.2038866693676, 82.85756468996159, 59.58745059035384, 16.24228296987058, 29.661821196413165, 6.448911734259698, 61.30517479247053, 22.1667238722219, 120.60385764824515, 15.302330714431534, 23.31321431440352, 10.942511433323657, 5.747285358302977, 23.19478846960232, 47.079468190712184, 11.2279984457424, 15.748299191654072, 21.33211182031719, 59.875547836115516, 22.912374834846045, 16.215026974557205, 20.052650256630855, 181.0856892120408, 15.627738568245553, 38.02622460202393, 11.38787843970194, 5.438954637666958, 128.83322916839518, 38.72439849334415, 40.32939118446628, 6.5365691466663005, 6.058228484114361, 41.49629624808543, 64.1016486253536, 37.84721223368851, 19.864141063063183, 57.01841484380434, 5.204536010746139, 9.35537056918591, 13.904846900111647, 140.7911432607838, 31.630245629160996, 92.26776636119297, 27.029819048308383, 12.067750981587047, 71.13508518227857, 20.513933077630526, 12.558787234962766, 18.609217148771354, 9.003432875504698, 30.467543098529063, 21.08818822372335, 33.855513478959175, 83.06307971430554, 7.961392132089008, 10.503610246033942, 34.45217055320779, 8.968455398954477, 32.239607579256955, 17.120263412874984, 7.027664156209926, 49.89318416229037, 17.47763939861577, 52.48993109384986, 56.671609664282485, 65.42624991222985, 21.985274027602003, 10.564159724349508, 100.59491392151999, 40.08961628950655, 6.836702310266596, 26.717989575298557, ...])
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)