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 = 45060
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);
([4970147.866789154, 4989145.236437665, 4989840.894404741, 5033565.443647646, 5034074.805677753, 5173172.304437089, 5177762.818318329, 5186962.5, 5249494.53265801, 5253222.730802727, 5257138.645666104, 5257167.551445483, 5313437.665544172, 5357784.375, 5357810.653331693, 5372180.886635724, 5394465.197785574, 5397296.064312736, 5397814.201176564, 5399772.136125706, 5402725.0, 5403236.986392833, 5413973.418357488, 5417417.1875, 5428488.244386816, 5429680.792973375, 5431182.8125, 5433880.842554069, 5434214.0625, 5441649.464751266, 5462152.19669874, 5466553.116831803, 5484237.414136898, 5485018.157146333, 5486162.3397558695, 5495962.27414608, 5499402.46539563, 5510560.9375, 5540448.084056628, 5541161.093663447, 5553914.13268344, 5563930.945574267, 5565824.924494361, 5567049.310365025, 5578348.691906278, 5582237.138944714, 5589320.47166776, 5592817.1875, 5596381.25, 5596908.308834448, 5599115.244528169, 5600125.603244502, 5601987.5, 5604133.830408344, 5612386.369444331, 5616856.25, 5617517.67986171, 5618428.125, 5620975.0, 5621713.380063305, 5622254.944273814, 5623537.5, 5627237.128678203, 5627329.214540426, 5627867.442405136, 5628067.79987265, 5628910.930036188, 5630760.225155374, 5631802.975140518, 5632301.640482632, 5632618.871394709, 5632683.185611178, 5632738.145439287, 5633078.950811663, 5633285.503666222, 5633569.350517423, 5633998.838331119, 5634978.165023545, 5635348.9799549095, 5635892.148215974, 5636529.331746669, 5636565.625, 5636583.119521807, 5637953.4587274, 5638006.2518689465, 5638088.16479924, 5639065.625, 5639073.122666486, 5639219.837548348, 5639316.320313901, 5639327.500632626, 5639346.0546039315, 5640388.627178433, 5640388.959658373, 5640454.6875, 5640754.458950577, 5641325.0, 5641605.023092605, 5642509.588561182, 5643952.856444619, 5646559.135794924, 5649991.969686488, 5651314.00151495, 5652412.5, 5654743.145865873, 5654953.850307366, 5655099.583869875, 5655205.69830186, 5655725.0, 5656488.115506308, 5656833.952677968, 5657079.1904342305, 5658637.936510056, 5658650.490933895, 5662994.054426165, 5664528.86836453, 5665054.914448851, 5665077.446958602, 5665407.221253251, 5667916.232468553, 5667927.966884317, 5668461.754158445, 5669683.3127823975, 5670050.293461903, 5674012.97919596, 5674568.178429233, 5675338.35843147, 5679116.805411606, 5679250.821605517, 5682642.781155148, 5683942.1875, 5685203.0621146215, 5685724.918266823, 5686619.6872756975, 5687076.140488135, 5688399.4892711975, 5689360.9375, 5694560.9375, 5701832.684264785, 5704503.706091898, 5708383.0361759225, 5710210.9375, 5712168.731237848, 5714640.968800584, 5715798.063200351, 5718904.656751659, 5723240.480823644, 5726340.889376179, 5726703.366241715, 5727793.75, 5732152.191232007, 5735145.565802276, 5739592.4849911, 5743025.0, 5743300.605840596, 5745066.7784804525, 5745830.987192226, 5746135.472086666, 5747320.828744393, 5748578.125, 5749110.9375, 5750301.5625, 5751626.5625, 5752779.298785273, 5755480.508811582, 5756662.5, 5757869.565989906, 5758765.600280729, 5759289.03871889, 5760304.376933673, 5762282.8125, 5762604.086899874, 5763740.357556428, 5764348.042445267, 5764361.224230984, 5765231.25, 5765731.509934968, 5766062.852207741, 5766254.395066846, 5767031.25, 5767362.343327162, 5767862.454157587, 5767883.546751827, 5769882.760952354, 5773211.377875245, 5773785.9375, 5774672.630485585, 5776457.818761916, 5776745.3125, 5783090.651194333, 5787788.010600819, 5792173.202813825, 5794269.148892851, 5796422.007632518, 5798545.254548953, 5798925.399765776, 5801370.057153774, 5802137.159641661, 5803709.375, 5804180.617503946, 5805903.796010038, 5806486.29448508, 5806553.234268188, 5806624.257414335, 5807558.158107798, 5808457.488653213, 5812050.92879374, 5814851.073685996, 5815367.078119262, 5815521.467576583, 5818001.842696112, 5818049.162224457, 5818171.367707279, 5818243.75, 5818796.875, 5819234.375, 5819561.18382416, 5819870.3125, 5820509.375, 5820644.739351686, 5821275.754835146, 5821492.1875, 5822643.071329538, 5822701.533055836, 5823069.346194405, 5823681.25, 5823716.857677316, 5823873.227666859, 5824167.83648421, 5824358.428262584, 5824504.469038974, 5825037.5, 5825065.750093185, 5825167.727470976, 5825379.766865873, 5825429.6875, 5825445.7105733445, 5825781.85589749, 5826571.363672207, 5826771.875, 5827140.537460138, 5827148.457602364, 5827206.25, 5827235.9375, 5827264.0625, 5827392.1875, 5827590.59746513, 5827600.0, 5827628.326305127, 5827675.585644466, 5827735.375002356, 5827857.362975008, 5827935.9375, 5827980.452446427, 5828341.604836585, 5828599.376415043, 5828648.4375, 5828648.535897935, 5828742.627175273, 5828757.8125, 5828778.168734057, 5828789.2093505105, 5828790.906419304, 5828843.199976824, 5828916.1033311, 5828942.1875, 5829296.276090979, 5829389.311233926, 5829681.050581413, 5829777.864837936, 5830045.040624293, 5830366.804928196, 5830940.17345317, 5830943.314669939, 5830943.990165677, 5831030.355413203, 5831074.760486218, 5831135.497609871, 5831424.793620005, 5831517.894931979, 5831561.359923279, 5831601.5625, 5831638.809364068, 5831644.7722350815, 5832093.286039031, 5832614.162455758, 5833051.549277407, 5833190.270101877, 5833193.712657449, 5833385.888330664, 5833505.578554279, 5833773.887711331, 5833783.49521781, 5834181.25, 5834436.1709410185, 5834468.75, 5834782.361799342, 5834785.8002022505, 5835004.529703373, 5835127.908906531, 5835340.670672773, 5835676.949357968, 5835905.3720621625, 5835974.160201288, 5835987.5, 5836601.092624984, 5836859.759891309, 5836901.085649039, 5836925.7470908025, 5837056.733014841, 5837114.0625, 5837196.811117977, 5837237.480142484, 5837259.55926818, 5837314.0625, 5837601.143272384, 5837671.875, 5837757.720259515, 5837818.516478469, 5837995.3125, 5838050.990783375, 5838141.002592941, 5838182.7537355535, 5839223.122774817, 5839317.876041989, 5839322.575441235, 5839544.237651851, 5839690.694712394, 5840182.474286466, 5840553.091507598, 5840830.635308063, 5841154.112238818, 5841255.439705749, 5842198.146501083, 5842325.756573091, 5843883.725146252, 5844244.902781958, 5844643.224382267, 5845618.717175718, 5846941.457395369, 5847018.309520858, 5847762.5, 5848056.25, 5848170.229578685, 5848263.868259632, 5848279.471106133, 5849103.958282116, 5849382.8125, 5850692.41629166, 5851373.070765203, 5852309.986841733, 5852642.1875, 5853475.96277945, 5853481.727304672, 5853491.992643503, 5854291.180825762, 5854812.5, 5854893.246273071, 5854906.25, 5857363.043807388, 5857428.93999279, 5858235.274797951, 5859346.875, 5859496.754645931, 5860615.17437094, 5861022.535237273, 5861439.659357143, 5863528.104747557, 5863532.981489684, 5863566.656896544, 5863960.751060362, 5866445.3125, 5870236.597413036, 5870770.306816231, 5873610.258211053, 5874017.1875, 5876118.229953576, 5876443.473074902, 5878762.202439462, 5878772.300415765, 5878920.3125, 5880600.490072746, 5881106.294139097, 5881313.889927701, 5881495.684297675, 5881731.242737713, 5884208.678422704, 5884229.971313195, 5887041.651720121, 5887145.068547988, 5890646.551422383, 5892411.478564092, 5892714.182537899, 5892858.180359656, 5894738.932384706, 5896988.636429384, 5898071.24940568, 5898472.300836025, 5898491.7650197875, 5899764.409978226, 5902378.125, 5902645.639972149, 5904193.75, 5909819.914625429, 5909846.092716881, 5909859.11459178, 5913206.25, 5914522.2546937885, 5916926.459532868, 5918731.095031143, 5918776.5625, 5920416.806773287, 5921312.533966251, 5921980.308810478, 5925120.925393184, 5925316.280185245, 5925456.293196333, 5926007.8125, 5928729.95370206, 5931531.0903379405, 5932325.0, 5935407.8125, 5938131.476108606, 5938160.653400684, 5938791.788159513, 5939187.5, 5943079.266483875, 5944983.659617448, 5945785.9375, 5950266.645902317, 5950976.272859049, 5957632.053579138, 5958231.25, 5958416.986507374, 5958916.468943895, 5959010.9375, 5959651.612774673, 5960037.6720409505, 5960693.674280255, 5960693.75, 5960957.8125, 5961149.349952713, 5961220.2306791125, 5961462.730587863, 5961523.4375, 5961596.351622228, 5961910.9375, 5962043.75, 5962531.751951347, 5963179.602472529, 5963427.448303618, 5963581.878417125, 5963585.831762784, 5963887.173759048, 5963893.261931134, 5964093.232772164, 5964382.8125, 5964548.138108728, 5964625.0, 5964647.71729107, 5965531.3556113215, 5965824.626539032, 5965877.921793762, 5967539.1684747245, 5970088.0323377345, 5971063.094106455, 5971631.214878951, 5973781.88730483, 5974185.283655053, 5974830.77378494, 5975145.3125, 5976940.496168483, 5977429.438434086, 5978068.585411166, 5979527.243048594, 5979904.620794534, 5981630.388236749, 5983577.501912459, 5985424.35922271, 5986410.63454533, 5987673.992163867, 5987882.751424535, 5990965.014960055, 5991104.778983681, 5991190.625, 5992401.606510165, 5995391.800008294, 5996526.5625, 5997852.329922955, 5998339.0625, 6000573.4375, 6001495.598623162, 6001729.4375009695, 6001747.347343528, 6009561.1000389615, 6010731.923675649, 6012039.0625, 6020540.625, 6020569.305774091, 6021004.365129286, 6021633.748252903, 6022063.414304188, 6022160.372747277, 6023370.3125, 6024342.380466051, 6024540.547912402, 6028303.117194874, 6030415.537275534, 6033122.444041903, 6033648.8732783245, 6033669.117575086, 6034176.477745307, 6034600.772804678, 6035743.75, 6035964.0625, 6036532.445429322, 6037128.590955443, 6037424.110231787, 6037751.936454706, 6038177.605539031, 6038693.75, 6040032.114024063, 6040212.125688722, 6040692.1875, 6047699.678272841, 6047851.5625, 6048259.375, 6048892.1875, 6051135.287438959, 6052342.290113887, 6053568.690958684, 6053589.255024886, 6053782.328582153, 6055470.785946627, 6056820.938652475, 6059862.017419648, 6063601.894100615, 6064140.587189426, 6064706.653796777, 6065359.375, 6065430.545245701, 6069500.703969118, 6069690.625, 6075624.477695941, 6076468.358129188, 6076559.375, 6077746.753930819, 6080165.4849401945, 6082868.102186511, 6084303.687597907, 6084932.193587509, 6085164.5552307945, 6087947.001485521, 6088401.360110332, 6089484.731336744, 6091068.283656237, 6091941.230472065, 6092106.116271456, 6092367.185944246, 6092620.794080265, 6093187.667677772, 6093373.370334415, 6094006.690869402, 6097301.962508848, 6098509.375, 6100122.321266786, 6101857.8125, 6105607.671927846, 6105685.007845605, 6109955.8303826675, 6111070.3125, 6111141.201508456, 6111725.9278712, 6112092.96129441, 6112572.427913074, 6112659.375, 6112676.314534591, 6112819.394059498, 6113477.49903982, 6113485.9375, 6114026.8351820335, 6114540.716688043, 6114745.3125, 6114839.0625, 6114900.308338139, 6115018.66794281, 6115076.370829962, 6115275.72304057, 6115329.009758152, 6115623.143123015, 6115711.278285296, 6115797.667723435, 6115850.8040477205, 6115891.851327476, 6115893.984248609, 6115898.4375, 6115900.194363319, 6115915.826973342, 6115944.879913697, 6115955.021527534, 6116104.6875, 6116229.463392172, 6116254.637016545, 6116255.735879612, 6116267.611785081, 6116285.038172686, 6116334.046737486, 6116684.375, 6116689.0625, 6116701.767644719, 6116710.537101705, 6116715.812221217, 6116825.646529634, 6116852.3123, 6116858.8766573705, 6117022.494556679, 6117087.948071928, 6117261.842994653, 6117265.625, 6117437.5735170385, 6117847.330670168, 6117871.6039021155, 6117885.457381694, 6118060.9375, 6118262.112737948, 6118326.5625, 6119177.088803718, 6120124.842061066, 6120553.26505719, 6121815.047493885, 6122121.71902103, 6122168.75, 6123720.05174003, 6124668.680299146, 6124735.652986703, 6125423.432542051, 6126041.684094785, 6127343.75, 6127363.920729563, 6128892.999660938, 6129727.992473092, 6130720.977012558, 6131025.823914933, 6132297.690689007, 6132816.9535956085, 6132943.63759822, 6134357.8125, 6135072.948143512, 6136161.547201303, 6136277.204426403, 6138638.404862937, 6139159.377686912, 6139485.777185726, 6140585.162098262, 6141064.854456181, 6142044.99289824, 6142501.5625, 6143123.4375, 6144327.748619047, 6144864.063993078, 6145915.921889441, 6146012.040118422, 6146157.602679373, 6146184.526064956, 6146734.375, 6146759.4142598845, 6147151.11713178, 6148895.009824713, 6149309.223372993, 6149309.783369331, 6149818.385499498, 6151095.211833938, 6151303.247001807, 6153942.615013068, 6154563.230201554, 6154622.846300538, 6154673.903411997, 6157420.3125, 6158141.471838521, 6158562.5, 6158674.675928235, 6159771.875, 6160047.952221252, 6160982.719906156, 6161078.498087886, 6161342.1875, 6161629.814749923, 6161657.805146596, 6161843.75, 6162003.125, 6163159.995927529, 6167420.458030495, 6168150.966957584, 6169666.343320577, 6170707.156898562, 6172697.871341406, 6173056.042630061, 6173115.5493658045, 6173445.135221147, 6174188.201920019, 6175014.0625, 6175404.614598377, 6177223.815425905, 6177864.93931348, 6178670.814374671, 6178873.343578002, 6179015.455678187, 6179514.235877705, 6182379.6875, 6184835.9375, 6185291.428510373, 6185527.842949688, 6185619.60246719, 6186218.75, 6187002.774287045, 6187866.047013983, 6189557.8125, 6189988.983600248, 6191854.41452428, 6194589.006019377, 6195749.037667721, 6196550.0, 6196942.1875, 6198104.450613143, 6198232.605107338, 6198312.339205359, 6198772.028272295, 6200903.125, 6201924.688509529, 6202909.7525760755, 6204335.005730365, 6206767.587119041, 6208481.25, 6208648.652812604, 6208650.909844594, 6209448.4375, 6209951.5625, 6213979.6875, 6214622.292228992, 6215175.0, 6217685.380327883, 6218150.802498329, 6219786.934976463, 6222373.567660283, 6223154.656852006, 6223223.960499887, 6225351.445247978, 6226774.073905766, 6232111.463164991, 6233335.313324298, 6233874.751328376, 6238936.609031784, 6241882.8125, 6242389.405203662, 6243717.873028614, 6243943.75, 6247081.163055858, 6248621.10033158, 6250154.819362901, 6251409.375, 6251978.832300495, 6253870.987325992, 6254094.879214302, 6254532.140537737, 6254940.362151496, 6256948.4375, 6257544.1529018795, 6257657.703517954, 6257791.532121311, 6257911.73733471, 6259223.4375, 6259787.75306326, 6260637.5, 6260690.625, 6261003.566008362, 6261650.0, 6263035.135016559, 6264475.594499904, 6264893.75, 6265488.653580162, 6266124.794990601, 6266185.377927972, 6266245.3125, 6266510.9375, 6266770.617947704, 6267395.3125, 6267673.736443298, 6268185.081780466, 6269261.726802043, 6269571.750094105, 6270216.710980148, 6271668.75, 6271762.132573898, 6272029.333009778, 6272126.5625, 6272132.330454213, 6272719.261041793, 6272993.681280609, 6274697.349012743, 6277076.114000478, 6277332.822569826, 6277971.505041053, 6281246.875, 6282646.875, 6284871.055517327, 6290009.071689936, 6290283.957153224, 6290767.1875, 6291572.758901461, 6292416.92412453, 6294727.790129106, 6295033.442571441, 6296873.963418977, 6297440.575766812, 6299054.452854642, 6299889.169778421, 6300415.665905716, 6300863.480291883, 6300977.995842443, 6301456.702311575, 6301564.696723736, 6302324.635473484, 6302470.3125, 6302540.625, 6304119.816928824, 6304667.635508753, 6305803.125, 6306984.816790562, 6308062.202645433, 6308504.440414787, 6309026.311828315, 6309182.605870396, 6309470.3125, 6312549.270820999, 6312793.75, 6317094.340572686, 6318043.75, 6320109.375, 6320280.768047417, 6320288.613885872, 6320456.25, 6321150.376610842, 6321176.5625, 6321201.601674041, 6321858.671380945, 6322432.8125, 6322492.137070382, 6322565.580864209, 6322741.972526979, 6322852.774976741, 6323634.305584051, 6323868.295309975, 6324145.7861977825, 6324251.559992144, 6324262.5, 6324629.831907214, 6324679.262944755, 6325050.0, 6325179.796573322, 6325198.4375, 6325496.185021324, 6326528.739492835, 6326564.534137038, 6329348.4375, 6330377.9017149145, 6330790.625, 6330837.30933021, 6333888.982581125, 6334301.851032445, 6334681.25, 6334902.557452497, 6334932.793970482, 6335014.494663951, 6335392.174808655, 6336537.5, 6336689.0625, 6337550.0, 6337693.346248442, 6340641.8351479815, 6342971.53617739, 6344095.339848307, 6346364.0625, 6348576.5625, 6349996.197309067, 6350543.308091405, 6351413.735508294, 6351751.041080253, 6352002.844311487, 6352196.875, 6352457.8125, 6354213.801014432, 6354822.736601562, 6354934.6532264175, 6355387.5, 6355621.875, 6356464.0625, 6356898.904753721, 6357104.011383179, 6358888.490347971, 6359578.964732749, 6359672.857808891, 6360187.5, 6361090.625, 6361835.9375, 6362643.76747561, 6363673.743522954, 6364810.933346578, 6365066.8931515105, 6365715.619534885, 6365941.159369352, 6366526.233623062, 6367196.875, 6368373.935218914, 6369468.146119773, 6369562.5, 6369629.554433232, 6369976.5625, 6371766.440792582, 6372174.799200049, 6374217.849707456, 6376223.572531946, 6377604.6875, 6377632.262878656, 6377864.097215612, 6379957.064342256, 6383106.885393152, 6385168.75, 6387900.352945971, 6394296.61592021, 6399462.216190778, 6400078.125, 6401320.3289434, 6401451.706977204, 6401465.427439877, 6401602.588787157, 6404249.498854441, 6404940.625, 6407728.676311309, 6410254.400215159, 6410753.0269668335, 6418521.875, 6419140.697999332, 6422012.710919386, 6429724.800153803, 6431643.963216037, 6432145.3125, 6433154.428812313, 6433564.923068727, 6439407.993414418, 6440791.287069412, 6442968.2692272775, 6444806.806006711, 6444882.364350563, 6447175.482713014, 6448095.3125, 6448857.065384475, 6451420.3125, 6452325.772831983, 6495768.75, 6496491.932300493, 6499501.5625, 6500768.75, 6501231.14444563, 6504325.342554735, 6504941.354937064, 6505253.358537433, 6505820.109062714, 6506792.1875, 6511061.621918399, 6512954.6875, 6513320.103989799, 6513982.57634938, 6515862.891973465, 6516300.683867886, 6517742.396627358, 6518374.633628947, 6519826.5625, 6521137.725978486, 6523983.133007561, 6524014.0625, 6525480.504592308, 6525622.816138334, 6527285.9375, 6532280.029969901, 6532296.238223075, 6532794.477196901, 6532824.970883559, 6534061.808115685, 6534874.303713713, 6535575.645678101, 6538323.4375, 6538857.550904298, 6539065.734504105, 6541514.0625, 6542003.78320102, 6543657.336313598, 6545144.550648111, 6548323.184505017, 6551205.650060063, 6552664.0625, ...], [5.506008735669317, 6.080224959451764, 37.50552321811223, 20.852649224008648, 36.51110251492256, 80.55507161236898, 9.615888750079215, 44.53973190897992, 19.09218112862384, 10.177624903827574, 7.459126539910458, 70.09039416682673, 58.10959833710606, 56.566121317632316, 13.958762250768098, 46.343862439792275, 10.51972369869884, 12.548722778317833, 15.497805900802366, 24.85012997233939, 36.63013416670494, 10.40977259903259, 28.151524357328956, 39.53964783728101, 10.051572515307514, 21.91920747681128, 46.89175540355974, 14.963045357370778, 90.74757511934408, 136.091964319023, 20.874743564730352, 28.364345735500624, 26.93462305370141, 13.078737687615234, 7.079955959029486, 5.601670367827807, 53.11910207988958, 70.03665225908196, 23.091265692028678, 47.69739328971907, 95.34757335754578, 14.920174217994461, 27.115310924647456, 7.952710148272176, 16.008771900898335, 95.96970885291263, 41.38868676369691, 105.32205413364015, 32.00928089852815, 5.35922186033165, 181.05625640775668, 17.87730025221204, 74.00511870201967, 21.059516303255045, 67.43922187765571, 30.445570369712705, 8.565319111934887, 53.76621564504464, 48.96221167284636, 67.29250450689756, 35.4395614341494, 34.60037920795975, 19.57648551405273, 175.38219006455063, 25.83384115724191, 7.292300688532896, 6.087323389748787, 25.45061221305002, 14.399507577484416, 6.77917570439015, 20.771592647428122, 27.21707534519744, 6.899588127530123, 91.66585631423513, 28.489265787680093, 27.72666799579587, 6.319204518871026, 7.617777945942648, 8.595899173941312, 27.770578705414234, 5.28022333415176, 30.311589036546486, 5.410342340818892, 45.03919955379762, 6.267434524031448, 29.72646599676727, 39.7124716909657, 29.522229946060563, 7.44003737507026, 77.22673367904817, 20.684528335898577, 80.03161486731065, 56.1477868563247, 43.75483571244578, 71.13422051314507, 51.4126755230733, 116.76750181264038, 175.55249398126705, 121.4746031574102, 35.72456222069931, 6.237442285516079, 10.803502966472497, 22.73914975780899, 76.8456587691438, 18.75881221014888, 18.68079327638732, 22.37263757833737, 29.44291355333066, 111.26226965020484, 105.31787250074427, 46.303201105192, 8.943726374774553, 9.72994634382793, 5.216112492975178, 46.520186935744526, 12.529458786612814, 38.85947824398291, 43.58551994304963, 7.996848433147873, 38.607227925998814, 25.749727195649402, 20.902200844193008, 17.266370361627885, 16.191932834045762, 125.96530068326241, 20.807667151602928, 18.545105385121982, 36.69867901392886, 12.711401628777152, 17.817974071388225, 35.02302490195333, 9.27879011552529, 41.45622144775684, 82.35844164123547, 43.95674704764637, 21.3867382045325, 61.391143012299814, 92.04957952210474, 25.436532570396558, 17.741031559024364, 50.85872031800533, 70.99716296655218, 90.05615050860777, 11.711264858072584, 121.52347201920048, 141.08633189456862, 22.076236135772717, 44.574466027945554, 16.33690385609664, 41.73573238469778, 13.252873609241863, 37.958922446611766, 23.669099629342874, 54.89971046306117, 39.51922861620467, 105.94936199288183, 5.520460162906016, 136.82676903260736, 38.10981602508945, 50.79270850823169, 69.24643343093624, 108.68098067319363, 68.76086335792517, 10.570014627170858, 12.710702987477283, 74.47989028791797, 12.698074247812496, 23.077393104124766, 81.27961668877715, 8.128900218286711, 184.02647457915836, 31.918484398969806, 69.87112336438244, 6.426896219674768, 11.60755212456142, 59.45730196190267, 8.428990952244636, 5.840508502584488, 39.7657895537725, 86.15454807500907, 10.891340268655078, 11.05680029227207, 18.74343732742594, 27.54454297328554, 6.8547283848556795, 41.313883137084716, 73.54881020995249, 8.289891509549888, 85.66188767808599, 11.168898566335839, 19.517210367748927, 102.35042319579034, 17.065019930892127, 25.375632505537915, 24.78589234870464, 74.44953439148492, 85.69735305407772, 23.248554672233173, 69.08686687874899, 81.007048793028, 168.44277458069098, 7.737666082344782, 9.425536773042369, 16.7976839986039, 21.828886350556676, 13.835847366907508, 42.485384234770336, 21.605417018856766, 58.808803062136924, 100.71137144245698, 89.48772486107035, 18.676729672914682, 8.035372240917628, 70.63243190770206, 55.628130891329974, 31.98355951358111, 15.971573332170667, 31.816436354040864, 49.04680877087618, 74.98264988147075, 10.063161780863654, 100.17817114620658, 87.20672160230298, 15.786920474403269, 21.453850424017674, 55.590545593989845, 23.37712910896047, 122.27666750056267, 18.16761568995118, 90.05641366523314, 151.40331795257063, 38.0344784918541, 86.13862577863942, 172.04749588576817, 169.22004265486723, 105.96975380892269, 11.812677314981258, 50.67528897091128, 8.933489098954997, 40.6635491225069, 14.266695021152243, 31.593431610419803, 40.91719244670799, 47.09868430500337, 106.16064012077783, 56.9486282976315, 27.99130082744814, 33.58187949726539, 5.625278748372891, 8.62262207501192, 6.402387546877923, 50.43885283259532, 58.92257349720959, 86.30417966278048, 6.976271334346617, 42.74875131578935, 45.35470685876947, 15.33030592068257, 107.58413377512395, 40.61653349227595, 80.44433221754353, 15.532422432825925, 16.134846105756715, 13.191100886063099, 5.077699057114842, 49.947525188395076, 20.560086905421542, 6.814201560454517, 25.126578955783096, 7.511775903314925, 34.13793115982213, 36.76298188392808, 21.990458218305292, 8.98857121117192, 7.692474257362191, 18.291434786696094, 34.6422668836931, 8.985228938885609, 25.02510443192396, 45.848851035885254, 16.83978725999625, 58.239432194561914, 5.037303769130657, 122.12270186290708, 7.443629423521267, 18.12295340951711, 5.938254849164786, 7.479729926580683, 6.481253348474355, 33.61894014603257, 12.879804707737184, 14.731866431912188, 193.00419784739879, 33.24029042547028, 5.073166061021644, 30.299004340267597, 93.24969773700526, 6.736402237297523, 25.754686323448638, 85.18847130025121, 15.118497908745336, 11.791492619779326, 12.397838407044464, 57.19864228227802, 34.858752321583054, 116.93939147332961, 51.87476590801771, 154.07364281363937, 74.32374232653241, 106.60419601732687, 39.89750949742625, 27.32155908292172, 5.202916302843248, 104.63171303096843, 105.75179583953971, 65.30027300844542, 49.486866365830316, 75.03456604854668, 77.693690754947, 31.061634901522805, 6.19757087690595, 42.46538160081275, 5.530235298236322, 9.078745989209862, 15.300169685861643, 12.432962739121741, 17.195201649370947, 31.51213570316193, 47.99014642961963, 97.9454164256956, 33.10322457672466, 49.993456676761404, 134.12921770437472, 55.07969308413759, 33.11153015868541, 52.623007531488845, 62.83776828639902, 127.44457713295058, 12.144897077719047, 30.706505328897137, 29.892475560622792, 68.10490201591124, 51.87265996011478, 14.63459884698434, 18.127473951232943, 24.880860192200085, 69.78177589003833, 57.76766940961821, 45.08961166734145, 22.93415184188492, 5.746836061082741, 54.45088907071428, 31.154650159409073, 82.29075943541477, 25.19362093812421, 36.9026037201318, 60.22972378363853, 10.422148639915395, 59.435030644921625, 49.713316738791, 8.77033944489467, 8.827572009576587, 77.04836120800175, 14.501796223229835, 26.85928627721762, 12.344619113145656, 17.83772586739539, 28.13020957177485, 67.25400402740736, 18.14964979791584, 32.49428002279454, 44.42365553338827, 6.35433634569568, 51.247943176034966, 5.373125246910702, 47.06084972760337, 10.401733805921472, 13.981544196820591, 23.932727894758187, 75.4738247297393, 31.77620208012669, 27.401991771029344, 25.696517385879435, 39.581224959224095, 142.48865907019376, 9.325270041102293, 5.270044721926855, 40.54234606329593, 5.585075556995148, 29.21472473974638, 30.688449520612636, 191.2009090826393, 22.42702733476843, 11.755879385989473, 26.193863609282634, 33.672051244713465, 16.123759388540044, 57.110663330726446, 29.469858898002034, 27.185219215340908, 54.91292736129351, 6.1228285920963685, 123.45213543725404, 41.845668513826105, 7.342850995789905, 10.743687988642915, 48.402581161864006, 7.746592652917042, 116.00678806997504, 5.926022573155614, 32.46062804016656, 5.906921430847354, 125.04825905834691, 15.580973747255292, 7.292454832003893, 18.20793544874678, 5.069682649566584, 64.32837826092276, 16.063491792092897, 9.19995267860291, 30.85143663655924, 60.11424859374178, 22.677232557502514, 93.91871413632936, 6.686316835058122, 127.71325838412555, 22.318932067167193, 39.10673028611494, 46.053942426835704, 26.353540418017253, 117.10980893968632, 17.80261672887635, 100.80082538446362, 76.91584860101594, 82.90486835141999, 30.269226981269167, 9.374278134487158, 15.640467108710483, 27.111546572563963, 72.83358858581398, 78.01857258007622, 20.11640534800397, 11.002179373088806, 14.730162011400115, 41.61293771388963, 13.262472602089264, 72.88414920070103, 45.922892780698604, 25.47468598727655, 86.38445506025359, 50.69432291440338, 18.035548329687106, 5.806197823441374, 23.421238766601938, 20.10070816802518, 16.195963203821314, 32.91927256066815, 17.64470761449587, 46.40408385682746, 6.379823094026415, 6.784775815308385, 7.473526385986746, 25.071244271104337, 15.361429259095903, 8.589687420604605, 17.8207545048679, 38.623070878130626, 5.65030190727052, 5.767135117040661, 24.044031944565496, 33.87980744097919, 98.80507367396122, 32.45472804792206, 51.690688882355815, 181.28574769942617, 7.579288323944489, 18.511479397912538, 39.64263437051943, 34.99177558512778, 43.85083145011331, 38.116644162291806, 27.37191933657177, 77.86429884909961, 8.33555525777646, 90.58846322340608, 8.309988567685988, 98.48359386564614, 56.01705713721318, 48.68370512031512, 31.019890082748496, 34.17669146884113, 25.868946542853152, 26.048448834769452, 17.109987841036137, 73.45025172410809, 18.329569694435207, 38.58091923942533, 31.99968085906678, 17.58861286320365, 23.469131725353442, 10.271559655300914, 88.62468941921458, 6.980508237268492, 80.49716740615665, 82.7079161307162, 23.214271535375516, 28.371451682147395, 26.902454660461032, 7.822888474669011, 16.91094700172534, 16.555793596091025, 6.473886761728581, 120.1674498174483, 50.15652288480479, 40.170203188045896, 78.51848677628871, 24.687074178187665, 51.512671346722485, 9.668972098084852, 18.978875823466634, 37.09159264935558, 49.23783843777967, 22.84576492738052, 63.48176309973489, 70.41773077318052, 56.28481904753633, 39.302069561828915, 96.00637678354042, 7.970334957361124, 36.85444799647127, 87.87009070423686, 25.25249900097352, 87.22866170634404, 119.66763787142769, 18.021160320755, 125.83550769725112, 6.123275220017071, 27.798033138991613, 16.741874040669497, 106.51691561294608, 93.32925818424168, 120.4475511999258, 82.01248984312018, 79.73625187626777, 12.7749390717253, 50.49247875333043, 104.14591102793354, 157.8387290661492, 7.971341093494464, 17.62935145814785, 31.095644941462055, 7.257293104697351, 15.4465729060819, 9.165940131277454, 42.944219233059684, 18.466709972072316, 45.61678179569645, 31.548564553191156, 14.935582930812755, 11.974280764437212, 50.49243871716614, 14.691539836278372, 8.534339241819325, 65.90316920514863, 36.12350555654971, 126.22498100991703, 48.13385644154497, 26.025860159755872, 18.063771411134127, 29.998708849908958, 29.335250983536994, 12.166685386212487, 17.24737543498057, 10.084311826753405, 17.571606620399233, 59.453777394288714, 110.33131272811241, 55.26362768843329, 10.272499233881561, 48.13395554657018, 14.272423809395196, 18.97153557954202, 56.07295669892459, 53.589310685499846, 8.45665194326833, 116.81583314442783, 80.14374735193451, 8.709909310156442, 8.817314549413176, 78.44225788882106, 84.98027795461579, 19.16682889139156, 5.37024964020369, 10.639983698246407, 15.916434352018046, 41.202755272956644, 16.188689161970323, 52.59888201956859, 10.512771026399719, 9.630769719903482, 42.26670029941442, 24.771109044506613, 6.082865068428246, 73.03518357361486, 8.524457847480962, 9.963064497847267, 23.396317785876615, 46.83177561220707, 60.54093322578846, 5.2086800787812955, 13.607368194183806, 5.718777774582096, 5.565303572047898, 8.72732475113485, 134.88481880111686, 55.119772945396434, 61.800816341680495, 30.02516517987025, 67.87112303153371, 21.770405965397842, 79.53078681268873, 111.45767856639955, 45.11261535344912, 89.00435258890681, 25.584394781555766, 126.51959724711196, 38.48773339316244, 37.106030821357514, 15.503637796960051, 88.14629662422938, 14.378549898600841, 67.52340744758594, 24.265262508235317, 69.8446809557204, 236.63641298743426, 63.478115586589425, 64.75991257044586, 29.176403595425384, 19.70818350664772, 21.4713300533637, 7.087044746069864, 18.269027250989065, 12.716894842202098, 5.316966302276709, 79.19292562215351, 26.484472422590866, 61.710964220344, 13.35529093967883, 9.906272341273613, 56.36911211839198, 68.03987948373643, 19.670101263174914, 93.62075876227982, 37.84985564622177, 19.161112154013097, 23.503544406974857, 52.83724056783518, 75.00899678385197, 13.677859282890147, 68.629294874486, 49.24787007598897, 18.809661537120924, 24.785636082584794, 41.97404480001413, 42.96403220518294, 6.7713698927965424, 58.83740703652872, 13.901038410885109, 25.85103493799514, 93.64468097873093, 22.960378435405218, 25.502076266154084, 12.891301973380182, 52.93218802862791, 12.499623407497293, 20.629149377310405, 44.314336342784785, 41.316197333946874, 32.82813209107348, 53.854542871741295, 10.656321066686523, 90.30743714723012, 151.09840590699085, 10.985996660182645, 145.06054549413238, 89.81165911901842, 5.621122914300544, 31.44905988188977, 69.29967193824405, 31.220162835716806, 118.92570299042225, 33.51116203023982, 66.49672437314692, 6.362429135307888, 51.19579016821155, 201.58028837897635, 31.881955795600398, 14.660856362162944, 25.45602572446241, 6.164266585628234, 70.18752860773813, 14.670737127965815, 9.672801913222747, 8.81191500469021, 5.418013189866304, 10.96633540219334, 25.57699437914424, 15.646258896513894, 71.17059885994063, 82.80793813777103, 11.680758453805208, 83.80002010972568, 81.27622498679284, 35.702588015709516, 45.301807338778126, 38.62950547551544, 83.74188924852734, 50.93637357597288, 105.86560004669875, 42.48987433630438, 20.879512918083083, 46.776933190767544, 67.20331761385634, 6.717117831442268, 25.010425532055276, 14.362118735201573, 11.376041647632922, 71.54081347680001, 23.605068121612824, 72.85701621119021, 38.049653332709596, 38.248595441070066, 102.48193854306089, 6.521381498765938, 12.926538911255923, 37.01589023861731, 75.35558430033805, 41.35002256085963, 7.235624626863976, 35.155317744710395, 58.020374665303606, 53.33557032546719, 6.655713757576353, 55.681087180288465, 52.87936468318306, 5.360168173580943, 26.40413360241382, 8.654461694373522, 191.04624221431288, 41.03028249820926, 139.55632267084866, 29.466308124033482, 32.70485326274186, 33.023256629286735, 43.59406032723352, 71.17286906723889, 6.746272098344443, 22.63975598626598, 11.34026802341702, 180.22547575899392, 6.003462907335692, 13.193537513280805, 8.070010437123464, 19.933610583001272, 8.15230344626876, 155.7670387839811, 80.07015969274327, 14.541777846557208, 51.57608327418147, 82.28379911906693, 57.3090251009723, 11.67536574304845, 47.5316574168032, 64.89342116681729, 16.939035435887973, 93.02504998184861, 146.3890915117052, 88.27271077970164, 62.54644294375223, 10.54351976324666, 80.0660339322216, 44.611958950924354, 56.73873653315582, 54.354613216504966, 70.30974313953905, 75.58850422963323, 36.519076723399564, 81.4858106588534, 144.73908906529354, 36.157158891914335, 5.44167884790202, 70.1480061140384, 22.92605212140508, 7.031283853071267, 36.41492759552959, 10.449484136558052, 5.6429559562148395, 27.235273326156157, 28.100159276523375, 7.008342866069888, 20.124213857682797, 8.100169052194827, 70.17182406483968, 62.873741340393195, 148.70386267873695, 22.24006211396599, 38.57613720617929, 50.97718466912702, 152.47759076679097, 96.31696072355898, 23.315304598343808, 104.23822279160638, 74.98845887918533, 46.79514295296196, 5.7968201477743255, 15.366802257576584, 132.0436289589279, 8.883278735169588, 6.737992322682322, 17.000171195093422, 96.35805259681729, 84.41039701597413, 58.269535190631686, 57.838514043021185, 8.94480183415134, 17.356825242046092, 39.141012943735646, 105.23523798478855, 13.917562844257311, 10.762277983025959, 16.45293115432151, 14.208379060333124, 34.44899678723229, 5.317541206041462, 53.30791736281765, 17.79901414954563, 69.02158243166278, 131.3188680761402, 21.6750420364462, 17.8920971831714, 119.40832648657133, 6.5477945828489945, 75.21690989970257, 18.15525501473366, 5.880386146140852, 64.63440255071853, 5.93502580956677, 27.68062949943793, 10.807531562377966, 82.9299140373391, 7.10332309131422, 21.957321229299712, 56.03408598745041, 13.448240877418135, 94.28851477509204, 39.605192202761174, 18.212486206543318, 72.95356102613053, 11.302585553244391, 54.43662750941774, 23.48550759131117, 9.911314639519302, 11.954673064610237, 52.815425184443285, 41.56427887078645, 50.23675867909425, 17.39839624364236, 177.46347333195897, 60.88711239626247, 67.50149104857158, 42.78010380222926, 28.163312505330993, 52.686451030159944, 45.36892446747788, 30.717189825974994, 42.987274249261134, 48.94771196847989, 22.51014600295514, 11.766842511463548, 9.060450261913866, 69.37186580041838, 79.95702285227594, 43.606546322437495, 19.88652333679094, 22.092850402828738, 8.12091065711749, 10.55636093075792, 54.379049279890495, 63.31469063817374, 133.66967101551538, 8.152976141975008, 7.367989564038153, 65.02126046366305, 57.47455079299878, 31.159636202223524, 39.98861464212268, 147.9759117288065, 34.37742506231726, 20.80232453911145, 12.754713921561438, 20.733342500600003, 34.057882307995634, 33.31837724707731, 76.04571839635003, 8.295840391035284, 26.79422751123671, 34.38875493350857, 56.187141094460216, 14.92071979433876, 51.46147482285823, 57.056617965142095, 58.32544912671276, 148.88169678122523, 130.28329830121092, 47.395453482853775, 5.039308615422203, 64.91322567708397, 12.697606715792618, 15.280772623396462, 12.348903418722786, 73.34671486336205, 37.59011406037769, 27.662139230250965, 7.615842172504645, 68.46006413773468, 18.080059905703244, 70.12349495838055, 8.482477164999015, 49.4706063910636, 56.369103562712596, 36.142583192160096, 6.269278109840679, 37.339002360045434, 20.716047323568198, 107.40671587492281, 7.431509898754246, 47.396188148432884, 31.800037038609176, 23.9145304444979, 14.580570085657026, 33.78804251717664, 21.887282040786744, 5.406598963468893, 5.390888665323136, 15.821633733612027, 54.29751133143169, 14.039386651871617, 12.805055067627297, 14.29139482583649, 12.348603081689504, 45.33290792143264, 139.6107914015229, 5.192152822574543, 50.292431514798025, 44.6977929766983, 21.568904065917543, 126.13588083428485, 84.98607166522795, 78.78445920306908, 22.40076645685935, 73.41205755030069, 67.30589607214314, 14.55389058710141, 73.97697360929484, 169.30215262238633, 187.36839543547063, 10.823944112541085, 100.54774006678694, 35.05726486217658, 40.86635950893579, 14.202171791888757, 24.602093925958975, 16.636545313406714, 18.397533040331798, 74.99350957543035, 8.101892334873073, 52.17035537428211, 9.530080872978568, 16.32217566063706, 51.969202188198096, 106.03564967378435, 34.080966437977686, 37.09177047348118, 135.72270817516753, 10.259610051059237, 10.03260722523684, 27.961347248477633, 25.647733774866914, 48.79403792057685, 12.313100602726355, 68.432863697118, 144.63832618312438, 15.375987206644579, 43.52919459138717, 23.10360860618667, 14.885206386045521, 8.7608025557405, 12.447360522816528, 10.303735814061088, 64.51303658185665, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4970147.866789154, 4989145.236437665, 4989840.894404741, 5033565.443647646, 5034074.805677753, 5173172.304437089, 5177762.818318329, 5186962.5, 5249494.53265801, 5253222.730802727, 5257138.645666104, 5257167.551445483, 5313437.665544172, 5357784.375, 5357810.653331693, 5372180.886635724, 5394465.197785574, 5397296.064312736, 5397814.201176564, 5399772.136125706, 5402725.0, 5403236.986392833, 5413973.418357488, 5417417.1875, 5428488.244386816, 5429680.792973375, 5431182.8125, 5433880.842554069, 5434214.0625, 5441649.464751266, 5462152.19669874, 5466553.116831803, 5484237.414136898, 5485018.157146333, 5486162.3397558695, 5495962.27414608, 5499402.46539563, 5510560.9375, 5540448.084056628, 5541161.093663447, 5553914.13268344, 5563930.945574267, 5565824.924494361, 5567049.310365025, 5578348.691906278, 5582237.138944714, 5589320.47166776, 5592817.1875, 5596381.25, 5596908.308834448, 5599115.244528169, 5600125.603244502, 5601987.5, 5604133.830408344, 5612386.369444331, 5616856.25, 5617517.67986171, 5618428.125, 5620975.0, 5621713.380063305, 5622254.944273814, 5623537.5, 5627237.128678203, 5627329.214540426, 5627867.442405136, 5628067.79987265, 5628910.930036188, 5630760.225155374, 5631802.975140518, 5632301.640482632, 5632618.871394709, 5632683.185611178, 5632738.145439287, 5633078.950811663, 5633285.503666222, 5633569.350517423, 5633998.838331119, 5634978.165023545, 5635348.9799549095, 5635892.148215974, 5636529.331746669, 5636565.625, 5636583.119521807, 5637953.4587274, 5638006.2518689465, 5638088.16479924, 5639065.625, 5639073.122666486, 5639219.837548348, 5639316.320313901, 5639327.500632626, 5639346.0546039315, 5640388.627178433, 5640388.959658373, 5640454.6875, 5640754.458950577, 5641325.0, 5641605.023092605, 5642509.588561182, 5643952.856444619, 5646559.135794924, 5649991.969686488, 5651314.00151495, 5652412.5, 5654743.145865873, 5654953.850307366, 5655099.583869875, 5655205.69830186, 5655725.0, 5656488.115506308, 5656833.952677968, 5657079.1904342305, 5658637.936510056, 5658650.490933895, 5662994.054426165, 5664528.86836453, 5665054.914448851, 5665077.446958602, 5665407.221253251, 5667916.232468553, 5667927.966884317, 5668461.754158445, 5669683.3127823975, 5670050.293461903, 5674012.97919596, 5674568.178429233, 5675338.35843147, 5679116.805411606, 5679250.821605517, 5682642.781155148, 5683942.1875, 5685203.0621146215, 5685724.918266823, 5686619.6872756975, 5687076.140488135, 5688399.4892711975, 5689360.9375, 5694560.9375, 5701832.684264785, 5704503.706091898, 5708383.0361759225, 5710210.9375, 5712168.731237848, 5714640.968800584, 5715798.063200351, 5718904.656751659, 5723240.480823644, 5726340.889376179, 5726703.366241715, 5727793.75, 5732152.191232007, 5735145.565802276, 5739592.4849911, 5743025.0, 5743300.605840596, 5745066.7784804525, 5745830.987192226, 5746135.472086666, 5747320.828744393, 5748578.125, 5749110.9375, 5750301.5625, 5751626.5625, 5752779.298785273, 5755480.508811582, 5756662.5, 5757869.565989906, 5758765.600280729, 5759289.03871889, 5760304.376933673, 5762282.8125, 5762604.086899874, 5763740.357556428, 5764348.042445267, 5764361.224230984, 5765231.25, 5765731.509934968, 5766062.852207741, 5766254.395066846, 5767031.25, 5767362.343327162, 5767862.454157587, 5767883.546751827, 5769882.760952354, 5773211.377875245, 5773785.9375, 5774672.630485585, 5776457.818761916, 5776745.3125, 5783090.651194333, 5787788.010600819, 5792173.202813825, 5794269.148892851, 5796422.007632518, 5798545.254548953, 5798925.399765776, 5801370.057153774, 5802137.159641661, 5803709.375, 5804180.617503946, 5805903.796010038, 5806486.29448508, 5806553.234268188, 5806624.257414335, 5807558.158107798, 5808457.488653213, 5812050.92879374, 5814851.073685996, 5815367.078119262, 5815521.467576583, 5818001.842696112, 5818049.162224457, 5818171.367707279, 5818243.75, 5818796.875, 5819234.375, 5819561.18382416, 5819870.3125, 5820509.375, 5820644.739351686, 5821275.754835146, 5821492.1875, 5822643.071329538, 5822701.533055836, 5823069.346194405, 5823681.25, 5823716.857677316, 5823873.227666859, 5824167.83648421, 5824358.428262584, 5824504.469038974, 5825037.5, 5825065.750093185, 5825167.727470976, 5825379.766865873, 5825429.6875, 5825445.7105733445, 5825781.85589749, 5826571.363672207, 5826771.875, 5827140.537460138, 5827148.457602364, 5827206.25, 5827235.9375, 5827264.0625, 5827392.1875, 5827590.59746513, 5827600.0, 5827628.326305127, 5827675.585644466, 5827735.375002356, 5827857.362975008, 5827935.9375, 5827980.452446427, 5828341.604836585, 5828599.376415043, 5828648.4375, 5828648.535897935, 5828742.627175273, 5828757.8125, 5828778.168734057, 5828789.2093505105, 5828790.906419304, 5828843.199976824, 5828916.1033311, 5828942.1875, 5829296.276090979, 5829389.311233926, 5829681.050581413, 5829777.864837936, 5830045.040624293, 5830366.804928196, 5830940.17345317, 5830943.314669939, 5830943.990165677, 5831030.355413203, 5831074.760486218, 5831135.497609871, 5831424.793620005, 5831517.894931979, 5831561.359923279, 5831601.5625, 5831638.809364068, 5831644.7722350815, 5832093.286039031, 5832614.162455758, 5833051.549277407, 5833190.270101877, 5833193.712657449, 5833385.888330664, 5833505.578554279, 5833773.887711331, 5833783.49521781, 5834181.25, 5834436.1709410185, 5834468.75, 5834782.361799342, 5834785.8002022505, 5835004.529703373, 5835127.908906531, 5835340.670672773, 5835676.949357968, 5835905.3720621625, 5835974.160201288, 5835987.5, 5836601.092624984, 5836859.759891309, 5836901.085649039, 5836925.7470908025, 5837056.733014841, 5837114.0625, 5837196.811117977, 5837237.480142484, 5837259.55926818, 5837314.0625, 5837601.143272384, 5837671.875, 5837757.720259515, 5837818.516478469, 5837995.3125, 5838050.990783375, 5838141.002592941, 5838182.7537355535, 5839223.122774817, 5839317.876041989, 5839322.575441235, 5839544.237651851, 5839690.694712394, 5840182.474286466, 5840553.091507598, 5840830.635308063, 5841154.112238818, 5841255.439705749, 5842198.146501083, 5842325.756573091, 5843883.725146252, 5844244.902781958, 5844643.224382267, 5845618.717175718, 5846941.457395369, 5847018.309520858, 5847762.5, 5848056.25, 5848170.229578685, 5848263.868259632, 5848279.471106133, 5849103.958282116, 5849382.8125, 5850692.41629166, 5851373.070765203, 5852309.986841733, 5852642.1875, 5853475.96277945, 5853481.727304672, 5853491.992643503, 5854291.180825762, 5854812.5, 5854893.246273071, 5854906.25, 5857363.043807388, 5857428.93999279, 5858235.274797951, 5859346.875, 5859496.754645931, 5860615.17437094, 5861022.535237273, 5861439.659357143, 5863528.104747557, 5863532.981489684, 5863566.656896544, 5863960.751060362, 5866445.3125, 5870236.597413036, 5870770.306816231, 5873610.258211053, 5874017.1875, 5876118.229953576, 5876443.473074902, 5878762.202439462, 5878772.300415765, 5878920.3125, 5880600.490072746, 5881106.294139097, 5881313.889927701, 5881495.684297675, 5881731.242737713, 5884208.678422704, 5884229.971313195, 5887041.651720121, 5887145.068547988, 5890646.551422383, 5892411.478564092, 5892714.182537899, 5892858.180359656, 5894738.932384706, 5896988.636429384, 5898071.24940568, 5898472.300836025, 5898491.7650197875, 5899764.409978226, 5902378.125, 5902645.639972149, 5904193.75, 5909819.914625429, 5909846.092716881, 5909859.11459178, 5913206.25, 5914522.2546937885, 5916926.459532868, 5918731.095031143, 5918776.5625, 5920416.806773287, 5921312.533966251, 5921980.308810478, 5925120.925393184, 5925316.280185245, 5925456.293196333, 5926007.8125, 5928729.95370206, 5931531.0903379405, 5932325.0, 5935407.8125, 5938131.476108606, 5938160.653400684, 5938791.788159513, 5939187.5, 5943079.266483875, 5944983.659617448, 5945785.9375, 5950266.645902317, 5950976.272859049, 5957632.053579138, 5958231.25, 5958416.986507374, 5958916.468943895, 5959010.9375, 5959651.612774673, 5960037.6720409505, 5960693.674280255, 5960693.75, 5960957.8125, 5961149.349952713, 5961220.2306791125, 5961462.730587863, 5961523.4375, 5961596.351622228, 5961910.9375, 5962043.75, 5962531.751951347, 5963179.602472529, 5963427.448303618, 5963581.878417125, 5963585.831762784, 5963887.173759048, 5963893.261931134, 5964093.232772164, 5964382.8125, 5964548.138108728, 5964625.0, 5964647.71729107, 5965531.3556113215, 5965824.626539032, 5965877.921793762, 5967539.1684747245, 5970088.0323377345, 5971063.094106455, 5971631.214878951, 5973781.88730483, 5974185.283655053, 5974830.77378494, 5975145.3125, 5976940.496168483, 5977429.438434086, 5978068.585411166, 5979527.243048594, 5979904.620794534, 5981630.388236749, 5983577.501912459, 5985424.35922271, 5986410.63454533, 5987673.992163867, 5987882.751424535, 5990965.014960055, 5991104.778983681, 5991190.625, 5992401.606510165, 5995391.800008294, 5996526.5625, 5997852.329922955, 5998339.0625, 6000573.4375, 6001495.598623162, 6001729.4375009695, 6001747.347343528, 6009561.1000389615, 6010731.923675649, 6012039.0625, 6020540.625, 6020569.305774091, 6021004.365129286, 6021633.748252903, 6022063.414304188, 6022160.372747277, 6023370.3125, 6024342.380466051, 6024540.547912402, 6028303.117194874, 6030415.537275534, 6033122.444041903, 6033648.8732783245, 6033669.117575086, 6034176.477745307, 6034600.772804678, 6035743.75, 6035964.0625, 6036532.445429322, 6037128.590955443, 6037424.110231787, 6037751.936454706, 6038177.605539031, 6038693.75, 6040032.114024063, 6040212.125688722, 6040692.1875, 6047699.678272841, 6047851.5625, 6048259.375, 6048892.1875, 6051135.287438959, 6052342.290113887, 6053568.690958684, 6053589.255024886, 6053782.328582153, 6055470.785946627, 6056820.938652475, 6059862.017419648, 6063601.894100615, 6064140.587189426, 6064706.653796777, 6065359.375, 6065430.545245701, 6069500.703969118, 6069690.625, 6075624.477695941, 6076468.358129188, 6076559.375, 6077746.753930819, 6080165.4849401945, 6082868.102186511, 6084303.687597907, 6084932.193587509, 6085164.5552307945, 6087947.001485521, 6088401.360110332, 6089484.731336744, 6091068.283656237, 6091941.230472065, 6092106.116271456, 6092367.185944246, 6092620.794080265, 6093187.667677772, 6093373.370334415, 6094006.690869402, 6097301.962508848, 6098509.375, 6100122.321266786, 6101857.8125, 6105607.671927846, 6105685.007845605, 6109955.8303826675, 6111070.3125, 6111141.201508456, 6111725.9278712, 6112092.96129441, 6112572.427913074, 6112659.375, 6112676.314534591, 6112819.394059498, 6113477.49903982, 6113485.9375, 6114026.8351820335, 6114540.716688043, 6114745.3125, 6114839.0625, 6114900.308338139, 6115018.66794281, 6115076.370829962, 6115275.72304057, 6115329.009758152, 6115623.143123015, 6115711.278285296, 6115797.667723435, 6115850.8040477205, 6115891.851327476, 6115893.984248609, 6115898.4375, 6115900.194363319, 6115915.826973342, 6115944.879913697, 6115955.021527534, 6116104.6875, 6116229.463392172, 6116254.637016545, 6116255.735879612, 6116267.611785081, 6116285.038172686, 6116334.046737486, 6116684.375, 6116689.0625, 6116701.767644719, 6116710.537101705, 6116715.812221217, 6116825.646529634, 6116852.3123, 6116858.8766573705, 6117022.494556679, 6117087.948071928, 6117261.842994653, 6117265.625, 6117437.5735170385, 6117847.330670168, 6117871.6039021155, 6117885.457381694, 6118060.9375, 6118262.112737948, 6118326.5625, 6119177.088803718, 6120124.842061066, 6120553.26505719, 6121815.047493885, 6122121.71902103, 6122168.75, 6123720.05174003, 6124668.680299146, 6124735.652986703, 6125423.432542051, 6126041.684094785, 6127343.75, 6127363.920729563, 6128892.999660938, 6129727.992473092, 6130720.977012558, 6131025.823914933, 6132297.690689007, 6132816.9535956085, 6132943.63759822, 6134357.8125, 6135072.948143512, 6136161.547201303, 6136277.204426403, 6138638.404862937, 6139159.377686912, 6139485.777185726, 6140585.162098262, 6141064.854456181, 6142044.99289824, 6142501.5625, 6143123.4375, 6144327.748619047, 6144864.063993078, 6145915.921889441, 6146012.040118422, 6146157.602679373, 6146184.526064956, 6146734.375, 6146759.4142598845, 6147151.11713178, 6148895.009824713, 6149309.223372993, 6149309.783369331, 6149818.385499498, 6151095.211833938, 6151303.247001807, 6153942.615013068, 6154563.230201554, 6154622.846300538, 6154673.903411997, 6157420.3125, 6158141.471838521, 6158562.5, 6158674.675928235, 6159771.875, 6160047.952221252, 6160982.719906156, 6161078.498087886, 6161342.1875, 6161629.814749923, 6161657.805146596, 6161843.75, 6162003.125, 6163159.995927529, 6167420.458030495, 6168150.966957584, 6169666.343320577, 6170707.156898562, 6172697.871341406, 6173056.042630061, 6173115.5493658045, 6173445.135221147, 6174188.201920019, 6175014.0625, 6175404.614598377, 6177223.815425905, 6177864.93931348, 6178670.814374671, 6178873.343578002, 6179015.455678187, 6179514.235877705, 6182379.6875, 6184835.9375, 6185291.428510373, 6185527.842949688, 6185619.60246719, 6186218.75, 6187002.774287045, 6187866.047013983, 6189557.8125, 6189988.983600248, 6191854.41452428, 6194589.006019377, 6195749.037667721, 6196550.0, 6196942.1875, 6198104.450613143, 6198232.605107338, 6198312.339205359, 6198772.028272295, 6200903.125, 6201924.688509529, 6202909.7525760755, 6204335.005730365, 6206767.587119041, 6208481.25, 6208648.652812604, 6208650.909844594, 6209448.4375, 6209951.5625, 6213979.6875, 6214622.292228992, 6215175.0, 6217685.380327883, 6218150.802498329, 6219786.934976463, 6222373.567660283, 6223154.656852006, 6223223.960499887, 6225351.445247978, 6226774.073905766, 6232111.463164991, 6233335.313324298, 6233874.751328376, 6238936.609031784, 6241882.8125, 6242389.405203662, 6243717.873028614, 6243943.75, 6247081.163055858, 6248621.10033158, 6250154.819362901, 6251409.375, 6251978.832300495, 6253870.987325992, 6254094.879214302, 6254532.140537737, 6254940.362151496, 6256948.4375, 6257544.1529018795, 6257657.703517954, 6257791.532121311, 6257911.73733471, 6259223.4375, 6259787.75306326, 6260637.5, 6260690.625, 6261003.566008362, 6261650.0, 6263035.135016559, 6264475.594499904, 6264893.75, 6265488.653580162, 6266124.794990601, 6266185.377927972, 6266245.3125, 6266510.9375, 6266770.617947704, 6267395.3125, 6267673.736443298, 6268185.081780466, 6269261.726802043, 6269571.750094105, 6270216.710980148, 6271668.75, 6271762.132573898, 6272029.333009778, 6272126.5625, 6272132.330454213, 6272719.261041793, 6272993.681280609, 6274697.349012743, 6277076.114000478, 6277332.822569826, 6277971.505041053, 6281246.875, 6282646.875, 6284871.055517327, 6290009.071689936, 6290283.957153224, 6290767.1875, 6291572.758901461, 6292416.92412453, 6294727.790129106, 6295033.442571441, 6296873.963418977, 6297440.575766812, 6299054.452854642, 6299889.169778421, 6300415.665905716, 6300863.480291883, 6300977.995842443, 6301456.702311575, 6301564.696723736, 6302324.635473484, 6302470.3125, 6302540.625, 6304119.816928824, 6304667.635508753, 6305803.125, 6306984.816790562, 6308062.202645433, 6308504.440414787, 6309026.311828315, 6309182.605870396, 6309470.3125, 6312549.270820999, 6312793.75, 6317094.340572686, 6318043.75, 6320109.375, 6320280.768047417, 6320288.613885872, 6320456.25, 6321150.376610842, 6321176.5625, 6321201.601674041, 6321858.671380945, 6322432.8125, 6322492.137070382, 6322565.580864209, 6322741.972526979, 6322852.774976741, 6323634.305584051, 6323868.295309975, 6324145.7861977825, 6324251.559992144, 6324262.5, 6324629.831907214, 6324679.262944755, 6325050.0, 6325179.796573322, 6325198.4375, 6325496.185021324, 6326528.739492835, 6326564.534137038, 6329348.4375, 6330377.9017149145, 6330790.625, 6330837.30933021, 6333888.982581125, 6334301.851032445, 6334681.25, 6334902.557452497, 6334932.793970482, 6335014.494663951, 6335392.174808655, 6336537.5, 6336689.0625, 6337550.0, 6337693.346248442, 6340641.8351479815, 6342971.53617739, 6344095.339848307, 6346364.0625, 6348576.5625, 6349996.197309067, 6350543.308091405, 6351413.735508294, 6351751.041080253, 6352002.844311487, 6352196.875, 6352457.8125, 6354213.801014432, 6354822.736601562, 6354934.6532264175, 6355387.5, 6355621.875, 6356464.0625, 6356898.904753721, 6357104.011383179, 6358888.490347971, 6359578.964732749, 6359672.857808891, 6360187.5, 6361090.625, 6361835.9375, 6362643.76747561, 6363673.743522954, 6364810.933346578, 6365066.8931515105, 6365715.619534885, 6365941.159369352, 6366526.233623062, 6367196.875, 6368373.935218914, 6369468.146119773, 6369562.5, 6369629.554433232, 6369976.5625, 6371766.440792582, 6372174.799200049, 6374217.849707456, 6376223.572531946, 6377604.6875, 6377632.262878656, 6377864.097215612, 6379957.064342256, 6383106.885393152, 6385168.75, 6387900.352945971, 6394296.61592021, 6399462.216190778, 6400078.125, 6401320.3289434, 6401451.706977204, 6401465.427439877, 6401602.588787157, 6404249.498854441, 6404940.625, 6407728.676311309, 6410254.400215159, 6410753.0269668335, 6418521.875, 6419140.697999332, 6422012.710919386, 6429724.800153803, 6431643.963216037, 6432145.3125, 6433154.428812313, 6433564.923068727, 6439407.993414418, 6440791.287069412, 6442968.2692272775, 6444806.806006711, 6444882.364350563, 6447175.482713014, 6448095.3125, 6448857.065384475, 6451420.3125, 6452325.772831983, 6495768.75, 6496491.932300493, 6499501.5625, 6500768.75, 6501231.14444563, 6504325.342554735, 6504941.354937064, 6505253.358537433, 6505820.109062714, 6506792.1875, 6511061.621918399, 6512954.6875, 6513320.103989799, 6513982.57634938, 6515862.891973465, 6516300.683867886, 6517742.396627358, 6518374.633628947, 6519826.5625, 6521137.725978486, 6523983.133007561, 6524014.0625, 6525480.504592308, 6525622.816138334, 6527285.9375, 6532280.029969901, 6532296.238223075, 6532794.477196901, 6532824.970883559, 6534061.808115685, 6534874.303713713, 6535575.645678101, 6538323.4375, 6538857.550904298, 6539065.734504105, 6541514.0625, 6542003.78320102, 6543657.336313598, 6545144.550648111, 6548323.184505017, 6551205.650060063, 6552664.0625, ...], [5.506008735669317, 6.080224959451764, 37.50552321811223, 20.852649224008648, 36.51110251492256, 80.55507161236898, 9.615888750079215, 44.53973190897992, 19.09218112862384, 10.177624903827574, 7.459126539910458, 70.09039416682673, 58.10959833710606, 56.566121317632316, 13.958762250768098, 46.343862439792275, 10.51972369869884, 12.548722778317833, 15.497805900802366, 24.85012997233939, 36.63013416670494, 10.40977259903259, 28.151524357328956, 39.53964783728101, 10.051572515307514, 21.91920747681128, 46.89175540355974, 14.963045357370778, 90.74757511934408, 136.091964319023, 20.874743564730352, 28.364345735500624, 26.93462305370141, 13.078737687615234, 7.079955959029486, 5.601670367827807, 53.11910207988958, 70.03665225908196, 23.091265692028678, 47.69739328971907, 95.34757335754578, 14.920174217994461, 27.115310924647456, 7.952710148272176, 16.008771900898335, 95.96970885291263, 41.38868676369691, 105.32205413364015, 32.00928089852815, 5.35922186033165, 181.05625640775668, 17.87730025221204, 74.00511870201967, 21.059516303255045, 67.43922187765571, 30.445570369712705, 8.565319111934887, 53.76621564504464, 48.96221167284636, 67.29250450689756, 35.4395614341494, 34.60037920795975, 19.57648551405273, 175.38219006455063, 25.83384115724191, 7.292300688532896, 6.087323389748787, 25.45061221305002, 14.399507577484416, 6.77917570439015, 20.771592647428122, 27.21707534519744, 6.899588127530123, 91.66585631423513, 28.489265787680093, 27.72666799579587, 6.319204518871026, 7.617777945942648, 8.595899173941312, 27.770578705414234, 5.28022333415176, 30.311589036546486, 5.410342340818892, 45.03919955379762, 6.267434524031448, 29.72646599676727, 39.7124716909657, 29.522229946060563, 7.44003737507026, 77.22673367904817, 20.684528335898577, 80.03161486731065, 56.1477868563247, 43.75483571244578, 71.13422051314507, 51.4126755230733, 116.76750181264038, 175.55249398126705, 121.4746031574102, 35.72456222069931, 6.237442285516079, 10.803502966472497, 22.73914975780899, 76.8456587691438, 18.75881221014888, 18.68079327638732, 22.37263757833737, 29.44291355333066, 111.26226965020484, 105.31787250074427, 46.303201105192, 8.943726374774553, 9.72994634382793, 5.216112492975178, 46.520186935744526, 12.529458786612814, 38.85947824398291, 43.58551994304963, 7.996848433147873, 38.607227925998814, 25.749727195649402, 20.902200844193008, 17.266370361627885, 16.191932834045762, 125.96530068326241, 20.807667151602928, 18.545105385121982, 36.69867901392886, 12.711401628777152, 17.817974071388225, 35.02302490195333, 9.27879011552529, 41.45622144775684, 82.35844164123547, 43.95674704764637, 21.3867382045325, 61.391143012299814, 92.04957952210474, 25.436532570396558, 17.741031559024364, 50.85872031800533, 70.99716296655218, 90.05615050860777, 11.711264858072584, 121.52347201920048, 141.08633189456862, 22.076236135772717, 44.574466027945554, 16.33690385609664, 41.73573238469778, 13.252873609241863, 37.958922446611766, 23.669099629342874, 54.89971046306117, 39.51922861620467, 105.94936199288183, 5.520460162906016, 136.82676903260736, 38.10981602508945, 50.79270850823169, 69.24643343093624, 108.68098067319363, 68.76086335792517, 10.570014627170858, 12.710702987477283, 74.47989028791797, 12.698074247812496, 23.077393104124766, 81.27961668877715, 8.128900218286711, 184.02647457915836, 31.918484398969806, 69.87112336438244, 6.426896219674768, 11.60755212456142, 59.45730196190267, 8.428990952244636, 5.840508502584488, 39.7657895537725, 86.15454807500907, 10.891340268655078, 11.05680029227207, 18.74343732742594, 27.54454297328554, 6.8547283848556795, 41.313883137084716, 73.54881020995249, 8.289891509549888, 85.66188767808599, 11.168898566335839, 19.517210367748927, 102.35042319579034, 17.065019930892127, 25.375632505537915, 24.78589234870464, 74.44953439148492, 85.69735305407772, 23.248554672233173, 69.08686687874899, 81.007048793028, 168.44277458069098, 7.737666082344782, 9.425536773042369, 16.7976839986039, 21.828886350556676, 13.835847366907508, 42.485384234770336, 21.605417018856766, 58.808803062136924, 100.71137144245698, 89.48772486107035, 18.676729672914682, 8.035372240917628, 70.63243190770206, 55.628130891329974, 31.98355951358111, 15.971573332170667, 31.816436354040864, 49.04680877087618, 74.98264988147075, 10.063161780863654, 100.17817114620658, 87.20672160230298, 15.786920474403269, 21.453850424017674, 55.590545593989845, 23.37712910896047, 122.27666750056267, 18.16761568995118, 90.05641366523314, 151.40331795257063, 38.0344784918541, 86.13862577863942, 172.04749588576817, 169.22004265486723, 105.96975380892269, 11.812677314981258, 50.67528897091128, 8.933489098954997, 40.6635491225069, 14.266695021152243, 31.593431610419803, 40.91719244670799, 47.09868430500337, 106.16064012077783, 56.9486282976315, 27.99130082744814, 33.58187949726539, 5.625278748372891, 8.62262207501192, 6.402387546877923, 50.43885283259532, 58.92257349720959, 86.30417966278048, 6.976271334346617, 42.74875131578935, 45.35470685876947, 15.33030592068257, 107.58413377512395, 40.61653349227595, 80.44433221754353, 15.532422432825925, 16.134846105756715, 13.191100886063099, 5.077699057114842, 49.947525188395076, 20.560086905421542, 6.814201560454517, 25.126578955783096, 7.511775903314925, 34.13793115982213, 36.76298188392808, 21.990458218305292, 8.98857121117192, 7.692474257362191, 18.291434786696094, 34.6422668836931, 8.985228938885609, 25.02510443192396, 45.848851035885254, 16.83978725999625, 58.239432194561914, 5.037303769130657, 122.12270186290708, 7.443629423521267, 18.12295340951711, 5.938254849164786, 7.479729926580683, 6.481253348474355, 33.61894014603257, 12.879804707737184, 14.731866431912188, 193.00419784739879, 33.24029042547028, 5.073166061021644, 30.299004340267597, 93.24969773700526, 6.736402237297523, 25.754686323448638, 85.18847130025121, 15.118497908745336, 11.791492619779326, 12.397838407044464, 57.19864228227802, 34.858752321583054, 116.93939147332961, 51.87476590801771, 154.07364281363937, 74.32374232653241, 106.60419601732687, 39.89750949742625, 27.32155908292172, 5.202916302843248, 104.63171303096843, 105.75179583953971, 65.30027300844542, 49.486866365830316, 75.03456604854668, 77.693690754947, 31.061634901522805, 6.19757087690595, 42.46538160081275, 5.530235298236322, 9.078745989209862, 15.300169685861643, 12.432962739121741, 17.195201649370947, 31.51213570316193, 47.99014642961963, 97.9454164256956, 33.10322457672466, 49.993456676761404, 134.12921770437472, 55.07969308413759, 33.11153015868541, 52.623007531488845, 62.83776828639902, 127.44457713295058, 12.144897077719047, 30.706505328897137, 29.892475560622792, 68.10490201591124, 51.87265996011478, 14.63459884698434, 18.127473951232943, 24.880860192200085, 69.78177589003833, 57.76766940961821, 45.08961166734145, 22.93415184188492, 5.746836061082741, 54.45088907071428, 31.154650159409073, 82.29075943541477, 25.19362093812421, 36.9026037201318, 60.22972378363853, 10.422148639915395, 59.435030644921625, 49.713316738791, 8.77033944489467, 8.827572009576587, 77.04836120800175, 14.501796223229835, 26.85928627721762, 12.344619113145656, 17.83772586739539, 28.13020957177485, 67.25400402740736, 18.14964979791584, 32.49428002279454, 44.42365553338827, 6.35433634569568, 51.247943176034966, 5.373125246910702, 47.06084972760337, 10.401733805921472, 13.981544196820591, 23.932727894758187, 75.4738247297393, 31.77620208012669, 27.401991771029344, 25.696517385879435, 39.581224959224095, 142.48865907019376, 9.325270041102293, 5.270044721926855, 40.54234606329593, 5.585075556995148, 29.21472473974638, 30.688449520612636, 191.2009090826393, 22.42702733476843, 11.755879385989473, 26.193863609282634, 33.672051244713465, 16.123759388540044, 57.110663330726446, 29.469858898002034, 27.185219215340908, 54.91292736129351, 6.1228285920963685, 123.45213543725404, 41.845668513826105, 7.342850995789905, 10.743687988642915, 48.402581161864006, 7.746592652917042, 116.00678806997504, 5.926022573155614, 32.46062804016656, 5.906921430847354, 125.04825905834691, 15.580973747255292, 7.292454832003893, 18.20793544874678, 5.069682649566584, 64.32837826092276, 16.063491792092897, 9.19995267860291, 30.85143663655924, 60.11424859374178, 22.677232557502514, 93.91871413632936, 6.686316835058122, 127.71325838412555, 22.318932067167193, 39.10673028611494, 46.053942426835704, 26.353540418017253, 117.10980893968632, 17.80261672887635, 100.80082538446362, 76.91584860101594, 82.90486835141999, 30.269226981269167, 9.374278134487158, 15.640467108710483, 27.111546572563963, 72.83358858581398, 78.01857258007622, 20.11640534800397, 11.002179373088806, 14.730162011400115, 41.61293771388963, 13.262472602089264, 72.88414920070103, 45.922892780698604, 25.47468598727655, 86.38445506025359, 50.69432291440338, 18.035548329687106, 5.806197823441374, 23.421238766601938, 20.10070816802518, 16.195963203821314, 32.91927256066815, 17.64470761449587, 46.40408385682746, 6.379823094026415, 6.784775815308385, 7.473526385986746, 25.071244271104337, 15.361429259095903, 8.589687420604605, 17.8207545048679, 38.623070878130626, 5.65030190727052, 5.767135117040661, 24.044031944565496, 33.87980744097919, 98.80507367396122, 32.45472804792206, 51.690688882355815, 181.28574769942617, 7.579288323944489, 18.511479397912538, 39.64263437051943, 34.99177558512778, 43.85083145011331, 38.116644162291806, 27.37191933657177, 77.86429884909961, 8.33555525777646, 90.58846322340608, 8.309988567685988, 98.48359386564614, 56.01705713721318, 48.68370512031512, 31.019890082748496, 34.17669146884113, 25.868946542853152, 26.048448834769452, 17.109987841036137, 73.45025172410809, 18.329569694435207, 38.58091923942533, 31.99968085906678, 17.58861286320365, 23.469131725353442, 10.271559655300914, 88.62468941921458, 6.980508237268492, 80.49716740615665, 82.7079161307162, 23.214271535375516, 28.371451682147395, 26.902454660461032, 7.822888474669011, 16.91094700172534, 16.555793596091025, 6.473886761728581, 120.1674498174483, 50.15652288480479, 40.170203188045896, 78.51848677628871, 24.687074178187665, 51.512671346722485, 9.668972098084852, 18.978875823466634, 37.09159264935558, 49.23783843777967, 22.84576492738052, 63.48176309973489, 70.41773077318052, 56.28481904753633, 39.302069561828915, 96.00637678354042, 7.970334957361124, 36.85444799647127, 87.87009070423686, 25.25249900097352, 87.22866170634404, 119.66763787142769, 18.021160320755, 125.83550769725112, 6.123275220017071, 27.798033138991613, 16.741874040669497, 106.51691561294608, 93.32925818424168, 120.4475511999258, 82.01248984312018, 79.73625187626777, 12.7749390717253, 50.49247875333043, 104.14591102793354, 157.8387290661492, 7.971341093494464, 17.62935145814785, 31.095644941462055, 7.257293104697351, 15.4465729060819, 9.165940131277454, 42.944219233059684, 18.466709972072316, 45.61678179569645, 31.548564553191156, 14.935582930812755, 11.974280764437212, 50.49243871716614, 14.691539836278372, 8.534339241819325, 65.90316920514863, 36.12350555654971, 126.22498100991703, 48.13385644154497, 26.025860159755872, 18.063771411134127, 29.998708849908958, 29.335250983536994, 12.166685386212487, 17.24737543498057, 10.084311826753405, 17.571606620399233, 59.453777394288714, 110.33131272811241, 55.26362768843329, 10.272499233881561, 48.13395554657018, 14.272423809395196, 18.97153557954202, 56.07295669892459, 53.589310685499846, 8.45665194326833, 116.81583314442783, 80.14374735193451, 8.709909310156442, 8.817314549413176, 78.44225788882106, 84.98027795461579, 19.16682889139156, 5.37024964020369, 10.639983698246407, 15.916434352018046, 41.202755272956644, 16.188689161970323, 52.59888201956859, 10.512771026399719, 9.630769719903482, 42.26670029941442, 24.771109044506613, 6.082865068428246, 73.03518357361486, 8.524457847480962, 9.963064497847267, 23.396317785876615, 46.83177561220707, 60.54093322578846, 5.2086800787812955, 13.607368194183806, 5.718777774582096, 5.565303572047898, 8.72732475113485, 134.88481880111686, 55.119772945396434, 61.800816341680495, 30.02516517987025, 67.87112303153371, 21.770405965397842, 79.53078681268873, 111.45767856639955, 45.11261535344912, 89.00435258890681, 25.584394781555766, 126.51959724711196, 38.48773339316244, 37.106030821357514, 15.503637796960051, 88.14629662422938, 14.378549898600841, 67.52340744758594, 24.265262508235317, 69.8446809557204, 236.63641298743426, 63.478115586589425, 64.75991257044586, 29.176403595425384, 19.70818350664772, 21.4713300533637, 7.087044746069864, 18.269027250989065, 12.716894842202098, 5.316966302276709, 79.19292562215351, 26.484472422590866, 61.710964220344, 13.35529093967883, 9.906272341273613, 56.36911211839198, 68.03987948373643, 19.670101263174914, 93.62075876227982, 37.84985564622177, 19.161112154013097, 23.503544406974857, 52.83724056783518, 75.00899678385197, 13.677859282890147, 68.629294874486, 49.24787007598897, 18.809661537120924, 24.785636082584794, 41.97404480001413, 42.96403220518294, 6.7713698927965424, 58.83740703652872, 13.901038410885109, 25.85103493799514, 93.64468097873093, 22.960378435405218, 25.502076266154084, 12.891301973380182, 52.93218802862791, 12.499623407497293, 20.629149377310405, 44.314336342784785, 41.316197333946874, 32.82813209107348, 53.854542871741295, 10.656321066686523, 90.30743714723012, 151.09840590699085, 10.985996660182645, 145.06054549413238, 89.81165911901842, 5.621122914300544, 31.44905988188977, 69.29967193824405, 31.220162835716806, 118.92570299042225, 33.51116203023982, 66.49672437314692, 6.362429135307888, 51.19579016821155, 201.58028837897635, 31.881955795600398, 14.660856362162944, 25.45602572446241, 6.164266585628234, 70.18752860773813, 14.670737127965815, 9.672801913222747, 8.81191500469021, 5.418013189866304, 10.96633540219334, 25.57699437914424, 15.646258896513894, 71.17059885994063, 82.80793813777103, 11.680758453805208, 83.80002010972568, 81.27622498679284, 35.702588015709516, 45.301807338778126, 38.62950547551544, 83.74188924852734, 50.93637357597288, 105.86560004669875, 42.48987433630438, 20.879512918083083, 46.776933190767544, 67.20331761385634, 6.717117831442268, 25.010425532055276, 14.362118735201573, 11.376041647632922, 71.54081347680001, 23.605068121612824, 72.85701621119021, 38.049653332709596, 38.248595441070066, 102.48193854306089, 6.521381498765938, 12.926538911255923, 37.01589023861731, 75.35558430033805, 41.35002256085963, 7.235624626863976, 35.155317744710395, 58.020374665303606, 53.33557032546719, 6.655713757576353, 55.681087180288465, 52.87936468318306, 5.360168173580943, 26.40413360241382, 8.654461694373522, 191.04624221431288, 41.03028249820926, 139.55632267084866, 29.466308124033482, 32.70485326274186, 33.023256629286735, 43.59406032723352, 71.17286906723889, 6.746272098344443, 22.63975598626598, 11.34026802341702, 180.22547575899392, 6.003462907335692, 13.193537513280805, 8.070010437123464, 19.933610583001272, 8.15230344626876, 155.7670387839811, 80.07015969274327, 14.541777846557208, 51.57608327418147, 82.28379911906693, 57.3090251009723, 11.67536574304845, 47.5316574168032, 64.89342116681729, 16.939035435887973, 93.02504998184861, 146.3890915117052, 88.27271077970164, 62.54644294375223, 10.54351976324666, 80.0660339322216, 44.611958950924354, 56.73873653315582, 54.354613216504966, 70.30974313953905, 75.58850422963323, 36.519076723399564, 81.4858106588534, 144.73908906529354, 36.157158891914335, 5.44167884790202, 70.1480061140384, 22.92605212140508, 7.031283853071267, 36.41492759552959, 10.449484136558052, 5.6429559562148395, 27.235273326156157, 28.100159276523375, 7.008342866069888, 20.124213857682797, 8.100169052194827, 70.17182406483968, 62.873741340393195, 148.70386267873695, 22.24006211396599, 38.57613720617929, 50.97718466912702, 152.47759076679097, 96.31696072355898, 23.315304598343808, 104.23822279160638, 74.98845887918533, 46.79514295296196, 5.7968201477743255, 15.366802257576584, 132.0436289589279, 8.883278735169588, 6.737992322682322, 17.000171195093422, 96.35805259681729, 84.41039701597413, 58.269535190631686, 57.838514043021185, 8.94480183415134, 17.356825242046092, 39.141012943735646, 105.23523798478855, 13.917562844257311, 10.762277983025959, 16.45293115432151, 14.208379060333124, 34.44899678723229, 5.317541206041462, 53.30791736281765, 17.79901414954563, 69.02158243166278, 131.3188680761402, 21.6750420364462, 17.8920971831714, 119.40832648657133, 6.5477945828489945, 75.21690989970257, 18.15525501473366, 5.880386146140852, 64.63440255071853, 5.93502580956677, 27.68062949943793, 10.807531562377966, 82.9299140373391, 7.10332309131422, 21.957321229299712, 56.03408598745041, 13.448240877418135, 94.28851477509204, 39.605192202761174, 18.212486206543318, 72.95356102613053, 11.302585553244391, 54.43662750941774, 23.48550759131117, 9.911314639519302, 11.954673064610237, 52.815425184443285, 41.56427887078645, 50.23675867909425, 17.39839624364236, 177.46347333195897, 60.88711239626247, 67.50149104857158, 42.78010380222926, 28.163312505330993, 52.686451030159944, 45.36892446747788, 30.717189825974994, 42.987274249261134, 48.94771196847989, 22.51014600295514, 11.766842511463548, 9.060450261913866, 69.37186580041838, 79.95702285227594, 43.606546322437495, 19.88652333679094, 22.092850402828738, 8.12091065711749, 10.55636093075792, 54.379049279890495, 63.31469063817374, 133.66967101551538, 8.152976141975008, 7.367989564038153, 65.02126046366305, 57.47455079299878, 31.159636202223524, 39.98861464212268, 147.9759117288065, 34.37742506231726, 20.80232453911145, 12.754713921561438, 20.733342500600003, 34.057882307995634, 33.31837724707731, 76.04571839635003, 8.295840391035284, 26.79422751123671, 34.38875493350857, 56.187141094460216, 14.92071979433876, 51.46147482285823, 57.056617965142095, 58.32544912671276, 148.88169678122523, 130.28329830121092, 47.395453482853775, 5.039308615422203, 64.91322567708397, 12.697606715792618, 15.280772623396462, 12.348903418722786, 73.34671486336205, 37.59011406037769, 27.662139230250965, 7.615842172504645, 68.46006413773468, 18.080059905703244, 70.12349495838055, 8.482477164999015, 49.4706063910636, 56.369103562712596, 36.142583192160096, 6.269278109840679, 37.339002360045434, 20.716047323568198, 107.40671587492281, 7.431509898754246, 47.396188148432884, 31.800037038609176, 23.9145304444979, 14.580570085657026, 33.78804251717664, 21.887282040786744, 5.406598963468893, 5.390888665323136, 15.821633733612027, 54.29751133143169, 14.039386651871617, 12.805055067627297, 14.29139482583649, 12.348603081689504, 45.33290792143264, 139.6107914015229, 5.192152822574543, 50.292431514798025, 44.6977929766983, 21.568904065917543, 126.13588083428485, 84.98607166522795, 78.78445920306908, 22.40076645685935, 73.41205755030069, 67.30589607214314, 14.55389058710141, 73.97697360929484, 169.30215262238633, 187.36839543547063, 10.823944112541085, 100.54774006678694, 35.05726486217658, 40.86635950893579, 14.202171791888757, 24.602093925958975, 16.636545313406714, 18.397533040331798, 74.99350957543035, 8.101892334873073, 52.17035537428211, 9.530080872978568, 16.32217566063706, 51.969202188198096, 106.03564967378435, 34.080966437977686, 37.09177047348118, 135.72270817516753, 10.259610051059237, 10.03260722523684, 27.961347248477633, 25.647733774866914, 48.79403792057685, 12.313100602726355, 68.432863697118, 144.63832618312438, 15.375987206644579, 43.52919459138717, 23.10360860618667, 14.885206386045521, 8.7608025557405, 12.447360522816528, 10.303735814061088, 64.51303658185665, ...])
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);
([4970147.866789154, 4989145.236437665, 4989840.894404741, 5033565.443647646, 5034074.805677753, 5173172.304437089, 5177762.818318329, 5186962.5, 5249494.53265801, 5253222.730802727, 5257138.645666104, 5257167.551445483, 5313437.665544172, 5357784.375, 5357810.653331693, 5372180.886635724, 5394465.197785574, 5397296.064312736, 5397814.201176564, 5399772.136125706, 5402725.0, 5403236.986392833, 5413973.418357488, 5417417.1875, 5428488.244386816, 5429680.792973375, 5431182.8125, 5433880.842554069, 5434214.0625, 5441649.464751266, 5462152.19669874, 5466553.116831803, 5484237.414136898, 5485018.157146333, 5486162.3397558695, 5495962.27414608, 5499402.46539563, 5510560.9375, 5540448.084056628, 5541161.093663447, 5553914.13268344, 5563930.945574267, 5565824.924494361, 5567049.310365025, 5578348.691906278, 5582237.138944714, 5589320.47166776, 5592817.1875, 5596381.25, 5596908.308834448, 5599115.244528169, 5600125.603244502, 5601987.5, 5604133.830408344, 5612386.369444331, 5616856.25, 5617517.67986171, 5618428.125, 5620975.0, 5621713.380063305, 5622254.944273814, 5623537.5, 5627237.128678203, 5627329.214540426, 5627867.442405136, 5628067.79987265, 5628910.930036188, 5630760.225155374, 5631802.975140518, 5632301.640482632, 5632618.871394709, 5632683.185611178, 5632738.145439287, 5633078.950811663, 5633285.503666222, 5633569.350517423, 5633998.838331119, 5634978.165023545, 5635348.9799549095, 5635892.148215974, 5636529.331746669, 5636565.625, 5636583.119521807, 5637953.4587274, 5638006.2518689465, 5638088.16479924, 5639065.625, 5639073.122666486, 5639219.837548348, 5639316.320313901, 5639327.500632626, 5639346.0546039315, 5640388.627178433, 5640388.959658373, 5640454.6875, 5640754.458950577, 5641325.0, 5641605.023092605, 5642509.588561182, 5643952.856444619, 5646559.135794924, 5649991.969686488, 5651314.00151495, 5652412.5, 5654743.145865873, 5654953.850307366, 5655099.583869875, 5655205.69830186, 5655725.0, 5656488.115506308, 5656833.952677968, 5657079.1904342305, 5658637.936510056, 5658650.490933895, 5662994.054426165, 5664528.86836453, 5665054.914448851, 5665077.446958602, 5665407.221253251, 5667916.232468553, 5667927.966884317, 5668461.754158445, 5669683.3127823975, 5670050.293461903, 5674012.97919596, 5674568.178429233, 5675338.35843147, 5679116.805411606, 5679250.821605517, 5682642.781155148, 5683942.1875, 5685203.0621146215, 5685724.918266823, 5686619.6872756975, 5687076.140488135, 5688399.4892711975, 5689360.9375, 5694560.9375, 5701832.684264785, 5704503.706091898, 5708383.0361759225, 5710210.9375, 5712168.731237848, 5714640.968800584, 5715798.063200351, 5718904.656751659, 5723240.480823644, 5726340.889376179, 5726703.366241715, 5727793.75, 5732152.191232007, 5735145.565802276, 5739592.4849911, 5743025.0, 5743300.605840596, 5745066.7784804525, 5745830.987192226, 5746135.472086666, 5747320.828744393, 5748578.125, 5749110.9375, 5750301.5625, 5751626.5625, 5752779.298785273, 5755480.508811582, 5756662.5, 5757869.565989906, 5758765.600280729, 5759289.03871889, 5760304.376933673, 5762282.8125, 5762604.086899874, 5763740.357556428, 5764348.042445267, 5764361.224230984, 5765231.25, 5765731.509934968, 5766062.852207741, 5766254.395066846, 5767031.25, 5767362.343327162, 5767862.454157587, 5767883.546751827, 5769882.760952354, 5773211.377875245, 5773785.9375, 5774672.630485585, 5776457.818761916, 5776745.3125, 5783090.651194333, 5787788.010600819, 5792173.202813825, 5794269.148892851, 5796422.007632518, 5798545.254548953, 5798925.399765776, 5801370.057153774, 5802137.159641661, 5803709.375, 5804180.617503946, 5805903.796010038, 5806486.29448508, 5806553.234268188, 5806624.257414335, 5807558.158107798, 5808457.488653213, 5812050.92879374, 5814851.073685996, 5815367.078119262, 5815521.467576583, 5818001.842696112, 5818049.162224457, 5818171.367707279, 5818243.75, 5818796.875, 5819234.375, 5819561.18382416, 5819870.3125, 5820509.375, 5820644.739351686, 5821275.754835146, 5821492.1875, 5822643.071329538, 5822701.533055836, 5823069.346194405, 5823681.25, 5823716.857677316, 5823873.227666859, 5824167.83648421, 5824358.428262584, 5824504.469038974, 5825037.5, 5825065.750093185, 5825167.727470976, 5825379.766865873, 5825429.6875, 5825445.7105733445, 5825781.85589749, 5826571.363672207, 5826771.875, 5827140.537460138, 5827148.457602364, 5827206.25, 5827235.9375, 5827264.0625, 5827392.1875, 5827590.59746513, 5827600.0, 5827628.326305127, 5827675.585644466, 5827735.375002356, 5827857.362975008, 5827935.9375, 5827980.452446427, 5828341.604836585, 5828599.376415043, 5828648.4375, 5828648.535897935, 5828742.627175273, 5828757.8125, 5828778.168734057, 5828789.2093505105, 5828790.906419304, 5828843.199976824, 5828916.1033311, 5828942.1875, 5829296.276090979, 5829389.311233926, 5829681.050581413, 5829777.864837936, 5830045.040624293, 5830366.804928196, 5830940.17345317, 5830943.314669939, 5830943.990165677, 5831030.355413203, 5831074.760486218, 5831135.497609871, 5831424.793620005, 5831517.894931979, 5831561.359923279, 5831601.5625, 5831638.809364068, 5831644.7722350815, 5832093.286039031, 5832614.162455758, 5833051.549277407, 5833190.270101877, 5833193.712657449, 5833385.888330664, 5833505.578554279, 5833773.887711331, 5833783.49521781, 5834181.25, 5834436.1709410185, 5834468.75, 5834782.361799342, 5834785.8002022505, 5835004.529703373, 5835127.908906531, 5835340.670672773, 5835676.949357968, 5835905.3720621625, 5835974.160201288, 5835987.5, 5836601.092624984, 5836859.759891309, 5836901.085649039, 5836925.7470908025, 5837056.733014841, 5837114.0625, 5837196.811117977, 5837237.480142484, 5837259.55926818, 5837314.0625, 5837601.143272384, 5837671.875, 5837757.720259515, 5837818.516478469, 5837995.3125, 5838050.990783375, 5838141.002592941, 5838182.7537355535, 5839223.122774817, 5839317.876041989, 5839322.575441235, 5839544.237651851, 5839690.694712394, 5840182.474286466, 5840553.091507598, 5840830.635308063, 5841154.112238818, 5841255.439705749, 5842198.146501083, 5842325.756573091, 5843883.725146252, 5844244.902781958, 5844643.224382267, 5845618.717175718, 5846941.457395369, 5847018.309520858, 5847762.5, 5848056.25, 5848170.229578685, 5848263.868259632, 5848279.471106133, 5849103.958282116, 5849382.8125, 5850692.41629166, 5851373.070765203, 5852309.986841733, 5852642.1875, 5853475.96277945, 5853481.727304672, 5853491.992643503, 5854291.180825762, 5854812.5, 5854893.246273071, 5854906.25, 5857363.043807388, 5857428.93999279, 5858235.274797951, 5859346.875, 5859496.754645931, 5860615.17437094, 5861022.535237273, 5861439.659357143, 5863528.104747557, 5863532.981489684, 5863566.656896544, 5863960.751060362, 5866445.3125, 5870236.597413036, 5870770.306816231, 5873610.258211053, 5874017.1875, 5876118.229953576, 5876443.473074902, 5878762.202439462, 5878772.300415765, 5878920.3125, 5880600.490072746, 5881106.294139097, 5881313.889927701, 5881495.684297675, 5881731.242737713, 5884208.678422704, 5884229.971313195, 5887041.651720121, 5887145.068547988, 5890646.551422383, 5892411.478564092, 5892714.182537899, 5892858.180359656, 5894738.932384706, 5896988.636429384, 5898071.24940568, 5898472.300836025, 5898491.7650197875, 5899764.409978226, 5902378.125, 5902645.639972149, 5904193.75, 5909819.914625429, 5909846.092716881, 5909859.11459178, 5913206.25, 5914522.2546937885, 5916926.459532868, 5918731.095031143, 5918776.5625, 5920416.806773287, 5921312.533966251, 5921980.308810478, 5925120.925393184, 5925316.280185245, 5925456.293196333, 5926007.8125, 5928729.95370206, 5931531.0903379405, 5932325.0, 5935407.8125, 5938131.476108606, 5938160.653400684, 5938791.788159513, 5939187.5, 5943079.266483875, 5944983.659617448, 5945785.9375, 5950266.645902317, 5950976.272859049, 5957632.053579138, 5958231.25, 5958416.986507374, 5958916.468943895, 5959010.9375, 5959651.612774673, 5960037.6720409505, 5960693.674280255, 5960693.75, 5960957.8125, 5961149.349952713, 5961220.2306791125, 5961462.730587863, 5961523.4375, 5961596.351622228, 5961910.9375, 5962043.75, 5962531.751951347, 5963179.602472529, 5963427.448303618, 5963581.878417125, 5963585.831762784, 5963887.173759048, 5963893.261931134, 5964093.232772164, 5964382.8125, 5964548.138108728, 5964625.0, 5964647.71729107, 5965531.3556113215, 5965824.626539032, 5965877.921793762, 5967539.1684747245, 5970088.0323377345, 5971063.094106455, 5971631.214878951, 5973781.88730483, 5974185.283655053, 5974830.77378494, 5975145.3125, 5976940.496168483, 5977429.438434086, 5978068.585411166, 5979527.243048594, 5979904.620794534, 5981630.388236749, 5983577.501912459, 5985424.35922271, 5986410.63454533, 5987673.992163867, 5987882.751424535, 5990965.014960055, 5991104.778983681, 5991190.625, 5992401.606510165, 5995391.800008294, 5996526.5625, 5997852.329922955, 5998339.0625, 6000573.4375, 6001495.598623162, 6001729.4375009695, 6001747.347343528, 6009561.1000389615, 6010731.923675649, 6012039.0625, 6020540.625, 6020569.305774091, 6021004.365129286, 6021633.748252903, 6022063.414304188, 6022160.372747277, 6023370.3125, 6024342.380466051, 6024540.547912402, 6028303.117194874, 6030415.537275534, 6033122.444041903, 6033648.8732783245, 6033669.117575086, 6034176.477745307, 6034600.772804678, 6035743.75, 6035964.0625, 6036532.445429322, 6037128.590955443, 6037424.110231787, 6037751.936454706, 6038177.605539031, 6038693.75, 6040032.114024063, 6040212.125688722, 6040692.1875, 6047699.678272841, 6047851.5625, 6048259.375, 6048892.1875, 6051135.287438959, 6052342.290113887, 6053568.690958684, 6053589.255024886, 6053782.328582153, 6055470.785946627, 6056820.938652475, 6059862.017419648, 6063601.894100615, 6064140.587189426, 6064706.653796777, 6065359.375, 6065430.545245701, 6069500.703969118, 6069690.625, 6075624.477695941, 6076468.358129188, 6076559.375, 6077746.753930819, 6080165.4849401945, 6082868.102186511, 6084303.687597907, 6084932.193587509, 6085164.5552307945, 6087947.001485521, 6088401.360110332, 6089484.731336744, 6091068.283656237, 6091941.230472065, 6092106.116271456, 6092367.185944246, 6092620.794080265, 6093187.667677772, 6093373.370334415, 6094006.690869402, 6097301.962508848, 6098509.375, 6100122.321266786, 6101857.8125, 6105607.671927846, 6105685.007845605, 6109955.8303826675, 6111070.3125, 6111141.201508456, 6111725.9278712, 6112092.96129441, 6112572.427913074, 6112659.375, 6112676.314534591, 6112819.394059498, 6113477.49903982, 6113485.9375, 6114026.8351820335, 6114540.716688043, 6114745.3125, 6114839.0625, 6114900.308338139, 6115018.66794281, 6115076.370829962, 6115275.72304057, 6115329.009758152, 6115623.143123015, 6115711.278285296, 6115797.667723435, 6115850.8040477205, 6115891.851327476, 6115893.984248609, 6115898.4375, 6115900.194363319, 6115915.826973342, 6115944.879913697, 6115955.021527534, 6116104.6875, 6116229.463392172, 6116254.637016545, 6116255.735879612, 6116267.611785081, 6116285.038172686, 6116334.046737486, 6116684.375, 6116689.0625, 6116701.767644719, 6116710.537101705, 6116715.812221217, 6116825.646529634, 6116852.3123, 6116858.8766573705, 6117022.494556679, 6117087.948071928, 6117261.842994653, 6117265.625, 6117437.5735170385, 6117847.330670168, 6117871.6039021155, 6117885.457381694, 6118060.9375, 6118262.112737948, 6118326.5625, 6119177.088803718, 6120124.842061066, 6120553.26505719, 6121815.047493885, 6122121.71902103, 6122168.75, 6123720.05174003, 6124668.680299146, 6124735.652986703, 6125423.432542051, 6126041.684094785, 6127343.75, 6127363.920729563, 6128892.999660938, 6129727.992473092, 6130720.977012558, 6131025.823914933, 6132297.690689007, 6132816.9535956085, 6132943.63759822, 6134357.8125, 6135072.948143512, 6136161.547201303, 6136277.204426403, 6138638.404862937, 6139159.377686912, 6139485.777185726, 6140585.162098262, 6141064.854456181, 6142044.99289824, 6142501.5625, 6143123.4375, 6144327.748619047, 6144864.063993078, 6145915.921889441, 6146012.040118422, 6146157.602679373, 6146184.526064956, 6146734.375, 6146759.4142598845, 6147151.11713178, 6148895.009824713, 6149309.223372993, 6149309.783369331, 6149818.385499498, 6151095.211833938, 6151303.247001807, 6153942.615013068, 6154563.230201554, 6154622.846300538, 6154673.903411997, 6157420.3125, 6158141.471838521, 6158562.5, 6158674.675928235, 6159771.875, 6160047.952221252, 6160982.719906156, 6161078.498087886, 6161342.1875, 6161629.814749923, 6161657.805146596, 6161843.75, 6162003.125, 6163159.995927529, 6167420.458030495, 6168150.966957584, 6169666.343320577, 6170707.156898562, 6172697.871341406, 6173056.042630061, 6173115.5493658045, 6173445.135221147, 6174188.201920019, 6175014.0625, 6175404.614598377, 6177223.815425905, 6177864.93931348, 6178670.814374671, 6178873.343578002, 6179015.455678187, 6179514.235877705, 6182379.6875, 6184835.9375, 6185291.428510373, 6185527.842949688, 6185619.60246719, 6186218.75, 6187002.774287045, 6187866.047013983, 6189557.8125, 6189988.983600248, 6191854.41452428, 6194589.006019377, 6195749.037667721, 6196550.0, 6196942.1875, 6198104.450613143, 6198232.605107338, 6198312.339205359, 6198772.028272295, 6200903.125, 6201924.688509529, 6202909.7525760755, 6204335.005730365, 6206767.587119041, 6208481.25, 6208648.652812604, 6208650.909844594, 6209448.4375, 6209951.5625, 6213979.6875, 6214622.292228992, 6215175.0, 6217685.380327883, 6218150.802498329, 6219786.934976463, 6222373.567660283, 6223154.656852006, 6223223.960499887, 6225351.445247978, 6226774.073905766, 6232111.463164991, 6233335.313324298, 6233874.751328376, 6238936.609031784, 6241882.8125, 6242389.405203662, 6243717.873028614, 6243943.75, 6247081.163055858, 6248621.10033158, 6250154.819362901, 6251409.375, 6251978.832300495, 6253870.987325992, 6254094.879214302, 6254532.140537737, 6254940.362151496, 6256948.4375, 6257544.1529018795, 6257657.703517954, 6257791.532121311, 6257911.73733471, 6259223.4375, 6259787.75306326, 6260637.5, 6260690.625, 6261003.566008362, 6261650.0, 6263035.135016559, 6264475.594499904, 6264893.75, 6265488.653580162, 6266124.794990601, 6266185.377927972, 6266245.3125, 6266510.9375, 6266770.617947704, 6267395.3125, 6267673.736443298, 6268185.081780466, 6269261.726802043, 6269571.750094105, 6270216.710980148, 6271668.75, 6271762.132573898, 6272029.333009778, 6272126.5625, 6272132.330454213, 6272719.261041793, 6272993.681280609, 6274697.349012743, 6277076.114000478, 6277332.822569826, 6277971.505041053, 6281246.875, 6282646.875, 6284871.055517327, 6290009.071689936, 6290283.957153224, 6290767.1875, 6291572.758901461, 6292416.92412453, 6294727.790129106, 6295033.442571441, 6296873.963418977, 6297440.575766812, 6299054.452854642, 6299889.169778421, 6300415.665905716, 6300863.480291883, 6300977.995842443, 6301456.702311575, 6301564.696723736, 6302324.635473484, 6302470.3125, 6302540.625, 6304119.816928824, 6304667.635508753, 6305803.125, 6306984.816790562, 6308062.202645433, 6308504.440414787, 6309026.311828315, 6309182.605870396, 6309470.3125, 6312549.270820999, 6312793.75, 6317094.340572686, 6318043.75, 6320109.375, 6320280.768047417, 6320288.613885872, 6320456.25, 6321150.376610842, 6321176.5625, 6321201.601674041, 6321858.671380945, 6322432.8125, 6322492.137070382, 6322565.580864209, 6322741.972526979, 6322852.774976741, 6323634.305584051, 6323868.295309975, 6324145.7861977825, 6324251.559992144, 6324262.5, 6324629.831907214, 6324679.262944755, 6325050.0, 6325179.796573322, 6325198.4375, 6325496.185021324, 6326528.739492835, 6326564.534137038, 6329348.4375, 6330377.9017149145, 6330790.625, 6330837.30933021, 6333888.982581125, 6334301.851032445, 6334681.25, 6334902.557452497, 6334932.793970482, 6335014.494663951, 6335392.174808655, 6336537.5, 6336689.0625, 6337550.0, 6337693.346248442, 6340641.8351479815, 6342971.53617739, 6344095.339848307, 6346364.0625, 6348576.5625, 6349996.197309067, 6350543.308091405, 6351413.735508294, 6351751.041080253, 6352002.844311487, 6352196.875, 6352457.8125, 6354213.801014432, 6354822.736601562, 6354934.6532264175, 6355387.5, 6355621.875, 6356464.0625, 6356898.904753721, 6357104.011383179, 6358888.490347971, 6359578.964732749, 6359672.857808891, 6360187.5, 6361090.625, 6361835.9375, 6362643.76747561, 6363673.743522954, 6364810.933346578, 6365066.8931515105, 6365715.619534885, 6365941.159369352, 6366526.233623062, 6367196.875, 6368373.935218914, 6369468.146119773, 6369562.5, 6369629.554433232, 6369976.5625, 6371766.440792582, 6372174.799200049, 6374217.849707456, 6376223.572531946, 6377604.6875, 6377632.262878656, 6377864.097215612, 6379957.064342256, 6383106.885393152, 6385168.75, 6387900.352945971, 6394296.61592021, 6399462.216190778, 6400078.125, 6401320.3289434, 6401451.706977204, 6401465.427439877, 6401602.588787157, 6404249.498854441, 6404940.625, 6407728.676311309, 6410254.400215159, 6410753.0269668335, 6418521.875, 6419140.697999332, 6422012.710919386, 6429724.800153803, 6431643.963216037, 6432145.3125, 6433154.428812313, 6433564.923068727, 6439407.993414418, 6440791.287069412, 6442968.2692272775, 6444806.806006711, 6444882.364350563, 6447175.482713014, 6448095.3125, 6448857.065384475, 6451420.3125, 6452325.772831983, 6495768.75, 6496491.932300493, 6499501.5625, 6500768.75, 6501231.14444563, 6504325.342554735, 6504941.354937064, 6505253.358537433, 6505820.109062714, 6506792.1875, 6511061.621918399, 6512954.6875, 6513320.103989799, 6513982.57634938, 6515862.891973465, 6516300.683867886, 6517742.396627358, 6518374.633628947, 6519826.5625, 6521137.725978486, 6523983.133007561, 6524014.0625, 6525480.504592308, 6525622.816138334, 6527285.9375, 6532280.029969901, 6532296.238223075, 6532794.477196901, 6532824.970883559, 6534061.808115685, 6534874.303713713, 6535575.645678101, 6538323.4375, 6538857.550904298, 6539065.734504105, 6541514.0625, 6542003.78320102, 6543657.336313598, 6545144.550648111, 6548323.184505017, 6551205.650060063, 6552664.0625, ...], [5.506008735669317, 6.080224959451764, 37.50552321811223, 20.852649224008648, 36.51110251492256, 80.55507161236898, 9.615888750079215, 44.53973190897992, 19.09218112862384, 10.177624903827574, 7.459126539910458, 70.09039416682673, 58.10959833710606, 56.566121317632316, 13.958762250768098, 46.343862439792275, 10.51972369869884, 12.548722778317833, 15.497805900802366, 24.85012997233939, 36.63013416670494, 10.40977259903259, 28.151524357328956, 39.53964783728101, 10.051572515307514, 21.91920747681128, 46.89175540355974, 14.963045357370778, 90.74757511934408, 136.091964319023, 20.874743564730352, 28.364345735500624, 26.93462305370141, 13.078737687615234, 7.079955959029486, 5.601670367827807, 53.11910207988958, 70.03665225908196, 23.091265692028678, 47.69739328971907, 95.34757335754578, 14.920174217994461, 27.115310924647456, 7.952710148272176, 16.008771900898335, 95.96970885291263, 41.38868676369691, 105.32205413364015, 32.00928089852815, 5.35922186033165, 181.05625640775668, 17.87730025221204, 74.00511870201967, 21.059516303255045, 67.43922187765571, 30.445570369712705, 8.565319111934887, 53.76621564504464, 48.96221167284636, 67.29250450689756, 35.4395614341494, 34.60037920795975, 19.57648551405273, 175.38219006455063, 25.83384115724191, 7.292300688532896, 6.087323389748787, 25.45061221305002, 14.399507577484416, 6.77917570439015, 20.771592647428122, 27.21707534519744, 6.899588127530123, 91.66585631423513, 28.489265787680093, 27.72666799579587, 6.319204518871026, 7.617777945942648, 8.595899173941312, 27.770578705414234, 5.28022333415176, 30.311589036546486, 5.410342340818892, 45.03919955379762, 6.267434524031448, 29.72646599676727, 39.7124716909657, 29.522229946060563, 7.44003737507026, 77.22673367904817, 20.684528335898577, 80.03161486731065, 56.1477868563247, 43.75483571244578, 71.13422051314507, 51.4126755230733, 116.76750181264038, 175.55249398126705, 121.4746031574102, 35.72456222069931, 6.237442285516079, 10.803502966472497, 22.73914975780899, 76.8456587691438, 18.75881221014888, 18.68079327638732, 22.37263757833737, 29.44291355333066, 111.26226965020484, 105.31787250074427, 46.303201105192, 8.943726374774553, 9.72994634382793, 5.216112492975178, 46.520186935744526, 12.529458786612814, 38.85947824398291, 43.58551994304963, 7.996848433147873, 38.607227925998814, 25.749727195649402, 20.902200844193008, 17.266370361627885, 16.191932834045762, 125.96530068326241, 20.807667151602928, 18.545105385121982, 36.69867901392886, 12.711401628777152, 17.817974071388225, 35.02302490195333, 9.27879011552529, 41.45622144775684, 82.35844164123547, 43.95674704764637, 21.3867382045325, 61.391143012299814, 92.04957952210474, 25.436532570396558, 17.741031559024364, 50.85872031800533, 70.99716296655218, 90.05615050860777, 11.711264858072584, 121.52347201920048, 141.08633189456862, 22.076236135772717, 44.574466027945554, 16.33690385609664, 41.73573238469778, 13.252873609241863, 37.958922446611766, 23.669099629342874, 54.89971046306117, 39.51922861620467, 105.94936199288183, 5.520460162906016, 136.82676903260736, 38.10981602508945, 50.79270850823169, 69.24643343093624, 108.68098067319363, 68.76086335792517, 10.570014627170858, 12.710702987477283, 74.47989028791797, 12.698074247812496, 23.077393104124766, 81.27961668877715, 8.128900218286711, 184.02647457915836, 31.918484398969806, 69.87112336438244, 6.426896219674768, 11.60755212456142, 59.45730196190267, 8.428990952244636, 5.840508502584488, 39.7657895537725, 86.15454807500907, 10.891340268655078, 11.05680029227207, 18.74343732742594, 27.54454297328554, 6.8547283848556795, 41.313883137084716, 73.54881020995249, 8.289891509549888, 85.66188767808599, 11.168898566335839, 19.517210367748927, 102.35042319579034, 17.065019930892127, 25.375632505537915, 24.78589234870464, 74.44953439148492, 85.69735305407772, 23.248554672233173, 69.08686687874899, 81.007048793028, 168.44277458069098, 7.737666082344782, 9.425536773042369, 16.7976839986039, 21.828886350556676, 13.835847366907508, 42.485384234770336, 21.605417018856766, 58.808803062136924, 100.71137144245698, 89.48772486107035, 18.676729672914682, 8.035372240917628, 70.63243190770206, 55.628130891329974, 31.98355951358111, 15.971573332170667, 31.816436354040864, 49.04680877087618, 74.98264988147075, 10.063161780863654, 100.17817114620658, 87.20672160230298, 15.786920474403269, 21.453850424017674, 55.590545593989845, 23.37712910896047, 122.27666750056267, 18.16761568995118, 90.05641366523314, 151.40331795257063, 38.0344784918541, 86.13862577863942, 172.04749588576817, 169.22004265486723, 105.96975380892269, 11.812677314981258, 50.67528897091128, 8.933489098954997, 40.6635491225069, 14.266695021152243, 31.593431610419803, 40.91719244670799, 47.09868430500337, 106.16064012077783, 56.9486282976315, 27.99130082744814, 33.58187949726539, 5.625278748372891, 8.62262207501192, 6.402387546877923, 50.43885283259532, 58.92257349720959, 86.30417966278048, 6.976271334346617, 42.74875131578935, 45.35470685876947, 15.33030592068257, 107.58413377512395, 40.61653349227595, 80.44433221754353, 15.532422432825925, 16.134846105756715, 13.191100886063099, 5.077699057114842, 49.947525188395076, 20.560086905421542, 6.814201560454517, 25.126578955783096, 7.511775903314925, 34.13793115982213, 36.76298188392808, 21.990458218305292, 8.98857121117192, 7.692474257362191, 18.291434786696094, 34.6422668836931, 8.985228938885609, 25.02510443192396, 45.848851035885254, 16.83978725999625, 58.239432194561914, 5.037303769130657, 122.12270186290708, 7.443629423521267, 18.12295340951711, 5.938254849164786, 7.479729926580683, 6.481253348474355, 33.61894014603257, 12.879804707737184, 14.731866431912188, 193.00419784739879, 33.24029042547028, 5.073166061021644, 30.299004340267597, 93.24969773700526, 6.736402237297523, 25.754686323448638, 85.18847130025121, 15.118497908745336, 11.791492619779326, 12.397838407044464, 57.19864228227802, 34.858752321583054, 116.93939147332961, 51.87476590801771, 154.07364281363937, 74.32374232653241, 106.60419601732687, 39.89750949742625, 27.32155908292172, 5.202916302843248, 104.63171303096843, 105.75179583953971, 65.30027300844542, 49.486866365830316, 75.03456604854668, 77.693690754947, 31.061634901522805, 6.19757087690595, 42.46538160081275, 5.530235298236322, 9.078745989209862, 15.300169685861643, 12.432962739121741, 17.195201649370947, 31.51213570316193, 47.99014642961963, 97.9454164256956, 33.10322457672466, 49.993456676761404, 134.12921770437472, 55.07969308413759, 33.11153015868541, 52.623007531488845, 62.83776828639902, 127.44457713295058, 12.144897077719047, 30.706505328897137, 29.892475560622792, 68.10490201591124, 51.87265996011478, 14.63459884698434, 18.127473951232943, 24.880860192200085, 69.78177589003833, 57.76766940961821, 45.08961166734145, 22.93415184188492, 5.746836061082741, 54.45088907071428, 31.154650159409073, 82.29075943541477, 25.19362093812421, 36.9026037201318, 60.22972378363853, 10.422148639915395, 59.435030644921625, 49.713316738791, 8.77033944489467, 8.827572009576587, 77.04836120800175, 14.501796223229835, 26.85928627721762, 12.344619113145656, 17.83772586739539, 28.13020957177485, 67.25400402740736, 18.14964979791584, 32.49428002279454, 44.42365553338827, 6.35433634569568, 51.247943176034966, 5.373125246910702, 47.06084972760337, 10.401733805921472, 13.981544196820591, 23.932727894758187, 75.4738247297393, 31.77620208012669, 27.401991771029344, 25.696517385879435, 39.581224959224095, 142.48865907019376, 9.325270041102293, 5.270044721926855, 40.54234606329593, 5.585075556995148, 29.21472473974638, 30.688449520612636, 191.2009090826393, 22.42702733476843, 11.755879385989473, 26.193863609282634, 33.672051244713465, 16.123759388540044, 57.110663330726446, 29.469858898002034, 27.185219215340908, 54.91292736129351, 6.1228285920963685, 123.45213543725404, 41.845668513826105, 7.342850995789905, 10.743687988642915, 48.402581161864006, 7.746592652917042, 116.00678806997504, 5.926022573155614, 32.46062804016656, 5.906921430847354, 125.04825905834691, 15.580973747255292, 7.292454832003893, 18.20793544874678, 5.069682649566584, 64.32837826092276, 16.063491792092897, 9.19995267860291, 30.85143663655924, 60.11424859374178, 22.677232557502514, 93.91871413632936, 6.686316835058122, 127.71325838412555, 22.318932067167193, 39.10673028611494, 46.053942426835704, 26.353540418017253, 117.10980893968632, 17.80261672887635, 100.80082538446362, 76.91584860101594, 82.90486835141999, 30.269226981269167, 9.374278134487158, 15.640467108710483, 27.111546572563963, 72.83358858581398, 78.01857258007622, 20.11640534800397, 11.002179373088806, 14.730162011400115, 41.61293771388963, 13.262472602089264, 72.88414920070103, 45.922892780698604, 25.47468598727655, 86.38445506025359, 50.69432291440338, 18.035548329687106, 5.806197823441374, 23.421238766601938, 20.10070816802518, 16.195963203821314, 32.91927256066815, 17.64470761449587, 46.40408385682746, 6.379823094026415, 6.784775815308385, 7.473526385986746, 25.071244271104337, 15.361429259095903, 8.589687420604605, 17.8207545048679, 38.623070878130626, 5.65030190727052, 5.767135117040661, 24.044031944565496, 33.87980744097919, 98.80507367396122, 32.45472804792206, 51.690688882355815, 181.28574769942617, 7.579288323944489, 18.511479397912538, 39.64263437051943, 34.99177558512778, 43.85083145011331, 38.116644162291806, 27.37191933657177, 77.86429884909961, 8.33555525777646, 90.58846322340608, 8.309988567685988, 98.48359386564614, 56.01705713721318, 48.68370512031512, 31.019890082748496, 34.17669146884113, 25.868946542853152, 26.048448834769452, 17.109987841036137, 73.45025172410809, 18.329569694435207, 38.58091923942533, 31.99968085906678, 17.58861286320365, 23.469131725353442, 10.271559655300914, 88.62468941921458, 6.980508237268492, 80.49716740615665, 82.7079161307162, 23.214271535375516, 28.371451682147395, 26.902454660461032, 7.822888474669011, 16.91094700172534, 16.555793596091025, 6.473886761728581, 120.1674498174483, 50.15652288480479, 40.170203188045896, 78.51848677628871, 24.687074178187665, 51.512671346722485, 9.668972098084852, 18.978875823466634, 37.09159264935558, 49.23783843777967, 22.84576492738052, 63.48176309973489, 70.41773077318052, 56.28481904753633, 39.302069561828915, 96.00637678354042, 7.970334957361124, 36.85444799647127, 87.87009070423686, 25.25249900097352, 87.22866170634404, 119.66763787142769, 18.021160320755, 125.83550769725112, 6.123275220017071, 27.798033138991613, 16.741874040669497, 106.51691561294608, 93.32925818424168, 120.4475511999258, 82.01248984312018, 79.73625187626777, 12.7749390717253, 50.49247875333043, 104.14591102793354, 157.8387290661492, 7.971341093494464, 17.62935145814785, 31.095644941462055, 7.257293104697351, 15.4465729060819, 9.165940131277454, 42.944219233059684, 18.466709972072316, 45.61678179569645, 31.548564553191156, 14.935582930812755, 11.974280764437212, 50.49243871716614, 14.691539836278372, 8.534339241819325, 65.90316920514863, 36.12350555654971, 126.22498100991703, 48.13385644154497, 26.025860159755872, 18.063771411134127, 29.998708849908958, 29.335250983536994, 12.166685386212487, 17.24737543498057, 10.084311826753405, 17.571606620399233, 59.453777394288714, 110.33131272811241, 55.26362768843329, 10.272499233881561, 48.13395554657018, 14.272423809395196, 18.97153557954202, 56.07295669892459, 53.589310685499846, 8.45665194326833, 116.81583314442783, 80.14374735193451, 8.709909310156442, 8.817314549413176, 78.44225788882106, 84.98027795461579, 19.16682889139156, 5.37024964020369, 10.639983698246407, 15.916434352018046, 41.202755272956644, 16.188689161970323, 52.59888201956859, 10.512771026399719, 9.630769719903482, 42.26670029941442, 24.771109044506613, 6.082865068428246, 73.03518357361486, 8.524457847480962, 9.963064497847267, 23.396317785876615, 46.83177561220707, 60.54093322578846, 5.2086800787812955, 13.607368194183806, 5.718777774582096, 5.565303572047898, 8.72732475113485, 134.88481880111686, 55.119772945396434, 61.800816341680495, 30.02516517987025, 67.87112303153371, 21.770405965397842, 79.53078681268873, 111.45767856639955, 45.11261535344912, 89.00435258890681, 25.584394781555766, 126.51959724711196, 38.48773339316244, 37.106030821357514, 15.503637796960051, 88.14629662422938, 14.378549898600841, 67.52340744758594, 24.265262508235317, 69.8446809557204, 236.63641298743426, 63.478115586589425, 64.75991257044586, 29.176403595425384, 19.70818350664772, 21.4713300533637, 7.087044746069864, 18.269027250989065, 12.716894842202098, 5.316966302276709, 79.19292562215351, 26.484472422590866, 61.710964220344, 13.35529093967883, 9.906272341273613, 56.36911211839198, 68.03987948373643, 19.670101263174914, 93.62075876227982, 37.84985564622177, 19.161112154013097, 23.503544406974857, 52.83724056783518, 75.00899678385197, 13.677859282890147, 68.629294874486, 49.24787007598897, 18.809661537120924, 24.785636082584794, 41.97404480001413, 42.96403220518294, 6.7713698927965424, 58.83740703652872, 13.901038410885109, 25.85103493799514, 93.64468097873093, 22.960378435405218, 25.502076266154084, 12.891301973380182, 52.93218802862791, 12.499623407497293, 20.629149377310405, 44.314336342784785, 41.316197333946874, 32.82813209107348, 53.854542871741295, 10.656321066686523, 90.30743714723012, 151.09840590699085, 10.985996660182645, 145.06054549413238, 89.81165911901842, 5.621122914300544, 31.44905988188977, 69.29967193824405, 31.220162835716806, 118.92570299042225, 33.51116203023982, 66.49672437314692, 6.362429135307888, 51.19579016821155, 201.58028837897635, 31.881955795600398, 14.660856362162944, 25.45602572446241, 6.164266585628234, 70.18752860773813, 14.670737127965815, 9.672801913222747, 8.81191500469021, 5.418013189866304, 10.96633540219334, 25.57699437914424, 15.646258896513894, 71.17059885994063, 82.80793813777103, 11.680758453805208, 83.80002010972568, 81.27622498679284, 35.702588015709516, 45.301807338778126, 38.62950547551544, 83.74188924852734, 50.93637357597288, 105.86560004669875, 42.48987433630438, 20.879512918083083, 46.776933190767544, 67.20331761385634, 6.717117831442268, 25.010425532055276, 14.362118735201573, 11.376041647632922, 71.54081347680001, 23.605068121612824, 72.85701621119021, 38.049653332709596, 38.248595441070066, 102.48193854306089, 6.521381498765938, 12.926538911255923, 37.01589023861731, 75.35558430033805, 41.35002256085963, 7.235624626863976, 35.155317744710395, 58.020374665303606, 53.33557032546719, 6.655713757576353, 55.681087180288465, 52.87936468318306, 5.360168173580943, 26.40413360241382, 8.654461694373522, 191.04624221431288, 41.03028249820926, 139.55632267084866, 29.466308124033482, 32.70485326274186, 33.023256629286735, 43.59406032723352, 71.17286906723889, 6.746272098344443, 22.63975598626598, 11.34026802341702, 180.22547575899392, 6.003462907335692, 13.193537513280805, 8.070010437123464, 19.933610583001272, 8.15230344626876, 155.7670387839811, 80.07015969274327, 14.541777846557208, 51.57608327418147, 82.28379911906693, 57.3090251009723, 11.67536574304845, 47.5316574168032, 64.89342116681729, 16.939035435887973, 93.02504998184861, 146.3890915117052, 88.27271077970164, 62.54644294375223, 10.54351976324666, 80.0660339322216, 44.611958950924354, 56.73873653315582, 54.354613216504966, 70.30974313953905, 75.58850422963323, 36.519076723399564, 81.4858106588534, 144.73908906529354, 36.157158891914335, 5.44167884790202, 70.1480061140384, 22.92605212140508, 7.031283853071267, 36.41492759552959, 10.449484136558052, 5.6429559562148395, 27.235273326156157, 28.100159276523375, 7.008342866069888, 20.124213857682797, 8.100169052194827, 70.17182406483968, 62.873741340393195, 148.70386267873695, 22.24006211396599, 38.57613720617929, 50.97718466912702, 152.47759076679097, 96.31696072355898, 23.315304598343808, 104.23822279160638, 74.98845887918533, 46.79514295296196, 5.7968201477743255, 15.366802257576584, 132.0436289589279, 8.883278735169588, 6.737992322682322, 17.000171195093422, 96.35805259681729, 84.41039701597413, 58.269535190631686, 57.838514043021185, 8.94480183415134, 17.356825242046092, 39.141012943735646, 105.23523798478855, 13.917562844257311, 10.762277983025959, 16.45293115432151, 14.208379060333124, 34.44899678723229, 5.317541206041462, 53.30791736281765, 17.79901414954563, 69.02158243166278, 131.3188680761402, 21.6750420364462, 17.8920971831714, 119.40832648657133, 6.5477945828489945, 75.21690989970257, 18.15525501473366, 5.880386146140852, 64.63440255071853, 5.93502580956677, 27.68062949943793, 10.807531562377966, 82.9299140373391, 7.10332309131422, 21.957321229299712, 56.03408598745041, 13.448240877418135, 94.28851477509204, 39.605192202761174, 18.212486206543318, 72.95356102613053, 11.302585553244391, 54.43662750941774, 23.48550759131117, 9.911314639519302, 11.954673064610237, 52.815425184443285, 41.56427887078645, 50.23675867909425, 17.39839624364236, 177.46347333195897, 60.88711239626247, 67.50149104857158, 42.78010380222926, 28.163312505330993, 52.686451030159944, 45.36892446747788, 30.717189825974994, 42.987274249261134, 48.94771196847989, 22.51014600295514, 11.766842511463548, 9.060450261913866, 69.37186580041838, 79.95702285227594, 43.606546322437495, 19.88652333679094, 22.092850402828738, 8.12091065711749, 10.55636093075792, 54.379049279890495, 63.31469063817374, 133.66967101551538, 8.152976141975008, 7.367989564038153, 65.02126046366305, 57.47455079299878, 31.159636202223524, 39.98861464212268, 147.9759117288065, 34.37742506231726, 20.80232453911145, 12.754713921561438, 20.733342500600003, 34.057882307995634, 33.31837724707731, 76.04571839635003, 8.295840391035284, 26.79422751123671, 34.38875493350857, 56.187141094460216, 14.92071979433876, 51.46147482285823, 57.056617965142095, 58.32544912671276, 148.88169678122523, 130.28329830121092, 47.395453482853775, 5.039308615422203, 64.91322567708397, 12.697606715792618, 15.280772623396462, 12.348903418722786, 73.34671486336205, 37.59011406037769, 27.662139230250965, 7.615842172504645, 68.46006413773468, 18.080059905703244, 70.12349495838055, 8.482477164999015, 49.4706063910636, 56.369103562712596, 36.142583192160096, 6.269278109840679, 37.339002360045434, 20.716047323568198, 107.40671587492281, 7.431509898754246, 47.396188148432884, 31.800037038609176, 23.9145304444979, 14.580570085657026, 33.78804251717664, 21.887282040786744, 5.406598963468893, 5.390888665323136, 15.821633733612027, 54.29751133143169, 14.039386651871617, 12.805055067627297, 14.29139482583649, 12.348603081689504, 45.33290792143264, 139.6107914015229, 5.192152822574543, 50.292431514798025, 44.6977929766983, 21.568904065917543, 126.13588083428485, 84.98607166522795, 78.78445920306908, 22.40076645685935, 73.41205755030069, 67.30589607214314, 14.55389058710141, 73.97697360929484, 169.30215262238633, 187.36839543547063, 10.823944112541085, 100.54774006678694, 35.05726486217658, 40.86635950893579, 14.202171791888757, 24.602093925958975, 16.636545313406714, 18.397533040331798, 74.99350957543035, 8.101892334873073, 52.17035537428211, 9.530080872978568, 16.32217566063706, 51.969202188198096, 106.03564967378435, 34.080966437977686, 37.09177047348118, 135.72270817516753, 10.259610051059237, 10.03260722523684, 27.961347248477633, 25.647733774866914, 48.79403792057685, 12.313100602726355, 68.432863697118, 144.63832618312438, 15.375987206644579, 43.52919459138717, 23.10360860618667, 14.885206386045521, 8.7608025557405, 12.447360522816528, 10.303735814061088, 64.51303658185665, ...])
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)