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 = 45050
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);
([5743731.074716705, 5944677.373258142, 6044009.375, 6044028.104171479, 6046418.75, 6073754.197254663, 6074622.059512372, 6081041.710432135, 6087185.106701945, 6088656.235793663, 6090051.297943455, 6090567.879926811, 6090916.3281915, 6091522.563629664, 6092501.623656616, 6094781.173978169, 6100890.625, 6101426.540049487, 6104239.0625, 6107146.585458541, 6109585.905716589, 6109740.419352445, 6117004.430660812, 6118641.014492857, 6119106.4391190065, 6120485.700353129, 6121297.669373216, 6122647.537138691, 6123162.144615532, 6124900.572847885, 6125146.27683358, 6125371.875, 6125710.117175206, 6129940.89170853, 6130953.41150534, 6131687.17521209, 6134396.565086625, 6168454.0265164245, 6169293.75, 6171344.251799482, 6171645.825805778, 6171662.5, 6172038.119634215, 6175295.795549236, 6183785.9375, 6184385.0831411285, 6200918.048885229, 6201086.620473511, 6202031.897418704, 6223662.602067054, 6232422.4117656415, 6238153.44135463, 6238600.840384281, 6238880.7332027145, 6239143.526390309, 6239281.780362751, 6241098.4375, 6241165.818636495, 6242803.708584057, 6243239.581547611, 6243317.086753766, 6245631.768585779, 6249265.19269523, 6250818.981355379, 6253233.18664927, 6259572.626689273, 6264859.676935094, 6267475.1171561405, 6272829.364339546, 6280518.810117331, 6283760.9375, 6286301.900868178, 6286504.107702823, 6288032.122058281, 6291040.625, 6293204.769543118, 6294044.947416894, 6295283.553295849, 6295368.382314866, 6296989.0625, 6298103.015167658, 6303614.19800004, 6304648.180783089, 6309147.467519405, 6311673.460731643, 6311782.8125, 6311848.540162752, 6322517.1875, 6324789.021927066, 6325505.907905665, 6331137.5, 6336423.430400711, 6337435.9375, 6339208.559228761, 6340564.6670412645, 6352455.744788356, 6353974.12669199, 6355190.7174985185, 6359304.6875, 6361526.5625, 6362722.897069445, 6362735.176380662, 6365614.0625, 6366741.99433749, 6366832.108550534, 6367518.98877789, 6367560.0776095735, 6368250.866003471, 6369600.646033849, 6369869.850770487, 6370964.0625, 6371574.929451456, 6371627.726621911, 6374182.8125, 6385101.5625, 6386729.6875, 6386742.374069328, 6387456.25, 6393337.086391313, 6397333.905321265, 6398105.889847959, 6403442.1875, 6406498.4375, 6409429.625764087, 6411171.875, 6411750.367237117, 6414506.598161466, 6416885.539496561, 6420140.981096703, 6420807.505265624, 6420914.834829401, 6421492.91924288, 6421838.6587500805, 6423613.900231971, 6423648.175585965, 6424978.806403416, 6426642.009103986, 6426742.100100736, 6426888.133789126, 6426971.545335071, 6429304.468712479, 6429462.5, 6429484.375, 6429496.875, 6429618.891336023, 6429926.045563855, 6430063.839779675, 6431050.713500678, 6431321.870303193, 6432414.855881512, 6432798.822231236, 6432865.625, 6433485.562927266, 6433802.617827874, 6435900.001093201, 6437164.661148148, 6437186.62781848, 6438654.747957424, 6442441.529589294, 6443870.910919007, 6444405.154960002, 6444597.561181369, 6444614.11533332, 6445026.5625, 6445040.625, 6445050.912904153, 6445067.990134141, 6445237.245720306, 6445276.82797035, 6445304.0884221075, 6445305.243800868, 6445362.5, 6445609.982787495, 6445719.950630198, 6445757.116947997, 6445856.962697405, 6445921.875, 6445994.672669248, 6446003.881354151, 6446025.016681746, 6446323.4375, 6446458.808281402, 6446578.183392407, 6446605.904454251, 6446691.996059757, 6446756.345766835, 6447065.472375281, 6447286.480460827, 6447947.563988899, 6447968.75, 6447987.467462645, 6448046.735719759, 6449332.687673624, 6452690.67636911, 6454396.318059776, 6456108.728756739, 6460523.904663337, 6461826.435068671, 6461829.2422353085, 6461866.854188667, 6465114.906447117, 6466077.155905936, 6466525.0, 6466529.587441275, 6469175.5562020475, 6469688.364468082, 6471235.9375, 6472833.948128903, 6473005.876469682, 6474250.734999227, 6475577.224527241, 6476110.9375, 6477272.87275073, 6478149.674130228, 6478869.301707371, 6479323.597847811, 6479657.8125, 6481046.889845206, 6481907.706501608, 6482525.0, 6482614.6032185145, 6483079.6875, 6483274.909269608, 6483667.527732126, 6483892.77477972, 6484094.133292718, 6486285.027169549, 6486744.579797963, 6487807.506301927, 6488952.517352535, 6489081.0602434855, 6489150.951146486, 6489547.2343967995, 6489556.028105831, 6489768.359778884, 6489857.68491759, 6489956.706494147, 6490112.684556695, 6490136.979517607, 6490261.2797391545, 6490406.77486931, 6490458.928936086, 6490610.404901722, 6490628.32920188, 6490733.132163586, 6490795.679578332, 6491026.318898026, 6491049.137769668, 6491108.004076257, 6491244.9286770485, 6491478.125, 6491691.003418201, 6492041.912477071, 6492365.625, 6492398.390015149, 6492543.75, 6492625.0, 6492827.942942217, 6492995.994628868, 6493066.413192188, 6493139.599938317, 6493535.963328899, 6493610.4615440685, 6494676.5625, 6495237.672316499, 6495468.709370176, 6495621.875, 6496390.46365848, 6496981.366081433, 6498318.445642988, 6498323.626610152, 6498547.981316927, 6498905.769814236, 6502482.390041465, 6502667.714257122, 6505195.7306476105, 6506134.6837970875, 6509416.396896872, 6509442.1875, 6509654.675563657, 6510656.750783725, 6515491.874583125, 6516793.547457202, 6516845.3125, 6517306.25, 6518014.173190899, 6524007.8125, 6525371.96260066, 6525442.932703616, 6526130.626549039, 6526339.995386219, 6527089.045954665, 6531695.184510534, 6532132.8125, 6532670.3125, 6532882.709386957, 6533358.873105366, 6534126.5625, 6534206.25, 6534216.545187497, 6534307.469275941, 6534323.440888318, 6534528.882268282, 6534596.015354257, 6534741.56288943, 6534909.375, 6535026.84985408, 6535054.486986576, 6535283.292384847, 6535342.793875121, 6535349.418262652, 6535439.0625, 6535955.866436076, 6536022.034521937, 6536716.165136881, 6537516.350028188, 6538021.875, 6540133.788666131, 6540379.6875, 6540654.6875, 6540895.3125, 6541252.977602085, 6541814.013300795, 6541916.887731324, 6542960.31295623, 6543999.65226949, 6544119.425108623, 6544992.1875, 6545409.375, 6545521.234827639, 6546097.528674887, 6546130.240290887, 6546490.936069854, 6546640.106989001, 6548584.710001004, 6548727.462171303, 6549561.179316423, 6549605.9593027895, 6551270.3125, 6551884.015786614, 6552086.771701202, 6552254.6875, 6552710.680050515, 6553145.3125, 6555527.732464729, 6556650.0, 6557210.017346765, 6557591.454194425, 6557866.604257237, 6559289.264211126, 6560635.762844611, 6560886.868757711, 6560906.25, 6561612.8260106705, 6561640.625, 6562440.986156707, 6567862.183884614, 6570050.0, 6571011.978049414, 6571383.237895554, 6574156.25, 6574697.751235878, 6577561.039589881, 6578246.614142759, 6579398.546857889, 6580092.7337318985, 6580537.336791109, 6581129.6875, 6583749.062622032, 6583800.992924651, 6583992.189294602, 6585350.0, 6585363.8481521625, 6586351.078745776, 6589120.41741409, 6590829.537802231, 6593160.9375, 6594317.1875, 6594526.355647878, 6595286.526931914, 6595934.375, 6596047.10764395, 6596549.98952149, 6597270.0653987415, 6597585.876465833, 6597898.4375, 6598074.213877747, 6598957.376654996, 6601551.5625, 6601591.361316054, 6602534.897646042, 6602602.749354703, 6604826.477962565, 6608307.601999231, 6609714.890231308, 6611315.680441228, 6613012.263292223, 6614314.82995815, 6615327.142762568, 6615480.366048968, 6615657.334390445, 6616264.490327745, 6616459.094882347, 6617751.418799461, 6617762.531754384, 6617818.354844865, 6619060.828819285, 6619654.637404031, 6619711.516128671, 6620304.400870505, 6620704.5349736465, 6622571.711067434, 6623651.171137986, 6623784.375, 6624330.380975057, 6624439.0500168605, 6624506.173592545, 6625390.490850084, 6630386.731910318, 6630542.1875, 6630593.465818531, 6635046.85846387, 6635427.584795478, 6637914.936558218, 6638260.9375, 6638662.5, 6638676.214848754, 6638681.9659129465, 6639251.193611137, 6639318.473946421, 6639324.660346573, 6639713.3757341085, 6639715.53714448, 6639818.75, 6639928.599309223, 6640076.5625, 6640155.407828332, 6640702.454775732, 6640764.6935265055, 6640845.3125, 6640848.4375, 6641158.727345456, 6641174.191638346, 6641197.089552037, 6641354.869564756, 6641712.945847884, 6642561.97399467, 6642697.183402984, 6642828.102585958, 6643120.811362118, 6643317.701437662, 6643382.8125, 6643975.0, 6644042.475328737, 6645177.911717584, 6645180.084654909, 6647796.875, 6648893.75, 6649841.466815973, 6654200.0, 6654821.875, 6655591.249953095, 6655815.560205289, 6657446.24452577, 6660188.365892492, 6661635.9375, 6662265.625, 6663907.8125, 6669792.1875, 6671848.123314364, 6672683.2319850745, 6674012.128219047, 6675325.0, 6675554.9676568145, 6677212.449260454, 6677234.085326347, 6678073.4375, 6685214.038772904, 6687635.802667294, 6691342.765033326, 6694379.102867947, 6694527.2391611, 6694605.625244109, 6694949.748873821, 6698382.8125, 6699473.4375, 6700051.5625, 6701971.210776333, 6701988.200743165, 6702190.625, 6702871.466245827, 6704184.375, 6707393.15591754, 6709511.992729324, 6710223.758748343, 6710293.340002619, 6711457.8125, 6712117.1875, 6712163.027329043, 6712195.692631402, 6712618.5757766105, 6712673.702794432, 6712756.25, 6712768.947837437, 6712778.237942186, 6712786.840359606, 6712797.502218165, 6712812.8128997125, 6712899.112885292, 6713027.107980001, 6713094.925397314, 6713184.6988939205, 6713201.048434025, 6713204.6875, 6713540.625, 6713564.473927798, 6713590.399740616, 6713612.47342547, 6713668.069237582, 6713684.848485019, 6713698.4375, 6713702.011512193, 6713755.379129445, 6713829.6875, 6713858.254216048, 6713988.919628942, 6714063.840715333, 6714117.1038605925, 6714171.875, 6714581.25, 6714649.40430227, 6714672.7039780775, 6714713.545671203, 6714720.011210663, 6715098.19516578, 6715226.5625, 6716791.141428749, 6717056.957640239, 6717852.38696138, 6718371.217355839, 6719015.625, 6719192.289217417, 6719928.125, 6721108.772948626, 6721198.575346768, 6721574.452085528, 6721828.125, 6722539.739454008, 6723020.224157892, 6723640.783196008, 6725397.568852817, 6727256.3431261135, 6727903.125, 6728837.564396725, 6730633.286117489, 6731049.933089735, 6731681.26264478, 6732290.625, 6732568.75, 6734455.4991700705, 6734898.248028924, 6735304.075331434, 6735460.746793721, 6735769.6164371455, 6736121.369881036, 6736144.830005377, 6736205.328508316, 6736478.125, 6737367.1875, 6738312.5, 6738588.579355875, 6739183.267721243, 6739494.002552203, 6740285.38795321, 6740564.030240068, 6740581.253462898, 6741496.875, 6741520.759284631, 6741954.426408895, 6742037.481022495, 6742229.968362762, 6743414.775529893, 6743511.067798782, 6743949.724398636, 6744962.02888513, 6745039.761973658, 6745215.752498752, 6745904.454588988, 6746040.625, 6746082.8125, 6746228.129247651, 6746512.265547826, 6746603.298692653, 6746607.762705976, 6746848.442665786, 6747550.733317831, 6747598.160365914, 6748529.857246345, 6749089.071150365, 6750740.625, 6750905.037807371, 6750961.978207954, 6751366.559309568, 6752565.769041184, 6753194.131943862, 6754394.0081642335, 6755062.242011599, 6755127.555456102, 6756668.12275858, 6756728.125, 6759908.422631993, 6760346.273966481, 6762190.095444615, 6762890.625, 6766449.951535766, 6767022.674039, 6767678.08197512, 6768403.671202514, 6769455.6128561115, 6773032.894644839, 6774598.9404761, 6775830.063756373, 6777638.953754865, 6777933.142586044, 6778563.373910258, 6778737.902056575, 6778772.991011665, 6778996.875, 6779299.933610682, 6780474.909175231, 6780842.154089671, 6780946.84789217, 6781338.8658783445, 6781612.5, 6781675.50196025, 6781804.41695782, 6782518.612008965, 6782531.25, 6782547.551430023, 6782641.797624552, 6782740.098291602, 6782808.047745861, 6782853.125, 6782939.795698291, 6783355.871456628, 6784190.165249648, 6784631.315954422, 6784633.334884333, 6784698.057012985, 6784703.058609539, 6785111.088806139, 6785285.167881311, 6785714.0625, 6786284.258733164, 6786658.670801825, 6790649.340369391, 6790709.484871951, 6790717.10939903, 6790737.176696157, 6790739.844498393, 6790762.652756431, 6790770.171715392, 6790795.084835191, 6790832.945629493, 6790859.375, 6790875.0, 6790914.483276346, 6791402.556184073, 6791449.44632438, 6791472.165101384, 6791559.580528404, 6791660.9375, 6791725.0, 6791731.25, 6791803.125, 6791890.157400994, 6791890.625, 6791907.8125, 6791975.7097842125, 6791996.875, 6792000.084821697, 6792168.472761762, 6792246.346800635, 6792426.5625, 6792467.390396271, 6792766.359911385, 6792821.174876945, 6792884.841399075, 6793080.056147158, 6793141.943722475, 6793490.483042313, 6793509.375, 6795776.7215294475, 6795941.360319004, 6796060.14072393, 6796397.935090341, 6796445.466708204, 6796892.1875, 6797011.459739254, 6797052.792887087, 6797536.9936086815, 6797791.80134788, 6797814.989897551, 6798715.187617759, 6798725.0, 6798938.1065452555, 6800073.4375, 6800145.3125, 6800251.7850196585, 6800257.812367014, 6800347.392141577, 6800418.498763472, 6801366.397245686, 6801382.745179474, 6802127.9705209, 6802903.023116629, 6802970.540187732, 6803207.8125, 6803264.448000273, 6804332.8125, 6805889.34847196, 6806646.497273095, 6808107.49793021, 6808557.244950683, 6808901.00820252, 6809180.201114014, 6809698.215621209, 6809886.66054088, 6810018.2218674505, 6810223.475997958, 6810790.400440319, 6810863.9295855565, 6811531.039998026, 6816182.115955637, 6816959.2558691, 6817801.241135788, 6820270.774731914, 6820601.5625, 6823893.464419757, 6823922.426994188, 6825225.385425247, 6827846.480319637, 6828755.332445273, 6829235.9375, 6829718.309289848, 6831203.592028636, 6831251.5625, 6831492.070677497, 6831518.75, 6831657.8125, 6832244.963734154, 6832736.829799598, 6833236.47199129, 6833285.9375, 6833779.400041226, 6833852.5857515205, 6833865.239627722, 6834694.248874463, 6835949.912502905, 6837861.778425213, 6838232.8125, 6838546.248199523, 6839106.518801107, 6843792.1875, 6845033.316317567, 6845510.335399507, 6853986.7811308615, 6857204.56150596, 6859090.769712185, 6861809.628219979, 6862526.5625, 6869236.421371041, 6869662.694948234, 6869869.139655374, 6871283.977088188, 6875037.588367325, 6875040.064443616, 6879570.689429018, 6881860.9375, 6885817.251173643, 6885931.131265074, 6887177.002396235, 6887428.9945249865, 6892405.574205745, 6893673.1706225015, 6894562.323363163, 6894863.494714386, 6896356.630062711, 6897387.105271745, 6898832.8125, 6899692.403137048, 6899860.9375, 6900584.375, 6901230.695299055, 6903558.902884524, 6904418.0162571985, 6905167.476507532, 6905199.288568594, 6905210.328255524, 6906884.784160756, 6910714.028654021, 6911132.8125, 6916974.758441735, 6917025.118309598, 6917384.597383101, 6920094.685653899, 6920193.629859142, 6921281.376841953, 6922826.5625, 6924670.123994369, 6924685.773119005, 6925809.913997275, 6926363.049164773, 6926492.036359613, 6926675.879992537, 6927743.819833774, 6929571.875, 6930249.626271653, 6930631.525803439, 6930915.987801264, 6931582.69312571, 6935888.706819604, 6936431.1029028995, 6936996.521406374, 6938819.253720088, 6939076.5625, 6939077.60651618, 6939817.07108111, 6940337.218736964, 6941353.125, 6941431.684246613, 6941660.9375, 6943126.5625, 6943992.1875, 6944035.9375, 6944051.221921247, 6944370.256608726, 6944439.907763189, 6945717.405179805, 6947348.4142757645, 6948178.125, 6948319.218192405, 6948412.096379843, 6949278.125, 6950328.119219313, 6953509.555880197, 6956468.674375335, 6956801.190178404, 6958160.736303208, 6958587.124488995, 6959588.334558898, 6960515.338955035, 6961191.598944213, 6961258.901245456, 6961977.645097581, 6962533.183999091, 6963546.4561268035, 6963820.578243584, 6966102.420430139, 6966175.392848604, 6966836.911138348, 6967001.786346076, 6967009.166445779, 6967108.959365851, 6968568.479630818, 6968706.949704365, 6969532.46461139, 6970398.4375, 6970490.625, 6971049.570544803, 6971443.178309509, 6971822.90185048, 6971879.189508274, 6973626.719532581, 6973881.574888605, 6974140.139087733, 6974431.991136632, 6974515.625, 6974937.49471714, 6975079.639996773, 6975213.001069528, 6975756.15406586, 6975760.925493005, 6976585.350012113, 6977355.433859984, 6978920.71442556, 6979024.528821079, 6979433.974303041, 6980029.265935471, 6980429.6875, 6982221.845938879, 6982694.648005322, 6983593.070039728, 6984257.8125, 6984413.087566108, 6986176.259875866, 6986376.5625, 6986550.0, 6986936.407714111, 6987095.3125, 6987119.787741045, 6987768.5440218095, 6988008.882536249, 6988037.031327523, 6988100.772545485, 6988146.831011767, 6988204.6875, 6988731.25, 6988956.083955553, 6988971.968509919, 6988995.3125, 6989029.2931590825, 6989030.711416891, 6989043.579598752, 6989191.288618502, 6989339.0625, 6989474.840582617, 6989799.18872092, 6989802.303264224, 6989961.476534294, 6989967.688722774, 6990077.98053442, 6990246.088619529, 6990306.317287084, 6990342.874226559, 6990381.219200205, 6990693.75, 6991204.6875, 6991295.15777009, 6991696.778662843, 6992057.8125, 6992172.390328229, 6992645.020072417, 6992768.003463708, 6997009.775849799, 6997565.625, 7000363.634162587, 7001058.787999352, 7001416.563961256, 7002165.863689105, 7003410.371659478, 7004069.230344626, 7004077.443507413, 7005417.1875, 7007608.554594019, 7007653.125, 7010010.149947278, 7010431.25, 7012507.8125, 7014171.621369549, 7015504.799475797, 7022122.655993792, 7022390.775689111, 7025554.1708796425, 7025656.424297697, 7028140.384861419, 7029323.4375, 7036213.070973577, 7039516.442932617, 7043164.423184243, 7044393.75, 7044395.3125, 7045284.851595817, 7045391.858794915, 7048231.461332847, 7048853.181113128, 7049404.075964276, 7049738.591786083, 7049769.407240177, 7051902.723059955, 7052857.511465469, 7053816.1201085895, 7055008.951914908, 7056609.223881125, 7057917.1875, 7058557.815692041, 7061581.803867811, 7061697.078102341, 7063084.375, 7064021.861281566, 7064439.0625, 7065579.506861465, 7066237.414829729, 7069738.186061214, 7070095.3125, 7071056.623266204, 7071059.433871067, 7073321.671692676, 7073772.634591993, 7076635.77486074, 7076751.358237055, 7077119.352140403, 7077471.198433551, 7078709.375, 7079376.365038684, 7079785.411555293, 7079839.667442158, 7080239.0625, 7080245.666198374, 7081367.1875, ...], [37.54456981218944, 18.38307174876703, 52.90431083072257, 22.964435032531807, 75.68654835261238, 18.982431296738305, 16.471008177756453, 64.17085289397023, 69.94837063234439, 29.58668824578454, 6.061013065666989, 6.6014044504968075, 45.49295669082109, 124.95066948872592, 11.224663241910621, 27.106237480142646, 49.47085945608236, 28.088110876509077, 36.26781192424694, 38.25900374722337, 23.701171779530718, 5.390670086782861, 39.81938235939175, 6.843839465028458, 23.001646353719988, 24.58823711621789, 19.17913619333366, 9.961955309717105, 9.047957475240633, 13.157557262421363, 15.142899842414307, 34.19728509638425, 48.775063494223794, 16.065852766458264, 113.49252898723411, 24.68110234880441, 9.082416292369661, 54.74673338087784, 30.26712020566357, 6.3327494905945825, 86.97409831284233, 33.653309564443475, 6.348792984006493, 5.73820604049831, 94.77216790572281, 6.164971280695547, 6.948589070362474, 18.061835714625254, 12.316855692406598, 5.466164490817217, 6.3374834659860735, 16.301990877306885, 25.65241080132478, 32.46154744064961, 24.778160914362633, 17.439077156447375, 40.33524436858512, 128.024813210023, 17.75622466431405, 26.552465676781217, 5.80656332439764, 9.812094749598796, 13.515351535998448, 95.65926415189811, 38.49353806744364, 17.53453959999817, 16.97983060913154, 11.315903965672463, 88.53194164286097, 18.518648805266004, 66.23311010378943, 21.719896528474145, 20.73237612087669, 7.95235263140088, 38.960880955815156, 56.8318157074784, 69.59218149828234, 34.094438950227335, 8.101260992437636, 38.15207905134927, 26.527269772963372, 18.219975020482472, 76.52683464644434, 151.34001036477977, 11.16421455797364, 75.76567695724414, 15.347802949828733, 40.95133812729293, 34.748574444097216, 20.55801730116215, 81.25301475604041, 28.385278179904667, 65.22546776197258, 10.054166115269496, 95.75068690557819, 88.12962418747338, 30.893602042062383, 20.85021686385605, 80.55082721245824, 30.486749090260723, 32.45953225494901, 8.761288589656267, 116.67086047559016, 71.59809490400866, 5.084848639384187, 37.3589357027853, 8.696705233305375, 67.37215165241035, 18.14851431868198, 21.883557138906916, 78.356750870687, 27.518037716783446, 10.557314945035259, 102.38959873310999, 82.64447337594757, 32.07324564437754, 35.49593298365978, 35.57019221190908, 26.911600292081744, 8.963513170068127, 96.50694584042859, 68.5877097750117, 47.93149775995703, 12.796341688039885, 67.68257220934579, 24.724907154794828, 49.68408166892169, 22.57471490340101, 8.48431349291583, 29.56840104844562, 6.928155920901422, 172.6692561058268, 11.20537129522177, 25.6853957263018, 14.410081119621134, 9.9826930909051, 22.598453700032778, 83.32718436666201, 18.069799587408045, 65.57950525454508, 14.168386976155292, 64.66360357324207, 29.054903527616183, 67.85982081188166, 7.6551691181602575, 13.673290658893825, 24.79076329932068, 6.361758846753321, 28.43245942817748, 45.52240475961611, 11.787488975968063, 41.67164543917127, 13.382441013017555, 21.421851566195446, 149.94192799949448, 162.02694017170884, 39.78937989986741, 9.38305192350477, 60.056003020035746, 14.866084908627023, 46.74438144865543, 18.413051728682756, 8.314715484431716, 75.03024945184765, 60.58737092756513, 5.579090101895894, 172.52261388049172, 68.97109353782582, 81.63458858146268, 7.993295848867389, 24.378944573834183, 35.41251567461555, 12.232224150465877, 22.991353103570923, 12.82058842481871, 5.313621602305593, 89.43256734901216, 35.92892842235159, 12.55911580928053, 15.227051268725521, 89.92337118113998, 29.35441737079273, 5.617282736635065, 53.11281177218588, 6.725879516427198, 104.95204991177133, 92.23150353714041, 48.353408008567186, 18.431930506590533, 63.376417636081655, 65.01707230447485, 6.073734074737591, 9.22803956200598, 18.712128060336923, 20.943293633401357, 20.148572370658577, 60.46116458063894, 10.934198851212537, 22.057062263889833, 99.67798850767554, 12.764847779877948, 17.81643921060417, 79.204665372948, 36.37665798556479, 67.60348572378497, 71.655833550295, 51.55480030621084, 69.50596768111792, 36.8205490588785, 5.494223360653483, 27.1390067025232, 48.84060640369551, 20.870626352103343, 25.657710752761904, 9.845958730325561, 9.470769199533255, 75.90972645497673, 27.661535522786917, 14.474556455296215, 50.9087135119075, 17.499607452454622, 60.61737076225385, 6.0787146024597485, 9.636670322596316, 9.882798008632955, 26.469151889753046, 13.018493301177493, 10.147709050112752, 125.50143553616584, 83.03824559075835, 74.87928664598086, 30.24676165994505, 16.51454945549918, 49.59646437087174, 16.90955939149386, 8.220242585437674, 17.02294411467828, 207.50389131052276, 10.401190309094453, 15.621825871330145, 17.40719296750584, 5.678945475301976, 21.834723198030666, 91.01268560469617, 9.617159805563743, 38.23549806969868, 10.767156053127026, 18.508299497566522, 15.725702747610702, 46.82226860293939, 35.62583427886943, 28.880162365503445, 51.68477284650757, 84.95395435596072, 14.763556403673816, 56.656227300313745, 61.69726956726863, 25.384033014917545, 9.983477001619692, 5.0550814241212825, 12.086334550878977, 59.18845726585946, 5.2320167068973875, 30.49664440990248, 32.12595599117722, 47.059765118355706, 31.69725505192717, 22.328641307505297, 15.403220139588798, 16.737163497488638, 15.714871915602108, 18.472841571226358, 21.22892719914919, 17.89591811942807, 12.064654061030591, 73.79078554384249, 16.265432328196287, 19.01320050577072, 68.8881772077372, 37.064004639485645, 26.165162704048356, 114.1196239003059, 25.080915338469254, 84.54443448307036, 33.03678201845531, 6.281285396125031, 44.051067290822324, 112.77272694739999, 18.820889165414005, 20.34408595539958, 109.77854705688254, 28.201549342215465, 6.467213199431327, 40.62831950361918, 62.43536796837344, 75.00697015108332, 21.474221049234938, 41.10063955106372, 55.8822657538294, 33.33667845930108, 9.05712374275741, 14.95443984954197, 28.441339447844094, 5.1458131060004435, 18.321272486387542, 76.74812261661926, 98.07215567006298, 49.728454927364965, 8.557770623765878, 26.25828563744663, 93.23725673047262, 120.17895958687444, 47.54586391059828, 7.66197134753036, 21.382149004378768, 18.678846771368946, 62.51143022069499, 26.89969334360818, 86.44579254099834, 108.75240587824764, 64.368349506172, 5.5259693646647206, 14.832359680416854, 23.753696956174487, 12.997419104539572, 83.26730138951572, 18.339085261774304, 60.00572776549804, 38.73610641632377, 25.7921897782454, 18.198093308378095, 8.60226403263635, 47.624497735392744, 105.87325808123748, 16.393155861848992, 6.638019598751822, 8.418732027579166, 23.870303712643643, 40.62098467370728, 56.0084355201135, 10.152752963690606, 46.39147412353474, 13.331910431782923, 68.93139331068427, 10.564987439181493, 38.87817370990694, 25.196112906575063, 174.51318613499697, 16.34814399500582, 5.829057454761771, 80.65968829397976, 32.19752710442121, 48.79529555372653, 32.4976848276026, 64.48084552488865, 76.97573995563558, 12.789671704450857, 67.29230113577556, 92.71815411773, 16.85555468093743, 97.63919800287577, 20.710936623600304, 11.291119491917904, 5.917005937979752, 9.42561550750608, 63.19281439035663, 135.09756250333882, 47.27690253336941, 7.84614502843328, 18.378658918458893, 14.948354017353886, 59.88619120565245, 11.35189350119523, 16.80575772597964, 73.20634611133444, 6.072669091716952, 28.561496540794003, 73.3581757731855, 7.530097790518096, 12.193631471462448, 44.2976525537797, 35.481609335339584, 11.11136762416083, 50.5692005684891, 14.713869266090061, 64.61569185479296, 19.37936415791668, 17.509993072400423, 39.447095019609705, 85.04896471616009, 52.77845675278953, 73.83862963038106, 5.339033214751411, 9.159537088715458, 10.145344711209876, 7.623413670278784, 10.776832837748973, 7.338947759099258, 73.30644345083242, 5.312517647187082, 25.35854357374507, 35.78805037688771, 24.00807744602771, 5.393008765312778, 7.129824011863972, 5.905716251101875, 10.961977333611816, 54.22655236335486, 7.28234241954156, 10.70741303600042, 32.93103552840181, 79.02798648464605, 22.649892021837772, 47.886572407418235, 18.462202291777405, 73.83927681007786, 7.101510273677201, 21.311661716995538, 68.64318530949775, 34.89503759312029, 5.519445464312553, 60.014630301292385, 5.230273500348922, 12.837968916849658, 78.86818051166654, 51.80467063705368, 11.518892827642127, 52.0878989482365, 22.908936825461442, 145.13135153179894, 8.114774737021925, 32.24191855042474, 10.99310469459989, 39.294650821323856, 32.13481269244685, 74.73873361846877, 5.754188319443569, 86.42534601710304, 39.49650489025986, 86.5430151092881, 30.200157136164183, 110.51005512644319, 34.50571677594007, 23.401464588983828, 5.348199323799721, 16.965138575103953, 6.9897209099152775, 48.51551400700747, 59.60478166048028, 17.25832829711421, 5.740266145623648, 141.78513803377055, 85.18057634433562, 28.529106759952953, 9.157345116898242, 7.753488377458359, 45.61893934102579, 77.03493392012597, 19.54201072664821, 69.43339883046343, 33.75123983398976, 88.6226997351512, 14.700162694303597, 55.04637835383925, 29.734233153456813, 38.606564240203014, 100.00806356623708, 65.71859423998808, 101.33563668697742, 64.50463234707924, 9.713213995520764, 76.61017640817485, 36.696411754463874, 16.12889322107052, 11.049313112488377, 10.703228289624127, 105.29689923231088, 49.19703891087304, 7.5551882621968565, 8.617577884757692, 20.688445896038537, 18.3494089964686, 5.151062402898199, 62.646664432422284, 93.7508750909542, 35.89976934645236, 40.28403074233685, 35.81879650484934, 29.935904301373945, 84.37427296481977, 22.45432231585096, 125.67700629850265, 22.666596353726554, 27.83246386954726, 5.727512754144318, 63.683505944930886, 36.35207365529989, 108.62619546888453, 6.3362036593629, 11.778844325015594, 76.25503570510729, 16.059263149722902, 47.94526178298686, 11.451691586192672, 9.428763584012744, 7.966052916837415, 95.27233305695195, 49.000124249645616, 64.77479736831414, 8.59776004777863, 6.219498963933937, 14.201597743035034, 21.353922891849308, 40.049096833134755, 74.3896971739936, 26.879719067276998, 21.150908700620057, 11.08642161589029, 45.89028470731756, 17.116302966985778, 47.70963539394785, 25.353562452327687, 26.46621158316283, 67.04022407394827, 25.864590465302786, 18.360964227226063, 88.48931001296219, 55.900360283279255, 32.1147534956104, 72.46217009361415, 47.24332838025298, 19.44207824898481, 33.42750233789326, 67.50922093576217, 61.72690401128559, 61.71115304309003, 12.401115188708243, 33.13846632111172, 10.141607705980114, 6.388715274751836, 44.11302844061203, 9.418917880381793, 72.7174432441539, 65.04182017480932, 61.01274274817074, 48.11233570011851, 42.091832285639306, 57.20352900078699, 9.25780555459967, 15.580827830126555, 46.896533952478556, 101.63676807071823, 103.01302405507278, 5.246951206412435, 17.117036245725348, 27.26746738170079, 11.147529094565513, 29.977549370034012, 29.578902627202705, 68.14107035871514, 39.68292909052917, 10.289014839963873, 25.254986989311675, 7.369496444456011, 10.420401918423114, 51.71728595184075, 9.939383694076257, 88.44650546687029, 45.711656252537104, 134.73069406992647, 10.44809345412177, 47.5797283746457, 76.12805885769677, 6.984115998920231, 14.819958971951975, 19.670337712432755, 64.09161617582808, 6.325346352000433, 5.690340544361188, 5.130096813051001, 22.44975765450718, 18.595687744369553, 21.341417908826976, 21.841860757320003, 27.00341374459344, 118.69155741575472, 29.501053110562893, 76.0848260266864, 45.165688002861756, 33.846815182339505, 14.957724233574202, 75.6632766522652, 9.482719207916897, 34.578590474211175, 5.9398555195997895, 12.506667154938702, 6.709412013703988, 138.12608430852035, 14.974583388932535, 56.74735831572402, 21.574483757049716, 5.776355221824732, 20.303033379759388, 89.22837176378619, 11.782248156900641, 5.833332388605449, 24.30263680000452, 8.892169208598473, 27.882604492243708, 67.04065745071003, 17.920234101943777, 7.992409757963902, 21.20325044779327, 67.44190774485668, 20.391067700081788, 151.22609839318423, 37.13613897239367, 17.531888936296973, 15.832797289711435, 5.2474501891571785, 91.3348285555361, 13.635079266489608, 56.73913279629453, 11.686072244287983, 34.06042530772237, 81.93277104801376, 22.04404965875187, 136.43030007956008, 59.3916658249712, 49.21348511933143, 93.94418071459258, 27.9994016282876, 7.070707523719247, 33.54580618314377, 8.571144615265226, 10.729619631292374, 24.179791015919196, 79.44582636450349, 70.03360191203485, 19.734552052557067, 21.230743912967956, 5.350047841344407, 57.71731180076448, 18.736030295732537, 22.796758213175213, 21.904233518884855, 6.776745679646822, 36.19154784486902, 17.203132439438313, 9.275890179114068, 9.462704073142671, 19.16800575491669, 40.71399734134555, 68.00339242268907, 17.5917463956571, 42.67915192633489, 11.303899225080329, 11.00778559753598, 43.36517562870915, 103.78786360472938, 15.557567833118283, 40.8720349260029, 7.062864437862476, 23.129012850356148, 54.96383379370802, 94.80545217834305, 121.59206658385932, 28.39051958190923, 10.360094395002092, 133.90495057803585, 99.50318934255206, 96.96672975246456, 34.51501135000539, 99.0852900508625, 39.537122298154074, 32.84413159039214, 79.70120986660538, 36.468304429457504, 36.42528200290644, 36.589380737716475, 5.247525495685383, 143.0511751902932, 39.03701513141176, 93.0734105732395, 29.241068860970564, 104.05519957645356, 5.880668644915575, 14.424693282190766, 7.742244485560482, 24.496492252405353, 45.62229436735791, 128.6594785857518, 15.584400196299487, 127.80040098550117, 52.19624946521459, 43.13267435715383, 20.9608263310419, 46.07874931023962, 17.39198286603811, 13.810634984061233, 84.24277489446558, 60.17824864142848, 51.089943284547765, 13.500876566259683, 54.005030994549834, 13.849449437679025, 57.83377105256607, 31.827725432982604, 28.629139902616984, 28.52259796632199, 26.084409648422934, 24.884288712555087, 12.595691590309858, 36.659897177607384, 12.821790975952442, 64.72278668718685, 35.79009052244746, 54.583221902525416, 8.501529404131587, 43.49827857716538, 5.172075625768395, 10.584518071046135, 8.126949763490895, 42.81607994021047, 20.968030626615366, 17.426336585310114, 14.158270206795379, 24.448505771947673, 27.732313752424762, 8.307041155033463, 14.14951333056813, 14.457999126663557, 25.247407813028616, 170.09105763038312, 28.591766000648043, 114.38242178850373, 36.25401187002916, 45.04291090655817, 13.954333840157549, 29.731363999147042, 32.5061546293542, 7.4664649747629115, 74.6993834921365, 44.09361895748035, 22.105665195902695, 17.08066600700904, 61.40453310827138, 81.1204728971358, 77.28344946657423, 67.8092043441883, 6.695819939558336, 8.822452110956228, 30.27855142306386, 49.00033156354588, 12.781366960450196, 21.110311151026043, 13.65134449538686, 22.972791379989168, 32.355552869399745, 10.160472237791689, 69.93308987389263, 10.271495930430355, 11.862295856430112, 44.00666644187106, 17.28643112165142, 5.77073387807356, 12.76408646495848, 32.79949959595072, 9.45683825762888, 13.82246981593277, 39.040949416524036, 5.258892716025399, 14.697255669455348, 6.549958602654183, 48.3730860289475, 26.894336094546162, 29.13592404682602, 92.36855016306816, 85.11631069675468, 15.189887560692219, 26.379687176820006, 27.34436557609896, 26.018764406741425, 21.00719202414001, 9.115497166069641, 41.42119792031565, 24.8208768616541, 86.12663141616846, 22.611710816077366, 72.38559480577669, 16.049048812185518, 99.89690008005505, 37.770522294093645, 13.178688738983805, 29.596168327054585, 12.728436155228987, 8.445560344477867, 46.956221396783455, 8.864414430791323, 23.18883515050155, 14.814054809896625, 45.38413400384046, 50.30620386201282, 11.317808722715403, 30.763931347729258, 56.12073259548608, 20.005499108263766, 85.60675806097862, 40.42670287520377, 25.28767299426534, 41.19537628754675, 84.72503132326639, 17.54939218091406, 56.84982857188443, 27.610668106826203, 167.66269736454268, 64.55421369697679, 22.852535528267442, 16.108412207404303, 22.157249013884623, 20.642824613684397, 8.1070364780291, 53.485519561505605, 31.433054697306247, 63.42730326304151, 73.91093829995586, 24.467550172603573, 42.137910057909565, 39.17478298065053, 69.54306651333323, 9.727715805274137, 122.92690739119152, 53.592060753106715, 44.63585405408604, 42.70849581716667, 5.235712137426745, 190.37924097238164, 12.76801740314624, 23.577492864690363, 68.53650378712783, 52.50707669713219, 17.087074914818164, 22.511616918947162, 78.02263489065413, 117.45270640014988, 11.422715590866257, 39.2556101982874, 95.77280322105152, 10.82714145278833, 28.336420966080166, 12.74230616438038, 48.49609958756823, 20.65296708608657, 8.96055769090228, 13.381427671241015, 215.35884153730356, 72.094547900859, 6.817745807758856, 18.79743326049291, 45.02561381682248, 70.72066733739524, 103.26279675834179, 56.631228019946114, 9.003062583162405, 97.77591918857954, 6.911727822597907, 32.92891844087412, 66.80886897242713, 93.20719402042118, 13.523495211037686, 109.29771799995619, 21.14469888647106, 42.15117767830837, 7.163351770584277, 16.34354309887457, 55.684336379925114, 12.524393681168819, 49.22434238629756, 54.81351789606269, 100.41698243519605, 8.570603347062857, 10.980994945607819, 9.321271175608583, 7.403729816810209, 8.725078171726139, 7.755377250291112, 18.15356670392389, 79.505104471426, 5.78343295195419, 64.42869902422598, 27.96239366700433, 12.897033563777253, 118.9258432424881, 54.28594357037912, 35.948534273016875, 10.68548677782518, 57.98826755986823, 53.483594891417944, 11.951875333477718, 43.47918447097926, 5.508143052083696, 10.820321877916811, 42.40654325912922, 24.84646344859074, 5.873442344637714, 73.52073332748458, 56.92138719160856, 74.7233515586482, 25.627223145690007, 15.310320396658442, 45.7844097704408, 22.616096041683424, 102.36976499332462, 5.336116365439447, 19.309446411449677, 46.712913247445144, 44.965885592070265, 12.547370342816546, 43.074988414751544, 12.089584485739012, 30.08462559757008, 25.963965003260636, 16.991023892410613, 15.204332187564079, 12.40260807730862, 9.305495287980031, 33.4558363091478, 81.14617792927129, 25.80246996410856, 135.8815607555369, 33.359848685742115, 127.5463661372818, 30.589361522468288, 50.67345829931055, 66.67174686574211, 47.476256784396064, 22.239054595517974, 63.70258127172032, 10.275392294036667, 136.81948037335846, 78.31754387729345, 6.329855846769929, 12.855024742089244, 63.324673979727876, 8.722295379112738, 106.34602187232963, 6.009858666632659, 57.66486503319648, 33.365328952538434, 31.40349484200101, 9.42791442448359, 7.343089001531679, 9.462154610350227, 10.40600826907881, 7.667518613504607, 50.215502469254076, 69.12180695349046, 5.261411711378007, 12.702680031686283, 156.81675320506687, 53.13812515551132, 65.10402912278514, 26.112550014932403, 22.61312491574597, 11.47492201027591, 140.78195949945342, 6.026732731445831, 21.790305333281122, 12.338110487555294, 9.01319141381072, 35.946909254009675, 25.749918784621528, 22.296286847606186, 122.59346641247956, 73.93596442039862, 14.95368996218208, 104.57747153759948, 7.678386123220731, 112.85542529719598, 89.59752975380707, 70.41908728432423, 6.727971479394281, 5.807705157594083, 61.809103400051406, 40.73522306468405, 83.64428627447266, 12.071159647787042, 6.723585438124965, 18.923919525099702, 45.10937858493214, 25.055859113490026, 6.889983476099466, 19.89574367954202, 123.378212468427, 25.155289082988183, 21.238134154116878, 42.73058623764264, 42.0956202073032, 8.482915536692124, 69.92411547777073, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5743731.074716705, 5944677.373258142, 6044009.375, 6044028.104171479, 6046418.75, 6073754.197254663, 6074622.059512372, 6081041.710432135, 6087185.106701945, 6088656.235793663, 6090051.297943455, 6090567.879926811, 6090916.3281915, 6091522.563629664, 6092501.623656616, 6094781.173978169, 6100890.625, 6101426.540049487, 6104239.0625, 6107146.585458541, 6109585.905716589, 6109740.419352445, 6117004.430660812, 6118641.014492857, 6119106.4391190065, 6120485.700353129, 6121297.669373216, 6122647.537138691, 6123162.144615532, 6124900.572847885, 6125146.27683358, 6125371.875, 6125710.117175206, 6129940.89170853, 6130953.41150534, 6131687.17521209, 6134396.565086625, 6168454.0265164245, 6169293.75, 6171344.251799482, 6171645.825805778, 6171662.5, 6172038.119634215, 6175295.795549236, 6183785.9375, 6184385.0831411285, 6200918.048885229, 6201086.620473511, 6202031.897418704, 6223662.602067054, 6232422.4117656415, 6238153.44135463, 6238600.840384281, 6238880.7332027145, 6239143.526390309, 6239281.780362751, 6241098.4375, 6241165.818636495, 6242803.708584057, 6243239.581547611, 6243317.086753766, 6245631.768585779, 6249265.19269523, 6250818.981355379, 6253233.18664927, 6259572.626689273, 6264859.676935094, 6267475.1171561405, 6272829.364339546, 6280518.810117331, 6283760.9375, 6286301.900868178, 6286504.107702823, 6288032.122058281, 6291040.625, 6293204.769543118, 6294044.947416894, 6295283.553295849, 6295368.382314866, 6296989.0625, 6298103.015167658, 6303614.19800004, 6304648.180783089, 6309147.467519405, 6311673.460731643, 6311782.8125, 6311848.540162752, 6322517.1875, 6324789.021927066, 6325505.907905665, 6331137.5, 6336423.430400711, 6337435.9375, 6339208.559228761, 6340564.6670412645, 6352455.744788356, 6353974.12669199, 6355190.7174985185, 6359304.6875, 6361526.5625, 6362722.897069445, 6362735.176380662, 6365614.0625, 6366741.99433749, 6366832.108550534, 6367518.98877789, 6367560.0776095735, 6368250.866003471, 6369600.646033849, 6369869.850770487, 6370964.0625, 6371574.929451456, 6371627.726621911, 6374182.8125, 6385101.5625, 6386729.6875, 6386742.374069328, 6387456.25, 6393337.086391313, 6397333.905321265, 6398105.889847959, 6403442.1875, 6406498.4375, 6409429.625764087, 6411171.875, 6411750.367237117, 6414506.598161466, 6416885.539496561, 6420140.981096703, 6420807.505265624, 6420914.834829401, 6421492.91924288, 6421838.6587500805, 6423613.900231971, 6423648.175585965, 6424978.806403416, 6426642.009103986, 6426742.100100736, 6426888.133789126, 6426971.545335071, 6429304.468712479, 6429462.5, 6429484.375, 6429496.875, 6429618.891336023, 6429926.045563855, 6430063.839779675, 6431050.713500678, 6431321.870303193, 6432414.855881512, 6432798.822231236, 6432865.625, 6433485.562927266, 6433802.617827874, 6435900.001093201, 6437164.661148148, 6437186.62781848, 6438654.747957424, 6442441.529589294, 6443870.910919007, 6444405.154960002, 6444597.561181369, 6444614.11533332, 6445026.5625, 6445040.625, 6445050.912904153, 6445067.990134141, 6445237.245720306, 6445276.82797035, 6445304.0884221075, 6445305.243800868, 6445362.5, 6445609.982787495, 6445719.950630198, 6445757.116947997, 6445856.962697405, 6445921.875, 6445994.672669248, 6446003.881354151, 6446025.016681746, 6446323.4375, 6446458.808281402, 6446578.183392407, 6446605.904454251, 6446691.996059757, 6446756.345766835, 6447065.472375281, 6447286.480460827, 6447947.563988899, 6447968.75, 6447987.467462645, 6448046.735719759, 6449332.687673624, 6452690.67636911, 6454396.318059776, 6456108.728756739, 6460523.904663337, 6461826.435068671, 6461829.2422353085, 6461866.854188667, 6465114.906447117, 6466077.155905936, 6466525.0, 6466529.587441275, 6469175.5562020475, 6469688.364468082, 6471235.9375, 6472833.948128903, 6473005.876469682, 6474250.734999227, 6475577.224527241, 6476110.9375, 6477272.87275073, 6478149.674130228, 6478869.301707371, 6479323.597847811, 6479657.8125, 6481046.889845206, 6481907.706501608, 6482525.0, 6482614.6032185145, 6483079.6875, 6483274.909269608, 6483667.527732126, 6483892.77477972, 6484094.133292718, 6486285.027169549, 6486744.579797963, 6487807.506301927, 6488952.517352535, 6489081.0602434855, 6489150.951146486, 6489547.2343967995, 6489556.028105831, 6489768.359778884, 6489857.68491759, 6489956.706494147, 6490112.684556695, 6490136.979517607, 6490261.2797391545, 6490406.77486931, 6490458.928936086, 6490610.404901722, 6490628.32920188, 6490733.132163586, 6490795.679578332, 6491026.318898026, 6491049.137769668, 6491108.004076257, 6491244.9286770485, 6491478.125, 6491691.003418201, 6492041.912477071, 6492365.625, 6492398.390015149, 6492543.75, 6492625.0, 6492827.942942217, 6492995.994628868, 6493066.413192188, 6493139.599938317, 6493535.963328899, 6493610.4615440685, 6494676.5625, 6495237.672316499, 6495468.709370176, 6495621.875, 6496390.46365848, 6496981.366081433, 6498318.445642988, 6498323.626610152, 6498547.981316927, 6498905.769814236, 6502482.390041465, 6502667.714257122, 6505195.7306476105, 6506134.6837970875, 6509416.396896872, 6509442.1875, 6509654.675563657, 6510656.750783725, 6515491.874583125, 6516793.547457202, 6516845.3125, 6517306.25, 6518014.173190899, 6524007.8125, 6525371.96260066, 6525442.932703616, 6526130.626549039, 6526339.995386219, 6527089.045954665, 6531695.184510534, 6532132.8125, 6532670.3125, 6532882.709386957, 6533358.873105366, 6534126.5625, 6534206.25, 6534216.545187497, 6534307.469275941, 6534323.440888318, 6534528.882268282, 6534596.015354257, 6534741.56288943, 6534909.375, 6535026.84985408, 6535054.486986576, 6535283.292384847, 6535342.793875121, 6535349.418262652, 6535439.0625, 6535955.866436076, 6536022.034521937, 6536716.165136881, 6537516.350028188, 6538021.875, 6540133.788666131, 6540379.6875, 6540654.6875, 6540895.3125, 6541252.977602085, 6541814.013300795, 6541916.887731324, 6542960.31295623, 6543999.65226949, 6544119.425108623, 6544992.1875, 6545409.375, 6545521.234827639, 6546097.528674887, 6546130.240290887, 6546490.936069854, 6546640.106989001, 6548584.710001004, 6548727.462171303, 6549561.179316423, 6549605.9593027895, 6551270.3125, 6551884.015786614, 6552086.771701202, 6552254.6875, 6552710.680050515, 6553145.3125, 6555527.732464729, 6556650.0, 6557210.017346765, 6557591.454194425, 6557866.604257237, 6559289.264211126, 6560635.762844611, 6560886.868757711, 6560906.25, 6561612.8260106705, 6561640.625, 6562440.986156707, 6567862.183884614, 6570050.0, 6571011.978049414, 6571383.237895554, 6574156.25, 6574697.751235878, 6577561.039589881, 6578246.614142759, 6579398.546857889, 6580092.7337318985, 6580537.336791109, 6581129.6875, 6583749.062622032, 6583800.992924651, 6583992.189294602, 6585350.0, 6585363.8481521625, 6586351.078745776, 6589120.41741409, 6590829.537802231, 6593160.9375, 6594317.1875, 6594526.355647878, 6595286.526931914, 6595934.375, 6596047.10764395, 6596549.98952149, 6597270.0653987415, 6597585.876465833, 6597898.4375, 6598074.213877747, 6598957.376654996, 6601551.5625, 6601591.361316054, 6602534.897646042, 6602602.749354703, 6604826.477962565, 6608307.601999231, 6609714.890231308, 6611315.680441228, 6613012.263292223, 6614314.82995815, 6615327.142762568, 6615480.366048968, 6615657.334390445, 6616264.490327745, 6616459.094882347, 6617751.418799461, 6617762.531754384, 6617818.354844865, 6619060.828819285, 6619654.637404031, 6619711.516128671, 6620304.400870505, 6620704.5349736465, 6622571.711067434, 6623651.171137986, 6623784.375, 6624330.380975057, 6624439.0500168605, 6624506.173592545, 6625390.490850084, 6630386.731910318, 6630542.1875, 6630593.465818531, 6635046.85846387, 6635427.584795478, 6637914.936558218, 6638260.9375, 6638662.5, 6638676.214848754, 6638681.9659129465, 6639251.193611137, 6639318.473946421, 6639324.660346573, 6639713.3757341085, 6639715.53714448, 6639818.75, 6639928.599309223, 6640076.5625, 6640155.407828332, 6640702.454775732, 6640764.6935265055, 6640845.3125, 6640848.4375, 6641158.727345456, 6641174.191638346, 6641197.089552037, 6641354.869564756, 6641712.945847884, 6642561.97399467, 6642697.183402984, 6642828.102585958, 6643120.811362118, 6643317.701437662, 6643382.8125, 6643975.0, 6644042.475328737, 6645177.911717584, 6645180.084654909, 6647796.875, 6648893.75, 6649841.466815973, 6654200.0, 6654821.875, 6655591.249953095, 6655815.560205289, 6657446.24452577, 6660188.365892492, 6661635.9375, 6662265.625, 6663907.8125, 6669792.1875, 6671848.123314364, 6672683.2319850745, 6674012.128219047, 6675325.0, 6675554.9676568145, 6677212.449260454, 6677234.085326347, 6678073.4375, 6685214.038772904, 6687635.802667294, 6691342.765033326, 6694379.102867947, 6694527.2391611, 6694605.625244109, 6694949.748873821, 6698382.8125, 6699473.4375, 6700051.5625, 6701971.210776333, 6701988.200743165, 6702190.625, 6702871.466245827, 6704184.375, 6707393.15591754, 6709511.992729324, 6710223.758748343, 6710293.340002619, 6711457.8125, 6712117.1875, 6712163.027329043, 6712195.692631402, 6712618.5757766105, 6712673.702794432, 6712756.25, 6712768.947837437, 6712778.237942186, 6712786.840359606, 6712797.502218165, 6712812.8128997125, 6712899.112885292, 6713027.107980001, 6713094.925397314, 6713184.6988939205, 6713201.048434025, 6713204.6875, 6713540.625, 6713564.473927798, 6713590.399740616, 6713612.47342547, 6713668.069237582, 6713684.848485019, 6713698.4375, 6713702.011512193, 6713755.379129445, 6713829.6875, 6713858.254216048, 6713988.919628942, 6714063.840715333, 6714117.1038605925, 6714171.875, 6714581.25, 6714649.40430227, 6714672.7039780775, 6714713.545671203, 6714720.011210663, 6715098.19516578, 6715226.5625, 6716791.141428749, 6717056.957640239, 6717852.38696138, 6718371.217355839, 6719015.625, 6719192.289217417, 6719928.125, 6721108.772948626, 6721198.575346768, 6721574.452085528, 6721828.125, 6722539.739454008, 6723020.224157892, 6723640.783196008, 6725397.568852817, 6727256.3431261135, 6727903.125, 6728837.564396725, 6730633.286117489, 6731049.933089735, 6731681.26264478, 6732290.625, 6732568.75, 6734455.4991700705, 6734898.248028924, 6735304.075331434, 6735460.746793721, 6735769.6164371455, 6736121.369881036, 6736144.830005377, 6736205.328508316, 6736478.125, 6737367.1875, 6738312.5, 6738588.579355875, 6739183.267721243, 6739494.002552203, 6740285.38795321, 6740564.030240068, 6740581.253462898, 6741496.875, 6741520.759284631, 6741954.426408895, 6742037.481022495, 6742229.968362762, 6743414.775529893, 6743511.067798782, 6743949.724398636, 6744962.02888513, 6745039.761973658, 6745215.752498752, 6745904.454588988, 6746040.625, 6746082.8125, 6746228.129247651, 6746512.265547826, 6746603.298692653, 6746607.762705976, 6746848.442665786, 6747550.733317831, 6747598.160365914, 6748529.857246345, 6749089.071150365, 6750740.625, 6750905.037807371, 6750961.978207954, 6751366.559309568, 6752565.769041184, 6753194.131943862, 6754394.0081642335, 6755062.242011599, 6755127.555456102, 6756668.12275858, 6756728.125, 6759908.422631993, 6760346.273966481, 6762190.095444615, 6762890.625, 6766449.951535766, 6767022.674039, 6767678.08197512, 6768403.671202514, 6769455.6128561115, 6773032.894644839, 6774598.9404761, 6775830.063756373, 6777638.953754865, 6777933.142586044, 6778563.373910258, 6778737.902056575, 6778772.991011665, 6778996.875, 6779299.933610682, 6780474.909175231, 6780842.154089671, 6780946.84789217, 6781338.8658783445, 6781612.5, 6781675.50196025, 6781804.41695782, 6782518.612008965, 6782531.25, 6782547.551430023, 6782641.797624552, 6782740.098291602, 6782808.047745861, 6782853.125, 6782939.795698291, 6783355.871456628, 6784190.165249648, 6784631.315954422, 6784633.334884333, 6784698.057012985, 6784703.058609539, 6785111.088806139, 6785285.167881311, 6785714.0625, 6786284.258733164, 6786658.670801825, 6790649.340369391, 6790709.484871951, 6790717.10939903, 6790737.176696157, 6790739.844498393, 6790762.652756431, 6790770.171715392, 6790795.084835191, 6790832.945629493, 6790859.375, 6790875.0, 6790914.483276346, 6791402.556184073, 6791449.44632438, 6791472.165101384, 6791559.580528404, 6791660.9375, 6791725.0, 6791731.25, 6791803.125, 6791890.157400994, 6791890.625, 6791907.8125, 6791975.7097842125, 6791996.875, 6792000.084821697, 6792168.472761762, 6792246.346800635, 6792426.5625, 6792467.390396271, 6792766.359911385, 6792821.174876945, 6792884.841399075, 6793080.056147158, 6793141.943722475, 6793490.483042313, 6793509.375, 6795776.7215294475, 6795941.360319004, 6796060.14072393, 6796397.935090341, 6796445.466708204, 6796892.1875, 6797011.459739254, 6797052.792887087, 6797536.9936086815, 6797791.80134788, 6797814.989897551, 6798715.187617759, 6798725.0, 6798938.1065452555, 6800073.4375, 6800145.3125, 6800251.7850196585, 6800257.812367014, 6800347.392141577, 6800418.498763472, 6801366.397245686, 6801382.745179474, 6802127.9705209, 6802903.023116629, 6802970.540187732, 6803207.8125, 6803264.448000273, 6804332.8125, 6805889.34847196, 6806646.497273095, 6808107.49793021, 6808557.244950683, 6808901.00820252, 6809180.201114014, 6809698.215621209, 6809886.66054088, 6810018.2218674505, 6810223.475997958, 6810790.400440319, 6810863.9295855565, 6811531.039998026, 6816182.115955637, 6816959.2558691, 6817801.241135788, 6820270.774731914, 6820601.5625, 6823893.464419757, 6823922.426994188, 6825225.385425247, 6827846.480319637, 6828755.332445273, 6829235.9375, 6829718.309289848, 6831203.592028636, 6831251.5625, 6831492.070677497, 6831518.75, 6831657.8125, 6832244.963734154, 6832736.829799598, 6833236.47199129, 6833285.9375, 6833779.400041226, 6833852.5857515205, 6833865.239627722, 6834694.248874463, 6835949.912502905, 6837861.778425213, 6838232.8125, 6838546.248199523, 6839106.518801107, 6843792.1875, 6845033.316317567, 6845510.335399507, 6853986.7811308615, 6857204.56150596, 6859090.769712185, 6861809.628219979, 6862526.5625, 6869236.421371041, 6869662.694948234, 6869869.139655374, 6871283.977088188, 6875037.588367325, 6875040.064443616, 6879570.689429018, 6881860.9375, 6885817.251173643, 6885931.131265074, 6887177.002396235, 6887428.9945249865, 6892405.574205745, 6893673.1706225015, 6894562.323363163, 6894863.494714386, 6896356.630062711, 6897387.105271745, 6898832.8125, 6899692.403137048, 6899860.9375, 6900584.375, 6901230.695299055, 6903558.902884524, 6904418.0162571985, 6905167.476507532, 6905199.288568594, 6905210.328255524, 6906884.784160756, 6910714.028654021, 6911132.8125, 6916974.758441735, 6917025.118309598, 6917384.597383101, 6920094.685653899, 6920193.629859142, 6921281.376841953, 6922826.5625, 6924670.123994369, 6924685.773119005, 6925809.913997275, 6926363.049164773, 6926492.036359613, 6926675.879992537, 6927743.819833774, 6929571.875, 6930249.626271653, 6930631.525803439, 6930915.987801264, 6931582.69312571, 6935888.706819604, 6936431.1029028995, 6936996.521406374, 6938819.253720088, 6939076.5625, 6939077.60651618, 6939817.07108111, 6940337.218736964, 6941353.125, 6941431.684246613, 6941660.9375, 6943126.5625, 6943992.1875, 6944035.9375, 6944051.221921247, 6944370.256608726, 6944439.907763189, 6945717.405179805, 6947348.4142757645, 6948178.125, 6948319.218192405, 6948412.096379843, 6949278.125, 6950328.119219313, 6953509.555880197, 6956468.674375335, 6956801.190178404, 6958160.736303208, 6958587.124488995, 6959588.334558898, 6960515.338955035, 6961191.598944213, 6961258.901245456, 6961977.645097581, 6962533.183999091, 6963546.4561268035, 6963820.578243584, 6966102.420430139, 6966175.392848604, 6966836.911138348, 6967001.786346076, 6967009.166445779, 6967108.959365851, 6968568.479630818, 6968706.949704365, 6969532.46461139, 6970398.4375, 6970490.625, 6971049.570544803, 6971443.178309509, 6971822.90185048, 6971879.189508274, 6973626.719532581, 6973881.574888605, 6974140.139087733, 6974431.991136632, 6974515.625, 6974937.49471714, 6975079.639996773, 6975213.001069528, 6975756.15406586, 6975760.925493005, 6976585.350012113, 6977355.433859984, 6978920.71442556, 6979024.528821079, 6979433.974303041, 6980029.265935471, 6980429.6875, 6982221.845938879, 6982694.648005322, 6983593.070039728, 6984257.8125, 6984413.087566108, 6986176.259875866, 6986376.5625, 6986550.0, 6986936.407714111, 6987095.3125, 6987119.787741045, 6987768.5440218095, 6988008.882536249, 6988037.031327523, 6988100.772545485, 6988146.831011767, 6988204.6875, 6988731.25, 6988956.083955553, 6988971.968509919, 6988995.3125, 6989029.2931590825, 6989030.711416891, 6989043.579598752, 6989191.288618502, 6989339.0625, 6989474.840582617, 6989799.18872092, 6989802.303264224, 6989961.476534294, 6989967.688722774, 6990077.98053442, 6990246.088619529, 6990306.317287084, 6990342.874226559, 6990381.219200205, 6990693.75, 6991204.6875, 6991295.15777009, 6991696.778662843, 6992057.8125, 6992172.390328229, 6992645.020072417, 6992768.003463708, 6997009.775849799, 6997565.625, 7000363.634162587, 7001058.787999352, 7001416.563961256, 7002165.863689105, 7003410.371659478, 7004069.230344626, 7004077.443507413, 7005417.1875, 7007608.554594019, 7007653.125, 7010010.149947278, 7010431.25, 7012507.8125, 7014171.621369549, 7015504.799475797, 7022122.655993792, 7022390.775689111, 7025554.1708796425, 7025656.424297697, 7028140.384861419, 7029323.4375, 7036213.070973577, 7039516.442932617, 7043164.423184243, 7044393.75, 7044395.3125, 7045284.851595817, 7045391.858794915, 7048231.461332847, 7048853.181113128, 7049404.075964276, 7049738.591786083, 7049769.407240177, 7051902.723059955, 7052857.511465469, 7053816.1201085895, 7055008.951914908, 7056609.223881125, 7057917.1875, 7058557.815692041, 7061581.803867811, 7061697.078102341, 7063084.375, 7064021.861281566, 7064439.0625, 7065579.506861465, 7066237.414829729, 7069738.186061214, 7070095.3125, 7071056.623266204, 7071059.433871067, 7073321.671692676, 7073772.634591993, 7076635.77486074, 7076751.358237055, 7077119.352140403, 7077471.198433551, 7078709.375, 7079376.365038684, 7079785.411555293, 7079839.667442158, 7080239.0625, 7080245.666198374, 7081367.1875, ...], [37.54456981218944, 18.38307174876703, 52.90431083072257, 22.964435032531807, 75.68654835261238, 18.982431296738305, 16.471008177756453, 64.17085289397023, 69.94837063234439, 29.58668824578454, 6.061013065666989, 6.6014044504968075, 45.49295669082109, 124.95066948872592, 11.224663241910621, 27.106237480142646, 49.47085945608236, 28.088110876509077, 36.26781192424694, 38.25900374722337, 23.701171779530718, 5.390670086782861, 39.81938235939175, 6.843839465028458, 23.001646353719988, 24.58823711621789, 19.17913619333366, 9.961955309717105, 9.047957475240633, 13.157557262421363, 15.142899842414307, 34.19728509638425, 48.775063494223794, 16.065852766458264, 113.49252898723411, 24.68110234880441, 9.082416292369661, 54.74673338087784, 30.26712020566357, 6.3327494905945825, 86.97409831284233, 33.653309564443475, 6.348792984006493, 5.73820604049831, 94.77216790572281, 6.164971280695547, 6.948589070362474, 18.061835714625254, 12.316855692406598, 5.466164490817217, 6.3374834659860735, 16.301990877306885, 25.65241080132478, 32.46154744064961, 24.778160914362633, 17.439077156447375, 40.33524436858512, 128.024813210023, 17.75622466431405, 26.552465676781217, 5.80656332439764, 9.812094749598796, 13.515351535998448, 95.65926415189811, 38.49353806744364, 17.53453959999817, 16.97983060913154, 11.315903965672463, 88.53194164286097, 18.518648805266004, 66.23311010378943, 21.719896528474145, 20.73237612087669, 7.95235263140088, 38.960880955815156, 56.8318157074784, 69.59218149828234, 34.094438950227335, 8.101260992437636, 38.15207905134927, 26.527269772963372, 18.219975020482472, 76.52683464644434, 151.34001036477977, 11.16421455797364, 75.76567695724414, 15.347802949828733, 40.95133812729293, 34.748574444097216, 20.55801730116215, 81.25301475604041, 28.385278179904667, 65.22546776197258, 10.054166115269496, 95.75068690557819, 88.12962418747338, 30.893602042062383, 20.85021686385605, 80.55082721245824, 30.486749090260723, 32.45953225494901, 8.761288589656267, 116.67086047559016, 71.59809490400866, 5.084848639384187, 37.3589357027853, 8.696705233305375, 67.37215165241035, 18.14851431868198, 21.883557138906916, 78.356750870687, 27.518037716783446, 10.557314945035259, 102.38959873310999, 82.64447337594757, 32.07324564437754, 35.49593298365978, 35.57019221190908, 26.911600292081744, 8.963513170068127, 96.50694584042859, 68.5877097750117, 47.93149775995703, 12.796341688039885, 67.68257220934579, 24.724907154794828, 49.68408166892169, 22.57471490340101, 8.48431349291583, 29.56840104844562, 6.928155920901422, 172.6692561058268, 11.20537129522177, 25.6853957263018, 14.410081119621134, 9.9826930909051, 22.598453700032778, 83.32718436666201, 18.069799587408045, 65.57950525454508, 14.168386976155292, 64.66360357324207, 29.054903527616183, 67.85982081188166, 7.6551691181602575, 13.673290658893825, 24.79076329932068, 6.361758846753321, 28.43245942817748, 45.52240475961611, 11.787488975968063, 41.67164543917127, 13.382441013017555, 21.421851566195446, 149.94192799949448, 162.02694017170884, 39.78937989986741, 9.38305192350477, 60.056003020035746, 14.866084908627023, 46.74438144865543, 18.413051728682756, 8.314715484431716, 75.03024945184765, 60.58737092756513, 5.579090101895894, 172.52261388049172, 68.97109353782582, 81.63458858146268, 7.993295848867389, 24.378944573834183, 35.41251567461555, 12.232224150465877, 22.991353103570923, 12.82058842481871, 5.313621602305593, 89.43256734901216, 35.92892842235159, 12.55911580928053, 15.227051268725521, 89.92337118113998, 29.35441737079273, 5.617282736635065, 53.11281177218588, 6.725879516427198, 104.95204991177133, 92.23150353714041, 48.353408008567186, 18.431930506590533, 63.376417636081655, 65.01707230447485, 6.073734074737591, 9.22803956200598, 18.712128060336923, 20.943293633401357, 20.148572370658577, 60.46116458063894, 10.934198851212537, 22.057062263889833, 99.67798850767554, 12.764847779877948, 17.81643921060417, 79.204665372948, 36.37665798556479, 67.60348572378497, 71.655833550295, 51.55480030621084, 69.50596768111792, 36.8205490588785, 5.494223360653483, 27.1390067025232, 48.84060640369551, 20.870626352103343, 25.657710752761904, 9.845958730325561, 9.470769199533255, 75.90972645497673, 27.661535522786917, 14.474556455296215, 50.9087135119075, 17.499607452454622, 60.61737076225385, 6.0787146024597485, 9.636670322596316, 9.882798008632955, 26.469151889753046, 13.018493301177493, 10.147709050112752, 125.50143553616584, 83.03824559075835, 74.87928664598086, 30.24676165994505, 16.51454945549918, 49.59646437087174, 16.90955939149386, 8.220242585437674, 17.02294411467828, 207.50389131052276, 10.401190309094453, 15.621825871330145, 17.40719296750584, 5.678945475301976, 21.834723198030666, 91.01268560469617, 9.617159805563743, 38.23549806969868, 10.767156053127026, 18.508299497566522, 15.725702747610702, 46.82226860293939, 35.62583427886943, 28.880162365503445, 51.68477284650757, 84.95395435596072, 14.763556403673816, 56.656227300313745, 61.69726956726863, 25.384033014917545, 9.983477001619692, 5.0550814241212825, 12.086334550878977, 59.18845726585946, 5.2320167068973875, 30.49664440990248, 32.12595599117722, 47.059765118355706, 31.69725505192717, 22.328641307505297, 15.403220139588798, 16.737163497488638, 15.714871915602108, 18.472841571226358, 21.22892719914919, 17.89591811942807, 12.064654061030591, 73.79078554384249, 16.265432328196287, 19.01320050577072, 68.8881772077372, 37.064004639485645, 26.165162704048356, 114.1196239003059, 25.080915338469254, 84.54443448307036, 33.03678201845531, 6.281285396125031, 44.051067290822324, 112.77272694739999, 18.820889165414005, 20.34408595539958, 109.77854705688254, 28.201549342215465, 6.467213199431327, 40.62831950361918, 62.43536796837344, 75.00697015108332, 21.474221049234938, 41.10063955106372, 55.8822657538294, 33.33667845930108, 9.05712374275741, 14.95443984954197, 28.441339447844094, 5.1458131060004435, 18.321272486387542, 76.74812261661926, 98.07215567006298, 49.728454927364965, 8.557770623765878, 26.25828563744663, 93.23725673047262, 120.17895958687444, 47.54586391059828, 7.66197134753036, 21.382149004378768, 18.678846771368946, 62.51143022069499, 26.89969334360818, 86.44579254099834, 108.75240587824764, 64.368349506172, 5.5259693646647206, 14.832359680416854, 23.753696956174487, 12.997419104539572, 83.26730138951572, 18.339085261774304, 60.00572776549804, 38.73610641632377, 25.7921897782454, 18.198093308378095, 8.60226403263635, 47.624497735392744, 105.87325808123748, 16.393155861848992, 6.638019598751822, 8.418732027579166, 23.870303712643643, 40.62098467370728, 56.0084355201135, 10.152752963690606, 46.39147412353474, 13.331910431782923, 68.93139331068427, 10.564987439181493, 38.87817370990694, 25.196112906575063, 174.51318613499697, 16.34814399500582, 5.829057454761771, 80.65968829397976, 32.19752710442121, 48.79529555372653, 32.4976848276026, 64.48084552488865, 76.97573995563558, 12.789671704450857, 67.29230113577556, 92.71815411773, 16.85555468093743, 97.63919800287577, 20.710936623600304, 11.291119491917904, 5.917005937979752, 9.42561550750608, 63.19281439035663, 135.09756250333882, 47.27690253336941, 7.84614502843328, 18.378658918458893, 14.948354017353886, 59.88619120565245, 11.35189350119523, 16.80575772597964, 73.20634611133444, 6.072669091716952, 28.561496540794003, 73.3581757731855, 7.530097790518096, 12.193631471462448, 44.2976525537797, 35.481609335339584, 11.11136762416083, 50.5692005684891, 14.713869266090061, 64.61569185479296, 19.37936415791668, 17.509993072400423, 39.447095019609705, 85.04896471616009, 52.77845675278953, 73.83862963038106, 5.339033214751411, 9.159537088715458, 10.145344711209876, 7.623413670278784, 10.776832837748973, 7.338947759099258, 73.30644345083242, 5.312517647187082, 25.35854357374507, 35.78805037688771, 24.00807744602771, 5.393008765312778, 7.129824011863972, 5.905716251101875, 10.961977333611816, 54.22655236335486, 7.28234241954156, 10.70741303600042, 32.93103552840181, 79.02798648464605, 22.649892021837772, 47.886572407418235, 18.462202291777405, 73.83927681007786, 7.101510273677201, 21.311661716995538, 68.64318530949775, 34.89503759312029, 5.519445464312553, 60.014630301292385, 5.230273500348922, 12.837968916849658, 78.86818051166654, 51.80467063705368, 11.518892827642127, 52.0878989482365, 22.908936825461442, 145.13135153179894, 8.114774737021925, 32.24191855042474, 10.99310469459989, 39.294650821323856, 32.13481269244685, 74.73873361846877, 5.754188319443569, 86.42534601710304, 39.49650489025986, 86.5430151092881, 30.200157136164183, 110.51005512644319, 34.50571677594007, 23.401464588983828, 5.348199323799721, 16.965138575103953, 6.9897209099152775, 48.51551400700747, 59.60478166048028, 17.25832829711421, 5.740266145623648, 141.78513803377055, 85.18057634433562, 28.529106759952953, 9.157345116898242, 7.753488377458359, 45.61893934102579, 77.03493392012597, 19.54201072664821, 69.43339883046343, 33.75123983398976, 88.6226997351512, 14.700162694303597, 55.04637835383925, 29.734233153456813, 38.606564240203014, 100.00806356623708, 65.71859423998808, 101.33563668697742, 64.50463234707924, 9.713213995520764, 76.61017640817485, 36.696411754463874, 16.12889322107052, 11.049313112488377, 10.703228289624127, 105.29689923231088, 49.19703891087304, 7.5551882621968565, 8.617577884757692, 20.688445896038537, 18.3494089964686, 5.151062402898199, 62.646664432422284, 93.7508750909542, 35.89976934645236, 40.28403074233685, 35.81879650484934, 29.935904301373945, 84.37427296481977, 22.45432231585096, 125.67700629850265, 22.666596353726554, 27.83246386954726, 5.727512754144318, 63.683505944930886, 36.35207365529989, 108.62619546888453, 6.3362036593629, 11.778844325015594, 76.25503570510729, 16.059263149722902, 47.94526178298686, 11.451691586192672, 9.428763584012744, 7.966052916837415, 95.27233305695195, 49.000124249645616, 64.77479736831414, 8.59776004777863, 6.219498963933937, 14.201597743035034, 21.353922891849308, 40.049096833134755, 74.3896971739936, 26.879719067276998, 21.150908700620057, 11.08642161589029, 45.89028470731756, 17.116302966985778, 47.70963539394785, 25.353562452327687, 26.46621158316283, 67.04022407394827, 25.864590465302786, 18.360964227226063, 88.48931001296219, 55.900360283279255, 32.1147534956104, 72.46217009361415, 47.24332838025298, 19.44207824898481, 33.42750233789326, 67.50922093576217, 61.72690401128559, 61.71115304309003, 12.401115188708243, 33.13846632111172, 10.141607705980114, 6.388715274751836, 44.11302844061203, 9.418917880381793, 72.7174432441539, 65.04182017480932, 61.01274274817074, 48.11233570011851, 42.091832285639306, 57.20352900078699, 9.25780555459967, 15.580827830126555, 46.896533952478556, 101.63676807071823, 103.01302405507278, 5.246951206412435, 17.117036245725348, 27.26746738170079, 11.147529094565513, 29.977549370034012, 29.578902627202705, 68.14107035871514, 39.68292909052917, 10.289014839963873, 25.254986989311675, 7.369496444456011, 10.420401918423114, 51.71728595184075, 9.939383694076257, 88.44650546687029, 45.711656252537104, 134.73069406992647, 10.44809345412177, 47.5797283746457, 76.12805885769677, 6.984115998920231, 14.819958971951975, 19.670337712432755, 64.09161617582808, 6.325346352000433, 5.690340544361188, 5.130096813051001, 22.44975765450718, 18.595687744369553, 21.341417908826976, 21.841860757320003, 27.00341374459344, 118.69155741575472, 29.501053110562893, 76.0848260266864, 45.165688002861756, 33.846815182339505, 14.957724233574202, 75.6632766522652, 9.482719207916897, 34.578590474211175, 5.9398555195997895, 12.506667154938702, 6.709412013703988, 138.12608430852035, 14.974583388932535, 56.74735831572402, 21.574483757049716, 5.776355221824732, 20.303033379759388, 89.22837176378619, 11.782248156900641, 5.833332388605449, 24.30263680000452, 8.892169208598473, 27.882604492243708, 67.04065745071003, 17.920234101943777, 7.992409757963902, 21.20325044779327, 67.44190774485668, 20.391067700081788, 151.22609839318423, 37.13613897239367, 17.531888936296973, 15.832797289711435, 5.2474501891571785, 91.3348285555361, 13.635079266489608, 56.73913279629453, 11.686072244287983, 34.06042530772237, 81.93277104801376, 22.04404965875187, 136.43030007956008, 59.3916658249712, 49.21348511933143, 93.94418071459258, 27.9994016282876, 7.070707523719247, 33.54580618314377, 8.571144615265226, 10.729619631292374, 24.179791015919196, 79.44582636450349, 70.03360191203485, 19.734552052557067, 21.230743912967956, 5.350047841344407, 57.71731180076448, 18.736030295732537, 22.796758213175213, 21.904233518884855, 6.776745679646822, 36.19154784486902, 17.203132439438313, 9.275890179114068, 9.462704073142671, 19.16800575491669, 40.71399734134555, 68.00339242268907, 17.5917463956571, 42.67915192633489, 11.303899225080329, 11.00778559753598, 43.36517562870915, 103.78786360472938, 15.557567833118283, 40.8720349260029, 7.062864437862476, 23.129012850356148, 54.96383379370802, 94.80545217834305, 121.59206658385932, 28.39051958190923, 10.360094395002092, 133.90495057803585, 99.50318934255206, 96.96672975246456, 34.51501135000539, 99.0852900508625, 39.537122298154074, 32.84413159039214, 79.70120986660538, 36.468304429457504, 36.42528200290644, 36.589380737716475, 5.247525495685383, 143.0511751902932, 39.03701513141176, 93.0734105732395, 29.241068860970564, 104.05519957645356, 5.880668644915575, 14.424693282190766, 7.742244485560482, 24.496492252405353, 45.62229436735791, 128.6594785857518, 15.584400196299487, 127.80040098550117, 52.19624946521459, 43.13267435715383, 20.9608263310419, 46.07874931023962, 17.39198286603811, 13.810634984061233, 84.24277489446558, 60.17824864142848, 51.089943284547765, 13.500876566259683, 54.005030994549834, 13.849449437679025, 57.83377105256607, 31.827725432982604, 28.629139902616984, 28.52259796632199, 26.084409648422934, 24.884288712555087, 12.595691590309858, 36.659897177607384, 12.821790975952442, 64.72278668718685, 35.79009052244746, 54.583221902525416, 8.501529404131587, 43.49827857716538, 5.172075625768395, 10.584518071046135, 8.126949763490895, 42.81607994021047, 20.968030626615366, 17.426336585310114, 14.158270206795379, 24.448505771947673, 27.732313752424762, 8.307041155033463, 14.14951333056813, 14.457999126663557, 25.247407813028616, 170.09105763038312, 28.591766000648043, 114.38242178850373, 36.25401187002916, 45.04291090655817, 13.954333840157549, 29.731363999147042, 32.5061546293542, 7.4664649747629115, 74.6993834921365, 44.09361895748035, 22.105665195902695, 17.08066600700904, 61.40453310827138, 81.1204728971358, 77.28344946657423, 67.8092043441883, 6.695819939558336, 8.822452110956228, 30.27855142306386, 49.00033156354588, 12.781366960450196, 21.110311151026043, 13.65134449538686, 22.972791379989168, 32.355552869399745, 10.160472237791689, 69.93308987389263, 10.271495930430355, 11.862295856430112, 44.00666644187106, 17.28643112165142, 5.77073387807356, 12.76408646495848, 32.79949959595072, 9.45683825762888, 13.82246981593277, 39.040949416524036, 5.258892716025399, 14.697255669455348, 6.549958602654183, 48.3730860289475, 26.894336094546162, 29.13592404682602, 92.36855016306816, 85.11631069675468, 15.189887560692219, 26.379687176820006, 27.34436557609896, 26.018764406741425, 21.00719202414001, 9.115497166069641, 41.42119792031565, 24.8208768616541, 86.12663141616846, 22.611710816077366, 72.38559480577669, 16.049048812185518, 99.89690008005505, 37.770522294093645, 13.178688738983805, 29.596168327054585, 12.728436155228987, 8.445560344477867, 46.956221396783455, 8.864414430791323, 23.18883515050155, 14.814054809896625, 45.38413400384046, 50.30620386201282, 11.317808722715403, 30.763931347729258, 56.12073259548608, 20.005499108263766, 85.60675806097862, 40.42670287520377, 25.28767299426534, 41.19537628754675, 84.72503132326639, 17.54939218091406, 56.84982857188443, 27.610668106826203, 167.66269736454268, 64.55421369697679, 22.852535528267442, 16.108412207404303, 22.157249013884623, 20.642824613684397, 8.1070364780291, 53.485519561505605, 31.433054697306247, 63.42730326304151, 73.91093829995586, 24.467550172603573, 42.137910057909565, 39.17478298065053, 69.54306651333323, 9.727715805274137, 122.92690739119152, 53.592060753106715, 44.63585405408604, 42.70849581716667, 5.235712137426745, 190.37924097238164, 12.76801740314624, 23.577492864690363, 68.53650378712783, 52.50707669713219, 17.087074914818164, 22.511616918947162, 78.02263489065413, 117.45270640014988, 11.422715590866257, 39.2556101982874, 95.77280322105152, 10.82714145278833, 28.336420966080166, 12.74230616438038, 48.49609958756823, 20.65296708608657, 8.96055769090228, 13.381427671241015, 215.35884153730356, 72.094547900859, 6.817745807758856, 18.79743326049291, 45.02561381682248, 70.72066733739524, 103.26279675834179, 56.631228019946114, 9.003062583162405, 97.77591918857954, 6.911727822597907, 32.92891844087412, 66.80886897242713, 93.20719402042118, 13.523495211037686, 109.29771799995619, 21.14469888647106, 42.15117767830837, 7.163351770584277, 16.34354309887457, 55.684336379925114, 12.524393681168819, 49.22434238629756, 54.81351789606269, 100.41698243519605, 8.570603347062857, 10.980994945607819, 9.321271175608583, 7.403729816810209, 8.725078171726139, 7.755377250291112, 18.15356670392389, 79.505104471426, 5.78343295195419, 64.42869902422598, 27.96239366700433, 12.897033563777253, 118.9258432424881, 54.28594357037912, 35.948534273016875, 10.68548677782518, 57.98826755986823, 53.483594891417944, 11.951875333477718, 43.47918447097926, 5.508143052083696, 10.820321877916811, 42.40654325912922, 24.84646344859074, 5.873442344637714, 73.52073332748458, 56.92138719160856, 74.7233515586482, 25.627223145690007, 15.310320396658442, 45.7844097704408, 22.616096041683424, 102.36976499332462, 5.336116365439447, 19.309446411449677, 46.712913247445144, 44.965885592070265, 12.547370342816546, 43.074988414751544, 12.089584485739012, 30.08462559757008, 25.963965003260636, 16.991023892410613, 15.204332187564079, 12.40260807730862, 9.305495287980031, 33.4558363091478, 81.14617792927129, 25.80246996410856, 135.8815607555369, 33.359848685742115, 127.5463661372818, 30.589361522468288, 50.67345829931055, 66.67174686574211, 47.476256784396064, 22.239054595517974, 63.70258127172032, 10.275392294036667, 136.81948037335846, 78.31754387729345, 6.329855846769929, 12.855024742089244, 63.324673979727876, 8.722295379112738, 106.34602187232963, 6.009858666632659, 57.66486503319648, 33.365328952538434, 31.40349484200101, 9.42791442448359, 7.343089001531679, 9.462154610350227, 10.40600826907881, 7.667518613504607, 50.215502469254076, 69.12180695349046, 5.261411711378007, 12.702680031686283, 156.81675320506687, 53.13812515551132, 65.10402912278514, 26.112550014932403, 22.61312491574597, 11.47492201027591, 140.78195949945342, 6.026732731445831, 21.790305333281122, 12.338110487555294, 9.01319141381072, 35.946909254009675, 25.749918784621528, 22.296286847606186, 122.59346641247956, 73.93596442039862, 14.95368996218208, 104.57747153759948, 7.678386123220731, 112.85542529719598, 89.59752975380707, 70.41908728432423, 6.727971479394281, 5.807705157594083, 61.809103400051406, 40.73522306468405, 83.64428627447266, 12.071159647787042, 6.723585438124965, 18.923919525099702, 45.10937858493214, 25.055859113490026, 6.889983476099466, 19.89574367954202, 123.378212468427, 25.155289082988183, 21.238134154116878, 42.73058623764264, 42.0956202073032, 8.482915536692124, 69.92411547777073, ...])
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);
([5743731.074716705, 5944677.373258142, 6044009.375, 6044028.104171479, 6046418.75, 6073754.197254663, 6074622.059512372, 6081041.710432135, 6087185.106701945, 6088656.235793663, 6090051.297943455, 6090567.879926811, 6090916.3281915, 6091522.563629664, 6092501.623656616, 6094781.173978169, 6100890.625, 6101426.540049487, 6104239.0625, 6107146.585458541, 6109585.905716589, 6109740.419352445, 6117004.430660812, 6118641.014492857, 6119106.4391190065, 6120485.700353129, 6121297.669373216, 6122647.537138691, 6123162.144615532, 6124900.572847885, 6125146.27683358, 6125371.875, 6125710.117175206, 6129940.89170853, 6130953.41150534, 6131687.17521209, 6134396.565086625, 6168454.0265164245, 6169293.75, 6171344.251799482, 6171645.825805778, 6171662.5, 6172038.119634215, 6175295.795549236, 6183785.9375, 6184385.0831411285, 6200918.048885229, 6201086.620473511, 6202031.897418704, 6223662.602067054, 6232422.4117656415, 6238153.44135463, 6238600.840384281, 6238880.7332027145, 6239143.526390309, 6239281.780362751, 6241098.4375, 6241165.818636495, 6242803.708584057, 6243239.581547611, 6243317.086753766, 6245631.768585779, 6249265.19269523, 6250818.981355379, 6253233.18664927, 6259572.626689273, 6264859.676935094, 6267475.1171561405, 6272829.364339546, 6280518.810117331, 6283760.9375, 6286301.900868178, 6286504.107702823, 6288032.122058281, 6291040.625, 6293204.769543118, 6294044.947416894, 6295283.553295849, 6295368.382314866, 6296989.0625, 6298103.015167658, 6303614.19800004, 6304648.180783089, 6309147.467519405, 6311673.460731643, 6311782.8125, 6311848.540162752, 6322517.1875, 6324789.021927066, 6325505.907905665, 6331137.5, 6336423.430400711, 6337435.9375, 6339208.559228761, 6340564.6670412645, 6352455.744788356, 6353974.12669199, 6355190.7174985185, 6359304.6875, 6361526.5625, 6362722.897069445, 6362735.176380662, 6365614.0625, 6366741.99433749, 6366832.108550534, 6367518.98877789, 6367560.0776095735, 6368250.866003471, 6369600.646033849, 6369869.850770487, 6370964.0625, 6371574.929451456, 6371627.726621911, 6374182.8125, 6385101.5625, 6386729.6875, 6386742.374069328, 6387456.25, 6393337.086391313, 6397333.905321265, 6398105.889847959, 6403442.1875, 6406498.4375, 6409429.625764087, 6411171.875, 6411750.367237117, 6414506.598161466, 6416885.539496561, 6420140.981096703, 6420807.505265624, 6420914.834829401, 6421492.91924288, 6421838.6587500805, 6423613.900231971, 6423648.175585965, 6424978.806403416, 6426642.009103986, 6426742.100100736, 6426888.133789126, 6426971.545335071, 6429304.468712479, 6429462.5, 6429484.375, 6429496.875, 6429618.891336023, 6429926.045563855, 6430063.839779675, 6431050.713500678, 6431321.870303193, 6432414.855881512, 6432798.822231236, 6432865.625, 6433485.562927266, 6433802.617827874, 6435900.001093201, 6437164.661148148, 6437186.62781848, 6438654.747957424, 6442441.529589294, 6443870.910919007, 6444405.154960002, 6444597.561181369, 6444614.11533332, 6445026.5625, 6445040.625, 6445050.912904153, 6445067.990134141, 6445237.245720306, 6445276.82797035, 6445304.0884221075, 6445305.243800868, 6445362.5, 6445609.982787495, 6445719.950630198, 6445757.116947997, 6445856.962697405, 6445921.875, 6445994.672669248, 6446003.881354151, 6446025.016681746, 6446323.4375, 6446458.808281402, 6446578.183392407, 6446605.904454251, 6446691.996059757, 6446756.345766835, 6447065.472375281, 6447286.480460827, 6447947.563988899, 6447968.75, 6447987.467462645, 6448046.735719759, 6449332.687673624, 6452690.67636911, 6454396.318059776, 6456108.728756739, 6460523.904663337, 6461826.435068671, 6461829.2422353085, 6461866.854188667, 6465114.906447117, 6466077.155905936, 6466525.0, 6466529.587441275, 6469175.5562020475, 6469688.364468082, 6471235.9375, 6472833.948128903, 6473005.876469682, 6474250.734999227, 6475577.224527241, 6476110.9375, 6477272.87275073, 6478149.674130228, 6478869.301707371, 6479323.597847811, 6479657.8125, 6481046.889845206, 6481907.706501608, 6482525.0, 6482614.6032185145, 6483079.6875, 6483274.909269608, 6483667.527732126, 6483892.77477972, 6484094.133292718, 6486285.027169549, 6486744.579797963, 6487807.506301927, 6488952.517352535, 6489081.0602434855, 6489150.951146486, 6489547.2343967995, 6489556.028105831, 6489768.359778884, 6489857.68491759, 6489956.706494147, 6490112.684556695, 6490136.979517607, 6490261.2797391545, 6490406.77486931, 6490458.928936086, 6490610.404901722, 6490628.32920188, 6490733.132163586, 6490795.679578332, 6491026.318898026, 6491049.137769668, 6491108.004076257, 6491244.9286770485, 6491478.125, 6491691.003418201, 6492041.912477071, 6492365.625, 6492398.390015149, 6492543.75, 6492625.0, 6492827.942942217, 6492995.994628868, 6493066.413192188, 6493139.599938317, 6493535.963328899, 6493610.4615440685, 6494676.5625, 6495237.672316499, 6495468.709370176, 6495621.875, 6496390.46365848, 6496981.366081433, 6498318.445642988, 6498323.626610152, 6498547.981316927, 6498905.769814236, 6502482.390041465, 6502667.714257122, 6505195.7306476105, 6506134.6837970875, 6509416.396896872, 6509442.1875, 6509654.675563657, 6510656.750783725, 6515491.874583125, 6516793.547457202, 6516845.3125, 6517306.25, 6518014.173190899, 6524007.8125, 6525371.96260066, 6525442.932703616, 6526130.626549039, 6526339.995386219, 6527089.045954665, 6531695.184510534, 6532132.8125, 6532670.3125, 6532882.709386957, 6533358.873105366, 6534126.5625, 6534206.25, 6534216.545187497, 6534307.469275941, 6534323.440888318, 6534528.882268282, 6534596.015354257, 6534741.56288943, 6534909.375, 6535026.84985408, 6535054.486986576, 6535283.292384847, 6535342.793875121, 6535349.418262652, 6535439.0625, 6535955.866436076, 6536022.034521937, 6536716.165136881, 6537516.350028188, 6538021.875, 6540133.788666131, 6540379.6875, 6540654.6875, 6540895.3125, 6541252.977602085, 6541814.013300795, 6541916.887731324, 6542960.31295623, 6543999.65226949, 6544119.425108623, 6544992.1875, 6545409.375, 6545521.234827639, 6546097.528674887, 6546130.240290887, 6546490.936069854, 6546640.106989001, 6548584.710001004, 6548727.462171303, 6549561.179316423, 6549605.9593027895, 6551270.3125, 6551884.015786614, 6552086.771701202, 6552254.6875, 6552710.680050515, 6553145.3125, 6555527.732464729, 6556650.0, 6557210.017346765, 6557591.454194425, 6557866.604257237, 6559289.264211126, 6560635.762844611, 6560886.868757711, 6560906.25, 6561612.8260106705, 6561640.625, 6562440.986156707, 6567862.183884614, 6570050.0, 6571011.978049414, 6571383.237895554, 6574156.25, 6574697.751235878, 6577561.039589881, 6578246.614142759, 6579398.546857889, 6580092.7337318985, 6580537.336791109, 6581129.6875, 6583749.062622032, 6583800.992924651, 6583992.189294602, 6585350.0, 6585363.8481521625, 6586351.078745776, 6589120.41741409, 6590829.537802231, 6593160.9375, 6594317.1875, 6594526.355647878, 6595286.526931914, 6595934.375, 6596047.10764395, 6596549.98952149, 6597270.0653987415, 6597585.876465833, 6597898.4375, 6598074.213877747, 6598957.376654996, 6601551.5625, 6601591.361316054, 6602534.897646042, 6602602.749354703, 6604826.477962565, 6608307.601999231, 6609714.890231308, 6611315.680441228, 6613012.263292223, 6614314.82995815, 6615327.142762568, 6615480.366048968, 6615657.334390445, 6616264.490327745, 6616459.094882347, 6617751.418799461, 6617762.531754384, 6617818.354844865, 6619060.828819285, 6619654.637404031, 6619711.516128671, 6620304.400870505, 6620704.5349736465, 6622571.711067434, 6623651.171137986, 6623784.375, 6624330.380975057, 6624439.0500168605, 6624506.173592545, 6625390.490850084, 6630386.731910318, 6630542.1875, 6630593.465818531, 6635046.85846387, 6635427.584795478, 6637914.936558218, 6638260.9375, 6638662.5, 6638676.214848754, 6638681.9659129465, 6639251.193611137, 6639318.473946421, 6639324.660346573, 6639713.3757341085, 6639715.53714448, 6639818.75, 6639928.599309223, 6640076.5625, 6640155.407828332, 6640702.454775732, 6640764.6935265055, 6640845.3125, 6640848.4375, 6641158.727345456, 6641174.191638346, 6641197.089552037, 6641354.869564756, 6641712.945847884, 6642561.97399467, 6642697.183402984, 6642828.102585958, 6643120.811362118, 6643317.701437662, 6643382.8125, 6643975.0, 6644042.475328737, 6645177.911717584, 6645180.084654909, 6647796.875, 6648893.75, 6649841.466815973, 6654200.0, 6654821.875, 6655591.249953095, 6655815.560205289, 6657446.24452577, 6660188.365892492, 6661635.9375, 6662265.625, 6663907.8125, 6669792.1875, 6671848.123314364, 6672683.2319850745, 6674012.128219047, 6675325.0, 6675554.9676568145, 6677212.449260454, 6677234.085326347, 6678073.4375, 6685214.038772904, 6687635.802667294, 6691342.765033326, 6694379.102867947, 6694527.2391611, 6694605.625244109, 6694949.748873821, 6698382.8125, 6699473.4375, 6700051.5625, 6701971.210776333, 6701988.200743165, 6702190.625, 6702871.466245827, 6704184.375, 6707393.15591754, 6709511.992729324, 6710223.758748343, 6710293.340002619, 6711457.8125, 6712117.1875, 6712163.027329043, 6712195.692631402, 6712618.5757766105, 6712673.702794432, 6712756.25, 6712768.947837437, 6712778.237942186, 6712786.840359606, 6712797.502218165, 6712812.8128997125, 6712899.112885292, 6713027.107980001, 6713094.925397314, 6713184.6988939205, 6713201.048434025, 6713204.6875, 6713540.625, 6713564.473927798, 6713590.399740616, 6713612.47342547, 6713668.069237582, 6713684.848485019, 6713698.4375, 6713702.011512193, 6713755.379129445, 6713829.6875, 6713858.254216048, 6713988.919628942, 6714063.840715333, 6714117.1038605925, 6714171.875, 6714581.25, 6714649.40430227, 6714672.7039780775, 6714713.545671203, 6714720.011210663, 6715098.19516578, 6715226.5625, 6716791.141428749, 6717056.957640239, 6717852.38696138, 6718371.217355839, 6719015.625, 6719192.289217417, 6719928.125, 6721108.772948626, 6721198.575346768, 6721574.452085528, 6721828.125, 6722539.739454008, 6723020.224157892, 6723640.783196008, 6725397.568852817, 6727256.3431261135, 6727903.125, 6728837.564396725, 6730633.286117489, 6731049.933089735, 6731681.26264478, 6732290.625, 6732568.75, 6734455.4991700705, 6734898.248028924, 6735304.075331434, 6735460.746793721, 6735769.6164371455, 6736121.369881036, 6736144.830005377, 6736205.328508316, 6736478.125, 6737367.1875, 6738312.5, 6738588.579355875, 6739183.267721243, 6739494.002552203, 6740285.38795321, 6740564.030240068, 6740581.253462898, 6741496.875, 6741520.759284631, 6741954.426408895, 6742037.481022495, 6742229.968362762, 6743414.775529893, 6743511.067798782, 6743949.724398636, 6744962.02888513, 6745039.761973658, 6745215.752498752, 6745904.454588988, 6746040.625, 6746082.8125, 6746228.129247651, 6746512.265547826, 6746603.298692653, 6746607.762705976, 6746848.442665786, 6747550.733317831, 6747598.160365914, 6748529.857246345, 6749089.071150365, 6750740.625, 6750905.037807371, 6750961.978207954, 6751366.559309568, 6752565.769041184, 6753194.131943862, 6754394.0081642335, 6755062.242011599, 6755127.555456102, 6756668.12275858, 6756728.125, 6759908.422631993, 6760346.273966481, 6762190.095444615, 6762890.625, 6766449.951535766, 6767022.674039, 6767678.08197512, 6768403.671202514, 6769455.6128561115, 6773032.894644839, 6774598.9404761, 6775830.063756373, 6777638.953754865, 6777933.142586044, 6778563.373910258, 6778737.902056575, 6778772.991011665, 6778996.875, 6779299.933610682, 6780474.909175231, 6780842.154089671, 6780946.84789217, 6781338.8658783445, 6781612.5, 6781675.50196025, 6781804.41695782, 6782518.612008965, 6782531.25, 6782547.551430023, 6782641.797624552, 6782740.098291602, 6782808.047745861, 6782853.125, 6782939.795698291, 6783355.871456628, 6784190.165249648, 6784631.315954422, 6784633.334884333, 6784698.057012985, 6784703.058609539, 6785111.088806139, 6785285.167881311, 6785714.0625, 6786284.258733164, 6786658.670801825, 6790649.340369391, 6790709.484871951, 6790717.10939903, 6790737.176696157, 6790739.844498393, 6790762.652756431, 6790770.171715392, 6790795.084835191, 6790832.945629493, 6790859.375, 6790875.0, 6790914.483276346, 6791402.556184073, 6791449.44632438, 6791472.165101384, 6791559.580528404, 6791660.9375, 6791725.0, 6791731.25, 6791803.125, 6791890.157400994, 6791890.625, 6791907.8125, 6791975.7097842125, 6791996.875, 6792000.084821697, 6792168.472761762, 6792246.346800635, 6792426.5625, 6792467.390396271, 6792766.359911385, 6792821.174876945, 6792884.841399075, 6793080.056147158, 6793141.943722475, 6793490.483042313, 6793509.375, 6795776.7215294475, 6795941.360319004, 6796060.14072393, 6796397.935090341, 6796445.466708204, 6796892.1875, 6797011.459739254, 6797052.792887087, 6797536.9936086815, 6797791.80134788, 6797814.989897551, 6798715.187617759, 6798725.0, 6798938.1065452555, 6800073.4375, 6800145.3125, 6800251.7850196585, 6800257.812367014, 6800347.392141577, 6800418.498763472, 6801366.397245686, 6801382.745179474, 6802127.9705209, 6802903.023116629, 6802970.540187732, 6803207.8125, 6803264.448000273, 6804332.8125, 6805889.34847196, 6806646.497273095, 6808107.49793021, 6808557.244950683, 6808901.00820252, 6809180.201114014, 6809698.215621209, 6809886.66054088, 6810018.2218674505, 6810223.475997958, 6810790.400440319, 6810863.9295855565, 6811531.039998026, 6816182.115955637, 6816959.2558691, 6817801.241135788, 6820270.774731914, 6820601.5625, 6823893.464419757, 6823922.426994188, 6825225.385425247, 6827846.480319637, 6828755.332445273, 6829235.9375, 6829718.309289848, 6831203.592028636, 6831251.5625, 6831492.070677497, 6831518.75, 6831657.8125, 6832244.963734154, 6832736.829799598, 6833236.47199129, 6833285.9375, 6833779.400041226, 6833852.5857515205, 6833865.239627722, 6834694.248874463, 6835949.912502905, 6837861.778425213, 6838232.8125, 6838546.248199523, 6839106.518801107, 6843792.1875, 6845033.316317567, 6845510.335399507, 6853986.7811308615, 6857204.56150596, 6859090.769712185, 6861809.628219979, 6862526.5625, 6869236.421371041, 6869662.694948234, 6869869.139655374, 6871283.977088188, 6875037.588367325, 6875040.064443616, 6879570.689429018, 6881860.9375, 6885817.251173643, 6885931.131265074, 6887177.002396235, 6887428.9945249865, 6892405.574205745, 6893673.1706225015, 6894562.323363163, 6894863.494714386, 6896356.630062711, 6897387.105271745, 6898832.8125, 6899692.403137048, 6899860.9375, 6900584.375, 6901230.695299055, 6903558.902884524, 6904418.0162571985, 6905167.476507532, 6905199.288568594, 6905210.328255524, 6906884.784160756, 6910714.028654021, 6911132.8125, 6916974.758441735, 6917025.118309598, 6917384.597383101, 6920094.685653899, 6920193.629859142, 6921281.376841953, 6922826.5625, 6924670.123994369, 6924685.773119005, 6925809.913997275, 6926363.049164773, 6926492.036359613, 6926675.879992537, 6927743.819833774, 6929571.875, 6930249.626271653, 6930631.525803439, 6930915.987801264, 6931582.69312571, 6935888.706819604, 6936431.1029028995, 6936996.521406374, 6938819.253720088, 6939076.5625, 6939077.60651618, 6939817.07108111, 6940337.218736964, 6941353.125, 6941431.684246613, 6941660.9375, 6943126.5625, 6943992.1875, 6944035.9375, 6944051.221921247, 6944370.256608726, 6944439.907763189, 6945717.405179805, 6947348.4142757645, 6948178.125, 6948319.218192405, 6948412.096379843, 6949278.125, 6950328.119219313, 6953509.555880197, 6956468.674375335, 6956801.190178404, 6958160.736303208, 6958587.124488995, 6959588.334558898, 6960515.338955035, 6961191.598944213, 6961258.901245456, 6961977.645097581, 6962533.183999091, 6963546.4561268035, 6963820.578243584, 6966102.420430139, 6966175.392848604, 6966836.911138348, 6967001.786346076, 6967009.166445779, 6967108.959365851, 6968568.479630818, 6968706.949704365, 6969532.46461139, 6970398.4375, 6970490.625, 6971049.570544803, 6971443.178309509, 6971822.90185048, 6971879.189508274, 6973626.719532581, 6973881.574888605, 6974140.139087733, 6974431.991136632, 6974515.625, 6974937.49471714, 6975079.639996773, 6975213.001069528, 6975756.15406586, 6975760.925493005, 6976585.350012113, 6977355.433859984, 6978920.71442556, 6979024.528821079, 6979433.974303041, 6980029.265935471, 6980429.6875, 6982221.845938879, 6982694.648005322, 6983593.070039728, 6984257.8125, 6984413.087566108, 6986176.259875866, 6986376.5625, 6986550.0, 6986936.407714111, 6987095.3125, 6987119.787741045, 6987768.5440218095, 6988008.882536249, 6988037.031327523, 6988100.772545485, 6988146.831011767, 6988204.6875, 6988731.25, 6988956.083955553, 6988971.968509919, 6988995.3125, 6989029.2931590825, 6989030.711416891, 6989043.579598752, 6989191.288618502, 6989339.0625, 6989474.840582617, 6989799.18872092, 6989802.303264224, 6989961.476534294, 6989967.688722774, 6990077.98053442, 6990246.088619529, 6990306.317287084, 6990342.874226559, 6990381.219200205, 6990693.75, 6991204.6875, 6991295.15777009, 6991696.778662843, 6992057.8125, 6992172.390328229, 6992645.020072417, 6992768.003463708, 6997009.775849799, 6997565.625, 7000363.634162587, 7001058.787999352, 7001416.563961256, 7002165.863689105, 7003410.371659478, 7004069.230344626, 7004077.443507413, 7005417.1875, 7007608.554594019, 7007653.125, 7010010.149947278, 7010431.25, 7012507.8125, 7014171.621369549, 7015504.799475797, 7022122.655993792, 7022390.775689111, 7025554.1708796425, 7025656.424297697, 7028140.384861419, 7029323.4375, 7036213.070973577, 7039516.442932617, 7043164.423184243, 7044393.75, 7044395.3125, 7045284.851595817, 7045391.858794915, 7048231.461332847, 7048853.181113128, 7049404.075964276, 7049738.591786083, 7049769.407240177, 7051902.723059955, 7052857.511465469, 7053816.1201085895, 7055008.951914908, 7056609.223881125, 7057917.1875, 7058557.815692041, 7061581.803867811, 7061697.078102341, 7063084.375, 7064021.861281566, 7064439.0625, 7065579.506861465, 7066237.414829729, 7069738.186061214, 7070095.3125, 7071056.623266204, 7071059.433871067, 7073321.671692676, 7073772.634591993, 7076635.77486074, 7076751.358237055, 7077119.352140403, 7077471.198433551, 7078709.375, 7079376.365038684, 7079785.411555293, 7079839.667442158, 7080239.0625, 7080245.666198374, 7081367.1875, ...], [37.54456981218944, 18.38307174876703, 52.90431083072257, 22.964435032531807, 75.68654835261238, 18.982431296738305, 16.471008177756453, 64.17085289397023, 69.94837063234439, 29.58668824578454, 6.061013065666989, 6.6014044504968075, 45.49295669082109, 124.95066948872592, 11.224663241910621, 27.106237480142646, 49.47085945608236, 28.088110876509077, 36.26781192424694, 38.25900374722337, 23.701171779530718, 5.390670086782861, 39.81938235939175, 6.843839465028458, 23.001646353719988, 24.58823711621789, 19.17913619333366, 9.961955309717105, 9.047957475240633, 13.157557262421363, 15.142899842414307, 34.19728509638425, 48.775063494223794, 16.065852766458264, 113.49252898723411, 24.68110234880441, 9.082416292369661, 54.74673338087784, 30.26712020566357, 6.3327494905945825, 86.97409831284233, 33.653309564443475, 6.348792984006493, 5.73820604049831, 94.77216790572281, 6.164971280695547, 6.948589070362474, 18.061835714625254, 12.316855692406598, 5.466164490817217, 6.3374834659860735, 16.301990877306885, 25.65241080132478, 32.46154744064961, 24.778160914362633, 17.439077156447375, 40.33524436858512, 128.024813210023, 17.75622466431405, 26.552465676781217, 5.80656332439764, 9.812094749598796, 13.515351535998448, 95.65926415189811, 38.49353806744364, 17.53453959999817, 16.97983060913154, 11.315903965672463, 88.53194164286097, 18.518648805266004, 66.23311010378943, 21.719896528474145, 20.73237612087669, 7.95235263140088, 38.960880955815156, 56.8318157074784, 69.59218149828234, 34.094438950227335, 8.101260992437636, 38.15207905134927, 26.527269772963372, 18.219975020482472, 76.52683464644434, 151.34001036477977, 11.16421455797364, 75.76567695724414, 15.347802949828733, 40.95133812729293, 34.748574444097216, 20.55801730116215, 81.25301475604041, 28.385278179904667, 65.22546776197258, 10.054166115269496, 95.75068690557819, 88.12962418747338, 30.893602042062383, 20.85021686385605, 80.55082721245824, 30.486749090260723, 32.45953225494901, 8.761288589656267, 116.67086047559016, 71.59809490400866, 5.084848639384187, 37.3589357027853, 8.696705233305375, 67.37215165241035, 18.14851431868198, 21.883557138906916, 78.356750870687, 27.518037716783446, 10.557314945035259, 102.38959873310999, 82.64447337594757, 32.07324564437754, 35.49593298365978, 35.57019221190908, 26.911600292081744, 8.963513170068127, 96.50694584042859, 68.5877097750117, 47.93149775995703, 12.796341688039885, 67.68257220934579, 24.724907154794828, 49.68408166892169, 22.57471490340101, 8.48431349291583, 29.56840104844562, 6.928155920901422, 172.6692561058268, 11.20537129522177, 25.6853957263018, 14.410081119621134, 9.9826930909051, 22.598453700032778, 83.32718436666201, 18.069799587408045, 65.57950525454508, 14.168386976155292, 64.66360357324207, 29.054903527616183, 67.85982081188166, 7.6551691181602575, 13.673290658893825, 24.79076329932068, 6.361758846753321, 28.43245942817748, 45.52240475961611, 11.787488975968063, 41.67164543917127, 13.382441013017555, 21.421851566195446, 149.94192799949448, 162.02694017170884, 39.78937989986741, 9.38305192350477, 60.056003020035746, 14.866084908627023, 46.74438144865543, 18.413051728682756, 8.314715484431716, 75.03024945184765, 60.58737092756513, 5.579090101895894, 172.52261388049172, 68.97109353782582, 81.63458858146268, 7.993295848867389, 24.378944573834183, 35.41251567461555, 12.232224150465877, 22.991353103570923, 12.82058842481871, 5.313621602305593, 89.43256734901216, 35.92892842235159, 12.55911580928053, 15.227051268725521, 89.92337118113998, 29.35441737079273, 5.617282736635065, 53.11281177218588, 6.725879516427198, 104.95204991177133, 92.23150353714041, 48.353408008567186, 18.431930506590533, 63.376417636081655, 65.01707230447485, 6.073734074737591, 9.22803956200598, 18.712128060336923, 20.943293633401357, 20.148572370658577, 60.46116458063894, 10.934198851212537, 22.057062263889833, 99.67798850767554, 12.764847779877948, 17.81643921060417, 79.204665372948, 36.37665798556479, 67.60348572378497, 71.655833550295, 51.55480030621084, 69.50596768111792, 36.8205490588785, 5.494223360653483, 27.1390067025232, 48.84060640369551, 20.870626352103343, 25.657710752761904, 9.845958730325561, 9.470769199533255, 75.90972645497673, 27.661535522786917, 14.474556455296215, 50.9087135119075, 17.499607452454622, 60.61737076225385, 6.0787146024597485, 9.636670322596316, 9.882798008632955, 26.469151889753046, 13.018493301177493, 10.147709050112752, 125.50143553616584, 83.03824559075835, 74.87928664598086, 30.24676165994505, 16.51454945549918, 49.59646437087174, 16.90955939149386, 8.220242585437674, 17.02294411467828, 207.50389131052276, 10.401190309094453, 15.621825871330145, 17.40719296750584, 5.678945475301976, 21.834723198030666, 91.01268560469617, 9.617159805563743, 38.23549806969868, 10.767156053127026, 18.508299497566522, 15.725702747610702, 46.82226860293939, 35.62583427886943, 28.880162365503445, 51.68477284650757, 84.95395435596072, 14.763556403673816, 56.656227300313745, 61.69726956726863, 25.384033014917545, 9.983477001619692, 5.0550814241212825, 12.086334550878977, 59.18845726585946, 5.2320167068973875, 30.49664440990248, 32.12595599117722, 47.059765118355706, 31.69725505192717, 22.328641307505297, 15.403220139588798, 16.737163497488638, 15.714871915602108, 18.472841571226358, 21.22892719914919, 17.89591811942807, 12.064654061030591, 73.79078554384249, 16.265432328196287, 19.01320050577072, 68.8881772077372, 37.064004639485645, 26.165162704048356, 114.1196239003059, 25.080915338469254, 84.54443448307036, 33.03678201845531, 6.281285396125031, 44.051067290822324, 112.77272694739999, 18.820889165414005, 20.34408595539958, 109.77854705688254, 28.201549342215465, 6.467213199431327, 40.62831950361918, 62.43536796837344, 75.00697015108332, 21.474221049234938, 41.10063955106372, 55.8822657538294, 33.33667845930108, 9.05712374275741, 14.95443984954197, 28.441339447844094, 5.1458131060004435, 18.321272486387542, 76.74812261661926, 98.07215567006298, 49.728454927364965, 8.557770623765878, 26.25828563744663, 93.23725673047262, 120.17895958687444, 47.54586391059828, 7.66197134753036, 21.382149004378768, 18.678846771368946, 62.51143022069499, 26.89969334360818, 86.44579254099834, 108.75240587824764, 64.368349506172, 5.5259693646647206, 14.832359680416854, 23.753696956174487, 12.997419104539572, 83.26730138951572, 18.339085261774304, 60.00572776549804, 38.73610641632377, 25.7921897782454, 18.198093308378095, 8.60226403263635, 47.624497735392744, 105.87325808123748, 16.393155861848992, 6.638019598751822, 8.418732027579166, 23.870303712643643, 40.62098467370728, 56.0084355201135, 10.152752963690606, 46.39147412353474, 13.331910431782923, 68.93139331068427, 10.564987439181493, 38.87817370990694, 25.196112906575063, 174.51318613499697, 16.34814399500582, 5.829057454761771, 80.65968829397976, 32.19752710442121, 48.79529555372653, 32.4976848276026, 64.48084552488865, 76.97573995563558, 12.789671704450857, 67.29230113577556, 92.71815411773, 16.85555468093743, 97.63919800287577, 20.710936623600304, 11.291119491917904, 5.917005937979752, 9.42561550750608, 63.19281439035663, 135.09756250333882, 47.27690253336941, 7.84614502843328, 18.378658918458893, 14.948354017353886, 59.88619120565245, 11.35189350119523, 16.80575772597964, 73.20634611133444, 6.072669091716952, 28.561496540794003, 73.3581757731855, 7.530097790518096, 12.193631471462448, 44.2976525537797, 35.481609335339584, 11.11136762416083, 50.5692005684891, 14.713869266090061, 64.61569185479296, 19.37936415791668, 17.509993072400423, 39.447095019609705, 85.04896471616009, 52.77845675278953, 73.83862963038106, 5.339033214751411, 9.159537088715458, 10.145344711209876, 7.623413670278784, 10.776832837748973, 7.338947759099258, 73.30644345083242, 5.312517647187082, 25.35854357374507, 35.78805037688771, 24.00807744602771, 5.393008765312778, 7.129824011863972, 5.905716251101875, 10.961977333611816, 54.22655236335486, 7.28234241954156, 10.70741303600042, 32.93103552840181, 79.02798648464605, 22.649892021837772, 47.886572407418235, 18.462202291777405, 73.83927681007786, 7.101510273677201, 21.311661716995538, 68.64318530949775, 34.89503759312029, 5.519445464312553, 60.014630301292385, 5.230273500348922, 12.837968916849658, 78.86818051166654, 51.80467063705368, 11.518892827642127, 52.0878989482365, 22.908936825461442, 145.13135153179894, 8.114774737021925, 32.24191855042474, 10.99310469459989, 39.294650821323856, 32.13481269244685, 74.73873361846877, 5.754188319443569, 86.42534601710304, 39.49650489025986, 86.5430151092881, 30.200157136164183, 110.51005512644319, 34.50571677594007, 23.401464588983828, 5.348199323799721, 16.965138575103953, 6.9897209099152775, 48.51551400700747, 59.60478166048028, 17.25832829711421, 5.740266145623648, 141.78513803377055, 85.18057634433562, 28.529106759952953, 9.157345116898242, 7.753488377458359, 45.61893934102579, 77.03493392012597, 19.54201072664821, 69.43339883046343, 33.75123983398976, 88.6226997351512, 14.700162694303597, 55.04637835383925, 29.734233153456813, 38.606564240203014, 100.00806356623708, 65.71859423998808, 101.33563668697742, 64.50463234707924, 9.713213995520764, 76.61017640817485, 36.696411754463874, 16.12889322107052, 11.049313112488377, 10.703228289624127, 105.29689923231088, 49.19703891087304, 7.5551882621968565, 8.617577884757692, 20.688445896038537, 18.3494089964686, 5.151062402898199, 62.646664432422284, 93.7508750909542, 35.89976934645236, 40.28403074233685, 35.81879650484934, 29.935904301373945, 84.37427296481977, 22.45432231585096, 125.67700629850265, 22.666596353726554, 27.83246386954726, 5.727512754144318, 63.683505944930886, 36.35207365529989, 108.62619546888453, 6.3362036593629, 11.778844325015594, 76.25503570510729, 16.059263149722902, 47.94526178298686, 11.451691586192672, 9.428763584012744, 7.966052916837415, 95.27233305695195, 49.000124249645616, 64.77479736831414, 8.59776004777863, 6.219498963933937, 14.201597743035034, 21.353922891849308, 40.049096833134755, 74.3896971739936, 26.879719067276998, 21.150908700620057, 11.08642161589029, 45.89028470731756, 17.116302966985778, 47.70963539394785, 25.353562452327687, 26.46621158316283, 67.04022407394827, 25.864590465302786, 18.360964227226063, 88.48931001296219, 55.900360283279255, 32.1147534956104, 72.46217009361415, 47.24332838025298, 19.44207824898481, 33.42750233789326, 67.50922093576217, 61.72690401128559, 61.71115304309003, 12.401115188708243, 33.13846632111172, 10.141607705980114, 6.388715274751836, 44.11302844061203, 9.418917880381793, 72.7174432441539, 65.04182017480932, 61.01274274817074, 48.11233570011851, 42.091832285639306, 57.20352900078699, 9.25780555459967, 15.580827830126555, 46.896533952478556, 101.63676807071823, 103.01302405507278, 5.246951206412435, 17.117036245725348, 27.26746738170079, 11.147529094565513, 29.977549370034012, 29.578902627202705, 68.14107035871514, 39.68292909052917, 10.289014839963873, 25.254986989311675, 7.369496444456011, 10.420401918423114, 51.71728595184075, 9.939383694076257, 88.44650546687029, 45.711656252537104, 134.73069406992647, 10.44809345412177, 47.5797283746457, 76.12805885769677, 6.984115998920231, 14.819958971951975, 19.670337712432755, 64.09161617582808, 6.325346352000433, 5.690340544361188, 5.130096813051001, 22.44975765450718, 18.595687744369553, 21.341417908826976, 21.841860757320003, 27.00341374459344, 118.69155741575472, 29.501053110562893, 76.0848260266864, 45.165688002861756, 33.846815182339505, 14.957724233574202, 75.6632766522652, 9.482719207916897, 34.578590474211175, 5.9398555195997895, 12.506667154938702, 6.709412013703988, 138.12608430852035, 14.974583388932535, 56.74735831572402, 21.574483757049716, 5.776355221824732, 20.303033379759388, 89.22837176378619, 11.782248156900641, 5.833332388605449, 24.30263680000452, 8.892169208598473, 27.882604492243708, 67.04065745071003, 17.920234101943777, 7.992409757963902, 21.20325044779327, 67.44190774485668, 20.391067700081788, 151.22609839318423, 37.13613897239367, 17.531888936296973, 15.832797289711435, 5.2474501891571785, 91.3348285555361, 13.635079266489608, 56.73913279629453, 11.686072244287983, 34.06042530772237, 81.93277104801376, 22.04404965875187, 136.43030007956008, 59.3916658249712, 49.21348511933143, 93.94418071459258, 27.9994016282876, 7.070707523719247, 33.54580618314377, 8.571144615265226, 10.729619631292374, 24.179791015919196, 79.44582636450349, 70.03360191203485, 19.734552052557067, 21.230743912967956, 5.350047841344407, 57.71731180076448, 18.736030295732537, 22.796758213175213, 21.904233518884855, 6.776745679646822, 36.19154784486902, 17.203132439438313, 9.275890179114068, 9.462704073142671, 19.16800575491669, 40.71399734134555, 68.00339242268907, 17.5917463956571, 42.67915192633489, 11.303899225080329, 11.00778559753598, 43.36517562870915, 103.78786360472938, 15.557567833118283, 40.8720349260029, 7.062864437862476, 23.129012850356148, 54.96383379370802, 94.80545217834305, 121.59206658385932, 28.39051958190923, 10.360094395002092, 133.90495057803585, 99.50318934255206, 96.96672975246456, 34.51501135000539, 99.0852900508625, 39.537122298154074, 32.84413159039214, 79.70120986660538, 36.468304429457504, 36.42528200290644, 36.589380737716475, 5.247525495685383, 143.0511751902932, 39.03701513141176, 93.0734105732395, 29.241068860970564, 104.05519957645356, 5.880668644915575, 14.424693282190766, 7.742244485560482, 24.496492252405353, 45.62229436735791, 128.6594785857518, 15.584400196299487, 127.80040098550117, 52.19624946521459, 43.13267435715383, 20.9608263310419, 46.07874931023962, 17.39198286603811, 13.810634984061233, 84.24277489446558, 60.17824864142848, 51.089943284547765, 13.500876566259683, 54.005030994549834, 13.849449437679025, 57.83377105256607, 31.827725432982604, 28.629139902616984, 28.52259796632199, 26.084409648422934, 24.884288712555087, 12.595691590309858, 36.659897177607384, 12.821790975952442, 64.72278668718685, 35.79009052244746, 54.583221902525416, 8.501529404131587, 43.49827857716538, 5.172075625768395, 10.584518071046135, 8.126949763490895, 42.81607994021047, 20.968030626615366, 17.426336585310114, 14.158270206795379, 24.448505771947673, 27.732313752424762, 8.307041155033463, 14.14951333056813, 14.457999126663557, 25.247407813028616, 170.09105763038312, 28.591766000648043, 114.38242178850373, 36.25401187002916, 45.04291090655817, 13.954333840157549, 29.731363999147042, 32.5061546293542, 7.4664649747629115, 74.6993834921365, 44.09361895748035, 22.105665195902695, 17.08066600700904, 61.40453310827138, 81.1204728971358, 77.28344946657423, 67.8092043441883, 6.695819939558336, 8.822452110956228, 30.27855142306386, 49.00033156354588, 12.781366960450196, 21.110311151026043, 13.65134449538686, 22.972791379989168, 32.355552869399745, 10.160472237791689, 69.93308987389263, 10.271495930430355, 11.862295856430112, 44.00666644187106, 17.28643112165142, 5.77073387807356, 12.76408646495848, 32.79949959595072, 9.45683825762888, 13.82246981593277, 39.040949416524036, 5.258892716025399, 14.697255669455348, 6.549958602654183, 48.3730860289475, 26.894336094546162, 29.13592404682602, 92.36855016306816, 85.11631069675468, 15.189887560692219, 26.379687176820006, 27.34436557609896, 26.018764406741425, 21.00719202414001, 9.115497166069641, 41.42119792031565, 24.8208768616541, 86.12663141616846, 22.611710816077366, 72.38559480577669, 16.049048812185518, 99.89690008005505, 37.770522294093645, 13.178688738983805, 29.596168327054585, 12.728436155228987, 8.445560344477867, 46.956221396783455, 8.864414430791323, 23.18883515050155, 14.814054809896625, 45.38413400384046, 50.30620386201282, 11.317808722715403, 30.763931347729258, 56.12073259548608, 20.005499108263766, 85.60675806097862, 40.42670287520377, 25.28767299426534, 41.19537628754675, 84.72503132326639, 17.54939218091406, 56.84982857188443, 27.610668106826203, 167.66269736454268, 64.55421369697679, 22.852535528267442, 16.108412207404303, 22.157249013884623, 20.642824613684397, 8.1070364780291, 53.485519561505605, 31.433054697306247, 63.42730326304151, 73.91093829995586, 24.467550172603573, 42.137910057909565, 39.17478298065053, 69.54306651333323, 9.727715805274137, 122.92690739119152, 53.592060753106715, 44.63585405408604, 42.70849581716667, 5.235712137426745, 190.37924097238164, 12.76801740314624, 23.577492864690363, 68.53650378712783, 52.50707669713219, 17.087074914818164, 22.511616918947162, 78.02263489065413, 117.45270640014988, 11.422715590866257, 39.2556101982874, 95.77280322105152, 10.82714145278833, 28.336420966080166, 12.74230616438038, 48.49609958756823, 20.65296708608657, 8.96055769090228, 13.381427671241015, 215.35884153730356, 72.094547900859, 6.817745807758856, 18.79743326049291, 45.02561381682248, 70.72066733739524, 103.26279675834179, 56.631228019946114, 9.003062583162405, 97.77591918857954, 6.911727822597907, 32.92891844087412, 66.80886897242713, 93.20719402042118, 13.523495211037686, 109.29771799995619, 21.14469888647106, 42.15117767830837, 7.163351770584277, 16.34354309887457, 55.684336379925114, 12.524393681168819, 49.22434238629756, 54.81351789606269, 100.41698243519605, 8.570603347062857, 10.980994945607819, 9.321271175608583, 7.403729816810209, 8.725078171726139, 7.755377250291112, 18.15356670392389, 79.505104471426, 5.78343295195419, 64.42869902422598, 27.96239366700433, 12.897033563777253, 118.9258432424881, 54.28594357037912, 35.948534273016875, 10.68548677782518, 57.98826755986823, 53.483594891417944, 11.951875333477718, 43.47918447097926, 5.508143052083696, 10.820321877916811, 42.40654325912922, 24.84646344859074, 5.873442344637714, 73.52073332748458, 56.92138719160856, 74.7233515586482, 25.627223145690007, 15.310320396658442, 45.7844097704408, 22.616096041683424, 102.36976499332462, 5.336116365439447, 19.309446411449677, 46.712913247445144, 44.965885592070265, 12.547370342816546, 43.074988414751544, 12.089584485739012, 30.08462559757008, 25.963965003260636, 16.991023892410613, 15.204332187564079, 12.40260807730862, 9.305495287980031, 33.4558363091478, 81.14617792927129, 25.80246996410856, 135.8815607555369, 33.359848685742115, 127.5463661372818, 30.589361522468288, 50.67345829931055, 66.67174686574211, 47.476256784396064, 22.239054595517974, 63.70258127172032, 10.275392294036667, 136.81948037335846, 78.31754387729345, 6.329855846769929, 12.855024742089244, 63.324673979727876, 8.722295379112738, 106.34602187232963, 6.009858666632659, 57.66486503319648, 33.365328952538434, 31.40349484200101, 9.42791442448359, 7.343089001531679, 9.462154610350227, 10.40600826907881, 7.667518613504607, 50.215502469254076, 69.12180695349046, 5.261411711378007, 12.702680031686283, 156.81675320506687, 53.13812515551132, 65.10402912278514, 26.112550014932403, 22.61312491574597, 11.47492201027591, 140.78195949945342, 6.026732731445831, 21.790305333281122, 12.338110487555294, 9.01319141381072, 35.946909254009675, 25.749918784621528, 22.296286847606186, 122.59346641247956, 73.93596442039862, 14.95368996218208, 104.57747153759948, 7.678386123220731, 112.85542529719598, 89.59752975380707, 70.41908728432423, 6.727971479394281, 5.807705157594083, 61.809103400051406, 40.73522306468405, 83.64428627447266, 12.071159647787042, 6.723585438124965, 18.923919525099702, 45.10937858493214, 25.055859113490026, 6.889983476099466, 19.89574367954202, 123.378212468427, 25.155289082988183, 21.238134154116878, 42.73058623764264, 42.0956202073032, 8.482915536692124, 69.92411547777073, ...])
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)