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 = 45259
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);
([3481517.8983483543, 3483066.2599325534, 3514937.125222207, 3525764.0625, 3573838.8015783993, 3613228.8083443046, 3651410.4579221285, 3692266.0221463745, 3692266.728020923, 3696404.632889078, 3696442.1875, 3697363.6618443453, 3740479.3526480757, 3804434.1300592287, 3809290.491373891, 3817468.287191086, 3821617.961965906, 3831353.125, 3831419.0229246477, 3888090.8729473893, 3897588.9682080336, 3905590.1760266526, 3908728.3753342275, 3908759.7056071213, 3914132.485049817, 3949935.672896059, 3951676.6915131654, 3963314.994306396, 3967785.5983171947, 3980189.3364803367, 3986328.125, 4022729.0671095997, 4033498.85291873, 4037043.7106917524, 4047676.5625, 4047713.921553854, 4054477.574238548, 4060478.125, 4074088.903439626, 4081767.5634148875, 4081831.7861333936, 4091806.5939150844, 4093202.6364740334, 4096059.0047272337, 4108646.875, 4117090.625, 4124237.4483559006, 4136922.8589986535, 4137276.775920674, 4139705.7302877842, 4143357.8125, 4148501.966640885, 4153545.070916962, 4162200.8924146644, 4164130.0952619943, 4166379.901492873, 4200861.570356377, 4208592.700069588, 4211079.671716521, 4245324.072777614, 4255010.9375, 4277889.069843432, 4288650.0, 4299085.408517602, 4301605.075717488, 4301713.723607446, 4305360.484826822, 4305915.901238531, 4308300.0, 4315875.265953559, 4330875.5016612, 4405360.9375, 4411361.242304153, 4411372.529271627, 4436176.72141535, 4438895.311016374, 4440745.061128612, 4453801.647428773, 4467620.34163528, 4467684.6916222265, 4476202.249775738, 4483099.045302063, 4483854.6875, 4528911.0118047325, 4529416.351858789, 4530659.375, 4531528.357497542, 4532409.210156266, 4532427.184994966, 4533003.125, 4539218.06956327, 4544508.923614166, 4548666.537784477, 4552921.102183382, 4562378.101969071, 4563486.537411802, 4566992.1875, 4572920.23911199, 4581699.752246327, 4581779.249069751, 4587287.025772742, 4594892.1875, 4595830.77593852, 4599502.016212059, 4602057.9608660955, 4608115.152411092, 4611357.412842976, 4615709.375, 4617760.756942927, 4617815.490808267, 4622100.0, 4639302.514471048, 4639697.9379206225, 4641688.482690161, 4659131.25, 4662868.75, 4667392.333372957, 4705309.375, 4723721.098204719, 4754708.693560282, 4760235.9375, 4774178.717806691, 4795435.57522201, 4818648.343688074, 4821878.84161733, 4828987.5, 4840415.988153709, 4850242.191144888, 4856117.1875, 4856322.100478885, 4858121.166659621, 4871632.703587461, 4875749.634647629, 4879346.875, 4884207.8125, 4901700.644215707, 4966856.25, 4977293.75, 5039818.292086616, 5255664.742812173, 5310072.557841567, 5319917.1875, 5319953.688344835, 5348789.6697988445, 5562548.30505352, 5598810.9375, 5600274.977541215, 5601785.9375, 5603359.04424068, 5603465.653946912, 5620785.9375, 5631293.75, 5631324.198796621, 5631331.31382875, 5631438.293739582, 5631521.137399292, 5632570.3125, 5632822.673155305, 5633335.625711076, 5633522.837562995, 5636074.231160247, 5636208.582383217, 5637981.2341281725, 5638242.783459021, 5638480.839808431, 5645410.085302319, 5651002.273304698, 5658525.839372062, 5662523.4375, 5664190.493410428, 5665928.214162703, 5667509.499540044, 5667637.650986123, 5669027.373245693, 5669986.911081572, 5673231.108937105, 5675795.908749404, 5678773.274601125, 5681373.941047779, 5687210.733929511, 5694596.462609534, 5695250.0, 5701272.614728056, 5706804.277412147, 5720375.932852926, 5727264.014727552, 5729008.518087299, 5729022.812425343, 5732198.4375, 5734263.78343331, 5734932.701272504, 5738621.331107875, 5738651.818733106, 5743098.8323986055, 5746619.342375845, 5746624.973733977, 5747059.029963784, 5747254.715378275, 5758375.063880435, 5762734.291215151, 5764020.7031655945, 5764043.127447474, 5765170.3125, 5765854.79898998, 5767194.973197125, 5767931.109455396, 5773215.897032408, 5774867.842070232, 5777719.875767456, 5778103.890179079, 5780141.689090709, 5780648.4375, 5783729.16220503, 5784035.913454044, 5788596.875, 5788653.366920305, 5790300.555315167, 5791619.7782538235, 5792385.9375, 5792887.765134327, 5794066.270552294, 5796825.0, 5797887.5, 5800675.0, 5801785.637164779, 5804805.011086613, 5808700.0, 5809919.563870822, 5812550.792198616, 5812700.279646669, 5813392.54893766, 5813399.505273532, 5824697.643958096, 5826969.720316032, 5831007.8125, 5837301.554595527, 5838333.989039555, 5839867.768028763, 5847475.0, 5848102.7728611985, 5850234.375, 5851934.375, 5852760.9375, 5854884.546055765, 5856401.518939608, 5862831.0510670515, 5865543.436447216, 5868724.915808308, 5869782.8125, 5872721.875, 5874979.6875, 5878004.439032261, 5878289.862144996, 5878659.336217763, 5879215.140861222, 5879682.349647225, 5879705.506362079, 5879995.3125, 5883828.710453246, 5888824.615108773, 5890458.597278974, 5897361.570148724, 5901506.660502004, 5903649.548804619, 5903967.750140648, 5908759.375, 5910557.565264311, 5913206.38892342, 5916573.4375, 5916987.5, 5920159.163785397, 5921567.146606623, 5922909.375, 5926541.876396257, 5927879.717703854, 5929591.263140787, 5931395.103606396, 5931630.076132967, 5934013.706160922, 5934736.966604651, 5939442.1875, 5942044.781119353, 5943347.086997764, 5947662.440813488, 5948611.440612467, 5948645.0631865105, 5949457.353661748, 5951446.875, 5954173.188828149, 5955882.8125, 5957788.3528435035, 5957850.9552446855, 5959612.301935275, 5961350.902557391, 5963159.3192070555, 5963502.6860900605, 5968500.600458226, 5969262.838326528, 5971016.3322009705, 5972107.798558285, 5972675.145102241, 5972864.205685565, 5974453.97381968, 5976274.213733445, 5978171.875, 5978195.658196225, 5980485.033499534, 5980559.463688518, 5983841.710720558, 5989827.558346721, 5993840.451073386, 5994801.406228036, 5995537.015835639, 5995542.1875, 5995600.282159769, 5995623.889503311, 5996388.46820472, 5998714.0625, 6003172.005208089, 6007015.625, 6009857.8125, 6013189.1118956655, 6014090.533750616, 6016471.555891297, 6026444.61782866, 6027266.16088027, 6027302.875353039, 6027807.040058432, 6027865.860548596, 6029309.426135195, 6031987.5, 6032191.884575319, 6033616.912564493, 6034511.198965457, 6036072.141096628, 6037478.227244987, 6039507.671955396, 6041534.059574365, 6042616.245181656, 6043267.497616983, 6043342.194474905, 6043445.3125, 6043445.781076359, 6044446.336977748, 6047879.130408752, 6049380.262578782, 6052987.5, 6053369.142834253, 6054663.527300279, 6054777.081667929, 6054951.6529441, 6056503.117711145, 6056629.6875, 6056688.1043843245, 6059504.378821049, 6060193.951985774, 6060203.838929353, 6068985.9375, 6070825.868715015, 6072876.677293313, 6073375.388089591, 6079088.300279231, 6079846.6595876515, 6080827.049297475, 6087323.913160742, 6087421.803831418, 6089445.361452464, 6091373.361127588, 6095862.864059455, 6099501.5625, 6101729.6875, 6102377.494067626, 6104605.928864075, 6105107.768155382, 6105135.160088283, 6105698.398830095, 6110225.489662147, 6110534.375, 6111278.545902345, 6111534.119764747, 6116654.91717011, 6117095.67823531, 6117147.627384846, 6117937.6748292865, 6117991.345283012, 6118016.202208411, 6118495.439110893, 6120444.398991057, 6121317.277808774, 6121462.392106087, 6122014.778631982, 6123517.052473508, 6123741.675500986, 6125145.664635809, 6126278.081657932, 6126935.741421824, 6127367.1875, 6128270.287851734, 6129055.953571246, 6129059.375, 6131286.706735089, 6137191.215422992, 6137452.783904818, 6138020.430516935, 6139873.4375, 6140762.167260537, 6142382.651340225, 6142463.700492197, 6145025.794595136, 6146782.8125, 6151360.532148243, 6157494.933548238, 6159022.930584481, 6161847.66420923, 6161861.060648672, 6161914.704466032, 6162106.853015665, 6163714.644424255, 6164340.925321294, 6169653.125, 6170603.798953503, 6171307.101935138, 6171608.446318309, 6173118.71595211, 6174651.5625, 6174696.875, 6175580.808985299, 6179232.157018548, 6180817.204261235, 6184851.5625, 6185373.131473072, 6186288.108923313, 6186754.664284833, 6188456.086050718, 6190068.573443829, 6191244.389279255, 6192012.3663194915, 6193540.625, 6194230.980515359, 6194279.6875, 6194329.609058845, 6194598.4375, 6195573.295323349, 6195578.879870518, 6195789.085812567, 6199499.931615839, 6199567.781738564, 6201956.641589759, 6202370.739613143, 6202747.193100903, 6204440.6381935235, 6205654.6875, 6209895.3125, 6210253.996368247, 6210707.718520773, 6213548.039658711, 6217643.2532869205, 6218322.353021985, 6220256.25, 6223228.820243768, 6224180.691062234, 6224873.876738858, 6225670.3125, 6226367.1875, 6226411.840102205, 6227700.0, 6228222.278126058, 6229143.75, 6229268.439104424, 6229452.468922514, 6231258.361533116, 6231671.388286892, 6231961.450839371, 6232658.586045077, 6232837.872116349, 6233572.599056205, 6233665.281613763, 6235649.385834969, 6236027.28778475, 6236566.663672622, 6239963.8134999275, 6243796.875, 6244398.297490547, 6245590.34229672, 6245777.869714087, 6245953.017664432, 6248040.625, 6252499.628996292, 6254489.713152748, 6259987.5, 6260895.529162131, 6262064.0625, 6262298.189323124, 6262759.3448167285, 6263455.333348562, 6264160.9375, 6264207.121489126, 6264385.9375, 6264471.875, 6266315.3741615405, 6269634.359964887, 6271571.73376915, 6272123.4375, 6272969.209590338, 6272978.125, 6274546.608709763, 6276021.875, 6278937.397446933, 6282554.087621647, 6284597.493044258, 6289553.376652021, 6297014.407425272, 6301406.25, 6305832.309030932, 6305849.993438204, 6307273.4375, 6311297.4588190615, 6312856.313564006, 6312902.950238928, 6312906.268585025, 6313956.916635649, 6314289.480560389, 6322070.15698815, 6322226.732972683, 6327660.814066457, 6331757.56885586, 6333678.125, 6334112.5, 6336341.122639, 6337287.325632894, 6341450.850803739, 6342854.6875, 6342925.088910577, 6342931.626594564, 6345479.332147564, 6345717.14257961, 6346896.7083873395, 6348292.6170253195, 6350505.744802238, 6351421.9477621345, 6351617.418259958, 6353586.9659390375, 6353611.428115913, 6354595.440866764, 6355471.558713771, 6355811.413632641, 6355834.375, 6356304.150497794, 6356517.1875, 6358906.25, 6359054.249948946, 6359596.828940227, 6360006.25, 6360257.176355659, 6360856.247247485, 6361506.577646026, 6362118.889790499, 6362923.532680391, 6363344.746307865, 6363932.113693992, 6364726.55424954, 6365561.166286753, 6365902.260424642, 6366760.765809135, 6366837.036477348, 6367000.918384982, 6368358.510978571, 6369334.530802768, 6370180.903652476, 6370362.5, 6370731.25, 6371682.685306458, 6372435.767344612, 6372881.443294731, 6373657.020894431, 6373678.435370301, 6373951.5625, 6374985.683818439, 6375095.745451887, 6375168.75, 6375402.7403150145, 6380093.75, 6380576.5625, 6380589.4542270405, 6382664.944513192, 6382941.016674655, 6385342.1875, 6385674.472100249, 6386068.369732658, 6390498.261504768, 6391684.182204371, 6392128.125, 6392402.710726178, 6393199.056312901, 6394348.092756915, 6395090.340657049, 6395098.849214709, 6395675.070367416, 6396784.052693764, 6396848.431427499, 6399403.706215727, 6400288.482445398, 6405574.882568345, 6411310.9375, 6416698.4375, 6417332.29563834, 6417357.618785704, 6417397.276962072, 6426171.92271712, 6428684.314021624, 6436471.945141871, 6436593.264527305, 6436789.766220267, 6437205.102398171, 6437216.643868065, 6440477.0056900345, 6447990.625, 6452403.125, 6452493.834024693, 6452917.167168337, 6453833.563825367, 6454219.492735348, 6454736.630082615, 6455221.301835754, 6455272.914170246, 6455930.290913651, 6457080.572664271, 6457315.622137536, 6457549.578931012, 6459949.065108103, 6461897.332006863, 6462789.22103536, 6463619.366004472, 6466218.534908874, 6470562.368884855, 6471522.181720361, 6471730.987316946, 6472202.023330223, 6480963.532595137, 6483797.2153606545, 6486142.65291339, 6489696.875, 6494516.145100213, 6495711.923255271, 6501155.90794029, 6502525.710161181, 6502879.559934581, 6503781.25, 6506387.530144527, 6509732.2320408365, 6512805.261122756, 6513547.365388355, 6516613.957429747, 6525357.727126621, 6525845.215899751, 6525928.125, 6526278.125, 6526459.375, 6526942.974892325, 6529239.04499852, 6530300.0, 6530814.926175572, 6531285.61483464, 6531473.038527921, 6536897.527275667, 6537211.5906322915, 6541121.200125114, 6545893.258494205, 6547111.574889533, 6550873.204503682, 6550890.625, 6551671.681553246, 6552610.4125299845, 6553994.679923985, 6559220.230308533, 6559317.1875, 6560627.493969114, 6561242.1875, 6561855.774610144, 6566790.192812126, 6571878.125, 6571901.5625, 6572822.950514525, 6573363.620144894, 6573643.5945217125, 6575391.718827523, 6577304.719443008, 6579592.182133033, 6580124.944506645, 6586002.53290704, 6590060.905012336, 6591454.352816524, 6591937.940608457, 6593204.6875, 6594325.217549211, 6596970.096230614, 6599371.063586996, 6604495.3125, 6607991.940313884, 6607997.50835749, 6609334.730764088, 6616751.5625, 6616988.636842587, 6617164.0625, 6617326.5625, 6620107.300610983, 6623196.875, 6625693.560403849, 6626060.9375, 6635537.611019582, 6636007.8125, 6636768.75, 6640753.848448829, 6641049.517305447, 6641378.39305239, 6648109.375, 6656482.943676564, 6661889.856639616, 6664035.845173539, 6665470.3125, 6666598.4375, 6667753.125, 6668887.641189233, 6670146.297858981, 6670157.354670742, 6670170.909651559, 6670228.478939768, 6671554.679194205, 6671621.875, 6672382.198274748, 6672418.75, 6673439.30163438, 6680673.4375, 6681238.909060261, 6681264.0625, 6682646.6126713, 6683377.549324792, 6683980.120276965, 6688995.16377025, 6689317.09446619, 6689732.572024098, 6691693.177911958, 6693871.495717524, 6694760.9375, 6694818.083346145, 6695365.385168144, 6696748.771251339, 6696794.731760534, 6697306.367168086, 6697354.865191141, 6697484.301900739, 6697503.125, 6697839.0625, 6699027.572863864, 6699467.370016451, 6701333.350934718, 6701740.805935705, 6703882.056919955, 6704586.23796597, 6706951.471835095, 6708300.0, 6708918.603670701, 6712786.709638625, 6714419.557506939, 6715656.6951428205, 6715749.909786574, 6716212.141252187, 6720470.741519286, 6720632.8125, 6720942.1875, 6729682.654209982, 6731017.580100453, 6734266.321161603, 6734627.015682167, 6734682.8125, 6735935.617284854, 6736365.833180887, 6737312.109753588, 6737989.604532821, 6739164.847363766, 6739891.81975595, 6740201.211920109, 6740242.726418676, 6740668.317226807, 6742017.602987331, 6742523.310799086, 6743271.030066991, 6743546.875, 6743680.894919269, 6743948.4375, 6744272.2968169935, 6744617.176403844, 6745449.26775326, 6745462.090511557, 6745588.912514788, 6745630.098156579, 6745713.2697051065, 6747782.8125, 6749195.199351737, 6750497.367108346, 6752633.503058942, 6752690.905411107, 6752910.511135382, 6755237.97564838, 6755891.981709521, 6756114.854598257, 6756139.995778356, 6756421.875, 6758138.911182961, 6763717.705977541, 6765163.304994928, 6765996.404024599, 6766869.451676825, 6767501.4857908385, 6773182.697254274, 6773922.066913183, 6776151.5625, 6776391.73519239, 6776810.9375, 6777335.9375, 6777344.560603465, 6777911.688817731, 6777914.044813278, 6785831.25, 6787736.715602434, 6792385.278747037, 6793396.618887994, 6797334.375, 6798025.98546192, 6798689.832313125, 6799195.939966328, 6800263.244168555, 6802996.678275487, 6804748.017410055, 6804928.125, 6806290.625, 6809119.906871988, 6811076.573474608, 6811328.925431494, 6812057.665155087, 6813517.628813371, 6813560.481264604, 6813831.040590218, 6813843.75, 6813996.24160966, 6814115.625, 6814192.481906174, 6814330.745898856, 6815254.970211244, 6815706.476449809, 6815946.534505327, 6816090.625, 6816827.775337459, 6816843.75, 6816903.064378424, 6817396.875, 6817517.25334193, 6817652.937479579, 6817999.677439306, 6818345.803349552, 6818633.404469427, 6819431.488494368, 6819956.199370685, 6819989.0625, 6820814.0625, 6821353.854346104, 6821527.213483505, 6821879.292527662, 6822514.0625, 6822679.565860028, 6822854.808787477, 6824552.921354409, 6826228.7613515, 6826532.693392953, 6827445.703190934, 6831178.125, 6833085.9375, 6833691.151472243, 6835767.433204627, 6836946.513270161, 6836953.87363141, 6837704.6875, 6838465.175256007, 6838595.3125, 6838636.211472005, 6838917.1875, 6844366.147857209, 6845551.5625, 6845552.9948584195, 6846934.664130047, 6847014.534580735, 6847057.676587332, 6850632.803968975, 6851903.125, 6852434.375, 6854418.057155834, 6858676.257055608, 6860385.9375, 6863253.125, 6863494.401371304, 6864204.6875, 6866660.809580188, 6867505.6461017765, 6869076.198496613, 6869081.699707464, 6869138.253452887, 6871225.854860025, 6872966.96968778, 6874859.210689876, 6878319.850668212, 6878320.820922207, 6881069.289599287, 6881070.267293101, 6881375.988645141, 6886779.667884069, 6898442.972611059, 6899284.209066198, 6905316.5260735545, 6910991.563913261, 6913264.0625, 6914681.616745702, 6917557.22704194, 6917843.75, 6918965.391648579, 6918971.157978896, 6919199.944645685, 6919204.6875, 6920219.44918593, 6921716.984663622, 6921977.6745137535, 6924722.571865479, 6925390.625, 6925818.75, 6926496.875, 6926527.0824776655, 6927302.648565816, 6927302.947488743, 6928370.3125, 6928478.147541595, 6928703.730582163, 6928992.98086013, 6931577.19189625, 6932868.192545669, 6933023.4375, 6952294.906276887, 6954721.727390415, 6954724.461607585, 6957649.7914127875, 6961012.5, 6962887.5, 6970903.125, 6973175.347802987, 6974525.0, 6974870.3125, 6978076.539646724, 6983302.887211541, 6987223.301693049, 6987516.728774039, 6988878.862577878, 6992383.420362582, 6992694.633494244, 6992970.3125, 6992973.884853492, 6993753.145597982, 7004373.949667382, 7004590.625, 7005554.6875, 7009342.1875, 7019337.559474962, 7023626.979752163, 7033115.625, 7033830.606250756, 7037547.986513118, 7040750.4453338245, 7043401.022183619, 7044015.298577969, 7047641.233145471, 7047650.873314939, 7060475.359047243, 7060794.725814184, 7064940.8815995855, 7075258.215369624, 7080292.349918011, 7081040.991893912, 7082726.13447334, 7085543.4191028895, 7090973.30232143, 7093294.474169813, 7093493.648888861, 7093516.9160294235, 7114678.125, 7117039.29026158, 7121742.1875, 7125921.793383592, 7136012.108888675, 7136865.026229575, 7153301.5625, 7159388.663399911, 7160458.936397496, 7161881.772586775, ...], [16.686781199745074, 7.850245396219203, 14.676457613726969, 80.8769244769422, 24.263087251940195, 9.984790868747774, 43.62565196017674, 16.707285594268093, 8.970925801110589, 33.295101373971804, 84.27013805686839, 10.554329278207419, 23.315536171618355, 10.7652802712127, 26.137168196686204, 21.872301078987206, 19.031978824381905, 30.76720461832849, 16.169047428805307, 8.422197687701562, 44.07597887487993, 8.97858574073193, 28.982584119212348, 6.831354774858738, 23.406324033772535, 14.02054656431554, 35.42145824435554, 12.98181324416003, 56.51598770628995, 105.2764319287392, 63.01051950331602, 27.019238007197337, 26.58986117054198, 12.73706305101036, 71.04981430309739, 10.914321060907152, 21.001244569479727, 66.32667567669961, 9.200435060602617, 27.538714101994557, 5.050696032902673, 6.834165383916413, 5.509831457234041, 51.24289435648019, 74.82766477251832, 115.14445763710852, 34.501714729346034, 11.895065623701447, 24.284713534955383, 21.29868859890713, 65.79610234562784, 37.86706817678894, 51.72076201753511, 44.144216527713525, 16.762589154427676, 13.43925341562544, 95.72160429053525, 9.805988335843852, 144.01085209295601, 74.38599875541846, 46.14276640101048, 14.969573214168287, 93.87720546144195, 6.989010798964353, 16.661149041118186, 23.26633865773688, 5.32664587263735, 95.36072778496721, 52.771717532142866, 8.432410163979661, 5.642413472326483, 84.68352387713925, 9.603153856125859, 8.665780749745151, 107.08909373389, 9.330148999730778, 14.062786757538182, 85.46477222577164, 37.02720107950499, 25.943178619967252, 5.567392584575883, 12.23225493261859, 43.67652153750509, 45.44391682537247, 28.048900887086848, 58.281890973506876, 17.737865420803107, 66.9529470235935, 17.997986766931703, 65.99880887660886, 5.664779741358603, 13.461190363898156, 12.179022707924378, 19.144203598629527, 28.077019257615568, 91.62243693046074, 38.57891685689395, 7.576908417375844, 95.35287872760566, 22.13009503034217, 8.05076841919132, 53.222191930461435, 42.186213463323526, 17.007787324487964, 5.825040257879137, 33.293007804014245, 72.50196127363728, 59.82514767327269, 10.856744668051922, 5.69827058260565, 49.64731134449565, 20.45709442323172, 27.748371682113387, 20.732260754475526, 36.545237321083334, 37.4748515163563, 15.528271212162537, 29.84389228325584, 6.931204357034657, 203.97016551091977, 54.83543616961174, 9.888566090395951, 32.42702546739509, 26.79788669393088, 41.95176885317372, 38.15034718639701, 7.740086283652065, 60.69443717649732, 86.47572392473639, 7.686877480702534, 82.02936903763057, 26.54263050971404, 24.177371866467446, 36.83046966973393, 49.80567670931287, 5.749022086935985, 39.95484832619661, 88.37275706230496, 34.82084393035652, 5.491744107971878, 9.984247344101117, 80.19643035293609, 5.361603284004963, 12.231191850114183, 37.722185210395764, 51.99311148495501, 70.19394551402144, 65.57012121934999, 23.36562788394042, 15.053001415139374, 34.95883290749857, 56.18583854330865, 18.93622298619301, 7.6264877527127375, 16.173419653842643, 35.63388100992169, 60.95246061393567, 93.66073888427454, 44.198003978806994, 71.80561502730706, 8.756171602382327, 10.079935907957365, 14.88135658435252, 52.96586905833911, 22.438345933021736, 18.34213973420276, 55.38783292824998, 10.158687376234443, 69.18025872152427, 45.87107152089233, 21.275516850411424, 8.353552816837372, 15.55001861825746, 10.12598510427222, 26.16636325951362, 6.24953909177435, 8.629235076764337, 10.882286714122563, 66.65992785081123, 25.065938367220248, 38.699788473638606, 54.086075212144266, 18.782061796366865, 5.591752914567696, 12.984464954061334, 27.613659236003866, 18.976414064472515, 68.4637312904824, 57.516800103285505, 40.227523214627034, 5.287663838400796, 36.76453490721379, 8.426890727233426, 11.806668351862184, 21.58225518320028, 76.48499786574035, 23.192022045669415, 5.534435093840859, 6.497151890762791, 39.55513724181239, 16.673764402760476, 5.886963532495255, 44.166022376636214, 5.713890456960061, 44.684452198187515, 87.36056466506147, 16.090728321349257, 99.42486129797443, 51.508057884711675, 157.47880220507267, 29.049016387992964, 76.34426197375296, 26.749955837912914, 25.45760786876845, 66.59859627656516, 15.951403871981608, 6.577813755944237, 21.158145955228587, 28.80280182486641, 11.493202372300711, 8.660249144440849, 67.46748801268537, 42.22505500007581, 39.52690601816316, 53.68724719928533, 5.475828783598857, 39.81851348436751, 6.013561038831637, 19.162918044426863, 7.196955136938479, 82.90495347191346, 24.792535998066803, 6.0092904316422215, 20.620297411889023, 29.95163027680248, 67.40975304650303, 13.649615276290117, 9.875768784845084, 28.824920393752382, 10.618556258687493, 47.35310465527607, 42.70951342167885, 62.09414887979321, 8.379154431858405, 6.754841122777884, 16.90802574422088, 5.448467540290514, 5.163405440991811, 44.90134507851187, 59.0276812605322, 69.28450809563898, 67.88556210101125, 19.21860074493621, 64.390849919725, 80.35357624233441, 24.790717210541914, 51.12684443522563, 44.26619942207089, 12.185316001708909, 19.37497034845854, 19.107848183953138, 9.930503844279974, 115.47964239697063, 21.994171111375003, 17.62960741560149, 47.536915007653725, 60.22720440960214, 15.498848192860374, 38.385628285455375, 30.80863608396505, 98.1702968105941, 11.064383812158963, 51.73305758282318, 10.673923606504138, 21.07060502618199, 34.699119386637506, 49.381847826055186, 13.585917581919738, 10.612943484179413, 21.16630920224751, 66.47545545634485, 62.54517610441025, 11.476070490979899, 14.97223269131355, 12.017089398401387, 40.14097190455096, 7.005843734026965, 51.93656855871166, 78.65967734671278, 36.07921675970364, 19.62891271478504, 29.322044833179405, 14.236748141641453, 20.033339838241393, 15.50172852338688, 75.87342089847725, 31.221685519590718, 11.70118873330685, 18.555635101391147, 47.278830386111665, 6.510080411414395, 15.516874930555767, 10.169561405935376, 25.663154972099196, 34.97256344842492, 16.446076098244546, 106.29217556240695, 7.635632893493641, 47.61231990493616, 13.147131504262488, 128.7658705284247, 25.778416023832644, 120.91665768498717, 112.75394560147733, 22.817757922396396, 9.745264057535211, 16.616202782291595, 69.94613000470699, 15.46216708728936, 66.92266873116489, 29.156997519626636, 11.205803260131052, 14.604753565216601, 146.8564517243423, 10.191563925323434, 7.269822766996815, 5.91795567451477, 8.753788414461017, 91.65437299034437, 5.343676956961525, 60.372927286775784, 23.713454655821526, 29.467717401306693, 16.041457463252193, 84.29996986790528, 84.98894736850104, 49.20680369301817, 69.26710704426581, 28.041654651109305, 51.090155558574125, 14.968161303626495, 109.98956727866363, 17.08919077038453, 7.419583738385034, 32.35288598411796, 26.107411543942632, 73.17001570723386, 9.687228710672166, 34.637096457137076, 8.581628501079956, 11.27208209845615, 5.165191865941947, 44.21486117679127, 6.586199658346751, 47.27700770691878, 55.94967072699107, 5.426486721862678, 48.27012119462157, 33.96631670039343, 78.31889671488896, 8.503052309254365, 7.920823488578492, 119.37670012163582, 30.87640866340486, 11.962595531283522, 12.808180506702755, 15.131434784666405, 14.658190268961949, 5.412576477879661, 59.763695263742356, 36.68441038580218, 6.39253537514186, 19.547563153428918, 9.294186668786335, 121.72747751800897, 14.796138244008764, 17.206476492076217, 34.168445142086945, 5.139600719130846, 14.050414708764986, 28.88780567052181, 23.76268256534989, 10.060439697534637, 7.168180037389464, 18.82475555789681, 6.15025359823402, 15.447097387906988, 12.320250851176294, 59.733903855686364, 10.963148072460827, 24.92765045519398, 26.114635670811232, 21.37423296620694, 11.726660616524608, 11.060629489618474, 64.91381069603374, 90.59848102418816, 85.52028466350602, 10.693961785947264, 53.57515315256383, 8.740060600172157, 102.48109503817828, 47.03785563187695, 7.646487495568991, 79.23327722406816, 23.341358808383276, 26.710355190076914, 48.40250068824727, 18.707096766484895, 70.82591398733334, 52.735654840782075, 52.82852692508844, 153.1997479712889, 19.369204996843553, 6.10099990820878, 146.9191741701391, 21.415235810742956, 17.746102082266688, 24.769651260796124, 102.14506302984033, 9.97465542392048, 12.784122854130239, 128.04557683980323, 14.813303660802447, 31.533372425706396, 32.95419623291504, 22.102406941360073, 7.38220184062081, 22.09671476062635, 56.905550546745935, 55.04621611436456, 28.770626331139155, 57.439121601343864, 25.65945819819434, 37.13074855809601, 35.43270913625469, 26.136292015162034, 99.2143240297934, 24.148519479222166, 30.100852858390006, 27.06380756433485, 76.9268904892914, 56.97501758450099, 10.063201096395938, 8.298943995167827, 86.43595361408435, 12.20370096532909, 17.045402106908924, 52.64857221355909, 31.497927178139904, 77.28949901162035, 72.47196738615654, 39.02481286209832, 61.36862263919582, 14.718443789578188, 17.199163258959224, 49.929351111625245, 5.641048401767656, 50.26622077850742, 18.474172996171575, 99.63133824583066, 24.571493089224806, 35.782769844361646, 57.27490144570379, 49.96911069143748, 43.2828118599919, 16.738376894798723, 94.16666332125011, 13.66264339199703, 70.16227364417858, 12.110007572095524, 10.443578876799611, 9.806768903171509, 28.4237850381873, 11.763829147920022, 18.67207396183387, 23.211923598767036, 20.42513436463127, 6.917490404886698, 36.47190333728925, 24.42481373495765, 32.765212723162016, 26.03483493857524, 9.103278709218454, 16.85122669833878, 22.442151627670377, 49.880611428616795, 8.099667545138304, 7.856835762031761, 33.48971938422131, 7.179594545411094, 39.30914896414892, 30.804070778213106, 8.27068014298646, 19.14801281096028, 54.490928429646615, 6.632971089798594, 117.12835208122839, 29.386339590585386, 164.28618302840732, 28.230734906887637, 72.07841838737724, 48.87614587360632, 17.03985483050136, 31.19025747132751, 13.36549746951109, 100.10549691780973, 26.6494185584058, 57.39849257170545, 81.64694211947433, 22.230622929001484, 16.442245870084346, 40.23271777750269, 21.458564096268933, 53.16830830655872, 29.20333454969692, 17.7576591124432, 62.075345373158704, 49.362815550413636, 7.609973429125774, 118.74890403562902, 11.850730778701115, 50.669135953823925, 11.405048138857838, 26.302584494425098, 12.458204396315033, 35.79590231744116, 50.491721165879476, 57.72520467105255, 37.05557443490009, 27.102807951958187, 62.866800393914126, 7.145021336418812, 5.354993961986296, 114.57495148511111, 6.480072546519185, 5.696235752850276, 16.877528520553142, 22.090955298830274, 20.67622464621342, 27.223227326661345, 6.406509242049723, 41.087982657549446, 19.75075152399114, 6.701963578909481, 62.87109716476953, 31.674881931543528, 20.67233946725315, 34.36836540561662, 37.30069695546389, 83.01776450825187, 37.23595692251077, 36.146654505331504, 20.23460900093937, 32.21476681603434, 15.170460634726332, 5.951672482769092, 67.91917427549126, 13.148344864400505, 6.949123083076525, 7.600256355898767, 8.411386216783198, 117.8046293091212, 99.7398409066644, 6.210359577552775, 23.03499685258455, 40.587898335901684, 8.370723508336473, 10.617166108304176, 35.00249246322326, 42.18674205567535, 14.477900594170073, 62.95319686794797, 15.733262268997137, 19.00588618167102, 5.4752475564360354, 33.15004722806476, 54.09630172967172, 16.895819397457352, 102.38561312383962, 5.906590619345741, 71.24837930448246, 33.60469430368436, 14.238468180921995, 61.33396255083411, 6.129799542278751, 68.63956661222487, 29.5355757708039, 22.776869340101403, 67.2883788932241, 54.7271191158383, 68.56092879003518, 100.30154720318286, 12.255587897452283, 20.653285116562763, 75.37989045332543, 11.838607295674068, 5.819205263956178, 23.469931652069047, 28.405420180555385, 59.32138058712161, 68.71634873929315, 77.19100264402286, 54.570527422458454, 55.969312293497666, 54.99905831725034, 13.288422605233553, 16.732312515401784, 15.126558275450762, 93.12785524702956, 11.239142019477523, 37.13526774740231, 109.84661728343683, 11.84468443613679, 50.42825061872316, 17.685707093551173, 96.44335824385765, 92.17123121242696, 11.261632766134312, 62.95412056388124, 5.266671444267214, 6.0068070355179, 12.415541383564554, 20.793029114426762, 17.719009464485904, 23.661613559616534, 73.55669145329256, 36.71709089165589, 55.234696506832535, 36.415631824186484, 9.750229522198975, 15.582282121364859, 15.488412882417354, 5.4526097041608415, 10.928768741086765, 8.45572139244234, 24.239412051556247, 62.12509195177013, 24.59827166774945, 16.41961761184144, 89.04489293445351, 52.362097335116005, 16.64882586164378, 8.887109857316348, 23.227954243671263, 53.91684510556704, 5.526921254025445, 54.83490243791729, 8.302582844915914, 67.77917726339297, 7.28087082394883, 8.564123437470498, 17.36113751581894, 44.44808530499099, 7.568668732437101, 59.188809750370055, 46.610974255911835, 52.02131915466382, 12.63085708528001, 11.100460614567076, 49.93015216648497, 43.94051623268807, 218.38651344243624, 22.563802003005865, 60.78461666607777, 35.49176802245857, 8.81926626184729, 15.285816991055459, 57.03929222061768, 33.53716872115376, 43.83152169653049, 9.17301955563253, 19.962669920109345, 7.978176999068259, 14.637222667937179, 48.35296924218563, 7.97887161763861, 51.34394374079926, 13.393956595001463, 72.03572113847255, 105.68420402254498, 147.05116546147013, 89.00403439629123, 8.065730759465726, 10.893080181381338, 24.420976086149217, 24.060099391048695, 14.921092438760779, 50.19662085324189, 13.080708476435063, 6.084727288937144, 24.383394434213322, 11.894127886124709, 64.53116919541446, 52.64546239291326, 17.193272327593114, 7.89953130825185, 59.97830880054541, 24.449652115698058, 12.286621423116511, 43.236718950303015, 56.35610125200534, 22.26821172912326, 59.82765462954223, 56.87992146728604, 5.059704641200022, 43.905375913558544, 25.27146285481394, 74.26026490801827, 6.785875032035595, 48.639837406346274, 150.96806765605942, 10.028488753591608, 81.66349808651353, 9.568830044056662, 75.54326754941582, 20.61365664944006, 12.646618656630187, 26.823313932999095, 30.669255961002673, 29.605462006934655, 51.39222621527001, 158.28962166428525, 42.126489967336504, 13.443044924347168, 28.075974117675848, 5.477165903592316, 5.70622960837119, 29.6459902405146, 22.68167209414709, 41.880389963456146, 55.7160191076023, 61.19951017189535, 211.4371713463493, 45.79545160453565, 25.74991301476447, 20.770015604074093, 20.090483511604912, 14.403386190787556, 33.228987148463794, 24.54207091945121, 94.54790896631447, 9.030046967565553, 93.86163630242706, 12.891674393502136, 81.49863092421775, 21.462855896401056, 57.70229042429803, 5.466818097653372, 61.68375334166391, 27.15770504973794, 36.98565588986373, 62.858226922590305, 12.61032369196744, 15.686014105111932, 72.31596858994746, 5.541926836971832, 12.67663812069929, 68.29186096952526, 20.242343611480642, 30.641499991862528, 25.934461662232614, 10.082458489376895, 38.70612527836062, 120.84881600054987, 52.31520904361238, 80.7953942102385, 35.221692689904295, 75.8809708867112, 32.746672505572455, 52.46849350062391, 11.802324565055022, 26.454098063395694, 66.37618872488466, 89.87507201184056, 32.658505660506464, 57.673712689052344, 51.6864724789454, 16.777046717026487, 52.02616399783158, 30.54925838654904, 16.550800669394253, 20.19598456792982, 22.191003172340167, 8.519234766455169, 5.92844707555248, 18.6270203026656, 108.61645712931377, 52.78846483900264, 32.43438410235764, 44.74505871790374, 30.1907008871677, 21.618392179996903, 6.046526627354168, 14.399076106724781, 7.233753592310291, 19.117530642128173, 56.632539018780435, 14.527093860545678, 7.791480867248339, 13.2278141858789, 9.580322265276235, 7.455980030399205, 5.640911493170522, 51.22694116841119, 55.6794459828859, 28.619437885908837, 88.13132978979317, 25.855898474635094, 33.13582704900131, 48.302670578167955, 10.463536557078875, 18.726089225419415, 31.477991638518034, 26.437294858357482, 15.727184085232286, 80.91520839003373, 10.48737979347712, 70.19770567627425, 32.88734238934355, 12.685330544715832, 7.899630588306294, 59.00185447447866, 34.56300094155336, 84.08406822297107, 44.19419117688518, 14.047611738540036, 32.14943891912376, 108.6792793016402, 18.998004597144025, 23.962041514847883, 8.723648208541608, 8.185215550449403, 27.850897855923517, 57.143396023485366, 53.06591271308265, 154.02622043596728, 78.8651997491687, 12.71094457358858, 36.62066468755634, 22.42098682542584, 47.26835836738202, 31.303565102923137, 62.11575625180388, 40.34264474599404, 29.847668299932323, 36.43692661803368, 7.430550643743398, 8.441960514714026, 5.830927792066805, 13.785206191299151, 38.49981098488858, 23.13644385079248, 124.05956413508997, 5.7029107204331355, 41.508526431992806, 15.198550615519578, 33.898835218007456, 5.281226494862869, 5.641788788358948, 5.179381325234472, 15.935761526596208, 51.09289009174236, 46.11981268423305, 65.10468889339104, 84.28033860905724, 12.32455726555867, 23.093500186353268, 47.59861988227276, 26.33195265535143, 65.77427049243248, 138.73146347545247, 18.086197392053712, 26.373561057108212, 51.28507038803456, 111.09975721588998, 39.816720978714805, 8.586094410030238, 9.548176518569727, 10.605754562049913, 12.54145794750008, 114.43224270439117, 10.490668646318621, 45.4804597765594, 31.844194016497056, 57.38046451418798, 6.5723009698904615, 113.07697116696384, 70.7898854725926, 84.48103712313245, 20.495372158627625, 39.62892306847139, 14.909092542669923, 60.63034120070707, 76.59961869190569, 6.18345893251151, 20.49250241466335, 29.415797458771838, 114.29983817735862, 8.663939194360887, 78.40923196254411, 26.229468091454056, 20.515704663727636, 7.028944466389089, 50.196823502525106, 5.657132691880731, 16.5467908033319, 24.86059206631354, 8.201557513243388, 44.94032798843003, 41.806204471152824, 5.308051268267771, 9.293468489827656, 35.80859668054208, 14.867266096602755, 5.8744490844850725, 14.344643023081439, 18.428897707800516, 103.1783358089538, 77.40756478132498, 35.21719817397761, 173.940606885091, 63.99481354794081, 104.59767498354772, 27.616936570973184, 32.512074853565274, 38.3003666506414, 18.500926851902864, 90.20199877697381, 13.463729462489354, 16.219909016873554, 56.78429416827411, 83.04065260090988, 64.64991487616791, 16.93950444578749, 20.912964678154502, 9.185686051821145, 73.1231394375686, 8.298533778194761, 25.146389954500087, 15.961909394685808, 6.350133683364581, 6.982238626875987, 61.89796573615944, 13.590432310191781, 10.904564397443021, 6.986768753667151, 43.88248154164593, 59.07041942401671, 110.87694633118656, 116.4033857802429, 8.479483191226402, 48.61197531655371, 64.77311541570518, 28.080413066102455, 36.291036969991154, 26.102098101138882, 149.83654172514562, 5.494340527205111, 109.85282830864938, 28.990087617838583, 47.83143235391767, 11.907207275790945, 5.615184687306993, 79.19470171338561, 43.730601965312346, 56.92715704245669, 53.921881325513326, 159.9494224272012, 94.53437735077563, 31.571740383294824, 42.57591475350712, 105.39414126069232, 16.96236074141472, 49.86161294131429, 19.683843217973987, 15.923555885012401, 10.19794508629285, 65.49893777196156, 8.880143619954328, 16.01890783760803, 81.81747969875018, 6.105153698955245, 5.047781463351705, 7.4554319666606395, 18.351739224880927, 14.450144401583906, 71.66189259919577, 9.247346716473995, 5.794163159714789, 28.906228456785136, 15.887028724141693, 37.65009945934011, 11.00248729614709, 13.63449900669161, 20.561323284093422, 49.20581607845363, 8.086230637074934, 13.124466681925005, 31.397986780640586, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3481517.8983483543, 3483066.2599325534, 3514937.125222207, 3525764.0625, 3573838.8015783993, 3613228.8083443046, 3651410.4579221285, 3692266.0221463745, 3692266.728020923, 3696404.632889078, 3696442.1875, 3697363.6618443453, 3740479.3526480757, 3804434.1300592287, 3809290.491373891, 3817468.287191086, 3821617.961965906, 3831353.125, 3831419.0229246477, 3888090.8729473893, 3897588.9682080336, 3905590.1760266526, 3908728.3753342275, 3908759.7056071213, 3914132.485049817, 3949935.672896059, 3951676.6915131654, 3963314.994306396, 3967785.5983171947, 3980189.3364803367, 3986328.125, 4022729.0671095997, 4033498.85291873, 4037043.7106917524, 4047676.5625, 4047713.921553854, 4054477.574238548, 4060478.125, 4074088.903439626, 4081767.5634148875, 4081831.7861333936, 4091806.5939150844, 4093202.6364740334, 4096059.0047272337, 4108646.875, 4117090.625, 4124237.4483559006, 4136922.8589986535, 4137276.775920674, 4139705.7302877842, 4143357.8125, 4148501.966640885, 4153545.070916962, 4162200.8924146644, 4164130.0952619943, 4166379.901492873, 4200861.570356377, 4208592.700069588, 4211079.671716521, 4245324.072777614, 4255010.9375, 4277889.069843432, 4288650.0, 4299085.408517602, 4301605.075717488, 4301713.723607446, 4305360.484826822, 4305915.901238531, 4308300.0, 4315875.265953559, 4330875.5016612, 4405360.9375, 4411361.242304153, 4411372.529271627, 4436176.72141535, 4438895.311016374, 4440745.061128612, 4453801.647428773, 4467620.34163528, 4467684.6916222265, 4476202.249775738, 4483099.045302063, 4483854.6875, 4528911.0118047325, 4529416.351858789, 4530659.375, 4531528.357497542, 4532409.210156266, 4532427.184994966, 4533003.125, 4539218.06956327, 4544508.923614166, 4548666.537784477, 4552921.102183382, 4562378.101969071, 4563486.537411802, 4566992.1875, 4572920.23911199, 4581699.752246327, 4581779.249069751, 4587287.025772742, 4594892.1875, 4595830.77593852, 4599502.016212059, 4602057.9608660955, 4608115.152411092, 4611357.412842976, 4615709.375, 4617760.756942927, 4617815.490808267, 4622100.0, 4639302.514471048, 4639697.9379206225, 4641688.482690161, 4659131.25, 4662868.75, 4667392.333372957, 4705309.375, 4723721.098204719, 4754708.693560282, 4760235.9375, 4774178.717806691, 4795435.57522201, 4818648.343688074, 4821878.84161733, 4828987.5, 4840415.988153709, 4850242.191144888, 4856117.1875, 4856322.100478885, 4858121.166659621, 4871632.703587461, 4875749.634647629, 4879346.875, 4884207.8125, 4901700.644215707, 4966856.25, 4977293.75, 5039818.292086616, 5255664.742812173, 5310072.557841567, 5319917.1875, 5319953.688344835, 5348789.6697988445, 5562548.30505352, 5598810.9375, 5600274.977541215, 5601785.9375, 5603359.04424068, 5603465.653946912, 5620785.9375, 5631293.75, 5631324.198796621, 5631331.31382875, 5631438.293739582, 5631521.137399292, 5632570.3125, 5632822.673155305, 5633335.625711076, 5633522.837562995, 5636074.231160247, 5636208.582383217, 5637981.2341281725, 5638242.783459021, 5638480.839808431, 5645410.085302319, 5651002.273304698, 5658525.839372062, 5662523.4375, 5664190.493410428, 5665928.214162703, 5667509.499540044, 5667637.650986123, 5669027.373245693, 5669986.911081572, 5673231.108937105, 5675795.908749404, 5678773.274601125, 5681373.941047779, 5687210.733929511, 5694596.462609534, 5695250.0, 5701272.614728056, 5706804.277412147, 5720375.932852926, 5727264.014727552, 5729008.518087299, 5729022.812425343, 5732198.4375, 5734263.78343331, 5734932.701272504, 5738621.331107875, 5738651.818733106, 5743098.8323986055, 5746619.342375845, 5746624.973733977, 5747059.029963784, 5747254.715378275, 5758375.063880435, 5762734.291215151, 5764020.7031655945, 5764043.127447474, 5765170.3125, 5765854.79898998, 5767194.973197125, 5767931.109455396, 5773215.897032408, 5774867.842070232, 5777719.875767456, 5778103.890179079, 5780141.689090709, 5780648.4375, 5783729.16220503, 5784035.913454044, 5788596.875, 5788653.366920305, 5790300.555315167, 5791619.7782538235, 5792385.9375, 5792887.765134327, 5794066.270552294, 5796825.0, 5797887.5, 5800675.0, 5801785.637164779, 5804805.011086613, 5808700.0, 5809919.563870822, 5812550.792198616, 5812700.279646669, 5813392.54893766, 5813399.505273532, 5824697.643958096, 5826969.720316032, 5831007.8125, 5837301.554595527, 5838333.989039555, 5839867.768028763, 5847475.0, 5848102.7728611985, 5850234.375, 5851934.375, 5852760.9375, 5854884.546055765, 5856401.518939608, 5862831.0510670515, 5865543.436447216, 5868724.915808308, 5869782.8125, 5872721.875, 5874979.6875, 5878004.439032261, 5878289.862144996, 5878659.336217763, 5879215.140861222, 5879682.349647225, 5879705.506362079, 5879995.3125, 5883828.710453246, 5888824.615108773, 5890458.597278974, 5897361.570148724, 5901506.660502004, 5903649.548804619, 5903967.750140648, 5908759.375, 5910557.565264311, 5913206.38892342, 5916573.4375, 5916987.5, 5920159.163785397, 5921567.146606623, 5922909.375, 5926541.876396257, 5927879.717703854, 5929591.263140787, 5931395.103606396, 5931630.076132967, 5934013.706160922, 5934736.966604651, 5939442.1875, 5942044.781119353, 5943347.086997764, 5947662.440813488, 5948611.440612467, 5948645.0631865105, 5949457.353661748, 5951446.875, 5954173.188828149, 5955882.8125, 5957788.3528435035, 5957850.9552446855, 5959612.301935275, 5961350.902557391, 5963159.3192070555, 5963502.6860900605, 5968500.600458226, 5969262.838326528, 5971016.3322009705, 5972107.798558285, 5972675.145102241, 5972864.205685565, 5974453.97381968, 5976274.213733445, 5978171.875, 5978195.658196225, 5980485.033499534, 5980559.463688518, 5983841.710720558, 5989827.558346721, 5993840.451073386, 5994801.406228036, 5995537.015835639, 5995542.1875, 5995600.282159769, 5995623.889503311, 5996388.46820472, 5998714.0625, 6003172.005208089, 6007015.625, 6009857.8125, 6013189.1118956655, 6014090.533750616, 6016471.555891297, 6026444.61782866, 6027266.16088027, 6027302.875353039, 6027807.040058432, 6027865.860548596, 6029309.426135195, 6031987.5, 6032191.884575319, 6033616.912564493, 6034511.198965457, 6036072.141096628, 6037478.227244987, 6039507.671955396, 6041534.059574365, 6042616.245181656, 6043267.497616983, 6043342.194474905, 6043445.3125, 6043445.781076359, 6044446.336977748, 6047879.130408752, 6049380.262578782, 6052987.5, 6053369.142834253, 6054663.527300279, 6054777.081667929, 6054951.6529441, 6056503.117711145, 6056629.6875, 6056688.1043843245, 6059504.378821049, 6060193.951985774, 6060203.838929353, 6068985.9375, 6070825.868715015, 6072876.677293313, 6073375.388089591, 6079088.300279231, 6079846.6595876515, 6080827.049297475, 6087323.913160742, 6087421.803831418, 6089445.361452464, 6091373.361127588, 6095862.864059455, 6099501.5625, 6101729.6875, 6102377.494067626, 6104605.928864075, 6105107.768155382, 6105135.160088283, 6105698.398830095, 6110225.489662147, 6110534.375, 6111278.545902345, 6111534.119764747, 6116654.91717011, 6117095.67823531, 6117147.627384846, 6117937.6748292865, 6117991.345283012, 6118016.202208411, 6118495.439110893, 6120444.398991057, 6121317.277808774, 6121462.392106087, 6122014.778631982, 6123517.052473508, 6123741.675500986, 6125145.664635809, 6126278.081657932, 6126935.741421824, 6127367.1875, 6128270.287851734, 6129055.953571246, 6129059.375, 6131286.706735089, 6137191.215422992, 6137452.783904818, 6138020.430516935, 6139873.4375, 6140762.167260537, 6142382.651340225, 6142463.700492197, 6145025.794595136, 6146782.8125, 6151360.532148243, 6157494.933548238, 6159022.930584481, 6161847.66420923, 6161861.060648672, 6161914.704466032, 6162106.853015665, 6163714.644424255, 6164340.925321294, 6169653.125, 6170603.798953503, 6171307.101935138, 6171608.446318309, 6173118.71595211, 6174651.5625, 6174696.875, 6175580.808985299, 6179232.157018548, 6180817.204261235, 6184851.5625, 6185373.131473072, 6186288.108923313, 6186754.664284833, 6188456.086050718, 6190068.573443829, 6191244.389279255, 6192012.3663194915, 6193540.625, 6194230.980515359, 6194279.6875, 6194329.609058845, 6194598.4375, 6195573.295323349, 6195578.879870518, 6195789.085812567, 6199499.931615839, 6199567.781738564, 6201956.641589759, 6202370.739613143, 6202747.193100903, 6204440.6381935235, 6205654.6875, 6209895.3125, 6210253.996368247, 6210707.718520773, 6213548.039658711, 6217643.2532869205, 6218322.353021985, 6220256.25, 6223228.820243768, 6224180.691062234, 6224873.876738858, 6225670.3125, 6226367.1875, 6226411.840102205, 6227700.0, 6228222.278126058, 6229143.75, 6229268.439104424, 6229452.468922514, 6231258.361533116, 6231671.388286892, 6231961.450839371, 6232658.586045077, 6232837.872116349, 6233572.599056205, 6233665.281613763, 6235649.385834969, 6236027.28778475, 6236566.663672622, 6239963.8134999275, 6243796.875, 6244398.297490547, 6245590.34229672, 6245777.869714087, 6245953.017664432, 6248040.625, 6252499.628996292, 6254489.713152748, 6259987.5, 6260895.529162131, 6262064.0625, 6262298.189323124, 6262759.3448167285, 6263455.333348562, 6264160.9375, 6264207.121489126, 6264385.9375, 6264471.875, 6266315.3741615405, 6269634.359964887, 6271571.73376915, 6272123.4375, 6272969.209590338, 6272978.125, 6274546.608709763, 6276021.875, 6278937.397446933, 6282554.087621647, 6284597.493044258, 6289553.376652021, 6297014.407425272, 6301406.25, 6305832.309030932, 6305849.993438204, 6307273.4375, 6311297.4588190615, 6312856.313564006, 6312902.950238928, 6312906.268585025, 6313956.916635649, 6314289.480560389, 6322070.15698815, 6322226.732972683, 6327660.814066457, 6331757.56885586, 6333678.125, 6334112.5, 6336341.122639, 6337287.325632894, 6341450.850803739, 6342854.6875, 6342925.088910577, 6342931.626594564, 6345479.332147564, 6345717.14257961, 6346896.7083873395, 6348292.6170253195, 6350505.744802238, 6351421.9477621345, 6351617.418259958, 6353586.9659390375, 6353611.428115913, 6354595.440866764, 6355471.558713771, 6355811.413632641, 6355834.375, 6356304.150497794, 6356517.1875, 6358906.25, 6359054.249948946, 6359596.828940227, 6360006.25, 6360257.176355659, 6360856.247247485, 6361506.577646026, 6362118.889790499, 6362923.532680391, 6363344.746307865, 6363932.113693992, 6364726.55424954, 6365561.166286753, 6365902.260424642, 6366760.765809135, 6366837.036477348, 6367000.918384982, 6368358.510978571, 6369334.530802768, 6370180.903652476, 6370362.5, 6370731.25, 6371682.685306458, 6372435.767344612, 6372881.443294731, 6373657.020894431, 6373678.435370301, 6373951.5625, 6374985.683818439, 6375095.745451887, 6375168.75, 6375402.7403150145, 6380093.75, 6380576.5625, 6380589.4542270405, 6382664.944513192, 6382941.016674655, 6385342.1875, 6385674.472100249, 6386068.369732658, 6390498.261504768, 6391684.182204371, 6392128.125, 6392402.710726178, 6393199.056312901, 6394348.092756915, 6395090.340657049, 6395098.849214709, 6395675.070367416, 6396784.052693764, 6396848.431427499, 6399403.706215727, 6400288.482445398, 6405574.882568345, 6411310.9375, 6416698.4375, 6417332.29563834, 6417357.618785704, 6417397.276962072, 6426171.92271712, 6428684.314021624, 6436471.945141871, 6436593.264527305, 6436789.766220267, 6437205.102398171, 6437216.643868065, 6440477.0056900345, 6447990.625, 6452403.125, 6452493.834024693, 6452917.167168337, 6453833.563825367, 6454219.492735348, 6454736.630082615, 6455221.301835754, 6455272.914170246, 6455930.290913651, 6457080.572664271, 6457315.622137536, 6457549.578931012, 6459949.065108103, 6461897.332006863, 6462789.22103536, 6463619.366004472, 6466218.534908874, 6470562.368884855, 6471522.181720361, 6471730.987316946, 6472202.023330223, 6480963.532595137, 6483797.2153606545, 6486142.65291339, 6489696.875, 6494516.145100213, 6495711.923255271, 6501155.90794029, 6502525.710161181, 6502879.559934581, 6503781.25, 6506387.530144527, 6509732.2320408365, 6512805.261122756, 6513547.365388355, 6516613.957429747, 6525357.727126621, 6525845.215899751, 6525928.125, 6526278.125, 6526459.375, 6526942.974892325, 6529239.04499852, 6530300.0, 6530814.926175572, 6531285.61483464, 6531473.038527921, 6536897.527275667, 6537211.5906322915, 6541121.200125114, 6545893.258494205, 6547111.574889533, 6550873.204503682, 6550890.625, 6551671.681553246, 6552610.4125299845, 6553994.679923985, 6559220.230308533, 6559317.1875, 6560627.493969114, 6561242.1875, 6561855.774610144, 6566790.192812126, 6571878.125, 6571901.5625, 6572822.950514525, 6573363.620144894, 6573643.5945217125, 6575391.718827523, 6577304.719443008, 6579592.182133033, 6580124.944506645, 6586002.53290704, 6590060.905012336, 6591454.352816524, 6591937.940608457, 6593204.6875, 6594325.217549211, 6596970.096230614, 6599371.063586996, 6604495.3125, 6607991.940313884, 6607997.50835749, 6609334.730764088, 6616751.5625, 6616988.636842587, 6617164.0625, 6617326.5625, 6620107.300610983, 6623196.875, 6625693.560403849, 6626060.9375, 6635537.611019582, 6636007.8125, 6636768.75, 6640753.848448829, 6641049.517305447, 6641378.39305239, 6648109.375, 6656482.943676564, 6661889.856639616, 6664035.845173539, 6665470.3125, 6666598.4375, 6667753.125, 6668887.641189233, 6670146.297858981, 6670157.354670742, 6670170.909651559, 6670228.478939768, 6671554.679194205, 6671621.875, 6672382.198274748, 6672418.75, 6673439.30163438, 6680673.4375, 6681238.909060261, 6681264.0625, 6682646.6126713, 6683377.549324792, 6683980.120276965, 6688995.16377025, 6689317.09446619, 6689732.572024098, 6691693.177911958, 6693871.495717524, 6694760.9375, 6694818.083346145, 6695365.385168144, 6696748.771251339, 6696794.731760534, 6697306.367168086, 6697354.865191141, 6697484.301900739, 6697503.125, 6697839.0625, 6699027.572863864, 6699467.370016451, 6701333.350934718, 6701740.805935705, 6703882.056919955, 6704586.23796597, 6706951.471835095, 6708300.0, 6708918.603670701, 6712786.709638625, 6714419.557506939, 6715656.6951428205, 6715749.909786574, 6716212.141252187, 6720470.741519286, 6720632.8125, 6720942.1875, 6729682.654209982, 6731017.580100453, 6734266.321161603, 6734627.015682167, 6734682.8125, 6735935.617284854, 6736365.833180887, 6737312.109753588, 6737989.604532821, 6739164.847363766, 6739891.81975595, 6740201.211920109, 6740242.726418676, 6740668.317226807, 6742017.602987331, 6742523.310799086, 6743271.030066991, 6743546.875, 6743680.894919269, 6743948.4375, 6744272.2968169935, 6744617.176403844, 6745449.26775326, 6745462.090511557, 6745588.912514788, 6745630.098156579, 6745713.2697051065, 6747782.8125, 6749195.199351737, 6750497.367108346, 6752633.503058942, 6752690.905411107, 6752910.511135382, 6755237.97564838, 6755891.981709521, 6756114.854598257, 6756139.995778356, 6756421.875, 6758138.911182961, 6763717.705977541, 6765163.304994928, 6765996.404024599, 6766869.451676825, 6767501.4857908385, 6773182.697254274, 6773922.066913183, 6776151.5625, 6776391.73519239, 6776810.9375, 6777335.9375, 6777344.560603465, 6777911.688817731, 6777914.044813278, 6785831.25, 6787736.715602434, 6792385.278747037, 6793396.618887994, 6797334.375, 6798025.98546192, 6798689.832313125, 6799195.939966328, 6800263.244168555, 6802996.678275487, 6804748.017410055, 6804928.125, 6806290.625, 6809119.906871988, 6811076.573474608, 6811328.925431494, 6812057.665155087, 6813517.628813371, 6813560.481264604, 6813831.040590218, 6813843.75, 6813996.24160966, 6814115.625, 6814192.481906174, 6814330.745898856, 6815254.970211244, 6815706.476449809, 6815946.534505327, 6816090.625, 6816827.775337459, 6816843.75, 6816903.064378424, 6817396.875, 6817517.25334193, 6817652.937479579, 6817999.677439306, 6818345.803349552, 6818633.404469427, 6819431.488494368, 6819956.199370685, 6819989.0625, 6820814.0625, 6821353.854346104, 6821527.213483505, 6821879.292527662, 6822514.0625, 6822679.565860028, 6822854.808787477, 6824552.921354409, 6826228.7613515, 6826532.693392953, 6827445.703190934, 6831178.125, 6833085.9375, 6833691.151472243, 6835767.433204627, 6836946.513270161, 6836953.87363141, 6837704.6875, 6838465.175256007, 6838595.3125, 6838636.211472005, 6838917.1875, 6844366.147857209, 6845551.5625, 6845552.9948584195, 6846934.664130047, 6847014.534580735, 6847057.676587332, 6850632.803968975, 6851903.125, 6852434.375, 6854418.057155834, 6858676.257055608, 6860385.9375, 6863253.125, 6863494.401371304, 6864204.6875, 6866660.809580188, 6867505.6461017765, 6869076.198496613, 6869081.699707464, 6869138.253452887, 6871225.854860025, 6872966.96968778, 6874859.210689876, 6878319.850668212, 6878320.820922207, 6881069.289599287, 6881070.267293101, 6881375.988645141, 6886779.667884069, 6898442.972611059, 6899284.209066198, 6905316.5260735545, 6910991.563913261, 6913264.0625, 6914681.616745702, 6917557.22704194, 6917843.75, 6918965.391648579, 6918971.157978896, 6919199.944645685, 6919204.6875, 6920219.44918593, 6921716.984663622, 6921977.6745137535, 6924722.571865479, 6925390.625, 6925818.75, 6926496.875, 6926527.0824776655, 6927302.648565816, 6927302.947488743, 6928370.3125, 6928478.147541595, 6928703.730582163, 6928992.98086013, 6931577.19189625, 6932868.192545669, 6933023.4375, 6952294.906276887, 6954721.727390415, 6954724.461607585, 6957649.7914127875, 6961012.5, 6962887.5, 6970903.125, 6973175.347802987, 6974525.0, 6974870.3125, 6978076.539646724, 6983302.887211541, 6987223.301693049, 6987516.728774039, 6988878.862577878, 6992383.420362582, 6992694.633494244, 6992970.3125, 6992973.884853492, 6993753.145597982, 7004373.949667382, 7004590.625, 7005554.6875, 7009342.1875, 7019337.559474962, 7023626.979752163, 7033115.625, 7033830.606250756, 7037547.986513118, 7040750.4453338245, 7043401.022183619, 7044015.298577969, 7047641.233145471, 7047650.873314939, 7060475.359047243, 7060794.725814184, 7064940.8815995855, 7075258.215369624, 7080292.349918011, 7081040.991893912, 7082726.13447334, 7085543.4191028895, 7090973.30232143, 7093294.474169813, 7093493.648888861, 7093516.9160294235, 7114678.125, 7117039.29026158, 7121742.1875, 7125921.793383592, 7136012.108888675, 7136865.026229575, 7153301.5625, 7159388.663399911, 7160458.936397496, 7161881.772586775, ...], [16.686781199745074, 7.850245396219203, 14.676457613726969, 80.8769244769422, 24.263087251940195, 9.984790868747774, 43.62565196017674, 16.707285594268093, 8.970925801110589, 33.295101373971804, 84.27013805686839, 10.554329278207419, 23.315536171618355, 10.7652802712127, 26.137168196686204, 21.872301078987206, 19.031978824381905, 30.76720461832849, 16.169047428805307, 8.422197687701562, 44.07597887487993, 8.97858574073193, 28.982584119212348, 6.831354774858738, 23.406324033772535, 14.02054656431554, 35.42145824435554, 12.98181324416003, 56.51598770628995, 105.2764319287392, 63.01051950331602, 27.019238007197337, 26.58986117054198, 12.73706305101036, 71.04981430309739, 10.914321060907152, 21.001244569479727, 66.32667567669961, 9.200435060602617, 27.538714101994557, 5.050696032902673, 6.834165383916413, 5.509831457234041, 51.24289435648019, 74.82766477251832, 115.14445763710852, 34.501714729346034, 11.895065623701447, 24.284713534955383, 21.29868859890713, 65.79610234562784, 37.86706817678894, 51.72076201753511, 44.144216527713525, 16.762589154427676, 13.43925341562544, 95.72160429053525, 9.805988335843852, 144.01085209295601, 74.38599875541846, 46.14276640101048, 14.969573214168287, 93.87720546144195, 6.989010798964353, 16.661149041118186, 23.26633865773688, 5.32664587263735, 95.36072778496721, 52.771717532142866, 8.432410163979661, 5.642413472326483, 84.68352387713925, 9.603153856125859, 8.665780749745151, 107.08909373389, 9.330148999730778, 14.062786757538182, 85.46477222577164, 37.02720107950499, 25.943178619967252, 5.567392584575883, 12.23225493261859, 43.67652153750509, 45.44391682537247, 28.048900887086848, 58.281890973506876, 17.737865420803107, 66.9529470235935, 17.997986766931703, 65.99880887660886, 5.664779741358603, 13.461190363898156, 12.179022707924378, 19.144203598629527, 28.077019257615568, 91.62243693046074, 38.57891685689395, 7.576908417375844, 95.35287872760566, 22.13009503034217, 8.05076841919132, 53.222191930461435, 42.186213463323526, 17.007787324487964, 5.825040257879137, 33.293007804014245, 72.50196127363728, 59.82514767327269, 10.856744668051922, 5.69827058260565, 49.64731134449565, 20.45709442323172, 27.748371682113387, 20.732260754475526, 36.545237321083334, 37.4748515163563, 15.528271212162537, 29.84389228325584, 6.931204357034657, 203.97016551091977, 54.83543616961174, 9.888566090395951, 32.42702546739509, 26.79788669393088, 41.95176885317372, 38.15034718639701, 7.740086283652065, 60.69443717649732, 86.47572392473639, 7.686877480702534, 82.02936903763057, 26.54263050971404, 24.177371866467446, 36.83046966973393, 49.80567670931287, 5.749022086935985, 39.95484832619661, 88.37275706230496, 34.82084393035652, 5.491744107971878, 9.984247344101117, 80.19643035293609, 5.361603284004963, 12.231191850114183, 37.722185210395764, 51.99311148495501, 70.19394551402144, 65.57012121934999, 23.36562788394042, 15.053001415139374, 34.95883290749857, 56.18583854330865, 18.93622298619301, 7.6264877527127375, 16.173419653842643, 35.63388100992169, 60.95246061393567, 93.66073888427454, 44.198003978806994, 71.80561502730706, 8.756171602382327, 10.079935907957365, 14.88135658435252, 52.96586905833911, 22.438345933021736, 18.34213973420276, 55.38783292824998, 10.158687376234443, 69.18025872152427, 45.87107152089233, 21.275516850411424, 8.353552816837372, 15.55001861825746, 10.12598510427222, 26.16636325951362, 6.24953909177435, 8.629235076764337, 10.882286714122563, 66.65992785081123, 25.065938367220248, 38.699788473638606, 54.086075212144266, 18.782061796366865, 5.591752914567696, 12.984464954061334, 27.613659236003866, 18.976414064472515, 68.4637312904824, 57.516800103285505, 40.227523214627034, 5.287663838400796, 36.76453490721379, 8.426890727233426, 11.806668351862184, 21.58225518320028, 76.48499786574035, 23.192022045669415, 5.534435093840859, 6.497151890762791, 39.55513724181239, 16.673764402760476, 5.886963532495255, 44.166022376636214, 5.713890456960061, 44.684452198187515, 87.36056466506147, 16.090728321349257, 99.42486129797443, 51.508057884711675, 157.47880220507267, 29.049016387992964, 76.34426197375296, 26.749955837912914, 25.45760786876845, 66.59859627656516, 15.951403871981608, 6.577813755944237, 21.158145955228587, 28.80280182486641, 11.493202372300711, 8.660249144440849, 67.46748801268537, 42.22505500007581, 39.52690601816316, 53.68724719928533, 5.475828783598857, 39.81851348436751, 6.013561038831637, 19.162918044426863, 7.196955136938479, 82.90495347191346, 24.792535998066803, 6.0092904316422215, 20.620297411889023, 29.95163027680248, 67.40975304650303, 13.649615276290117, 9.875768784845084, 28.824920393752382, 10.618556258687493, 47.35310465527607, 42.70951342167885, 62.09414887979321, 8.379154431858405, 6.754841122777884, 16.90802574422088, 5.448467540290514, 5.163405440991811, 44.90134507851187, 59.0276812605322, 69.28450809563898, 67.88556210101125, 19.21860074493621, 64.390849919725, 80.35357624233441, 24.790717210541914, 51.12684443522563, 44.26619942207089, 12.185316001708909, 19.37497034845854, 19.107848183953138, 9.930503844279974, 115.47964239697063, 21.994171111375003, 17.62960741560149, 47.536915007653725, 60.22720440960214, 15.498848192860374, 38.385628285455375, 30.80863608396505, 98.1702968105941, 11.064383812158963, 51.73305758282318, 10.673923606504138, 21.07060502618199, 34.699119386637506, 49.381847826055186, 13.585917581919738, 10.612943484179413, 21.16630920224751, 66.47545545634485, 62.54517610441025, 11.476070490979899, 14.97223269131355, 12.017089398401387, 40.14097190455096, 7.005843734026965, 51.93656855871166, 78.65967734671278, 36.07921675970364, 19.62891271478504, 29.322044833179405, 14.236748141641453, 20.033339838241393, 15.50172852338688, 75.87342089847725, 31.221685519590718, 11.70118873330685, 18.555635101391147, 47.278830386111665, 6.510080411414395, 15.516874930555767, 10.169561405935376, 25.663154972099196, 34.97256344842492, 16.446076098244546, 106.29217556240695, 7.635632893493641, 47.61231990493616, 13.147131504262488, 128.7658705284247, 25.778416023832644, 120.91665768498717, 112.75394560147733, 22.817757922396396, 9.745264057535211, 16.616202782291595, 69.94613000470699, 15.46216708728936, 66.92266873116489, 29.156997519626636, 11.205803260131052, 14.604753565216601, 146.8564517243423, 10.191563925323434, 7.269822766996815, 5.91795567451477, 8.753788414461017, 91.65437299034437, 5.343676956961525, 60.372927286775784, 23.713454655821526, 29.467717401306693, 16.041457463252193, 84.29996986790528, 84.98894736850104, 49.20680369301817, 69.26710704426581, 28.041654651109305, 51.090155558574125, 14.968161303626495, 109.98956727866363, 17.08919077038453, 7.419583738385034, 32.35288598411796, 26.107411543942632, 73.17001570723386, 9.687228710672166, 34.637096457137076, 8.581628501079956, 11.27208209845615, 5.165191865941947, 44.21486117679127, 6.586199658346751, 47.27700770691878, 55.94967072699107, 5.426486721862678, 48.27012119462157, 33.96631670039343, 78.31889671488896, 8.503052309254365, 7.920823488578492, 119.37670012163582, 30.87640866340486, 11.962595531283522, 12.808180506702755, 15.131434784666405, 14.658190268961949, 5.412576477879661, 59.763695263742356, 36.68441038580218, 6.39253537514186, 19.547563153428918, 9.294186668786335, 121.72747751800897, 14.796138244008764, 17.206476492076217, 34.168445142086945, 5.139600719130846, 14.050414708764986, 28.88780567052181, 23.76268256534989, 10.060439697534637, 7.168180037389464, 18.82475555789681, 6.15025359823402, 15.447097387906988, 12.320250851176294, 59.733903855686364, 10.963148072460827, 24.92765045519398, 26.114635670811232, 21.37423296620694, 11.726660616524608, 11.060629489618474, 64.91381069603374, 90.59848102418816, 85.52028466350602, 10.693961785947264, 53.57515315256383, 8.740060600172157, 102.48109503817828, 47.03785563187695, 7.646487495568991, 79.23327722406816, 23.341358808383276, 26.710355190076914, 48.40250068824727, 18.707096766484895, 70.82591398733334, 52.735654840782075, 52.82852692508844, 153.1997479712889, 19.369204996843553, 6.10099990820878, 146.9191741701391, 21.415235810742956, 17.746102082266688, 24.769651260796124, 102.14506302984033, 9.97465542392048, 12.784122854130239, 128.04557683980323, 14.813303660802447, 31.533372425706396, 32.95419623291504, 22.102406941360073, 7.38220184062081, 22.09671476062635, 56.905550546745935, 55.04621611436456, 28.770626331139155, 57.439121601343864, 25.65945819819434, 37.13074855809601, 35.43270913625469, 26.136292015162034, 99.2143240297934, 24.148519479222166, 30.100852858390006, 27.06380756433485, 76.9268904892914, 56.97501758450099, 10.063201096395938, 8.298943995167827, 86.43595361408435, 12.20370096532909, 17.045402106908924, 52.64857221355909, 31.497927178139904, 77.28949901162035, 72.47196738615654, 39.02481286209832, 61.36862263919582, 14.718443789578188, 17.199163258959224, 49.929351111625245, 5.641048401767656, 50.26622077850742, 18.474172996171575, 99.63133824583066, 24.571493089224806, 35.782769844361646, 57.27490144570379, 49.96911069143748, 43.2828118599919, 16.738376894798723, 94.16666332125011, 13.66264339199703, 70.16227364417858, 12.110007572095524, 10.443578876799611, 9.806768903171509, 28.4237850381873, 11.763829147920022, 18.67207396183387, 23.211923598767036, 20.42513436463127, 6.917490404886698, 36.47190333728925, 24.42481373495765, 32.765212723162016, 26.03483493857524, 9.103278709218454, 16.85122669833878, 22.442151627670377, 49.880611428616795, 8.099667545138304, 7.856835762031761, 33.48971938422131, 7.179594545411094, 39.30914896414892, 30.804070778213106, 8.27068014298646, 19.14801281096028, 54.490928429646615, 6.632971089798594, 117.12835208122839, 29.386339590585386, 164.28618302840732, 28.230734906887637, 72.07841838737724, 48.87614587360632, 17.03985483050136, 31.19025747132751, 13.36549746951109, 100.10549691780973, 26.6494185584058, 57.39849257170545, 81.64694211947433, 22.230622929001484, 16.442245870084346, 40.23271777750269, 21.458564096268933, 53.16830830655872, 29.20333454969692, 17.7576591124432, 62.075345373158704, 49.362815550413636, 7.609973429125774, 118.74890403562902, 11.850730778701115, 50.669135953823925, 11.405048138857838, 26.302584494425098, 12.458204396315033, 35.79590231744116, 50.491721165879476, 57.72520467105255, 37.05557443490009, 27.102807951958187, 62.866800393914126, 7.145021336418812, 5.354993961986296, 114.57495148511111, 6.480072546519185, 5.696235752850276, 16.877528520553142, 22.090955298830274, 20.67622464621342, 27.223227326661345, 6.406509242049723, 41.087982657549446, 19.75075152399114, 6.701963578909481, 62.87109716476953, 31.674881931543528, 20.67233946725315, 34.36836540561662, 37.30069695546389, 83.01776450825187, 37.23595692251077, 36.146654505331504, 20.23460900093937, 32.21476681603434, 15.170460634726332, 5.951672482769092, 67.91917427549126, 13.148344864400505, 6.949123083076525, 7.600256355898767, 8.411386216783198, 117.8046293091212, 99.7398409066644, 6.210359577552775, 23.03499685258455, 40.587898335901684, 8.370723508336473, 10.617166108304176, 35.00249246322326, 42.18674205567535, 14.477900594170073, 62.95319686794797, 15.733262268997137, 19.00588618167102, 5.4752475564360354, 33.15004722806476, 54.09630172967172, 16.895819397457352, 102.38561312383962, 5.906590619345741, 71.24837930448246, 33.60469430368436, 14.238468180921995, 61.33396255083411, 6.129799542278751, 68.63956661222487, 29.5355757708039, 22.776869340101403, 67.2883788932241, 54.7271191158383, 68.56092879003518, 100.30154720318286, 12.255587897452283, 20.653285116562763, 75.37989045332543, 11.838607295674068, 5.819205263956178, 23.469931652069047, 28.405420180555385, 59.32138058712161, 68.71634873929315, 77.19100264402286, 54.570527422458454, 55.969312293497666, 54.99905831725034, 13.288422605233553, 16.732312515401784, 15.126558275450762, 93.12785524702956, 11.239142019477523, 37.13526774740231, 109.84661728343683, 11.84468443613679, 50.42825061872316, 17.685707093551173, 96.44335824385765, 92.17123121242696, 11.261632766134312, 62.95412056388124, 5.266671444267214, 6.0068070355179, 12.415541383564554, 20.793029114426762, 17.719009464485904, 23.661613559616534, 73.55669145329256, 36.71709089165589, 55.234696506832535, 36.415631824186484, 9.750229522198975, 15.582282121364859, 15.488412882417354, 5.4526097041608415, 10.928768741086765, 8.45572139244234, 24.239412051556247, 62.12509195177013, 24.59827166774945, 16.41961761184144, 89.04489293445351, 52.362097335116005, 16.64882586164378, 8.887109857316348, 23.227954243671263, 53.91684510556704, 5.526921254025445, 54.83490243791729, 8.302582844915914, 67.77917726339297, 7.28087082394883, 8.564123437470498, 17.36113751581894, 44.44808530499099, 7.568668732437101, 59.188809750370055, 46.610974255911835, 52.02131915466382, 12.63085708528001, 11.100460614567076, 49.93015216648497, 43.94051623268807, 218.38651344243624, 22.563802003005865, 60.78461666607777, 35.49176802245857, 8.81926626184729, 15.285816991055459, 57.03929222061768, 33.53716872115376, 43.83152169653049, 9.17301955563253, 19.962669920109345, 7.978176999068259, 14.637222667937179, 48.35296924218563, 7.97887161763861, 51.34394374079926, 13.393956595001463, 72.03572113847255, 105.68420402254498, 147.05116546147013, 89.00403439629123, 8.065730759465726, 10.893080181381338, 24.420976086149217, 24.060099391048695, 14.921092438760779, 50.19662085324189, 13.080708476435063, 6.084727288937144, 24.383394434213322, 11.894127886124709, 64.53116919541446, 52.64546239291326, 17.193272327593114, 7.89953130825185, 59.97830880054541, 24.449652115698058, 12.286621423116511, 43.236718950303015, 56.35610125200534, 22.26821172912326, 59.82765462954223, 56.87992146728604, 5.059704641200022, 43.905375913558544, 25.27146285481394, 74.26026490801827, 6.785875032035595, 48.639837406346274, 150.96806765605942, 10.028488753591608, 81.66349808651353, 9.568830044056662, 75.54326754941582, 20.61365664944006, 12.646618656630187, 26.823313932999095, 30.669255961002673, 29.605462006934655, 51.39222621527001, 158.28962166428525, 42.126489967336504, 13.443044924347168, 28.075974117675848, 5.477165903592316, 5.70622960837119, 29.6459902405146, 22.68167209414709, 41.880389963456146, 55.7160191076023, 61.19951017189535, 211.4371713463493, 45.79545160453565, 25.74991301476447, 20.770015604074093, 20.090483511604912, 14.403386190787556, 33.228987148463794, 24.54207091945121, 94.54790896631447, 9.030046967565553, 93.86163630242706, 12.891674393502136, 81.49863092421775, 21.462855896401056, 57.70229042429803, 5.466818097653372, 61.68375334166391, 27.15770504973794, 36.98565588986373, 62.858226922590305, 12.61032369196744, 15.686014105111932, 72.31596858994746, 5.541926836971832, 12.67663812069929, 68.29186096952526, 20.242343611480642, 30.641499991862528, 25.934461662232614, 10.082458489376895, 38.70612527836062, 120.84881600054987, 52.31520904361238, 80.7953942102385, 35.221692689904295, 75.8809708867112, 32.746672505572455, 52.46849350062391, 11.802324565055022, 26.454098063395694, 66.37618872488466, 89.87507201184056, 32.658505660506464, 57.673712689052344, 51.6864724789454, 16.777046717026487, 52.02616399783158, 30.54925838654904, 16.550800669394253, 20.19598456792982, 22.191003172340167, 8.519234766455169, 5.92844707555248, 18.6270203026656, 108.61645712931377, 52.78846483900264, 32.43438410235764, 44.74505871790374, 30.1907008871677, 21.618392179996903, 6.046526627354168, 14.399076106724781, 7.233753592310291, 19.117530642128173, 56.632539018780435, 14.527093860545678, 7.791480867248339, 13.2278141858789, 9.580322265276235, 7.455980030399205, 5.640911493170522, 51.22694116841119, 55.6794459828859, 28.619437885908837, 88.13132978979317, 25.855898474635094, 33.13582704900131, 48.302670578167955, 10.463536557078875, 18.726089225419415, 31.477991638518034, 26.437294858357482, 15.727184085232286, 80.91520839003373, 10.48737979347712, 70.19770567627425, 32.88734238934355, 12.685330544715832, 7.899630588306294, 59.00185447447866, 34.56300094155336, 84.08406822297107, 44.19419117688518, 14.047611738540036, 32.14943891912376, 108.6792793016402, 18.998004597144025, 23.962041514847883, 8.723648208541608, 8.185215550449403, 27.850897855923517, 57.143396023485366, 53.06591271308265, 154.02622043596728, 78.8651997491687, 12.71094457358858, 36.62066468755634, 22.42098682542584, 47.26835836738202, 31.303565102923137, 62.11575625180388, 40.34264474599404, 29.847668299932323, 36.43692661803368, 7.430550643743398, 8.441960514714026, 5.830927792066805, 13.785206191299151, 38.49981098488858, 23.13644385079248, 124.05956413508997, 5.7029107204331355, 41.508526431992806, 15.198550615519578, 33.898835218007456, 5.281226494862869, 5.641788788358948, 5.179381325234472, 15.935761526596208, 51.09289009174236, 46.11981268423305, 65.10468889339104, 84.28033860905724, 12.32455726555867, 23.093500186353268, 47.59861988227276, 26.33195265535143, 65.77427049243248, 138.73146347545247, 18.086197392053712, 26.373561057108212, 51.28507038803456, 111.09975721588998, 39.816720978714805, 8.586094410030238, 9.548176518569727, 10.605754562049913, 12.54145794750008, 114.43224270439117, 10.490668646318621, 45.4804597765594, 31.844194016497056, 57.38046451418798, 6.5723009698904615, 113.07697116696384, 70.7898854725926, 84.48103712313245, 20.495372158627625, 39.62892306847139, 14.909092542669923, 60.63034120070707, 76.59961869190569, 6.18345893251151, 20.49250241466335, 29.415797458771838, 114.29983817735862, 8.663939194360887, 78.40923196254411, 26.229468091454056, 20.515704663727636, 7.028944466389089, 50.196823502525106, 5.657132691880731, 16.5467908033319, 24.86059206631354, 8.201557513243388, 44.94032798843003, 41.806204471152824, 5.308051268267771, 9.293468489827656, 35.80859668054208, 14.867266096602755, 5.8744490844850725, 14.344643023081439, 18.428897707800516, 103.1783358089538, 77.40756478132498, 35.21719817397761, 173.940606885091, 63.99481354794081, 104.59767498354772, 27.616936570973184, 32.512074853565274, 38.3003666506414, 18.500926851902864, 90.20199877697381, 13.463729462489354, 16.219909016873554, 56.78429416827411, 83.04065260090988, 64.64991487616791, 16.93950444578749, 20.912964678154502, 9.185686051821145, 73.1231394375686, 8.298533778194761, 25.146389954500087, 15.961909394685808, 6.350133683364581, 6.982238626875987, 61.89796573615944, 13.590432310191781, 10.904564397443021, 6.986768753667151, 43.88248154164593, 59.07041942401671, 110.87694633118656, 116.4033857802429, 8.479483191226402, 48.61197531655371, 64.77311541570518, 28.080413066102455, 36.291036969991154, 26.102098101138882, 149.83654172514562, 5.494340527205111, 109.85282830864938, 28.990087617838583, 47.83143235391767, 11.907207275790945, 5.615184687306993, 79.19470171338561, 43.730601965312346, 56.92715704245669, 53.921881325513326, 159.9494224272012, 94.53437735077563, 31.571740383294824, 42.57591475350712, 105.39414126069232, 16.96236074141472, 49.86161294131429, 19.683843217973987, 15.923555885012401, 10.19794508629285, 65.49893777196156, 8.880143619954328, 16.01890783760803, 81.81747969875018, 6.105153698955245, 5.047781463351705, 7.4554319666606395, 18.351739224880927, 14.450144401583906, 71.66189259919577, 9.247346716473995, 5.794163159714789, 28.906228456785136, 15.887028724141693, 37.65009945934011, 11.00248729614709, 13.63449900669161, 20.561323284093422, 49.20581607845363, 8.086230637074934, 13.124466681925005, 31.397986780640586, ...])
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);
([3481517.8983483543, 3483066.2599325534, 3514937.125222207, 3525764.0625, 3573838.8015783993, 3613228.8083443046, 3651410.4579221285, 3692266.0221463745, 3692266.728020923, 3696404.632889078, 3696442.1875, 3697363.6618443453, 3740479.3526480757, 3804434.1300592287, 3809290.491373891, 3817468.287191086, 3821617.961965906, 3831353.125, 3831419.0229246477, 3888090.8729473893, 3897588.9682080336, 3905590.1760266526, 3908728.3753342275, 3908759.7056071213, 3914132.485049817, 3949935.672896059, 3951676.6915131654, 3963314.994306396, 3967785.5983171947, 3980189.3364803367, 3986328.125, 4022729.0671095997, 4033498.85291873, 4037043.7106917524, 4047676.5625, 4047713.921553854, 4054477.574238548, 4060478.125, 4074088.903439626, 4081767.5634148875, 4081831.7861333936, 4091806.5939150844, 4093202.6364740334, 4096059.0047272337, 4108646.875, 4117090.625, 4124237.4483559006, 4136922.8589986535, 4137276.775920674, 4139705.7302877842, 4143357.8125, 4148501.966640885, 4153545.070916962, 4162200.8924146644, 4164130.0952619943, 4166379.901492873, 4200861.570356377, 4208592.700069588, 4211079.671716521, 4245324.072777614, 4255010.9375, 4277889.069843432, 4288650.0, 4299085.408517602, 4301605.075717488, 4301713.723607446, 4305360.484826822, 4305915.901238531, 4308300.0, 4315875.265953559, 4330875.5016612, 4405360.9375, 4411361.242304153, 4411372.529271627, 4436176.72141535, 4438895.311016374, 4440745.061128612, 4453801.647428773, 4467620.34163528, 4467684.6916222265, 4476202.249775738, 4483099.045302063, 4483854.6875, 4528911.0118047325, 4529416.351858789, 4530659.375, 4531528.357497542, 4532409.210156266, 4532427.184994966, 4533003.125, 4539218.06956327, 4544508.923614166, 4548666.537784477, 4552921.102183382, 4562378.101969071, 4563486.537411802, 4566992.1875, 4572920.23911199, 4581699.752246327, 4581779.249069751, 4587287.025772742, 4594892.1875, 4595830.77593852, 4599502.016212059, 4602057.9608660955, 4608115.152411092, 4611357.412842976, 4615709.375, 4617760.756942927, 4617815.490808267, 4622100.0, 4639302.514471048, 4639697.9379206225, 4641688.482690161, 4659131.25, 4662868.75, 4667392.333372957, 4705309.375, 4723721.098204719, 4754708.693560282, 4760235.9375, 4774178.717806691, 4795435.57522201, 4818648.343688074, 4821878.84161733, 4828987.5, 4840415.988153709, 4850242.191144888, 4856117.1875, 4856322.100478885, 4858121.166659621, 4871632.703587461, 4875749.634647629, 4879346.875, 4884207.8125, 4901700.644215707, 4966856.25, 4977293.75, 5039818.292086616, 5255664.742812173, 5310072.557841567, 5319917.1875, 5319953.688344835, 5348789.6697988445, 5562548.30505352, 5598810.9375, 5600274.977541215, 5601785.9375, 5603359.04424068, 5603465.653946912, 5620785.9375, 5631293.75, 5631324.198796621, 5631331.31382875, 5631438.293739582, 5631521.137399292, 5632570.3125, 5632822.673155305, 5633335.625711076, 5633522.837562995, 5636074.231160247, 5636208.582383217, 5637981.2341281725, 5638242.783459021, 5638480.839808431, 5645410.085302319, 5651002.273304698, 5658525.839372062, 5662523.4375, 5664190.493410428, 5665928.214162703, 5667509.499540044, 5667637.650986123, 5669027.373245693, 5669986.911081572, 5673231.108937105, 5675795.908749404, 5678773.274601125, 5681373.941047779, 5687210.733929511, 5694596.462609534, 5695250.0, 5701272.614728056, 5706804.277412147, 5720375.932852926, 5727264.014727552, 5729008.518087299, 5729022.812425343, 5732198.4375, 5734263.78343331, 5734932.701272504, 5738621.331107875, 5738651.818733106, 5743098.8323986055, 5746619.342375845, 5746624.973733977, 5747059.029963784, 5747254.715378275, 5758375.063880435, 5762734.291215151, 5764020.7031655945, 5764043.127447474, 5765170.3125, 5765854.79898998, 5767194.973197125, 5767931.109455396, 5773215.897032408, 5774867.842070232, 5777719.875767456, 5778103.890179079, 5780141.689090709, 5780648.4375, 5783729.16220503, 5784035.913454044, 5788596.875, 5788653.366920305, 5790300.555315167, 5791619.7782538235, 5792385.9375, 5792887.765134327, 5794066.270552294, 5796825.0, 5797887.5, 5800675.0, 5801785.637164779, 5804805.011086613, 5808700.0, 5809919.563870822, 5812550.792198616, 5812700.279646669, 5813392.54893766, 5813399.505273532, 5824697.643958096, 5826969.720316032, 5831007.8125, 5837301.554595527, 5838333.989039555, 5839867.768028763, 5847475.0, 5848102.7728611985, 5850234.375, 5851934.375, 5852760.9375, 5854884.546055765, 5856401.518939608, 5862831.0510670515, 5865543.436447216, 5868724.915808308, 5869782.8125, 5872721.875, 5874979.6875, 5878004.439032261, 5878289.862144996, 5878659.336217763, 5879215.140861222, 5879682.349647225, 5879705.506362079, 5879995.3125, 5883828.710453246, 5888824.615108773, 5890458.597278974, 5897361.570148724, 5901506.660502004, 5903649.548804619, 5903967.750140648, 5908759.375, 5910557.565264311, 5913206.38892342, 5916573.4375, 5916987.5, 5920159.163785397, 5921567.146606623, 5922909.375, 5926541.876396257, 5927879.717703854, 5929591.263140787, 5931395.103606396, 5931630.076132967, 5934013.706160922, 5934736.966604651, 5939442.1875, 5942044.781119353, 5943347.086997764, 5947662.440813488, 5948611.440612467, 5948645.0631865105, 5949457.353661748, 5951446.875, 5954173.188828149, 5955882.8125, 5957788.3528435035, 5957850.9552446855, 5959612.301935275, 5961350.902557391, 5963159.3192070555, 5963502.6860900605, 5968500.600458226, 5969262.838326528, 5971016.3322009705, 5972107.798558285, 5972675.145102241, 5972864.205685565, 5974453.97381968, 5976274.213733445, 5978171.875, 5978195.658196225, 5980485.033499534, 5980559.463688518, 5983841.710720558, 5989827.558346721, 5993840.451073386, 5994801.406228036, 5995537.015835639, 5995542.1875, 5995600.282159769, 5995623.889503311, 5996388.46820472, 5998714.0625, 6003172.005208089, 6007015.625, 6009857.8125, 6013189.1118956655, 6014090.533750616, 6016471.555891297, 6026444.61782866, 6027266.16088027, 6027302.875353039, 6027807.040058432, 6027865.860548596, 6029309.426135195, 6031987.5, 6032191.884575319, 6033616.912564493, 6034511.198965457, 6036072.141096628, 6037478.227244987, 6039507.671955396, 6041534.059574365, 6042616.245181656, 6043267.497616983, 6043342.194474905, 6043445.3125, 6043445.781076359, 6044446.336977748, 6047879.130408752, 6049380.262578782, 6052987.5, 6053369.142834253, 6054663.527300279, 6054777.081667929, 6054951.6529441, 6056503.117711145, 6056629.6875, 6056688.1043843245, 6059504.378821049, 6060193.951985774, 6060203.838929353, 6068985.9375, 6070825.868715015, 6072876.677293313, 6073375.388089591, 6079088.300279231, 6079846.6595876515, 6080827.049297475, 6087323.913160742, 6087421.803831418, 6089445.361452464, 6091373.361127588, 6095862.864059455, 6099501.5625, 6101729.6875, 6102377.494067626, 6104605.928864075, 6105107.768155382, 6105135.160088283, 6105698.398830095, 6110225.489662147, 6110534.375, 6111278.545902345, 6111534.119764747, 6116654.91717011, 6117095.67823531, 6117147.627384846, 6117937.6748292865, 6117991.345283012, 6118016.202208411, 6118495.439110893, 6120444.398991057, 6121317.277808774, 6121462.392106087, 6122014.778631982, 6123517.052473508, 6123741.675500986, 6125145.664635809, 6126278.081657932, 6126935.741421824, 6127367.1875, 6128270.287851734, 6129055.953571246, 6129059.375, 6131286.706735089, 6137191.215422992, 6137452.783904818, 6138020.430516935, 6139873.4375, 6140762.167260537, 6142382.651340225, 6142463.700492197, 6145025.794595136, 6146782.8125, 6151360.532148243, 6157494.933548238, 6159022.930584481, 6161847.66420923, 6161861.060648672, 6161914.704466032, 6162106.853015665, 6163714.644424255, 6164340.925321294, 6169653.125, 6170603.798953503, 6171307.101935138, 6171608.446318309, 6173118.71595211, 6174651.5625, 6174696.875, 6175580.808985299, 6179232.157018548, 6180817.204261235, 6184851.5625, 6185373.131473072, 6186288.108923313, 6186754.664284833, 6188456.086050718, 6190068.573443829, 6191244.389279255, 6192012.3663194915, 6193540.625, 6194230.980515359, 6194279.6875, 6194329.609058845, 6194598.4375, 6195573.295323349, 6195578.879870518, 6195789.085812567, 6199499.931615839, 6199567.781738564, 6201956.641589759, 6202370.739613143, 6202747.193100903, 6204440.6381935235, 6205654.6875, 6209895.3125, 6210253.996368247, 6210707.718520773, 6213548.039658711, 6217643.2532869205, 6218322.353021985, 6220256.25, 6223228.820243768, 6224180.691062234, 6224873.876738858, 6225670.3125, 6226367.1875, 6226411.840102205, 6227700.0, 6228222.278126058, 6229143.75, 6229268.439104424, 6229452.468922514, 6231258.361533116, 6231671.388286892, 6231961.450839371, 6232658.586045077, 6232837.872116349, 6233572.599056205, 6233665.281613763, 6235649.385834969, 6236027.28778475, 6236566.663672622, 6239963.8134999275, 6243796.875, 6244398.297490547, 6245590.34229672, 6245777.869714087, 6245953.017664432, 6248040.625, 6252499.628996292, 6254489.713152748, 6259987.5, 6260895.529162131, 6262064.0625, 6262298.189323124, 6262759.3448167285, 6263455.333348562, 6264160.9375, 6264207.121489126, 6264385.9375, 6264471.875, 6266315.3741615405, 6269634.359964887, 6271571.73376915, 6272123.4375, 6272969.209590338, 6272978.125, 6274546.608709763, 6276021.875, 6278937.397446933, 6282554.087621647, 6284597.493044258, 6289553.376652021, 6297014.407425272, 6301406.25, 6305832.309030932, 6305849.993438204, 6307273.4375, 6311297.4588190615, 6312856.313564006, 6312902.950238928, 6312906.268585025, 6313956.916635649, 6314289.480560389, 6322070.15698815, 6322226.732972683, 6327660.814066457, 6331757.56885586, 6333678.125, 6334112.5, 6336341.122639, 6337287.325632894, 6341450.850803739, 6342854.6875, 6342925.088910577, 6342931.626594564, 6345479.332147564, 6345717.14257961, 6346896.7083873395, 6348292.6170253195, 6350505.744802238, 6351421.9477621345, 6351617.418259958, 6353586.9659390375, 6353611.428115913, 6354595.440866764, 6355471.558713771, 6355811.413632641, 6355834.375, 6356304.150497794, 6356517.1875, 6358906.25, 6359054.249948946, 6359596.828940227, 6360006.25, 6360257.176355659, 6360856.247247485, 6361506.577646026, 6362118.889790499, 6362923.532680391, 6363344.746307865, 6363932.113693992, 6364726.55424954, 6365561.166286753, 6365902.260424642, 6366760.765809135, 6366837.036477348, 6367000.918384982, 6368358.510978571, 6369334.530802768, 6370180.903652476, 6370362.5, 6370731.25, 6371682.685306458, 6372435.767344612, 6372881.443294731, 6373657.020894431, 6373678.435370301, 6373951.5625, 6374985.683818439, 6375095.745451887, 6375168.75, 6375402.7403150145, 6380093.75, 6380576.5625, 6380589.4542270405, 6382664.944513192, 6382941.016674655, 6385342.1875, 6385674.472100249, 6386068.369732658, 6390498.261504768, 6391684.182204371, 6392128.125, 6392402.710726178, 6393199.056312901, 6394348.092756915, 6395090.340657049, 6395098.849214709, 6395675.070367416, 6396784.052693764, 6396848.431427499, 6399403.706215727, 6400288.482445398, 6405574.882568345, 6411310.9375, 6416698.4375, 6417332.29563834, 6417357.618785704, 6417397.276962072, 6426171.92271712, 6428684.314021624, 6436471.945141871, 6436593.264527305, 6436789.766220267, 6437205.102398171, 6437216.643868065, 6440477.0056900345, 6447990.625, 6452403.125, 6452493.834024693, 6452917.167168337, 6453833.563825367, 6454219.492735348, 6454736.630082615, 6455221.301835754, 6455272.914170246, 6455930.290913651, 6457080.572664271, 6457315.622137536, 6457549.578931012, 6459949.065108103, 6461897.332006863, 6462789.22103536, 6463619.366004472, 6466218.534908874, 6470562.368884855, 6471522.181720361, 6471730.987316946, 6472202.023330223, 6480963.532595137, 6483797.2153606545, 6486142.65291339, 6489696.875, 6494516.145100213, 6495711.923255271, 6501155.90794029, 6502525.710161181, 6502879.559934581, 6503781.25, 6506387.530144527, 6509732.2320408365, 6512805.261122756, 6513547.365388355, 6516613.957429747, 6525357.727126621, 6525845.215899751, 6525928.125, 6526278.125, 6526459.375, 6526942.974892325, 6529239.04499852, 6530300.0, 6530814.926175572, 6531285.61483464, 6531473.038527921, 6536897.527275667, 6537211.5906322915, 6541121.200125114, 6545893.258494205, 6547111.574889533, 6550873.204503682, 6550890.625, 6551671.681553246, 6552610.4125299845, 6553994.679923985, 6559220.230308533, 6559317.1875, 6560627.493969114, 6561242.1875, 6561855.774610144, 6566790.192812126, 6571878.125, 6571901.5625, 6572822.950514525, 6573363.620144894, 6573643.5945217125, 6575391.718827523, 6577304.719443008, 6579592.182133033, 6580124.944506645, 6586002.53290704, 6590060.905012336, 6591454.352816524, 6591937.940608457, 6593204.6875, 6594325.217549211, 6596970.096230614, 6599371.063586996, 6604495.3125, 6607991.940313884, 6607997.50835749, 6609334.730764088, 6616751.5625, 6616988.636842587, 6617164.0625, 6617326.5625, 6620107.300610983, 6623196.875, 6625693.560403849, 6626060.9375, 6635537.611019582, 6636007.8125, 6636768.75, 6640753.848448829, 6641049.517305447, 6641378.39305239, 6648109.375, 6656482.943676564, 6661889.856639616, 6664035.845173539, 6665470.3125, 6666598.4375, 6667753.125, 6668887.641189233, 6670146.297858981, 6670157.354670742, 6670170.909651559, 6670228.478939768, 6671554.679194205, 6671621.875, 6672382.198274748, 6672418.75, 6673439.30163438, 6680673.4375, 6681238.909060261, 6681264.0625, 6682646.6126713, 6683377.549324792, 6683980.120276965, 6688995.16377025, 6689317.09446619, 6689732.572024098, 6691693.177911958, 6693871.495717524, 6694760.9375, 6694818.083346145, 6695365.385168144, 6696748.771251339, 6696794.731760534, 6697306.367168086, 6697354.865191141, 6697484.301900739, 6697503.125, 6697839.0625, 6699027.572863864, 6699467.370016451, 6701333.350934718, 6701740.805935705, 6703882.056919955, 6704586.23796597, 6706951.471835095, 6708300.0, 6708918.603670701, 6712786.709638625, 6714419.557506939, 6715656.6951428205, 6715749.909786574, 6716212.141252187, 6720470.741519286, 6720632.8125, 6720942.1875, 6729682.654209982, 6731017.580100453, 6734266.321161603, 6734627.015682167, 6734682.8125, 6735935.617284854, 6736365.833180887, 6737312.109753588, 6737989.604532821, 6739164.847363766, 6739891.81975595, 6740201.211920109, 6740242.726418676, 6740668.317226807, 6742017.602987331, 6742523.310799086, 6743271.030066991, 6743546.875, 6743680.894919269, 6743948.4375, 6744272.2968169935, 6744617.176403844, 6745449.26775326, 6745462.090511557, 6745588.912514788, 6745630.098156579, 6745713.2697051065, 6747782.8125, 6749195.199351737, 6750497.367108346, 6752633.503058942, 6752690.905411107, 6752910.511135382, 6755237.97564838, 6755891.981709521, 6756114.854598257, 6756139.995778356, 6756421.875, 6758138.911182961, 6763717.705977541, 6765163.304994928, 6765996.404024599, 6766869.451676825, 6767501.4857908385, 6773182.697254274, 6773922.066913183, 6776151.5625, 6776391.73519239, 6776810.9375, 6777335.9375, 6777344.560603465, 6777911.688817731, 6777914.044813278, 6785831.25, 6787736.715602434, 6792385.278747037, 6793396.618887994, 6797334.375, 6798025.98546192, 6798689.832313125, 6799195.939966328, 6800263.244168555, 6802996.678275487, 6804748.017410055, 6804928.125, 6806290.625, 6809119.906871988, 6811076.573474608, 6811328.925431494, 6812057.665155087, 6813517.628813371, 6813560.481264604, 6813831.040590218, 6813843.75, 6813996.24160966, 6814115.625, 6814192.481906174, 6814330.745898856, 6815254.970211244, 6815706.476449809, 6815946.534505327, 6816090.625, 6816827.775337459, 6816843.75, 6816903.064378424, 6817396.875, 6817517.25334193, 6817652.937479579, 6817999.677439306, 6818345.803349552, 6818633.404469427, 6819431.488494368, 6819956.199370685, 6819989.0625, 6820814.0625, 6821353.854346104, 6821527.213483505, 6821879.292527662, 6822514.0625, 6822679.565860028, 6822854.808787477, 6824552.921354409, 6826228.7613515, 6826532.693392953, 6827445.703190934, 6831178.125, 6833085.9375, 6833691.151472243, 6835767.433204627, 6836946.513270161, 6836953.87363141, 6837704.6875, 6838465.175256007, 6838595.3125, 6838636.211472005, 6838917.1875, 6844366.147857209, 6845551.5625, 6845552.9948584195, 6846934.664130047, 6847014.534580735, 6847057.676587332, 6850632.803968975, 6851903.125, 6852434.375, 6854418.057155834, 6858676.257055608, 6860385.9375, 6863253.125, 6863494.401371304, 6864204.6875, 6866660.809580188, 6867505.6461017765, 6869076.198496613, 6869081.699707464, 6869138.253452887, 6871225.854860025, 6872966.96968778, 6874859.210689876, 6878319.850668212, 6878320.820922207, 6881069.289599287, 6881070.267293101, 6881375.988645141, 6886779.667884069, 6898442.972611059, 6899284.209066198, 6905316.5260735545, 6910991.563913261, 6913264.0625, 6914681.616745702, 6917557.22704194, 6917843.75, 6918965.391648579, 6918971.157978896, 6919199.944645685, 6919204.6875, 6920219.44918593, 6921716.984663622, 6921977.6745137535, 6924722.571865479, 6925390.625, 6925818.75, 6926496.875, 6926527.0824776655, 6927302.648565816, 6927302.947488743, 6928370.3125, 6928478.147541595, 6928703.730582163, 6928992.98086013, 6931577.19189625, 6932868.192545669, 6933023.4375, 6952294.906276887, 6954721.727390415, 6954724.461607585, 6957649.7914127875, 6961012.5, 6962887.5, 6970903.125, 6973175.347802987, 6974525.0, 6974870.3125, 6978076.539646724, 6983302.887211541, 6987223.301693049, 6987516.728774039, 6988878.862577878, 6992383.420362582, 6992694.633494244, 6992970.3125, 6992973.884853492, 6993753.145597982, 7004373.949667382, 7004590.625, 7005554.6875, 7009342.1875, 7019337.559474962, 7023626.979752163, 7033115.625, 7033830.606250756, 7037547.986513118, 7040750.4453338245, 7043401.022183619, 7044015.298577969, 7047641.233145471, 7047650.873314939, 7060475.359047243, 7060794.725814184, 7064940.8815995855, 7075258.215369624, 7080292.349918011, 7081040.991893912, 7082726.13447334, 7085543.4191028895, 7090973.30232143, 7093294.474169813, 7093493.648888861, 7093516.9160294235, 7114678.125, 7117039.29026158, 7121742.1875, 7125921.793383592, 7136012.108888675, 7136865.026229575, 7153301.5625, 7159388.663399911, 7160458.936397496, 7161881.772586775, ...], [16.686781199745074, 7.850245396219203, 14.676457613726969, 80.8769244769422, 24.263087251940195, 9.984790868747774, 43.62565196017674, 16.707285594268093, 8.970925801110589, 33.295101373971804, 84.27013805686839, 10.554329278207419, 23.315536171618355, 10.7652802712127, 26.137168196686204, 21.872301078987206, 19.031978824381905, 30.76720461832849, 16.169047428805307, 8.422197687701562, 44.07597887487993, 8.97858574073193, 28.982584119212348, 6.831354774858738, 23.406324033772535, 14.02054656431554, 35.42145824435554, 12.98181324416003, 56.51598770628995, 105.2764319287392, 63.01051950331602, 27.019238007197337, 26.58986117054198, 12.73706305101036, 71.04981430309739, 10.914321060907152, 21.001244569479727, 66.32667567669961, 9.200435060602617, 27.538714101994557, 5.050696032902673, 6.834165383916413, 5.509831457234041, 51.24289435648019, 74.82766477251832, 115.14445763710852, 34.501714729346034, 11.895065623701447, 24.284713534955383, 21.29868859890713, 65.79610234562784, 37.86706817678894, 51.72076201753511, 44.144216527713525, 16.762589154427676, 13.43925341562544, 95.72160429053525, 9.805988335843852, 144.01085209295601, 74.38599875541846, 46.14276640101048, 14.969573214168287, 93.87720546144195, 6.989010798964353, 16.661149041118186, 23.26633865773688, 5.32664587263735, 95.36072778496721, 52.771717532142866, 8.432410163979661, 5.642413472326483, 84.68352387713925, 9.603153856125859, 8.665780749745151, 107.08909373389, 9.330148999730778, 14.062786757538182, 85.46477222577164, 37.02720107950499, 25.943178619967252, 5.567392584575883, 12.23225493261859, 43.67652153750509, 45.44391682537247, 28.048900887086848, 58.281890973506876, 17.737865420803107, 66.9529470235935, 17.997986766931703, 65.99880887660886, 5.664779741358603, 13.461190363898156, 12.179022707924378, 19.144203598629527, 28.077019257615568, 91.62243693046074, 38.57891685689395, 7.576908417375844, 95.35287872760566, 22.13009503034217, 8.05076841919132, 53.222191930461435, 42.186213463323526, 17.007787324487964, 5.825040257879137, 33.293007804014245, 72.50196127363728, 59.82514767327269, 10.856744668051922, 5.69827058260565, 49.64731134449565, 20.45709442323172, 27.748371682113387, 20.732260754475526, 36.545237321083334, 37.4748515163563, 15.528271212162537, 29.84389228325584, 6.931204357034657, 203.97016551091977, 54.83543616961174, 9.888566090395951, 32.42702546739509, 26.79788669393088, 41.95176885317372, 38.15034718639701, 7.740086283652065, 60.69443717649732, 86.47572392473639, 7.686877480702534, 82.02936903763057, 26.54263050971404, 24.177371866467446, 36.83046966973393, 49.80567670931287, 5.749022086935985, 39.95484832619661, 88.37275706230496, 34.82084393035652, 5.491744107971878, 9.984247344101117, 80.19643035293609, 5.361603284004963, 12.231191850114183, 37.722185210395764, 51.99311148495501, 70.19394551402144, 65.57012121934999, 23.36562788394042, 15.053001415139374, 34.95883290749857, 56.18583854330865, 18.93622298619301, 7.6264877527127375, 16.173419653842643, 35.63388100992169, 60.95246061393567, 93.66073888427454, 44.198003978806994, 71.80561502730706, 8.756171602382327, 10.079935907957365, 14.88135658435252, 52.96586905833911, 22.438345933021736, 18.34213973420276, 55.38783292824998, 10.158687376234443, 69.18025872152427, 45.87107152089233, 21.275516850411424, 8.353552816837372, 15.55001861825746, 10.12598510427222, 26.16636325951362, 6.24953909177435, 8.629235076764337, 10.882286714122563, 66.65992785081123, 25.065938367220248, 38.699788473638606, 54.086075212144266, 18.782061796366865, 5.591752914567696, 12.984464954061334, 27.613659236003866, 18.976414064472515, 68.4637312904824, 57.516800103285505, 40.227523214627034, 5.287663838400796, 36.76453490721379, 8.426890727233426, 11.806668351862184, 21.58225518320028, 76.48499786574035, 23.192022045669415, 5.534435093840859, 6.497151890762791, 39.55513724181239, 16.673764402760476, 5.886963532495255, 44.166022376636214, 5.713890456960061, 44.684452198187515, 87.36056466506147, 16.090728321349257, 99.42486129797443, 51.508057884711675, 157.47880220507267, 29.049016387992964, 76.34426197375296, 26.749955837912914, 25.45760786876845, 66.59859627656516, 15.951403871981608, 6.577813755944237, 21.158145955228587, 28.80280182486641, 11.493202372300711, 8.660249144440849, 67.46748801268537, 42.22505500007581, 39.52690601816316, 53.68724719928533, 5.475828783598857, 39.81851348436751, 6.013561038831637, 19.162918044426863, 7.196955136938479, 82.90495347191346, 24.792535998066803, 6.0092904316422215, 20.620297411889023, 29.95163027680248, 67.40975304650303, 13.649615276290117, 9.875768784845084, 28.824920393752382, 10.618556258687493, 47.35310465527607, 42.70951342167885, 62.09414887979321, 8.379154431858405, 6.754841122777884, 16.90802574422088, 5.448467540290514, 5.163405440991811, 44.90134507851187, 59.0276812605322, 69.28450809563898, 67.88556210101125, 19.21860074493621, 64.390849919725, 80.35357624233441, 24.790717210541914, 51.12684443522563, 44.26619942207089, 12.185316001708909, 19.37497034845854, 19.107848183953138, 9.930503844279974, 115.47964239697063, 21.994171111375003, 17.62960741560149, 47.536915007653725, 60.22720440960214, 15.498848192860374, 38.385628285455375, 30.80863608396505, 98.1702968105941, 11.064383812158963, 51.73305758282318, 10.673923606504138, 21.07060502618199, 34.699119386637506, 49.381847826055186, 13.585917581919738, 10.612943484179413, 21.16630920224751, 66.47545545634485, 62.54517610441025, 11.476070490979899, 14.97223269131355, 12.017089398401387, 40.14097190455096, 7.005843734026965, 51.93656855871166, 78.65967734671278, 36.07921675970364, 19.62891271478504, 29.322044833179405, 14.236748141641453, 20.033339838241393, 15.50172852338688, 75.87342089847725, 31.221685519590718, 11.70118873330685, 18.555635101391147, 47.278830386111665, 6.510080411414395, 15.516874930555767, 10.169561405935376, 25.663154972099196, 34.97256344842492, 16.446076098244546, 106.29217556240695, 7.635632893493641, 47.61231990493616, 13.147131504262488, 128.7658705284247, 25.778416023832644, 120.91665768498717, 112.75394560147733, 22.817757922396396, 9.745264057535211, 16.616202782291595, 69.94613000470699, 15.46216708728936, 66.92266873116489, 29.156997519626636, 11.205803260131052, 14.604753565216601, 146.8564517243423, 10.191563925323434, 7.269822766996815, 5.91795567451477, 8.753788414461017, 91.65437299034437, 5.343676956961525, 60.372927286775784, 23.713454655821526, 29.467717401306693, 16.041457463252193, 84.29996986790528, 84.98894736850104, 49.20680369301817, 69.26710704426581, 28.041654651109305, 51.090155558574125, 14.968161303626495, 109.98956727866363, 17.08919077038453, 7.419583738385034, 32.35288598411796, 26.107411543942632, 73.17001570723386, 9.687228710672166, 34.637096457137076, 8.581628501079956, 11.27208209845615, 5.165191865941947, 44.21486117679127, 6.586199658346751, 47.27700770691878, 55.94967072699107, 5.426486721862678, 48.27012119462157, 33.96631670039343, 78.31889671488896, 8.503052309254365, 7.920823488578492, 119.37670012163582, 30.87640866340486, 11.962595531283522, 12.808180506702755, 15.131434784666405, 14.658190268961949, 5.412576477879661, 59.763695263742356, 36.68441038580218, 6.39253537514186, 19.547563153428918, 9.294186668786335, 121.72747751800897, 14.796138244008764, 17.206476492076217, 34.168445142086945, 5.139600719130846, 14.050414708764986, 28.88780567052181, 23.76268256534989, 10.060439697534637, 7.168180037389464, 18.82475555789681, 6.15025359823402, 15.447097387906988, 12.320250851176294, 59.733903855686364, 10.963148072460827, 24.92765045519398, 26.114635670811232, 21.37423296620694, 11.726660616524608, 11.060629489618474, 64.91381069603374, 90.59848102418816, 85.52028466350602, 10.693961785947264, 53.57515315256383, 8.740060600172157, 102.48109503817828, 47.03785563187695, 7.646487495568991, 79.23327722406816, 23.341358808383276, 26.710355190076914, 48.40250068824727, 18.707096766484895, 70.82591398733334, 52.735654840782075, 52.82852692508844, 153.1997479712889, 19.369204996843553, 6.10099990820878, 146.9191741701391, 21.415235810742956, 17.746102082266688, 24.769651260796124, 102.14506302984033, 9.97465542392048, 12.784122854130239, 128.04557683980323, 14.813303660802447, 31.533372425706396, 32.95419623291504, 22.102406941360073, 7.38220184062081, 22.09671476062635, 56.905550546745935, 55.04621611436456, 28.770626331139155, 57.439121601343864, 25.65945819819434, 37.13074855809601, 35.43270913625469, 26.136292015162034, 99.2143240297934, 24.148519479222166, 30.100852858390006, 27.06380756433485, 76.9268904892914, 56.97501758450099, 10.063201096395938, 8.298943995167827, 86.43595361408435, 12.20370096532909, 17.045402106908924, 52.64857221355909, 31.497927178139904, 77.28949901162035, 72.47196738615654, 39.02481286209832, 61.36862263919582, 14.718443789578188, 17.199163258959224, 49.929351111625245, 5.641048401767656, 50.26622077850742, 18.474172996171575, 99.63133824583066, 24.571493089224806, 35.782769844361646, 57.27490144570379, 49.96911069143748, 43.2828118599919, 16.738376894798723, 94.16666332125011, 13.66264339199703, 70.16227364417858, 12.110007572095524, 10.443578876799611, 9.806768903171509, 28.4237850381873, 11.763829147920022, 18.67207396183387, 23.211923598767036, 20.42513436463127, 6.917490404886698, 36.47190333728925, 24.42481373495765, 32.765212723162016, 26.03483493857524, 9.103278709218454, 16.85122669833878, 22.442151627670377, 49.880611428616795, 8.099667545138304, 7.856835762031761, 33.48971938422131, 7.179594545411094, 39.30914896414892, 30.804070778213106, 8.27068014298646, 19.14801281096028, 54.490928429646615, 6.632971089798594, 117.12835208122839, 29.386339590585386, 164.28618302840732, 28.230734906887637, 72.07841838737724, 48.87614587360632, 17.03985483050136, 31.19025747132751, 13.36549746951109, 100.10549691780973, 26.6494185584058, 57.39849257170545, 81.64694211947433, 22.230622929001484, 16.442245870084346, 40.23271777750269, 21.458564096268933, 53.16830830655872, 29.20333454969692, 17.7576591124432, 62.075345373158704, 49.362815550413636, 7.609973429125774, 118.74890403562902, 11.850730778701115, 50.669135953823925, 11.405048138857838, 26.302584494425098, 12.458204396315033, 35.79590231744116, 50.491721165879476, 57.72520467105255, 37.05557443490009, 27.102807951958187, 62.866800393914126, 7.145021336418812, 5.354993961986296, 114.57495148511111, 6.480072546519185, 5.696235752850276, 16.877528520553142, 22.090955298830274, 20.67622464621342, 27.223227326661345, 6.406509242049723, 41.087982657549446, 19.75075152399114, 6.701963578909481, 62.87109716476953, 31.674881931543528, 20.67233946725315, 34.36836540561662, 37.30069695546389, 83.01776450825187, 37.23595692251077, 36.146654505331504, 20.23460900093937, 32.21476681603434, 15.170460634726332, 5.951672482769092, 67.91917427549126, 13.148344864400505, 6.949123083076525, 7.600256355898767, 8.411386216783198, 117.8046293091212, 99.7398409066644, 6.210359577552775, 23.03499685258455, 40.587898335901684, 8.370723508336473, 10.617166108304176, 35.00249246322326, 42.18674205567535, 14.477900594170073, 62.95319686794797, 15.733262268997137, 19.00588618167102, 5.4752475564360354, 33.15004722806476, 54.09630172967172, 16.895819397457352, 102.38561312383962, 5.906590619345741, 71.24837930448246, 33.60469430368436, 14.238468180921995, 61.33396255083411, 6.129799542278751, 68.63956661222487, 29.5355757708039, 22.776869340101403, 67.2883788932241, 54.7271191158383, 68.56092879003518, 100.30154720318286, 12.255587897452283, 20.653285116562763, 75.37989045332543, 11.838607295674068, 5.819205263956178, 23.469931652069047, 28.405420180555385, 59.32138058712161, 68.71634873929315, 77.19100264402286, 54.570527422458454, 55.969312293497666, 54.99905831725034, 13.288422605233553, 16.732312515401784, 15.126558275450762, 93.12785524702956, 11.239142019477523, 37.13526774740231, 109.84661728343683, 11.84468443613679, 50.42825061872316, 17.685707093551173, 96.44335824385765, 92.17123121242696, 11.261632766134312, 62.95412056388124, 5.266671444267214, 6.0068070355179, 12.415541383564554, 20.793029114426762, 17.719009464485904, 23.661613559616534, 73.55669145329256, 36.71709089165589, 55.234696506832535, 36.415631824186484, 9.750229522198975, 15.582282121364859, 15.488412882417354, 5.4526097041608415, 10.928768741086765, 8.45572139244234, 24.239412051556247, 62.12509195177013, 24.59827166774945, 16.41961761184144, 89.04489293445351, 52.362097335116005, 16.64882586164378, 8.887109857316348, 23.227954243671263, 53.91684510556704, 5.526921254025445, 54.83490243791729, 8.302582844915914, 67.77917726339297, 7.28087082394883, 8.564123437470498, 17.36113751581894, 44.44808530499099, 7.568668732437101, 59.188809750370055, 46.610974255911835, 52.02131915466382, 12.63085708528001, 11.100460614567076, 49.93015216648497, 43.94051623268807, 218.38651344243624, 22.563802003005865, 60.78461666607777, 35.49176802245857, 8.81926626184729, 15.285816991055459, 57.03929222061768, 33.53716872115376, 43.83152169653049, 9.17301955563253, 19.962669920109345, 7.978176999068259, 14.637222667937179, 48.35296924218563, 7.97887161763861, 51.34394374079926, 13.393956595001463, 72.03572113847255, 105.68420402254498, 147.05116546147013, 89.00403439629123, 8.065730759465726, 10.893080181381338, 24.420976086149217, 24.060099391048695, 14.921092438760779, 50.19662085324189, 13.080708476435063, 6.084727288937144, 24.383394434213322, 11.894127886124709, 64.53116919541446, 52.64546239291326, 17.193272327593114, 7.89953130825185, 59.97830880054541, 24.449652115698058, 12.286621423116511, 43.236718950303015, 56.35610125200534, 22.26821172912326, 59.82765462954223, 56.87992146728604, 5.059704641200022, 43.905375913558544, 25.27146285481394, 74.26026490801827, 6.785875032035595, 48.639837406346274, 150.96806765605942, 10.028488753591608, 81.66349808651353, 9.568830044056662, 75.54326754941582, 20.61365664944006, 12.646618656630187, 26.823313932999095, 30.669255961002673, 29.605462006934655, 51.39222621527001, 158.28962166428525, 42.126489967336504, 13.443044924347168, 28.075974117675848, 5.477165903592316, 5.70622960837119, 29.6459902405146, 22.68167209414709, 41.880389963456146, 55.7160191076023, 61.19951017189535, 211.4371713463493, 45.79545160453565, 25.74991301476447, 20.770015604074093, 20.090483511604912, 14.403386190787556, 33.228987148463794, 24.54207091945121, 94.54790896631447, 9.030046967565553, 93.86163630242706, 12.891674393502136, 81.49863092421775, 21.462855896401056, 57.70229042429803, 5.466818097653372, 61.68375334166391, 27.15770504973794, 36.98565588986373, 62.858226922590305, 12.61032369196744, 15.686014105111932, 72.31596858994746, 5.541926836971832, 12.67663812069929, 68.29186096952526, 20.242343611480642, 30.641499991862528, 25.934461662232614, 10.082458489376895, 38.70612527836062, 120.84881600054987, 52.31520904361238, 80.7953942102385, 35.221692689904295, 75.8809708867112, 32.746672505572455, 52.46849350062391, 11.802324565055022, 26.454098063395694, 66.37618872488466, 89.87507201184056, 32.658505660506464, 57.673712689052344, 51.6864724789454, 16.777046717026487, 52.02616399783158, 30.54925838654904, 16.550800669394253, 20.19598456792982, 22.191003172340167, 8.519234766455169, 5.92844707555248, 18.6270203026656, 108.61645712931377, 52.78846483900264, 32.43438410235764, 44.74505871790374, 30.1907008871677, 21.618392179996903, 6.046526627354168, 14.399076106724781, 7.233753592310291, 19.117530642128173, 56.632539018780435, 14.527093860545678, 7.791480867248339, 13.2278141858789, 9.580322265276235, 7.455980030399205, 5.640911493170522, 51.22694116841119, 55.6794459828859, 28.619437885908837, 88.13132978979317, 25.855898474635094, 33.13582704900131, 48.302670578167955, 10.463536557078875, 18.726089225419415, 31.477991638518034, 26.437294858357482, 15.727184085232286, 80.91520839003373, 10.48737979347712, 70.19770567627425, 32.88734238934355, 12.685330544715832, 7.899630588306294, 59.00185447447866, 34.56300094155336, 84.08406822297107, 44.19419117688518, 14.047611738540036, 32.14943891912376, 108.6792793016402, 18.998004597144025, 23.962041514847883, 8.723648208541608, 8.185215550449403, 27.850897855923517, 57.143396023485366, 53.06591271308265, 154.02622043596728, 78.8651997491687, 12.71094457358858, 36.62066468755634, 22.42098682542584, 47.26835836738202, 31.303565102923137, 62.11575625180388, 40.34264474599404, 29.847668299932323, 36.43692661803368, 7.430550643743398, 8.441960514714026, 5.830927792066805, 13.785206191299151, 38.49981098488858, 23.13644385079248, 124.05956413508997, 5.7029107204331355, 41.508526431992806, 15.198550615519578, 33.898835218007456, 5.281226494862869, 5.641788788358948, 5.179381325234472, 15.935761526596208, 51.09289009174236, 46.11981268423305, 65.10468889339104, 84.28033860905724, 12.32455726555867, 23.093500186353268, 47.59861988227276, 26.33195265535143, 65.77427049243248, 138.73146347545247, 18.086197392053712, 26.373561057108212, 51.28507038803456, 111.09975721588998, 39.816720978714805, 8.586094410030238, 9.548176518569727, 10.605754562049913, 12.54145794750008, 114.43224270439117, 10.490668646318621, 45.4804597765594, 31.844194016497056, 57.38046451418798, 6.5723009698904615, 113.07697116696384, 70.7898854725926, 84.48103712313245, 20.495372158627625, 39.62892306847139, 14.909092542669923, 60.63034120070707, 76.59961869190569, 6.18345893251151, 20.49250241466335, 29.415797458771838, 114.29983817735862, 8.663939194360887, 78.40923196254411, 26.229468091454056, 20.515704663727636, 7.028944466389089, 50.196823502525106, 5.657132691880731, 16.5467908033319, 24.86059206631354, 8.201557513243388, 44.94032798843003, 41.806204471152824, 5.308051268267771, 9.293468489827656, 35.80859668054208, 14.867266096602755, 5.8744490844850725, 14.344643023081439, 18.428897707800516, 103.1783358089538, 77.40756478132498, 35.21719817397761, 173.940606885091, 63.99481354794081, 104.59767498354772, 27.616936570973184, 32.512074853565274, 38.3003666506414, 18.500926851902864, 90.20199877697381, 13.463729462489354, 16.219909016873554, 56.78429416827411, 83.04065260090988, 64.64991487616791, 16.93950444578749, 20.912964678154502, 9.185686051821145, 73.1231394375686, 8.298533778194761, 25.146389954500087, 15.961909394685808, 6.350133683364581, 6.982238626875987, 61.89796573615944, 13.590432310191781, 10.904564397443021, 6.986768753667151, 43.88248154164593, 59.07041942401671, 110.87694633118656, 116.4033857802429, 8.479483191226402, 48.61197531655371, 64.77311541570518, 28.080413066102455, 36.291036969991154, 26.102098101138882, 149.83654172514562, 5.494340527205111, 109.85282830864938, 28.990087617838583, 47.83143235391767, 11.907207275790945, 5.615184687306993, 79.19470171338561, 43.730601965312346, 56.92715704245669, 53.921881325513326, 159.9494224272012, 94.53437735077563, 31.571740383294824, 42.57591475350712, 105.39414126069232, 16.96236074141472, 49.86161294131429, 19.683843217973987, 15.923555885012401, 10.19794508629285, 65.49893777196156, 8.880143619954328, 16.01890783760803, 81.81747969875018, 6.105153698955245, 5.047781463351705, 7.4554319666606395, 18.351739224880927, 14.450144401583906, 71.66189259919577, 9.247346716473995, 5.794163159714789, 28.906228456785136, 15.887028724141693, 37.65009945934011, 11.00248729614709, 13.63449900669161, 20.561323284093422, 49.20581607845363, 8.086230637074934, 13.124466681925005, 31.397986780640586, ...])
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)