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 = 44919
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);
([6723701.285093129, 6907647.972809796, 6966396.642389118, 6966586.805043057, 7170903.786933218, 7205599.226870136, 7208619.3630576115, 7212117.9411124, 7249436.660357829, 7266235.409204075, 7275489.0625, 7288348.0713359555, 7299195.583245061, 7299372.783612468, 7319471.875, 7321898.581918821, 7323627.902123829, 7323642.82315414, 7329649.169861271, 7353748.8167487085, 7353770.407478882, 7378849.656465748, 7387075.0, 7392189.6213504225, 7392199.477887094, 7393658.988812492, 7393886.914707898, 7397510.753692486, 7400245.91326357, 7411623.079059866, 7415366.838552031, 7420287.688378822, 7423962.5, 7423966.56326142, 7446178.125, 7447348.4375, 7460452.7060339395, 7461222.482804871, 7461355.817634869, 7461416.623663303, 7471366.671010151, 7476046.210346134, 7481747.6544967145, 7483134.314663518, 7484965.438221526, 7487810.184646474, 7494304.6875, 7498365.623469619, 7506332.8125, 7506520.492092677, 7508130.9017657135, 7509295.082936084, 7509390.012620828, 7510972.424123548, 7512100.453281311, 7512582.359015295, 7513275.0, 7513745.3125, 7517229.6875, 7528730.636943698, 7528762.865380851, 7544833.757085299, 7548693.75, 7554840.113038704, 7555602.019169705, 7559208.636578074, 7564264.710503667, 7564292.446182285, 7565389.0625, 7569032.936322262, 7572752.875239891, 7587852.615329605, 7588381.25, 7590174.980720482, 7591253.675817852, 7594634.44129053, 7598360.9375, 7603942.861509476, 7605437.5, 7614593.795297888, 7616320.595579318, 7618917.1875, 7641612.5, 7642818.17319562, 7645210.881226412, 7646182.8125, 7648068.930957345, 7648073.763666724, 7648678.808933334, 7653115.8355932925, 7658068.152538419, 7658069.066315234, 7667193.8578948695, 7670060.737192458, 7672523.4375, 7674726.46625234, 7675338.67587731, 7676716.301495148, 7677231.601816046, 7679146.988717966, 7679924.642528656, 7679938.898835761, 7690251.780338043, 7697712.476442445, 7702004.299722272, 7703824.1046471, 7704505.668979672, 7704707.695134975, 7707501.545907756, 7707518.75, 7709860.9375, 7710182.8125, 7715524.17297942, 7722773.4375, 7724414.878792121, 7724646.520949758, 7726471.875, 7727592.1875, 7728751.416731509, 7729249.903609053, 7729580.6677764645, 7734021.032619057, 7735075.0, 7735406.25, 7735667.521790077, 7735893.956942327, 7735969.469234269, 7736155.946477103, 7742730.127830378, 7742902.324751054, 7743470.3125, 7744518.75, 7745317.039010787, 7747773.63933301, 7747836.357723162, 7748012.33432481, 7748691.241008679, 7748918.149313935, 7749239.608070229, 7751451.231202542, 7753637.5, 7753779.03600152, 7753853.125, 7753990.481474572, 7754273.508797866, 7754352.546725696, 7755989.0625, 7757705.999551006, 7757714.0625, 7758998.003974069, 7764961.814552829, 7764991.294295829, 7770740.625, 7771364.507228492, 7774763.45963963, 7777791.462284865, 7782842.2767742565, 7784736.451724815, 7786449.337958736, 7796725.0, 7799260.144880743, 7799779.6875, 7802932.974843074, 7807346.488927011, 7808767.1875, 7809632.757147285, 7811196.875, 7816348.107642614, 7816906.087704495, 7821833.878837394, 7822745.718253581, 7826429.537669876, 7830968.789504873, 7832115.568435158, 7833181.089785508, 7833384.501884431, 7835195.676766705, 7835317.8512483565, 7835851.806357378, 7836006.102779093, 7837506.877057921, 7842115.154790247, 7842315.625, 7845246.958827977, 7847065.625, 7847693.133087335, 7847756.146943098, 7848459.375, 7851935.236200719, 7854535.387803283, 7857938.802752266, 7859164.229433643, 7866276.605385404, 7874215.625, 7887682.8125, 7887856.7296521105, 7888566.211393344, 7892450.0, 7893231.714115987, 7893481.082211962, 7893523.135725034, 7893885.158027917, 7894111.395964238, 7894384.375, 7896342.822308114, 7896782.743024466, 7898230.485835982, 7900354.6875, 7905142.748804036, 7909313.528962258, 7909679.011895888, 7911131.25, 7926561.78597699, 7926605.012479886, 7926858.779765086, 7930675.499237111, 7947876.5625, 7952007.724303285, 7952443.673161855, 7957714.0625, 7959021.158555772, 7959537.5, 7964014.0625, 7970659.375, 7978269.547411485, 7983198.122971992, 8005643.688675919, 8020296.766433774, 8031893.175085738, 8032165.625, 8046734.375, 8073757.54310508, 8087879.456218906, 8098989.831738055, 8146523.276868857, 8182538.135392152, 8211976.5625, 8247510.9375, 8247578.701196399, 8252373.4375, 8278607.295313015, 8295643.75, 8297256.1761141885, 8298486.197589361, 8298763.971187446, 8345053.880208818, 8371490.625, 8377024.036522488, 8380630.956053477, 8422521.875, 8424626.09217647, 8433657.14988963, 8436086.948215095, 8440187.5, 8441198.346618904, 8465149.78971361, 8483579.057502666, 8494706.25, 8495217.1875, 8533745.632529661, 8545439.090006962, 8552099.203015717, 8552756.25, 8566970.888109727, 8592590.981786672, 8601261.378905132, 8618543.363224996, 8619906.95450806, 8620575.834045399, 8620996.800593166, 8638470.3125, 8643249.364076076, 8660205.638258517, 8669184.733135657, 8669516.990106866, 8681632.888363898, 8684617.756048778, 8684623.4375, 8695484.761171876, 8697440.790452043, 8700308.542224033, 8700317.5920483, 8701152.744400091, 8706179.680610169, 8706448.385982772, 8707281.222709682, 8720368.75, 8733321.875, 8744931.25, 8748184.375, 8782798.4375, 8784118.150784347, 8784539.504787825, 8809358.82742833, 8841039.009219965, 8869876.5625, 8873769.413943807, 8894052.386441587, 8895528.125, 8920618.75, 8920619.892813532, 8938565.625, 8955727.521938957, 8957251.870150536, 8976137.342683423, 8976737.5, 9016350.0, 9083882.024938047, 9132604.076538261, 9148835.591694597, 9150437.5, 9295432.447843617, 9333165.656526979, 9361181.980154892, 9443743.722562917, 9446536.711166326, 9447991.980471805, 9460666.2405262, 9468425.654634468, 9469515.53306497, 9505992.1875, 9548404.18038568, 9559657.991815303, 9654484.107208846, 9689931.418598497, 9707862.65893391, 9750725.0, 9753236.102155898, 9753287.025300123, 9760436.152431749, 9761724.9188127, 9792082.824287312, 9817169.857074132, 9847004.684684385, 9873128.816502297, 9887838.357245607, 9892767.1875, 9921353.381603038, 9924307.400358856, 9924608.127640476, 9925073.319422733, 9953010.350042274, 9953823.868109688, 9989806.25, 10017521.875, 10025883.433290992, 10073790.437445637, 10156504.937492786, 10162414.0625, 10165847.147731552, 10182927.757952334, 10185621.78096485, 10190838.443461582, 10192168.539578155, 10195110.157412922, 10225956.25, 10230055.829084866, 10402639.978550615, 10408095.499333533, 10582260.9375, 10585783.203637257, 10596815.526150024, 10596874.087235425, 10663937.777072737, 10665565.625, 10680129.579751827, 10686253.94978708, 10705243.75, 10705504.064348197, 10729771.875, 10739442.1875, 10784224.936396083, 10799603.125, 10815638.51893719, 10829207.043027302, 10837791.372730546, 10844632.775663845, 10880795.3125, 10898965.625, 10916131.454186348, 10941900.443710843, 10957107.8125, 10986949.735379541, 11018998.106338171, 11024853.817890352, 11030639.51941954, 11033802.165300637, 11052324.460746842, 11071135.9375, 11071137.88031827, 11093649.676767902, 11107926.357197778, 11123938.928427286, 11143141.251118861, 11159482.543154588, 11186677.734524926, 11229018.382730575, 11233646.411707735, 11233780.076828234, 11236040.967448102, 11237910.9375, 11249754.6875, 11279488.844439974, 11291017.1875, 11294085.9375, 11310617.1875, 11341198.4375, 11344702.73746789, 11347298.4375, 11354182.985993952, 11378704.6875, 11396429.677812982, 11398708.71401414, 11399413.492453648, 11402308.092733603, 11420870.3125, 11420903.488645686, 11431582.374111319, 11432052.518887535, 11433859.681084147, 11447397.152862154, 11451203.056180226, 11488490.650144037, 11516098.31959967, 11613028.936210578, 11626726.709864268, 11626817.311300121, 11628563.152104197, 11673821.85650828, 11673821.875, 11706545.3125, 11722884.618936045, 11755437.558304133, 11764134.975138417, 11772678.353457358, 11785406.25, 11804904.13648396, 11818168.225603428, 11877417.744354038, 11921802.973980421, 11959568.17964946, 11984739.540043319, 12015505.418493357, 12041455.137286793, 12092203.591711788, 12100521.393175196, 12131414.66473626, 12143668.848209804, 12198083.62735456, 12198093.34365881, 12239600.76803065, 12257311.682403829, 12282651.592229303, 12289352.753715519, 12291997.641627688, 12294665.625, 12318800.701937545, 12318813.455492124, 12372744.911889901, 12427852.040481599, 12430241.826282337, 12547744.528036656, 12569500.0, 12952840.454283915, 12970522.69510423, 13049070.220363623, 13276364.962848535, 13276376.779615752, 13858681.25, 14450389.319346175, 14710927.804203188, 15072921.905077254, 15178587.870901396, 15211905.557589756, 15256706.25, 15284377.719930524, 15291069.04164132, 15303101.269023059, 15304348.8348185, 15318644.785143396, 15321398.4375, 15324154.494008344, 15327932.921263957, 15359477.995760437, 15360747.742242921, 15374339.707215859, 15379635.594810378, 15381346.875, 15383157.614539031, 15383294.647755792, 15383591.146199854, 15384172.318714632, 15387651.506118132, 15388912.5, 15389782.944353718, 15389982.671205446, 15390114.86425464, 15390186.891343651, 15390462.126100888, 15390951.406599412, 15390954.794298781, 15391090.625, 15392536.477420002, 15393520.236630753, 15393690.625, 15393843.75, 15394433.873455653, 15394658.223672023, 15396059.904936356, 15396488.20601578, 15398510.9375, 15408115.625, 15410326.583299898, 15410600.51916369, 15411689.0625, 15411706.303775823, 15414542.1875, 15419894.533010738, 15420603.236051753, 15421432.8125, 15429002.589214025, 15429033.831818478, 15431190.13146488, 15432904.982209058, 15432938.221826943, 15432986.998185309, 15433159.171029083, 15434942.1875, 15434996.656685894, 15435226.375320546, 15436426.218176639, 15438847.977936052, 15438873.935081283, 15441038.67998852, 15442004.403550897, 15442518.288594292, 15443937.069588449, 15444962.399269804, 15446340.017237553, 15446868.512747144, 15447233.155267956, 15448122.879490118, 15448806.25, 15448955.321106259, 15449161.534944594, 15449442.635855636, 15451588.059665965, 15452427.808526678, 15453429.404653298, 15458031.102638222, 15458170.3125, 15458896.875, 15459564.94014392, 15459587.069608657, 15459640.257828135, 15459689.0625, 15460734.730971701, 15461154.6875, 15461156.217324343, 15462219.103055658, 15462994.590594474, 15464126.5625, 15466853.34073769, 15468139.0625, 15470961.916636279, 15474154.621239528, 15474160.528608892, 15474909.9452271, 15476054.40692688, 15478826.552798787, 15480841.572617812, 15481607.544233797, 15482405.441724584, 15482406.89357917, 15483538.816897377, 15483595.143409465, 15484662.137072323, 15484693.605484346, 15485370.66438118, 15485489.0625, 15486159.375, 15487190.625, 15487457.884362103, 15488420.27841284, 15488591.991387729, 15489752.811119437, 15490663.188931316, 15491065.347592993, 15491184.575559953, 15493092.444215843, 15493889.0625, 15494235.065787116, 15494828.632352982, 15497227.775480138, 15497665.918154292, 15497957.556043966, 15499251.153322447, 15500017.331435425, 15500472.90277291, 15500531.787224466, 15500823.826992352, 15501021.875, 15501305.13316321, 15501560.553528411, 15502708.280631438, 15503980.790661817, 15504361.276361162, 15506338.893866632, 15507104.41693105, 15507142.564682646, 15507271.11912453, 15507298.769373102, 15507398.402451595, 15507441.197488703, 15507475.014689779, 15507477.467293473, 15507993.199304076, 15508234.911490092, 15508243.349172015, 15508521.090057611, 15508696.875, 15508707.431283293, 15509112.5, 15509145.3125, 15509932.860368475, 15510817.523265373, 15510910.304555042, 15511290.558689542, 15511542.403435923, 15511670.3125, 15511689.521521667, 15511892.956434457, 15513042.730684582, 15513515.944813222, 15513804.6875, 15513853.125, 15514284.375, 15514851.5625, 15515066.675342446, 15515574.639260145, 15515719.496578626, 15516030.843683662, 15516040.598098429, 15516731.25, 15517459.939303774, 15517979.539347207, 15518741.454789698, 15518875.0, 15519250.332557224, 15519599.912880164, 15520034.372708315, 15520578.998318233, 15521246.86877183, 15522432.8125, 15522735.10296987, 15523542.1875, 15524401.260080438, 15524600.74869413, 15524732.416161286, 15524991.420287617, 15525360.9375, 15525368.183999494, 15525489.0625, 15525806.401004428, 15526181.029394822, 15526636.259477783, 15526687.5, 15526823.004264332, 15527146.626395384, 15527750.0, 15528250.866213625, 15528425.0, 15528536.438425466, 15528576.82111855, 15528829.6875, 15528920.18409018, 15529206.416787442, 15529312.393912168, 15529387.194084367, 15529445.84929936, 15529629.977673393, 15529646.744024206, 15529847.602450926, 15529890.524306098, 15530154.6875, 15530574.898691844, 15530907.629803723, 15530923.259279408, 15531176.64557835, 15531183.820525711, 15532286.927801294, 15532427.73405514, 15532467.782998005, 15532502.024127629, 15532681.914243827, 15532786.501049876, 15532787.135173459, 15533242.148025397, 15533272.317838304, 15533438.97936588, 15533786.946060186, 15533943.75, 15534095.3125, 15534196.054577922, 15534265.625, 15534370.162447665, 15534423.187611809, 15534550.263978217, 15534756.06612656, 15534940.625, 15534986.98011865, 15535005.672092343, 15535010.354820253, 15535104.785384407, 15535245.3125, 15535309.375, 15535332.693932958, 15535619.686696967, 15535653.527166748, 15536504.777477795, 15536573.4375, 15536634.375, 15537027.173649734, 15537474.761835855, 15537787.941948319, 15538367.01869764, 15538376.607196363, 15538556.372584593, 15539250.729892058, 15539482.8125, 15540047.22069142, 15540066.501898028, 15540506.57340115, 15540562.5, 15540690.51118824, 15540784.259833397, 15540944.019227065, 15541008.696352053, 15541188.410028523, 15541243.587113567, 15541416.101627368, 15541947.443707902, 15542005.885861514, 15542317.997599263, 15542368.542499322, 15542448.017924337, 15542501.5625, 15542528.997816762, 15542579.657796297, 15542621.909381129, 15542704.34640562, 15542754.134251377, 15542896.875, 15542916.120616104, 15542935.200311573, 15542940.165957835, 15543130.974214591, 15543637.266089242, 15543656.072011601, 15544134.940564582, 15544474.306525547, 15545995.197486863, 15546111.61536368, 15546309.610124292, 15546634.106428256, 15546995.246407555, 15547084.097593157, 15547216.868479518, 15547339.914856164, 15547423.4375, 15547547.322838115, 15547576.5625, 15547962.5, 15548114.808456982, 15548270.835717896, 15548526.328714663, 15548612.598987708, 15548620.3125, 15548649.603991833, 15548713.709272614, 15548787.5, 15548915.08330533, 15549025.090138197, 15549123.788018974, 15549232.453197043, 15549479.295858921, 15549499.252265608, 15549614.0625, 15549628.125, 15549643.978434486, 15549817.54446095, 15549863.770317115, 15549906.080962049, 15550433.360203894, 15550499.951418579, 15550537.51543372, 15550811.529775005, 15550879.37715252, 15550899.787840828, 15551449.850056222, 15551559.496114576, 15551756.219719127, 15552160.504784752, 15552388.942916248, 15552761.578182707, 15552799.786979156, 15552856.25, 15552945.740888875, 15553625.0, 15558440.273571247, 15559579.347826572, 15559714.963753205, 15559809.86127164, 15560015.798711723, 15560156.683165714, 15560969.49156728, 15564638.557245554, 15565088.779048955, 15567362.153743397, 15567650.656381993, 15579871.756554112, 15581589.68951559, 15582390.007087661, 15582435.9375, 15583067.772051362, 15583206.00371993, 15584088.362319823, 15584168.72981859, 15584616.21863997, 15584733.947758548, 15585321.529211571, 15585445.3125, 15585794.15477233, 15586385.192272644, 15587141.423751181, 15587909.375, 15588430.039833529, 15588527.502072236, 15589792.1875, 15589882.46355403, 15590460.323449222, 15592448.301034555, 15592840.932735316, 15593353.125543224, 15594791.122510917, 15594823.932002468, 15595608.659425678, 15595732.61119527, 15597555.022438396, 15597631.967583966, 15598102.925758211, 15599111.745499307, 15600234.882855274, 15600258.28812135, 15601274.67676189, 15601464.0625, 15601491.813851213, 15601986.42191218, 15602106.140864052, 15602967.800214285, 15603075.76436395, 15603541.576882664, 15603884.375, 15603979.6875, 15604051.53256174, 15604082.704485193, 15604121.457417244, 15604159.934180696, 15604342.855709221, 15604362.843684088, 15604821.875, 15605645.3125, 15605695.610142065, 15605711.650398865, 15606056.029769951, 15606622.426548265, 15606833.44060969, 15607355.60099674, 15607662.488479309, 15607802.325792668, 15608067.1875, 15608127.231103208, 15608634.54611491, 15608792.649204427, 15608960.256753245, 15609960.620701157, 15610053.125, 15610833.232921999, 15611090.625, 15611359.899335533, 15611711.17219772, 15611715.652246015, 15612034.375, 15612118.570853433, 15612349.09226821, 15612401.60717913, 15612519.398760276, 15612523.65001008, 15612550.086043384, 15612606.323940173, 15613133.216581637, 15613145.334412923, 15613412.958425028, 15613478.125, 15613495.381206749, 15613545.587527832, 15613656.662726661, 15613862.647862226, 15614040.581949072, 15614107.811821241, 15614150.621516543, 15614173.938300524, 15614206.534085479, 15614228.52570885, 15614256.371252883, 15614334.018652368, 15614339.0625, 15614360.054332128, 15614401.124870606, 15614437.307615899, 15614437.5, 15614439.246297348, 15614441.259159623, 15614614.615824202, 15614619.37407701, 15614629.299745467, 15614649.40344387, 15614685.78879368, 15614710.9375, 15614726.5625, 15614767.283418616, 15614874.918254362, 15614886.719657384, 15614938.67966361, 15615056.830706635, 15615115.57100921, 15615139.028911285, 15615144.989001123, 15615157.178703938, 15615274.63873921, 15615276.5625, 15615284.375, 15615288.97335265, 15615289.0625, 15615406.670237117, 15615434.375, 15615454.6875, 15615457.389253916, 15615457.70752682, 15615488.682096299, 15615531.66096774, 15615549.447261117, 15615628.125, 15615740.089297635, 15615819.89568511, 15615880.167785285, 15615903.45162204, 15615907.545068052, 15615918.937118206, 15616026.075530002, 15616029.138190087, 15616054.227968032, 15616110.265945183, 15616124.36495315, 15616138.35685526, 15616167.1875, 15616328.093583895, 15616526.5467628, 15616585.9375, 15616633.405664837, 15616852.711409548, 15616999.738476824, 15617370.3125, 15617373.2131232, 15617672.988582883, 15623108.194198977, 15624901.5625, 15624901.5625, 15624928.125, 15624929.616797127, 15624971.762778977, 15624981.905019416, 15624991.889282944, 15625003.09446474, 15625018.582888288, 15625024.785860278, 15625045.296439867, 15625046.875, 15625049.866178686, 15625057.591735832, 15625068.02097268, 15625081.190771144, 15625090.378993051, 15625099.951898195, 15625100.0, 15625147.751576401, 15625157.8125, 15625176.296621678, 15625180.698922498, 15625191.94182868, ...], [29.130165786196933, 21.033519358909775, 24.65148170776095, 31.662440236039533, 5.566092464553174, 11.253737995323545, 48.30629849510644, 6.923902039725982, 10.027839893297394, 53.147903922886904, 37.51384202404535, 9.039861762442202, 19.05199599797877, 20.08406454186948, 53.73713475975862, 73.98801037795052, 14.155010532765049, 18.036066310869337, 25.618359426606183, 27.27748635970746, 105.50926262448581, 13.691488816824656, 68.75272287037102, 17.606947794627683, 54.68702735043847, 54.56287581499977, 13.098367244360158, 25.357796595236536, 5.562965629163852, 23.03189010182996, 58.67340388532348, 6.801706852315825, 92.16858628136023, 20.337249094127255, 59.357677902782925, 54.58423208113097, 7.015507694155984, 32.09076210486825, 28.417420856907263, 5.189291179817152, 18.572057123891724, 12.896638224341324, 6.929788568128459, 39.55059193734629, 63.49023952604863, 72.65146900640254, 64.95770480887111, 18.75613503972371, 42.44450260209477, 11.420525154099204, 30.645872423111857, 65.07989509308774, 25.646776040946442, 17.549148277932353, 5.639622779157873, 103.1438475982944, 33.709166893363516, 44.156748328882216, 48.13615998359312, 20.4348663276008, 62.57202688295302, 13.014304295337134, 66.1255671597957, 12.73689201793219, 57.91493329373578, 10.141169963359665, 90.81367915421845, 15.353053615313637, 53.641461769909625, 19.424213887382855, 24.414424829711983, 13.299638898511176, 61.910054362779135, 28.148891284440005, 12.113664305694643, 114.53938574652815, 59.298473857954924, 18.33178529717063, 65.54990908172445, 20.523288963483573, 15.53074692799808, 55.72223364643053, 56.37184128029806, 20.75968747033191, 14.731272891579197, 78.7409288676123, 15.679211950669456, 16.349791166385618, 16.890497021327242, 59.66754287669902, 89.9469928821169, 5.727189291246205, 6.785239821073499, 25.113565489478095, 61.74058658649634, 63.11561934412304, 62.314074085274356, 27.157448609645517, 5.255099759766281, 80.40511394725578, 23.0433726457816, 59.275107796076185, 68.61984214972432, 35.97619160807409, 106.24846994429565, 5.424605946968387, 8.001498036268888, 14.512274688796634, 58.239772105680075, 62.952621510678945, 29.973131617963208, 56.04209787234874, 35.51745284239519, 93.43242971507117, 61.94581835036061, 40.71949636225973, 119.45183193004567, 49.64380615044668, 9.211115858033622, 58.14232156277876, 13.106358300564109, 21.361172023422696, 36.77310705214746, 79.06076894177214, 25.903446846390597, 9.512736921111848, 15.872098057451534, 36.435786331888345, 6.854718741463797, 5.657653015891238, 60.60145238141973, 128.36284185876264, 9.208925783631196, 82.07182380294685, 9.71393724270983, 25.632897243420366, 12.249632418875752, 105.44116891036641, 5.988368257571054, 25.43171501268155, 57.7391287468088, 6.960113502627959, 85.94615924011939, 77.73341937657602, 7.140320675726034, 28.669122925197726, 43.73018744950364, 24.405017772162015, 30.84104726532843, 6.679936544766731, 8.812077486812951, 12.364355587724447, 47.3026244747773, 31.364701846976427, 10.300213547668418, 118.85633243815445, 7.6358489817807005, 93.17969219093611, 12.903131202726485, 43.959770377802386, 54.860291704365466, 123.44226326116187, 8.374334278891292, 83.9720929461699, 61.08811961081952, 40.64804757737852, 69.22772659388396, 183.01537277609393, 22.15624805371505, 21.53146588554066, 16.752088148575396, 6.733958305844887, 22.516711582298363, 6.752266135209159, 25.717162384275184, 147.6690708860736, 21.617016764048124, 37.35371784645356, 17.095422824095806, 123.34784516354787, 47.80392587048865, 21.795511945465673, 117.8067523396085, 6.277847842133613, 52.106175644106436, 20.401067415018677, 9.245756885894908, 71.73889798213438, 8.801341718724162, 27.294094667633438, 40.296608648992525, 13.491568601185904, 114.28547294890016, 41.615169474527974, 34.21401671957112, 5.176684955247233, 8.623088389772622, 35.33097168606583, 11.939908558088547, 58.28873817234222, 23.728095382480547, 47.073846860486384, 132.13223731921272, 62.0650210702307, 18.076315873996723, 33.53518520263613, 10.11192233118419, 62.532481627404294, 7.277255726134475, 13.235123063360561, 23.647316140644843, 43.974753181908994, 19.594384071200196, 57.872342781579874, 20.592926500712398, 119.75082100185004, 55.35523811985667, 104.24959215306009, 5.609807365886988, 83.16916804239989, 44.80549753530507, 70.61568411918236, 49.72018480681825, 36.7232440764517, 18.121860422605995, 22.853422967189278, 65.21818823806434, 34.64027965131569, 47.06823330083491, 73.24811353854246, 33.21778816354781, 103.02388328094945, 24.670097676543246, 21.105294039614233, 32.15167371663364, 12.290982145818287, 78.83807925908242, 77.31795213985819, 7.825838293694161, 30.715045646600075, 30.717842578785593, 47.392436657925124, 23.628771432981782, 7.191541853836747, 14.604527843207052, 18.892378161795268, 89.80630755520791, 24.537023498045645, 141.98303662279537, 34.79453887864745, 42.755233519460305, 12.901715986201586, 131.0256779613369, 43.69523894153656, 17.49529221271376, 141.49768150026605, 12.983577279942184, 99.32532279488885, 46.83477885857733, 92.32562755883964, 187.18910311973715, 7.905750318878348, 47.891846064361516, 118.36044754448145, 118.56141544701859, 13.156419033469039, 69.72042095156371, 107.94388311490017, 41.18812702632647, 27.134649447576905, 32.1200759335535, 20.236497256316486, 28.08437440430824, 14.747516029665515, 14.238979514592433, 8.327107041042026, 186.73750716513126, 37.7793128502393, 34.15410716930912, 15.612005647431978, 27.651122043939036, 8.512758584428669, 32.75658817016742, 66.00721785167238, 36.51735471691756, 6.48282172706316, 42.624096318332626, 32.96853906554666, 37.88197660450544, 66.19381328585217, 42.387154082201405, 21.094004291269947, 11.897380143333136, 13.19761971728532, 48.31797825768278, 64.55075697509406, 7.862427079927315, 19.535410671031244, 42.41134329206491, 36.17386204263186, 13.551522873978227, 48.43512804310083, 22.24232439934675, 92.7977254366484, 40.670286127033236, 45.18352202452388, 50.220702362361806, 20.129441800350115, 39.24249184267678, 46.32625869884785, 50.84888113995109, 76.18516862894167, 11.177345684721283, 18.714675967020355, 27.99315530982681, 23.474674243622665, 34.677873063361424, 91.3630375292675, 18.204344735740502, 22.49513765749765, 47.88741017710869, 44.295375307050065, 84.7787338640216, 8.149865920512509, 70.51297279684297, 5.540844148079734, 32.5887669732824, 395.54228686616455, 7.0020186535800075, 23.66145304536528, 17.95453180114935, 9.34138993857783, 8.059580150176052, 103.24611866483826, 27.1417423525958, 7.945800785582396, 29.317413909612316, 59.391131486886174, 78.16713561413277, 9.612888610941384, 37.22152353931861, 67.4481821841191, 16.88331107047097, 82.13886367724311, 35.175356466231186, 17.98721736579565, 13.200079207513612, 122.14760375194473, 105.79716832472631, 16.094002877346966, 7.475666885494496, 58.66612062751131, 5.086464170740127, 14.195870046096967, 28.12560910744235, 58.22139453902324, 57.51972958851742, 10.248131703356535, 51.081089590071855, 80.78636745209387, 22.726988619153012, 43.13170433184459, 7.85645051414387, 11.590288086614969, 33.63650981337601, 90.66855096622947, 12.718971218450324, 38.848487074488936, 48.967833431427565, 36.9031098002082, 58.343100022427016, 22.777397062746715, 64.12764500208706, 98.63253000079456, 61.34840538730941, 18.900013904906412, 89.14665959022346, 61.427445109351176, 37.10146875896462, 92.36358828135523, 59.71229789372047, 72.02370169951081, 76.1472795797668, 23.360689628861696, 16.495956187272824, 106.86696890294051, 12.221701808138958, 49.16199688979245, 49.91836244732363, 16.620618832033905, 20.489052953201906, 14.212765037825836, 26.129977160440657, 12.271146150681153, 10.731277813792676, 13.63636355411395, 11.705644680695247, 29.152656299337064, 33.58893603508609, 5.2122351394249735, 57.3033179128331, 43.04282693040708, 24.857055042971396, 30.50238306728032, 50.4240604503108, 32.659597978464134, 79.77848851696963, 13.644997707384803, 49.88051564105097, 8.380505380103308, 46.129930084704824, 38.41398981966029, 19.087459908183188, 25.88704943295687, 11.595929077316987, 49.075268509111055, 6.126749546157046, 60.54297539143357, 23.76820581115249, 11.642394234470249, 108.72136855084466, 64.75167349274263, 30.986419362415475, 78.95669160084948, 24.876910941332994, 15.534605364531593, 6.788476574362062, 18.18787282450212, 25.67847778923905, 72.12576036466129, 64.03166424319642, 5.722460639005406, 116.79937397103983, 17.858026829865853, 5.251584652333342, 46.27174737320245, 8.015208381485486, 13.259722521627316, 159.90273682632926, 34.19404365540712, 20.818894031065398, 87.41288514335108, 6.005697411735251, 5.555315717760904, 6.860401678206478, 46.631090961056124, 66.19898143410697, 24.818948873988756, 12.695384914692452, 29.2537035113277, 31.702672460806816, 18.818757962090405, 92.53782168451747, 84.55550831489685, 22.163427417419925, 114.72757005957254, 12.43628834929816, 13.04222927763664, 28.099004041571195, 48.532205196430596, 24.274705019711522, 19.058159117682052, 33.84813303719561, 20.939722422978374, 19.373766918301186, 26.8265718333768, 33.301727290476364, 32.58297870294634, 87.55912386542566, 16.020048503479202, 42.74050016683569, 11.17504719615668, 7.2224873702165935, 17.174738607749994, 51.858756695029044, 44.922284931896044, 24.2926392241995, 57.6103851639399, 16.708178377868375, 6.407483388013922, 64.29609521457843, 9.172983957539648, 113.01537375732995, 5.1277496748607625, 67.64539657806463, 56.85244973910036, 55.298104555086134, 68.96088741566773, 7.533174148708458, 17.439996931941, 7.2655478484037985, 19.471534694780836, 71.3988866703138, 61.42184608714814, 40.68855392619001, 22.25490911231817, 37.01268216547901, 18.471294236199178, 22.85055162223397, 35.993774384469084, 11.298846852841345, 84.53490068947575, 9.833859257121247, 67.33311633835801, 40.763135187809496, 92.1783925070237, 5.325024390258965, 16.78045925443035, 37.07230261079634, 12.445366271909295, 45.62622452977295, 96.71403242918174, 18.943026366397135, 17.37424115718662, 55.20386840056576, 8.315221085899747, 68.43240118171609, 19.094784339066113, 9.427102737628033, 40.62153883272976, 21.143392512690436, 7.417922521924889, 63.125772642288, 78.95034788520411, 8.709122737958188, 8.940312541014984, 62.48917364045434, 44.50140235806913, 11.308591260008562, 65.53350081127559, 17.277759608812367, 162.0185928731105, 55.974061772992776, 28.51654239498245, 24.600692939462565, 21.8869366129543, 53.94354746452547, 46.12343437476744, 13.040291548753475, 24.58676408490583, 6.311498223489893, 46.993848452307304, 74.59220723925937, 7.8496905029941235, 28.86905982981162, 29.038110169688295, 7.276775680338, 6.701928098127874, 7.04903318626147, 14.408086737282018, 102.08720583888608, 45.72803247416149, 6.952354326859975, 22.216772888491263, 22.929030087725607, 30.400817238350953, 16.49735885321045, 38.07505953336083, 6.263078841937572, 5.412144741148579, 19.532445488305935, 47.84157173565729, 28.353324197983028, 40.00893003788755, 45.694783164058805, 21.509386722616917, 63.065919939820816, 30.846006373131303, 13.970056662709744, 8.281453816540735, 13.022050511382515, 24.164740923048193, 55.69783339836862, 12.15762529985402, 21.194972615059097, 5.336160763632099, 49.716124067246085, 14.417880498980464, 16.47689196308635, 43.14023394760197, 39.72481401224769, 123.20697267158059, 24.57142309494324, 62.05171868305931, 35.278643044049105, 21.127623007653995, 34.97361983485927, 29.508687823511845, 62.82962929892888, 11.55416746345684, 41.24553242874005, 32.43933048510449, 8.574424595234941, 9.052373647124188, 25.208306270198847, 14.046512320582298, 28.784516081965773, 74.21876410728123, 85.5132553491003, 5.109178528205318, 50.58609421972444, 58.94605102595681, 16.964140513151, 10.576267093688347, 60.52098169523815, 21.908545604160423, 54.69060431092098, 92.63400798410518, 29.43154935100745, 30.183478191246955, 22.98344186323812, 16.377766220210372, 14.80958313669792, 17.688846715197922, 8.2943608328648, 12.913925874098656, 56.84924193014149, 17.474824537871047, 13.60611673450058, 29.31750015946456, 42.92409514115122, 7.470941732017409, 50.73779022711042, 29.416018022291137, 5.292568174776508, 30.947484902816566, 12.976114244681543, 8.25181979247032, 17.41172998573073, 52.25911033541865, 83.08682286454304, 12.58804369258932, 7.812268885574132, 39.61438172578923, 33.34985713193533, 77.18780653153523, 67.52890639738716, 58.494785988674124, 21.37267343795686, 28.722007135604894, 5.755978863175216, 30.32402013116271, 11.085916663425536, 42.38490079386015, 26.806574367265007, 14.405368163267145, 12.730901181270282, 106.36779630748057, 16.628640428541708, 6.746237519115954, 27.65819998285243, 19.792925464583213, 12.957879205502064, 72.61717570753243, 24.059849640088743, 44.00089249173644, 75.5920719839843, 68.37434790990328, 53.14187224790709, 12.64930633216273, 66.13722952985711, 13.148849176975496, 45.744257223602645, 6.286467079618913, 8.173264061311517, 41.36293676095911, 48.313229180165216, 7.453715526618177, 14.675039997632346, 62.9265682942912, 19.735616934169403, 48.7940815171583, 17.270014905712113, 7.1911355751317805, 54.78103309296261, 9.225135387291987, 98.13719359538689, 57.65753823963708, 10.680993335935499, 52.16786366977447, 16.176289225365156, 10.928973988941069, 12.493416226504047, 14.571115912094212, 45.55459690924491, 38.314973827031054, 77.75461296112611, 5.800910111162492, 52.09861392633657, 8.013622920808352, 67.95110893929254, 21.114186332279385, 15.274455762871222, 7.779193270417754, 18.267259590671525, 16.61368063684596, 10.601632356088428, 6.084003802840814, 16.948892977941917, 5.242824481327309, 20.971384173906404, 49.841644814337684, 37.03902746098532, 7.8956592304783335, 90.84264500594387, 59.73405100539529, 124.88160315472899, 16.053136313972466, 14.28411393584791, 33.64359396325933, 36.120173883163616, 10.330443132274866, 20.706156400496088, 64.99481585841995, 50.38936212371491, 74.25266741553159, 15.017331805310771, 29.320518225612133, 63.096816880398904, 15.29592383730222, 62.32431051002511, 55.925660665552044, 94.99842107146054, 6.2375697857476835, 5.638970782314336, 52.64807393190165, 64.26909150987757, 9.437251841775831, 58.63330244585744, 31.303361413342685, 16.446052222559405, 56.332843601601134, 16.336279874191426, 55.48858652412061, 17.15897762547779, 29.892229907082744, 7.703604128303955, 62.101457088504205, 27.503053689353344, 14.354998239198666, 92.72354540266129, 5.308983543904629, 47.454905459545735, 78.61237681101358, 25.008861034816714, 7.015359415834859, 40.967367729773514, 12.834929126848207, 27.950244310462796, 27.215500271874323, 9.058732722362995, 20.977868720204906, 29.590322570179488, 6.866657603462521, 51.71634686919425, 28.29192890490565, 58.310217903604645, 24.6333173873121, 25.44530557124696, 55.619575852076835, 81.67201521686913, 26.44114568615907, 44.77538213388206, 15.92041528770106, 38.3346959255598, 27.282050511712033, 33.31291781265457, 23.510784280292377, 45.83095899628411, 119.86069647415835, 7.773663013692159, 46.40436697336044, 30.99292464201324, 10.053311144699238, 17.397638394557617, 14.119497535483795, 29.06756104350015, 76.31894717846356, 13.620173687744556, 246.71145854450515, 29.9613737903664, 43.53372295099056, 53.878544771776355, 9.646482207266427, 13.72863899416391, 8.08978849484169, 42.75415981906818, 29.28607397376466, 55.69729831266232, 11.504578849808029, 16.502318915680657, 23.85111069849885, 16.815210567958804, 108.06770711073783, 23.94441145508431, 66.93060584508382, 29.717106582063245, 10.674953168305203, 5.6933873740011185, 60.81081110074492, 32.518515784210145, 31.947914729506753, 34.02448770862367, 105.46754789436255, 125.94671987951172, 14.187315329993302, 46.73297518001547, 51.624464005613795, 67.57432891524158, 6.43337755145114, 51.088730240993996, 7.3803903197586065, 78.53730988405276, 14.718422667199633, 11.87974790672404, 18.146467456810292, 55.12954986826344, 9.10270293631792, 33.16601549407485, 8.667121708180884, 7.090660072355564, 5.747859820367574, 63.38118939378988, 49.649448419434876, 12.183433498847132, 14.079137296511524, 10.185170493066071, 14.865141262261417, 12.202445557986646, 46.371291620678065, 8.11180884129808, 45.81030954848255, 6.847099393518976, 19.352099066766833, 78.0078984856104, 60.69154492512038, 113.86699985988676, 101.46734931022175, 51.35797106826309, 10.622829517969734, 6.394956984865432, 22.550123194606144, 43.23885321042664, 33.56714607035877, 12.00590672467782, 9.787731860480147, 36.01009881356119, 10.826987344240324, 113.1926492628003, 18.627137776470015, 25.129169050446176, 49.759560733041, 13.978347349781455, 39.09084785934321, 18.57625370403286, 54.0097955621288, 5.593702104384104, 23.100677852907477, 54.715007966426874, 134.67023628334, 18.958414352065596, 13.79736572152108, 68.46645652623349, 59.28488774314183, 14.828613549244219, 26.557643196644765, 10.53222897830242, 17.608919231627247, 30.02863493850994, 9.639958855620081, 29.1678979280881, 36.46054197665661, 34.11911317177622, 18.59478492593554, 14.973601305652487, 14.46876067137352, 18.671402799275754, 37.05899236573983, 28.29892948648604, 18.950656226499206, 47.001220129352554, 51.62652966422712, 12.540615554029312, 26.790307119963494, 76.22630479506431, 33.42429202459796, 59.16848702851087, 19.629177878317492, 28.576569792630735, 17.4041031722772, 11.515501992799175, 5.61555323553458, 88.91106903933246, 25.839147987217572, 81.96419739081092, 12.042938372862672, 8.662282665890713, 85.30450058300667, 7.634657413832177, 20.345060973734256, 6.846951848647329, 15.025694231075182, 8.544850298832255, 54.146481887575504, 127.63111391969102, 9.57531022359965, 22.579974331835576, 63.94290593282501, 23.67575842018935, 12.836575841297647, 25.016648604393517, 17.269306643575543, 11.602815138535501, 16.7257898529162, 6.506268161849524, 37.55377713212158, 34.28910161655978, 23.770181070547554, 18.8865481238659, 8.187395784471082, 57.4714765888735, 7.1706193377985885, 42.33753929083137, 64.47258544494255, 12.26679181900537, 36.61126693029019, 17.124904233711778, 25.89694914622444, 39.558180093846, 75.42099306132465, 14.650996247218913, 27.00610863879542, 58.10388835342992, 5.6828189067983095, 52.88754826724772, 69.09530119547539, 27.877055282485212, 7.490279317171412, 8.84741895010857, 51.42006475302248, 124.22689580454785, 29.763761085832787, 18.56384871666519, 57.09382926107306, 16.82821535886805, 37.0337275017616, 44.08422885528342, 10.524869875890028, 49.05554203862572, 5.682968384348871, 25.15949190957663, 20.982654211837627, 59.3873857372328, 28.32330646363428, 6.683051119589654, 17.15405418973391, 7.725803429357085, 71.83413681682731, 5.134521494502931, 8.04481989884842, 48.513390060089435, 79.52048643313675, 12.879534855022326, 20.244015380138805, 8.798407765426935, 85.60486135738338, 75.35466801332379, 137.8985635415019, 46.94272675350092, 5.179410116182355, 22.400679822241642, 10.742137131478302, 36.035898026702185, 24.767303367872508, 94.54200955904534, 53.417403753991174, 41.997450528326915, 61.8019038693472, 44.75003090127687, 27.200080286413485, 90.38465846659976, 28.113470646607, 25.485615777772086, 129.64476351970686, 34.960306754472626, 69.6655204398069, 38.87195541519422, 67.88636412240818, 26.134024488677973, 7.5252960554845805, 17.983240762564844, 56.11664865412229, 24.465831339567014, 68.49774042642518, 50.23779428605529, 30.98210873062004, 46.54229238289926, 64.03355779515827, 13.188300262514044, 17.390223585089522, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6723701.285093129, 6907647.972809796, 6966396.642389118, 6966586.805043057, 7170903.786933218, 7205599.226870136, 7208619.3630576115, 7212117.9411124, 7249436.660357829, 7266235.409204075, 7275489.0625, 7288348.0713359555, 7299195.583245061, 7299372.783612468, 7319471.875, 7321898.581918821, 7323627.902123829, 7323642.82315414, 7329649.169861271, 7353748.8167487085, 7353770.407478882, 7378849.656465748, 7387075.0, 7392189.6213504225, 7392199.477887094, 7393658.988812492, 7393886.914707898, 7397510.753692486, 7400245.91326357, 7411623.079059866, 7415366.838552031, 7420287.688378822, 7423962.5, 7423966.56326142, 7446178.125, 7447348.4375, 7460452.7060339395, 7461222.482804871, 7461355.817634869, 7461416.623663303, 7471366.671010151, 7476046.210346134, 7481747.6544967145, 7483134.314663518, 7484965.438221526, 7487810.184646474, 7494304.6875, 7498365.623469619, 7506332.8125, 7506520.492092677, 7508130.9017657135, 7509295.082936084, 7509390.012620828, 7510972.424123548, 7512100.453281311, 7512582.359015295, 7513275.0, 7513745.3125, 7517229.6875, 7528730.636943698, 7528762.865380851, 7544833.757085299, 7548693.75, 7554840.113038704, 7555602.019169705, 7559208.636578074, 7564264.710503667, 7564292.446182285, 7565389.0625, 7569032.936322262, 7572752.875239891, 7587852.615329605, 7588381.25, 7590174.980720482, 7591253.675817852, 7594634.44129053, 7598360.9375, 7603942.861509476, 7605437.5, 7614593.795297888, 7616320.595579318, 7618917.1875, 7641612.5, 7642818.17319562, 7645210.881226412, 7646182.8125, 7648068.930957345, 7648073.763666724, 7648678.808933334, 7653115.8355932925, 7658068.152538419, 7658069.066315234, 7667193.8578948695, 7670060.737192458, 7672523.4375, 7674726.46625234, 7675338.67587731, 7676716.301495148, 7677231.601816046, 7679146.988717966, 7679924.642528656, 7679938.898835761, 7690251.780338043, 7697712.476442445, 7702004.299722272, 7703824.1046471, 7704505.668979672, 7704707.695134975, 7707501.545907756, 7707518.75, 7709860.9375, 7710182.8125, 7715524.17297942, 7722773.4375, 7724414.878792121, 7724646.520949758, 7726471.875, 7727592.1875, 7728751.416731509, 7729249.903609053, 7729580.6677764645, 7734021.032619057, 7735075.0, 7735406.25, 7735667.521790077, 7735893.956942327, 7735969.469234269, 7736155.946477103, 7742730.127830378, 7742902.324751054, 7743470.3125, 7744518.75, 7745317.039010787, 7747773.63933301, 7747836.357723162, 7748012.33432481, 7748691.241008679, 7748918.149313935, 7749239.608070229, 7751451.231202542, 7753637.5, 7753779.03600152, 7753853.125, 7753990.481474572, 7754273.508797866, 7754352.546725696, 7755989.0625, 7757705.999551006, 7757714.0625, 7758998.003974069, 7764961.814552829, 7764991.294295829, 7770740.625, 7771364.507228492, 7774763.45963963, 7777791.462284865, 7782842.2767742565, 7784736.451724815, 7786449.337958736, 7796725.0, 7799260.144880743, 7799779.6875, 7802932.974843074, 7807346.488927011, 7808767.1875, 7809632.757147285, 7811196.875, 7816348.107642614, 7816906.087704495, 7821833.878837394, 7822745.718253581, 7826429.537669876, 7830968.789504873, 7832115.568435158, 7833181.089785508, 7833384.501884431, 7835195.676766705, 7835317.8512483565, 7835851.806357378, 7836006.102779093, 7837506.877057921, 7842115.154790247, 7842315.625, 7845246.958827977, 7847065.625, 7847693.133087335, 7847756.146943098, 7848459.375, 7851935.236200719, 7854535.387803283, 7857938.802752266, 7859164.229433643, 7866276.605385404, 7874215.625, 7887682.8125, 7887856.7296521105, 7888566.211393344, 7892450.0, 7893231.714115987, 7893481.082211962, 7893523.135725034, 7893885.158027917, 7894111.395964238, 7894384.375, 7896342.822308114, 7896782.743024466, 7898230.485835982, 7900354.6875, 7905142.748804036, 7909313.528962258, 7909679.011895888, 7911131.25, 7926561.78597699, 7926605.012479886, 7926858.779765086, 7930675.499237111, 7947876.5625, 7952007.724303285, 7952443.673161855, 7957714.0625, 7959021.158555772, 7959537.5, 7964014.0625, 7970659.375, 7978269.547411485, 7983198.122971992, 8005643.688675919, 8020296.766433774, 8031893.175085738, 8032165.625, 8046734.375, 8073757.54310508, 8087879.456218906, 8098989.831738055, 8146523.276868857, 8182538.135392152, 8211976.5625, 8247510.9375, 8247578.701196399, 8252373.4375, 8278607.295313015, 8295643.75, 8297256.1761141885, 8298486.197589361, 8298763.971187446, 8345053.880208818, 8371490.625, 8377024.036522488, 8380630.956053477, 8422521.875, 8424626.09217647, 8433657.14988963, 8436086.948215095, 8440187.5, 8441198.346618904, 8465149.78971361, 8483579.057502666, 8494706.25, 8495217.1875, 8533745.632529661, 8545439.090006962, 8552099.203015717, 8552756.25, 8566970.888109727, 8592590.981786672, 8601261.378905132, 8618543.363224996, 8619906.95450806, 8620575.834045399, 8620996.800593166, 8638470.3125, 8643249.364076076, 8660205.638258517, 8669184.733135657, 8669516.990106866, 8681632.888363898, 8684617.756048778, 8684623.4375, 8695484.761171876, 8697440.790452043, 8700308.542224033, 8700317.5920483, 8701152.744400091, 8706179.680610169, 8706448.385982772, 8707281.222709682, 8720368.75, 8733321.875, 8744931.25, 8748184.375, 8782798.4375, 8784118.150784347, 8784539.504787825, 8809358.82742833, 8841039.009219965, 8869876.5625, 8873769.413943807, 8894052.386441587, 8895528.125, 8920618.75, 8920619.892813532, 8938565.625, 8955727.521938957, 8957251.870150536, 8976137.342683423, 8976737.5, 9016350.0, 9083882.024938047, 9132604.076538261, 9148835.591694597, 9150437.5, 9295432.447843617, 9333165.656526979, 9361181.980154892, 9443743.722562917, 9446536.711166326, 9447991.980471805, 9460666.2405262, 9468425.654634468, 9469515.53306497, 9505992.1875, 9548404.18038568, 9559657.991815303, 9654484.107208846, 9689931.418598497, 9707862.65893391, 9750725.0, 9753236.102155898, 9753287.025300123, 9760436.152431749, 9761724.9188127, 9792082.824287312, 9817169.857074132, 9847004.684684385, 9873128.816502297, 9887838.357245607, 9892767.1875, 9921353.381603038, 9924307.400358856, 9924608.127640476, 9925073.319422733, 9953010.350042274, 9953823.868109688, 9989806.25, 10017521.875, 10025883.433290992, 10073790.437445637, 10156504.937492786, 10162414.0625, 10165847.147731552, 10182927.757952334, 10185621.78096485, 10190838.443461582, 10192168.539578155, 10195110.157412922, 10225956.25, 10230055.829084866, 10402639.978550615, 10408095.499333533, 10582260.9375, 10585783.203637257, 10596815.526150024, 10596874.087235425, 10663937.777072737, 10665565.625, 10680129.579751827, 10686253.94978708, 10705243.75, 10705504.064348197, 10729771.875, 10739442.1875, 10784224.936396083, 10799603.125, 10815638.51893719, 10829207.043027302, 10837791.372730546, 10844632.775663845, 10880795.3125, 10898965.625, 10916131.454186348, 10941900.443710843, 10957107.8125, 10986949.735379541, 11018998.106338171, 11024853.817890352, 11030639.51941954, 11033802.165300637, 11052324.460746842, 11071135.9375, 11071137.88031827, 11093649.676767902, 11107926.357197778, 11123938.928427286, 11143141.251118861, 11159482.543154588, 11186677.734524926, 11229018.382730575, 11233646.411707735, 11233780.076828234, 11236040.967448102, 11237910.9375, 11249754.6875, 11279488.844439974, 11291017.1875, 11294085.9375, 11310617.1875, 11341198.4375, 11344702.73746789, 11347298.4375, 11354182.985993952, 11378704.6875, 11396429.677812982, 11398708.71401414, 11399413.492453648, 11402308.092733603, 11420870.3125, 11420903.488645686, 11431582.374111319, 11432052.518887535, 11433859.681084147, 11447397.152862154, 11451203.056180226, 11488490.650144037, 11516098.31959967, 11613028.936210578, 11626726.709864268, 11626817.311300121, 11628563.152104197, 11673821.85650828, 11673821.875, 11706545.3125, 11722884.618936045, 11755437.558304133, 11764134.975138417, 11772678.353457358, 11785406.25, 11804904.13648396, 11818168.225603428, 11877417.744354038, 11921802.973980421, 11959568.17964946, 11984739.540043319, 12015505.418493357, 12041455.137286793, 12092203.591711788, 12100521.393175196, 12131414.66473626, 12143668.848209804, 12198083.62735456, 12198093.34365881, 12239600.76803065, 12257311.682403829, 12282651.592229303, 12289352.753715519, 12291997.641627688, 12294665.625, 12318800.701937545, 12318813.455492124, 12372744.911889901, 12427852.040481599, 12430241.826282337, 12547744.528036656, 12569500.0, 12952840.454283915, 12970522.69510423, 13049070.220363623, 13276364.962848535, 13276376.779615752, 13858681.25, 14450389.319346175, 14710927.804203188, 15072921.905077254, 15178587.870901396, 15211905.557589756, 15256706.25, 15284377.719930524, 15291069.04164132, 15303101.269023059, 15304348.8348185, 15318644.785143396, 15321398.4375, 15324154.494008344, 15327932.921263957, 15359477.995760437, 15360747.742242921, 15374339.707215859, 15379635.594810378, 15381346.875, 15383157.614539031, 15383294.647755792, 15383591.146199854, 15384172.318714632, 15387651.506118132, 15388912.5, 15389782.944353718, 15389982.671205446, 15390114.86425464, 15390186.891343651, 15390462.126100888, 15390951.406599412, 15390954.794298781, 15391090.625, 15392536.477420002, 15393520.236630753, 15393690.625, 15393843.75, 15394433.873455653, 15394658.223672023, 15396059.904936356, 15396488.20601578, 15398510.9375, 15408115.625, 15410326.583299898, 15410600.51916369, 15411689.0625, 15411706.303775823, 15414542.1875, 15419894.533010738, 15420603.236051753, 15421432.8125, 15429002.589214025, 15429033.831818478, 15431190.13146488, 15432904.982209058, 15432938.221826943, 15432986.998185309, 15433159.171029083, 15434942.1875, 15434996.656685894, 15435226.375320546, 15436426.218176639, 15438847.977936052, 15438873.935081283, 15441038.67998852, 15442004.403550897, 15442518.288594292, 15443937.069588449, 15444962.399269804, 15446340.017237553, 15446868.512747144, 15447233.155267956, 15448122.879490118, 15448806.25, 15448955.321106259, 15449161.534944594, 15449442.635855636, 15451588.059665965, 15452427.808526678, 15453429.404653298, 15458031.102638222, 15458170.3125, 15458896.875, 15459564.94014392, 15459587.069608657, 15459640.257828135, 15459689.0625, 15460734.730971701, 15461154.6875, 15461156.217324343, 15462219.103055658, 15462994.590594474, 15464126.5625, 15466853.34073769, 15468139.0625, 15470961.916636279, 15474154.621239528, 15474160.528608892, 15474909.9452271, 15476054.40692688, 15478826.552798787, 15480841.572617812, 15481607.544233797, 15482405.441724584, 15482406.89357917, 15483538.816897377, 15483595.143409465, 15484662.137072323, 15484693.605484346, 15485370.66438118, 15485489.0625, 15486159.375, 15487190.625, 15487457.884362103, 15488420.27841284, 15488591.991387729, 15489752.811119437, 15490663.188931316, 15491065.347592993, 15491184.575559953, 15493092.444215843, 15493889.0625, 15494235.065787116, 15494828.632352982, 15497227.775480138, 15497665.918154292, 15497957.556043966, 15499251.153322447, 15500017.331435425, 15500472.90277291, 15500531.787224466, 15500823.826992352, 15501021.875, 15501305.13316321, 15501560.553528411, 15502708.280631438, 15503980.790661817, 15504361.276361162, 15506338.893866632, 15507104.41693105, 15507142.564682646, 15507271.11912453, 15507298.769373102, 15507398.402451595, 15507441.197488703, 15507475.014689779, 15507477.467293473, 15507993.199304076, 15508234.911490092, 15508243.349172015, 15508521.090057611, 15508696.875, 15508707.431283293, 15509112.5, 15509145.3125, 15509932.860368475, 15510817.523265373, 15510910.304555042, 15511290.558689542, 15511542.403435923, 15511670.3125, 15511689.521521667, 15511892.956434457, 15513042.730684582, 15513515.944813222, 15513804.6875, 15513853.125, 15514284.375, 15514851.5625, 15515066.675342446, 15515574.639260145, 15515719.496578626, 15516030.843683662, 15516040.598098429, 15516731.25, 15517459.939303774, 15517979.539347207, 15518741.454789698, 15518875.0, 15519250.332557224, 15519599.912880164, 15520034.372708315, 15520578.998318233, 15521246.86877183, 15522432.8125, 15522735.10296987, 15523542.1875, 15524401.260080438, 15524600.74869413, 15524732.416161286, 15524991.420287617, 15525360.9375, 15525368.183999494, 15525489.0625, 15525806.401004428, 15526181.029394822, 15526636.259477783, 15526687.5, 15526823.004264332, 15527146.626395384, 15527750.0, 15528250.866213625, 15528425.0, 15528536.438425466, 15528576.82111855, 15528829.6875, 15528920.18409018, 15529206.416787442, 15529312.393912168, 15529387.194084367, 15529445.84929936, 15529629.977673393, 15529646.744024206, 15529847.602450926, 15529890.524306098, 15530154.6875, 15530574.898691844, 15530907.629803723, 15530923.259279408, 15531176.64557835, 15531183.820525711, 15532286.927801294, 15532427.73405514, 15532467.782998005, 15532502.024127629, 15532681.914243827, 15532786.501049876, 15532787.135173459, 15533242.148025397, 15533272.317838304, 15533438.97936588, 15533786.946060186, 15533943.75, 15534095.3125, 15534196.054577922, 15534265.625, 15534370.162447665, 15534423.187611809, 15534550.263978217, 15534756.06612656, 15534940.625, 15534986.98011865, 15535005.672092343, 15535010.354820253, 15535104.785384407, 15535245.3125, 15535309.375, 15535332.693932958, 15535619.686696967, 15535653.527166748, 15536504.777477795, 15536573.4375, 15536634.375, 15537027.173649734, 15537474.761835855, 15537787.941948319, 15538367.01869764, 15538376.607196363, 15538556.372584593, 15539250.729892058, 15539482.8125, 15540047.22069142, 15540066.501898028, 15540506.57340115, 15540562.5, 15540690.51118824, 15540784.259833397, 15540944.019227065, 15541008.696352053, 15541188.410028523, 15541243.587113567, 15541416.101627368, 15541947.443707902, 15542005.885861514, 15542317.997599263, 15542368.542499322, 15542448.017924337, 15542501.5625, 15542528.997816762, 15542579.657796297, 15542621.909381129, 15542704.34640562, 15542754.134251377, 15542896.875, 15542916.120616104, 15542935.200311573, 15542940.165957835, 15543130.974214591, 15543637.266089242, 15543656.072011601, 15544134.940564582, 15544474.306525547, 15545995.197486863, 15546111.61536368, 15546309.610124292, 15546634.106428256, 15546995.246407555, 15547084.097593157, 15547216.868479518, 15547339.914856164, 15547423.4375, 15547547.322838115, 15547576.5625, 15547962.5, 15548114.808456982, 15548270.835717896, 15548526.328714663, 15548612.598987708, 15548620.3125, 15548649.603991833, 15548713.709272614, 15548787.5, 15548915.08330533, 15549025.090138197, 15549123.788018974, 15549232.453197043, 15549479.295858921, 15549499.252265608, 15549614.0625, 15549628.125, 15549643.978434486, 15549817.54446095, 15549863.770317115, 15549906.080962049, 15550433.360203894, 15550499.951418579, 15550537.51543372, 15550811.529775005, 15550879.37715252, 15550899.787840828, 15551449.850056222, 15551559.496114576, 15551756.219719127, 15552160.504784752, 15552388.942916248, 15552761.578182707, 15552799.786979156, 15552856.25, 15552945.740888875, 15553625.0, 15558440.273571247, 15559579.347826572, 15559714.963753205, 15559809.86127164, 15560015.798711723, 15560156.683165714, 15560969.49156728, 15564638.557245554, 15565088.779048955, 15567362.153743397, 15567650.656381993, 15579871.756554112, 15581589.68951559, 15582390.007087661, 15582435.9375, 15583067.772051362, 15583206.00371993, 15584088.362319823, 15584168.72981859, 15584616.21863997, 15584733.947758548, 15585321.529211571, 15585445.3125, 15585794.15477233, 15586385.192272644, 15587141.423751181, 15587909.375, 15588430.039833529, 15588527.502072236, 15589792.1875, 15589882.46355403, 15590460.323449222, 15592448.301034555, 15592840.932735316, 15593353.125543224, 15594791.122510917, 15594823.932002468, 15595608.659425678, 15595732.61119527, 15597555.022438396, 15597631.967583966, 15598102.925758211, 15599111.745499307, 15600234.882855274, 15600258.28812135, 15601274.67676189, 15601464.0625, 15601491.813851213, 15601986.42191218, 15602106.140864052, 15602967.800214285, 15603075.76436395, 15603541.576882664, 15603884.375, 15603979.6875, 15604051.53256174, 15604082.704485193, 15604121.457417244, 15604159.934180696, 15604342.855709221, 15604362.843684088, 15604821.875, 15605645.3125, 15605695.610142065, 15605711.650398865, 15606056.029769951, 15606622.426548265, 15606833.44060969, 15607355.60099674, 15607662.488479309, 15607802.325792668, 15608067.1875, 15608127.231103208, 15608634.54611491, 15608792.649204427, 15608960.256753245, 15609960.620701157, 15610053.125, 15610833.232921999, 15611090.625, 15611359.899335533, 15611711.17219772, 15611715.652246015, 15612034.375, 15612118.570853433, 15612349.09226821, 15612401.60717913, 15612519.398760276, 15612523.65001008, 15612550.086043384, 15612606.323940173, 15613133.216581637, 15613145.334412923, 15613412.958425028, 15613478.125, 15613495.381206749, 15613545.587527832, 15613656.662726661, 15613862.647862226, 15614040.581949072, 15614107.811821241, 15614150.621516543, 15614173.938300524, 15614206.534085479, 15614228.52570885, 15614256.371252883, 15614334.018652368, 15614339.0625, 15614360.054332128, 15614401.124870606, 15614437.307615899, 15614437.5, 15614439.246297348, 15614441.259159623, 15614614.615824202, 15614619.37407701, 15614629.299745467, 15614649.40344387, 15614685.78879368, 15614710.9375, 15614726.5625, 15614767.283418616, 15614874.918254362, 15614886.719657384, 15614938.67966361, 15615056.830706635, 15615115.57100921, 15615139.028911285, 15615144.989001123, 15615157.178703938, 15615274.63873921, 15615276.5625, 15615284.375, 15615288.97335265, 15615289.0625, 15615406.670237117, 15615434.375, 15615454.6875, 15615457.389253916, 15615457.70752682, 15615488.682096299, 15615531.66096774, 15615549.447261117, 15615628.125, 15615740.089297635, 15615819.89568511, 15615880.167785285, 15615903.45162204, 15615907.545068052, 15615918.937118206, 15616026.075530002, 15616029.138190087, 15616054.227968032, 15616110.265945183, 15616124.36495315, 15616138.35685526, 15616167.1875, 15616328.093583895, 15616526.5467628, 15616585.9375, 15616633.405664837, 15616852.711409548, 15616999.738476824, 15617370.3125, 15617373.2131232, 15617672.988582883, 15623108.194198977, 15624901.5625, 15624901.5625, 15624928.125, 15624929.616797127, 15624971.762778977, 15624981.905019416, 15624991.889282944, 15625003.09446474, 15625018.582888288, 15625024.785860278, 15625045.296439867, 15625046.875, 15625049.866178686, 15625057.591735832, 15625068.02097268, 15625081.190771144, 15625090.378993051, 15625099.951898195, 15625100.0, 15625147.751576401, 15625157.8125, 15625176.296621678, 15625180.698922498, 15625191.94182868, ...], [29.130165786196933, 21.033519358909775, 24.65148170776095, 31.662440236039533, 5.566092464553174, 11.253737995323545, 48.30629849510644, 6.923902039725982, 10.027839893297394, 53.147903922886904, 37.51384202404535, 9.039861762442202, 19.05199599797877, 20.08406454186948, 53.73713475975862, 73.98801037795052, 14.155010532765049, 18.036066310869337, 25.618359426606183, 27.27748635970746, 105.50926262448581, 13.691488816824656, 68.75272287037102, 17.606947794627683, 54.68702735043847, 54.56287581499977, 13.098367244360158, 25.357796595236536, 5.562965629163852, 23.03189010182996, 58.67340388532348, 6.801706852315825, 92.16858628136023, 20.337249094127255, 59.357677902782925, 54.58423208113097, 7.015507694155984, 32.09076210486825, 28.417420856907263, 5.189291179817152, 18.572057123891724, 12.896638224341324, 6.929788568128459, 39.55059193734629, 63.49023952604863, 72.65146900640254, 64.95770480887111, 18.75613503972371, 42.44450260209477, 11.420525154099204, 30.645872423111857, 65.07989509308774, 25.646776040946442, 17.549148277932353, 5.639622779157873, 103.1438475982944, 33.709166893363516, 44.156748328882216, 48.13615998359312, 20.4348663276008, 62.57202688295302, 13.014304295337134, 66.1255671597957, 12.73689201793219, 57.91493329373578, 10.141169963359665, 90.81367915421845, 15.353053615313637, 53.641461769909625, 19.424213887382855, 24.414424829711983, 13.299638898511176, 61.910054362779135, 28.148891284440005, 12.113664305694643, 114.53938574652815, 59.298473857954924, 18.33178529717063, 65.54990908172445, 20.523288963483573, 15.53074692799808, 55.72223364643053, 56.37184128029806, 20.75968747033191, 14.731272891579197, 78.7409288676123, 15.679211950669456, 16.349791166385618, 16.890497021327242, 59.66754287669902, 89.9469928821169, 5.727189291246205, 6.785239821073499, 25.113565489478095, 61.74058658649634, 63.11561934412304, 62.314074085274356, 27.157448609645517, 5.255099759766281, 80.40511394725578, 23.0433726457816, 59.275107796076185, 68.61984214972432, 35.97619160807409, 106.24846994429565, 5.424605946968387, 8.001498036268888, 14.512274688796634, 58.239772105680075, 62.952621510678945, 29.973131617963208, 56.04209787234874, 35.51745284239519, 93.43242971507117, 61.94581835036061, 40.71949636225973, 119.45183193004567, 49.64380615044668, 9.211115858033622, 58.14232156277876, 13.106358300564109, 21.361172023422696, 36.77310705214746, 79.06076894177214, 25.903446846390597, 9.512736921111848, 15.872098057451534, 36.435786331888345, 6.854718741463797, 5.657653015891238, 60.60145238141973, 128.36284185876264, 9.208925783631196, 82.07182380294685, 9.71393724270983, 25.632897243420366, 12.249632418875752, 105.44116891036641, 5.988368257571054, 25.43171501268155, 57.7391287468088, 6.960113502627959, 85.94615924011939, 77.73341937657602, 7.140320675726034, 28.669122925197726, 43.73018744950364, 24.405017772162015, 30.84104726532843, 6.679936544766731, 8.812077486812951, 12.364355587724447, 47.3026244747773, 31.364701846976427, 10.300213547668418, 118.85633243815445, 7.6358489817807005, 93.17969219093611, 12.903131202726485, 43.959770377802386, 54.860291704365466, 123.44226326116187, 8.374334278891292, 83.9720929461699, 61.08811961081952, 40.64804757737852, 69.22772659388396, 183.01537277609393, 22.15624805371505, 21.53146588554066, 16.752088148575396, 6.733958305844887, 22.516711582298363, 6.752266135209159, 25.717162384275184, 147.6690708860736, 21.617016764048124, 37.35371784645356, 17.095422824095806, 123.34784516354787, 47.80392587048865, 21.795511945465673, 117.8067523396085, 6.277847842133613, 52.106175644106436, 20.401067415018677, 9.245756885894908, 71.73889798213438, 8.801341718724162, 27.294094667633438, 40.296608648992525, 13.491568601185904, 114.28547294890016, 41.615169474527974, 34.21401671957112, 5.176684955247233, 8.623088389772622, 35.33097168606583, 11.939908558088547, 58.28873817234222, 23.728095382480547, 47.073846860486384, 132.13223731921272, 62.0650210702307, 18.076315873996723, 33.53518520263613, 10.11192233118419, 62.532481627404294, 7.277255726134475, 13.235123063360561, 23.647316140644843, 43.974753181908994, 19.594384071200196, 57.872342781579874, 20.592926500712398, 119.75082100185004, 55.35523811985667, 104.24959215306009, 5.609807365886988, 83.16916804239989, 44.80549753530507, 70.61568411918236, 49.72018480681825, 36.7232440764517, 18.121860422605995, 22.853422967189278, 65.21818823806434, 34.64027965131569, 47.06823330083491, 73.24811353854246, 33.21778816354781, 103.02388328094945, 24.670097676543246, 21.105294039614233, 32.15167371663364, 12.290982145818287, 78.83807925908242, 77.31795213985819, 7.825838293694161, 30.715045646600075, 30.717842578785593, 47.392436657925124, 23.628771432981782, 7.191541853836747, 14.604527843207052, 18.892378161795268, 89.80630755520791, 24.537023498045645, 141.98303662279537, 34.79453887864745, 42.755233519460305, 12.901715986201586, 131.0256779613369, 43.69523894153656, 17.49529221271376, 141.49768150026605, 12.983577279942184, 99.32532279488885, 46.83477885857733, 92.32562755883964, 187.18910311973715, 7.905750318878348, 47.891846064361516, 118.36044754448145, 118.56141544701859, 13.156419033469039, 69.72042095156371, 107.94388311490017, 41.18812702632647, 27.134649447576905, 32.1200759335535, 20.236497256316486, 28.08437440430824, 14.747516029665515, 14.238979514592433, 8.327107041042026, 186.73750716513126, 37.7793128502393, 34.15410716930912, 15.612005647431978, 27.651122043939036, 8.512758584428669, 32.75658817016742, 66.00721785167238, 36.51735471691756, 6.48282172706316, 42.624096318332626, 32.96853906554666, 37.88197660450544, 66.19381328585217, 42.387154082201405, 21.094004291269947, 11.897380143333136, 13.19761971728532, 48.31797825768278, 64.55075697509406, 7.862427079927315, 19.535410671031244, 42.41134329206491, 36.17386204263186, 13.551522873978227, 48.43512804310083, 22.24232439934675, 92.7977254366484, 40.670286127033236, 45.18352202452388, 50.220702362361806, 20.129441800350115, 39.24249184267678, 46.32625869884785, 50.84888113995109, 76.18516862894167, 11.177345684721283, 18.714675967020355, 27.99315530982681, 23.474674243622665, 34.677873063361424, 91.3630375292675, 18.204344735740502, 22.49513765749765, 47.88741017710869, 44.295375307050065, 84.7787338640216, 8.149865920512509, 70.51297279684297, 5.540844148079734, 32.5887669732824, 395.54228686616455, 7.0020186535800075, 23.66145304536528, 17.95453180114935, 9.34138993857783, 8.059580150176052, 103.24611866483826, 27.1417423525958, 7.945800785582396, 29.317413909612316, 59.391131486886174, 78.16713561413277, 9.612888610941384, 37.22152353931861, 67.4481821841191, 16.88331107047097, 82.13886367724311, 35.175356466231186, 17.98721736579565, 13.200079207513612, 122.14760375194473, 105.79716832472631, 16.094002877346966, 7.475666885494496, 58.66612062751131, 5.086464170740127, 14.195870046096967, 28.12560910744235, 58.22139453902324, 57.51972958851742, 10.248131703356535, 51.081089590071855, 80.78636745209387, 22.726988619153012, 43.13170433184459, 7.85645051414387, 11.590288086614969, 33.63650981337601, 90.66855096622947, 12.718971218450324, 38.848487074488936, 48.967833431427565, 36.9031098002082, 58.343100022427016, 22.777397062746715, 64.12764500208706, 98.63253000079456, 61.34840538730941, 18.900013904906412, 89.14665959022346, 61.427445109351176, 37.10146875896462, 92.36358828135523, 59.71229789372047, 72.02370169951081, 76.1472795797668, 23.360689628861696, 16.495956187272824, 106.86696890294051, 12.221701808138958, 49.16199688979245, 49.91836244732363, 16.620618832033905, 20.489052953201906, 14.212765037825836, 26.129977160440657, 12.271146150681153, 10.731277813792676, 13.63636355411395, 11.705644680695247, 29.152656299337064, 33.58893603508609, 5.2122351394249735, 57.3033179128331, 43.04282693040708, 24.857055042971396, 30.50238306728032, 50.4240604503108, 32.659597978464134, 79.77848851696963, 13.644997707384803, 49.88051564105097, 8.380505380103308, 46.129930084704824, 38.41398981966029, 19.087459908183188, 25.88704943295687, 11.595929077316987, 49.075268509111055, 6.126749546157046, 60.54297539143357, 23.76820581115249, 11.642394234470249, 108.72136855084466, 64.75167349274263, 30.986419362415475, 78.95669160084948, 24.876910941332994, 15.534605364531593, 6.788476574362062, 18.18787282450212, 25.67847778923905, 72.12576036466129, 64.03166424319642, 5.722460639005406, 116.79937397103983, 17.858026829865853, 5.251584652333342, 46.27174737320245, 8.015208381485486, 13.259722521627316, 159.90273682632926, 34.19404365540712, 20.818894031065398, 87.41288514335108, 6.005697411735251, 5.555315717760904, 6.860401678206478, 46.631090961056124, 66.19898143410697, 24.818948873988756, 12.695384914692452, 29.2537035113277, 31.702672460806816, 18.818757962090405, 92.53782168451747, 84.55550831489685, 22.163427417419925, 114.72757005957254, 12.43628834929816, 13.04222927763664, 28.099004041571195, 48.532205196430596, 24.274705019711522, 19.058159117682052, 33.84813303719561, 20.939722422978374, 19.373766918301186, 26.8265718333768, 33.301727290476364, 32.58297870294634, 87.55912386542566, 16.020048503479202, 42.74050016683569, 11.17504719615668, 7.2224873702165935, 17.174738607749994, 51.858756695029044, 44.922284931896044, 24.2926392241995, 57.6103851639399, 16.708178377868375, 6.407483388013922, 64.29609521457843, 9.172983957539648, 113.01537375732995, 5.1277496748607625, 67.64539657806463, 56.85244973910036, 55.298104555086134, 68.96088741566773, 7.533174148708458, 17.439996931941, 7.2655478484037985, 19.471534694780836, 71.3988866703138, 61.42184608714814, 40.68855392619001, 22.25490911231817, 37.01268216547901, 18.471294236199178, 22.85055162223397, 35.993774384469084, 11.298846852841345, 84.53490068947575, 9.833859257121247, 67.33311633835801, 40.763135187809496, 92.1783925070237, 5.325024390258965, 16.78045925443035, 37.07230261079634, 12.445366271909295, 45.62622452977295, 96.71403242918174, 18.943026366397135, 17.37424115718662, 55.20386840056576, 8.315221085899747, 68.43240118171609, 19.094784339066113, 9.427102737628033, 40.62153883272976, 21.143392512690436, 7.417922521924889, 63.125772642288, 78.95034788520411, 8.709122737958188, 8.940312541014984, 62.48917364045434, 44.50140235806913, 11.308591260008562, 65.53350081127559, 17.277759608812367, 162.0185928731105, 55.974061772992776, 28.51654239498245, 24.600692939462565, 21.8869366129543, 53.94354746452547, 46.12343437476744, 13.040291548753475, 24.58676408490583, 6.311498223489893, 46.993848452307304, 74.59220723925937, 7.8496905029941235, 28.86905982981162, 29.038110169688295, 7.276775680338, 6.701928098127874, 7.04903318626147, 14.408086737282018, 102.08720583888608, 45.72803247416149, 6.952354326859975, 22.216772888491263, 22.929030087725607, 30.400817238350953, 16.49735885321045, 38.07505953336083, 6.263078841937572, 5.412144741148579, 19.532445488305935, 47.84157173565729, 28.353324197983028, 40.00893003788755, 45.694783164058805, 21.509386722616917, 63.065919939820816, 30.846006373131303, 13.970056662709744, 8.281453816540735, 13.022050511382515, 24.164740923048193, 55.69783339836862, 12.15762529985402, 21.194972615059097, 5.336160763632099, 49.716124067246085, 14.417880498980464, 16.47689196308635, 43.14023394760197, 39.72481401224769, 123.20697267158059, 24.57142309494324, 62.05171868305931, 35.278643044049105, 21.127623007653995, 34.97361983485927, 29.508687823511845, 62.82962929892888, 11.55416746345684, 41.24553242874005, 32.43933048510449, 8.574424595234941, 9.052373647124188, 25.208306270198847, 14.046512320582298, 28.784516081965773, 74.21876410728123, 85.5132553491003, 5.109178528205318, 50.58609421972444, 58.94605102595681, 16.964140513151, 10.576267093688347, 60.52098169523815, 21.908545604160423, 54.69060431092098, 92.63400798410518, 29.43154935100745, 30.183478191246955, 22.98344186323812, 16.377766220210372, 14.80958313669792, 17.688846715197922, 8.2943608328648, 12.913925874098656, 56.84924193014149, 17.474824537871047, 13.60611673450058, 29.31750015946456, 42.92409514115122, 7.470941732017409, 50.73779022711042, 29.416018022291137, 5.292568174776508, 30.947484902816566, 12.976114244681543, 8.25181979247032, 17.41172998573073, 52.25911033541865, 83.08682286454304, 12.58804369258932, 7.812268885574132, 39.61438172578923, 33.34985713193533, 77.18780653153523, 67.52890639738716, 58.494785988674124, 21.37267343795686, 28.722007135604894, 5.755978863175216, 30.32402013116271, 11.085916663425536, 42.38490079386015, 26.806574367265007, 14.405368163267145, 12.730901181270282, 106.36779630748057, 16.628640428541708, 6.746237519115954, 27.65819998285243, 19.792925464583213, 12.957879205502064, 72.61717570753243, 24.059849640088743, 44.00089249173644, 75.5920719839843, 68.37434790990328, 53.14187224790709, 12.64930633216273, 66.13722952985711, 13.148849176975496, 45.744257223602645, 6.286467079618913, 8.173264061311517, 41.36293676095911, 48.313229180165216, 7.453715526618177, 14.675039997632346, 62.9265682942912, 19.735616934169403, 48.7940815171583, 17.270014905712113, 7.1911355751317805, 54.78103309296261, 9.225135387291987, 98.13719359538689, 57.65753823963708, 10.680993335935499, 52.16786366977447, 16.176289225365156, 10.928973988941069, 12.493416226504047, 14.571115912094212, 45.55459690924491, 38.314973827031054, 77.75461296112611, 5.800910111162492, 52.09861392633657, 8.013622920808352, 67.95110893929254, 21.114186332279385, 15.274455762871222, 7.779193270417754, 18.267259590671525, 16.61368063684596, 10.601632356088428, 6.084003802840814, 16.948892977941917, 5.242824481327309, 20.971384173906404, 49.841644814337684, 37.03902746098532, 7.8956592304783335, 90.84264500594387, 59.73405100539529, 124.88160315472899, 16.053136313972466, 14.28411393584791, 33.64359396325933, 36.120173883163616, 10.330443132274866, 20.706156400496088, 64.99481585841995, 50.38936212371491, 74.25266741553159, 15.017331805310771, 29.320518225612133, 63.096816880398904, 15.29592383730222, 62.32431051002511, 55.925660665552044, 94.99842107146054, 6.2375697857476835, 5.638970782314336, 52.64807393190165, 64.26909150987757, 9.437251841775831, 58.63330244585744, 31.303361413342685, 16.446052222559405, 56.332843601601134, 16.336279874191426, 55.48858652412061, 17.15897762547779, 29.892229907082744, 7.703604128303955, 62.101457088504205, 27.503053689353344, 14.354998239198666, 92.72354540266129, 5.308983543904629, 47.454905459545735, 78.61237681101358, 25.008861034816714, 7.015359415834859, 40.967367729773514, 12.834929126848207, 27.950244310462796, 27.215500271874323, 9.058732722362995, 20.977868720204906, 29.590322570179488, 6.866657603462521, 51.71634686919425, 28.29192890490565, 58.310217903604645, 24.6333173873121, 25.44530557124696, 55.619575852076835, 81.67201521686913, 26.44114568615907, 44.77538213388206, 15.92041528770106, 38.3346959255598, 27.282050511712033, 33.31291781265457, 23.510784280292377, 45.83095899628411, 119.86069647415835, 7.773663013692159, 46.40436697336044, 30.99292464201324, 10.053311144699238, 17.397638394557617, 14.119497535483795, 29.06756104350015, 76.31894717846356, 13.620173687744556, 246.71145854450515, 29.9613737903664, 43.53372295099056, 53.878544771776355, 9.646482207266427, 13.72863899416391, 8.08978849484169, 42.75415981906818, 29.28607397376466, 55.69729831266232, 11.504578849808029, 16.502318915680657, 23.85111069849885, 16.815210567958804, 108.06770711073783, 23.94441145508431, 66.93060584508382, 29.717106582063245, 10.674953168305203, 5.6933873740011185, 60.81081110074492, 32.518515784210145, 31.947914729506753, 34.02448770862367, 105.46754789436255, 125.94671987951172, 14.187315329993302, 46.73297518001547, 51.624464005613795, 67.57432891524158, 6.43337755145114, 51.088730240993996, 7.3803903197586065, 78.53730988405276, 14.718422667199633, 11.87974790672404, 18.146467456810292, 55.12954986826344, 9.10270293631792, 33.16601549407485, 8.667121708180884, 7.090660072355564, 5.747859820367574, 63.38118939378988, 49.649448419434876, 12.183433498847132, 14.079137296511524, 10.185170493066071, 14.865141262261417, 12.202445557986646, 46.371291620678065, 8.11180884129808, 45.81030954848255, 6.847099393518976, 19.352099066766833, 78.0078984856104, 60.69154492512038, 113.86699985988676, 101.46734931022175, 51.35797106826309, 10.622829517969734, 6.394956984865432, 22.550123194606144, 43.23885321042664, 33.56714607035877, 12.00590672467782, 9.787731860480147, 36.01009881356119, 10.826987344240324, 113.1926492628003, 18.627137776470015, 25.129169050446176, 49.759560733041, 13.978347349781455, 39.09084785934321, 18.57625370403286, 54.0097955621288, 5.593702104384104, 23.100677852907477, 54.715007966426874, 134.67023628334, 18.958414352065596, 13.79736572152108, 68.46645652623349, 59.28488774314183, 14.828613549244219, 26.557643196644765, 10.53222897830242, 17.608919231627247, 30.02863493850994, 9.639958855620081, 29.1678979280881, 36.46054197665661, 34.11911317177622, 18.59478492593554, 14.973601305652487, 14.46876067137352, 18.671402799275754, 37.05899236573983, 28.29892948648604, 18.950656226499206, 47.001220129352554, 51.62652966422712, 12.540615554029312, 26.790307119963494, 76.22630479506431, 33.42429202459796, 59.16848702851087, 19.629177878317492, 28.576569792630735, 17.4041031722772, 11.515501992799175, 5.61555323553458, 88.91106903933246, 25.839147987217572, 81.96419739081092, 12.042938372862672, 8.662282665890713, 85.30450058300667, 7.634657413832177, 20.345060973734256, 6.846951848647329, 15.025694231075182, 8.544850298832255, 54.146481887575504, 127.63111391969102, 9.57531022359965, 22.579974331835576, 63.94290593282501, 23.67575842018935, 12.836575841297647, 25.016648604393517, 17.269306643575543, 11.602815138535501, 16.7257898529162, 6.506268161849524, 37.55377713212158, 34.28910161655978, 23.770181070547554, 18.8865481238659, 8.187395784471082, 57.4714765888735, 7.1706193377985885, 42.33753929083137, 64.47258544494255, 12.26679181900537, 36.61126693029019, 17.124904233711778, 25.89694914622444, 39.558180093846, 75.42099306132465, 14.650996247218913, 27.00610863879542, 58.10388835342992, 5.6828189067983095, 52.88754826724772, 69.09530119547539, 27.877055282485212, 7.490279317171412, 8.84741895010857, 51.42006475302248, 124.22689580454785, 29.763761085832787, 18.56384871666519, 57.09382926107306, 16.82821535886805, 37.0337275017616, 44.08422885528342, 10.524869875890028, 49.05554203862572, 5.682968384348871, 25.15949190957663, 20.982654211837627, 59.3873857372328, 28.32330646363428, 6.683051119589654, 17.15405418973391, 7.725803429357085, 71.83413681682731, 5.134521494502931, 8.04481989884842, 48.513390060089435, 79.52048643313675, 12.879534855022326, 20.244015380138805, 8.798407765426935, 85.60486135738338, 75.35466801332379, 137.8985635415019, 46.94272675350092, 5.179410116182355, 22.400679822241642, 10.742137131478302, 36.035898026702185, 24.767303367872508, 94.54200955904534, 53.417403753991174, 41.997450528326915, 61.8019038693472, 44.75003090127687, 27.200080286413485, 90.38465846659976, 28.113470646607, 25.485615777772086, 129.64476351970686, 34.960306754472626, 69.6655204398069, 38.87195541519422, 67.88636412240818, 26.134024488677973, 7.5252960554845805, 17.983240762564844, 56.11664865412229, 24.465831339567014, 68.49774042642518, 50.23779428605529, 30.98210873062004, 46.54229238289926, 64.03355779515827, 13.188300262514044, 17.390223585089522, ...])
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);
([6723701.285093129, 6907647.972809796, 6966396.642389118, 6966586.805043057, 7170903.786933218, 7205599.226870136, 7208619.3630576115, 7212117.9411124, 7249436.660357829, 7266235.409204075, 7275489.0625, 7288348.0713359555, 7299195.583245061, 7299372.783612468, 7319471.875, 7321898.581918821, 7323627.902123829, 7323642.82315414, 7329649.169861271, 7353748.8167487085, 7353770.407478882, 7378849.656465748, 7387075.0, 7392189.6213504225, 7392199.477887094, 7393658.988812492, 7393886.914707898, 7397510.753692486, 7400245.91326357, 7411623.079059866, 7415366.838552031, 7420287.688378822, 7423962.5, 7423966.56326142, 7446178.125, 7447348.4375, 7460452.7060339395, 7461222.482804871, 7461355.817634869, 7461416.623663303, 7471366.671010151, 7476046.210346134, 7481747.6544967145, 7483134.314663518, 7484965.438221526, 7487810.184646474, 7494304.6875, 7498365.623469619, 7506332.8125, 7506520.492092677, 7508130.9017657135, 7509295.082936084, 7509390.012620828, 7510972.424123548, 7512100.453281311, 7512582.359015295, 7513275.0, 7513745.3125, 7517229.6875, 7528730.636943698, 7528762.865380851, 7544833.757085299, 7548693.75, 7554840.113038704, 7555602.019169705, 7559208.636578074, 7564264.710503667, 7564292.446182285, 7565389.0625, 7569032.936322262, 7572752.875239891, 7587852.615329605, 7588381.25, 7590174.980720482, 7591253.675817852, 7594634.44129053, 7598360.9375, 7603942.861509476, 7605437.5, 7614593.795297888, 7616320.595579318, 7618917.1875, 7641612.5, 7642818.17319562, 7645210.881226412, 7646182.8125, 7648068.930957345, 7648073.763666724, 7648678.808933334, 7653115.8355932925, 7658068.152538419, 7658069.066315234, 7667193.8578948695, 7670060.737192458, 7672523.4375, 7674726.46625234, 7675338.67587731, 7676716.301495148, 7677231.601816046, 7679146.988717966, 7679924.642528656, 7679938.898835761, 7690251.780338043, 7697712.476442445, 7702004.299722272, 7703824.1046471, 7704505.668979672, 7704707.695134975, 7707501.545907756, 7707518.75, 7709860.9375, 7710182.8125, 7715524.17297942, 7722773.4375, 7724414.878792121, 7724646.520949758, 7726471.875, 7727592.1875, 7728751.416731509, 7729249.903609053, 7729580.6677764645, 7734021.032619057, 7735075.0, 7735406.25, 7735667.521790077, 7735893.956942327, 7735969.469234269, 7736155.946477103, 7742730.127830378, 7742902.324751054, 7743470.3125, 7744518.75, 7745317.039010787, 7747773.63933301, 7747836.357723162, 7748012.33432481, 7748691.241008679, 7748918.149313935, 7749239.608070229, 7751451.231202542, 7753637.5, 7753779.03600152, 7753853.125, 7753990.481474572, 7754273.508797866, 7754352.546725696, 7755989.0625, 7757705.999551006, 7757714.0625, 7758998.003974069, 7764961.814552829, 7764991.294295829, 7770740.625, 7771364.507228492, 7774763.45963963, 7777791.462284865, 7782842.2767742565, 7784736.451724815, 7786449.337958736, 7796725.0, 7799260.144880743, 7799779.6875, 7802932.974843074, 7807346.488927011, 7808767.1875, 7809632.757147285, 7811196.875, 7816348.107642614, 7816906.087704495, 7821833.878837394, 7822745.718253581, 7826429.537669876, 7830968.789504873, 7832115.568435158, 7833181.089785508, 7833384.501884431, 7835195.676766705, 7835317.8512483565, 7835851.806357378, 7836006.102779093, 7837506.877057921, 7842115.154790247, 7842315.625, 7845246.958827977, 7847065.625, 7847693.133087335, 7847756.146943098, 7848459.375, 7851935.236200719, 7854535.387803283, 7857938.802752266, 7859164.229433643, 7866276.605385404, 7874215.625, 7887682.8125, 7887856.7296521105, 7888566.211393344, 7892450.0, 7893231.714115987, 7893481.082211962, 7893523.135725034, 7893885.158027917, 7894111.395964238, 7894384.375, 7896342.822308114, 7896782.743024466, 7898230.485835982, 7900354.6875, 7905142.748804036, 7909313.528962258, 7909679.011895888, 7911131.25, 7926561.78597699, 7926605.012479886, 7926858.779765086, 7930675.499237111, 7947876.5625, 7952007.724303285, 7952443.673161855, 7957714.0625, 7959021.158555772, 7959537.5, 7964014.0625, 7970659.375, 7978269.547411485, 7983198.122971992, 8005643.688675919, 8020296.766433774, 8031893.175085738, 8032165.625, 8046734.375, 8073757.54310508, 8087879.456218906, 8098989.831738055, 8146523.276868857, 8182538.135392152, 8211976.5625, 8247510.9375, 8247578.701196399, 8252373.4375, 8278607.295313015, 8295643.75, 8297256.1761141885, 8298486.197589361, 8298763.971187446, 8345053.880208818, 8371490.625, 8377024.036522488, 8380630.956053477, 8422521.875, 8424626.09217647, 8433657.14988963, 8436086.948215095, 8440187.5, 8441198.346618904, 8465149.78971361, 8483579.057502666, 8494706.25, 8495217.1875, 8533745.632529661, 8545439.090006962, 8552099.203015717, 8552756.25, 8566970.888109727, 8592590.981786672, 8601261.378905132, 8618543.363224996, 8619906.95450806, 8620575.834045399, 8620996.800593166, 8638470.3125, 8643249.364076076, 8660205.638258517, 8669184.733135657, 8669516.990106866, 8681632.888363898, 8684617.756048778, 8684623.4375, 8695484.761171876, 8697440.790452043, 8700308.542224033, 8700317.5920483, 8701152.744400091, 8706179.680610169, 8706448.385982772, 8707281.222709682, 8720368.75, 8733321.875, 8744931.25, 8748184.375, 8782798.4375, 8784118.150784347, 8784539.504787825, 8809358.82742833, 8841039.009219965, 8869876.5625, 8873769.413943807, 8894052.386441587, 8895528.125, 8920618.75, 8920619.892813532, 8938565.625, 8955727.521938957, 8957251.870150536, 8976137.342683423, 8976737.5, 9016350.0, 9083882.024938047, 9132604.076538261, 9148835.591694597, 9150437.5, 9295432.447843617, 9333165.656526979, 9361181.980154892, 9443743.722562917, 9446536.711166326, 9447991.980471805, 9460666.2405262, 9468425.654634468, 9469515.53306497, 9505992.1875, 9548404.18038568, 9559657.991815303, 9654484.107208846, 9689931.418598497, 9707862.65893391, 9750725.0, 9753236.102155898, 9753287.025300123, 9760436.152431749, 9761724.9188127, 9792082.824287312, 9817169.857074132, 9847004.684684385, 9873128.816502297, 9887838.357245607, 9892767.1875, 9921353.381603038, 9924307.400358856, 9924608.127640476, 9925073.319422733, 9953010.350042274, 9953823.868109688, 9989806.25, 10017521.875, 10025883.433290992, 10073790.437445637, 10156504.937492786, 10162414.0625, 10165847.147731552, 10182927.757952334, 10185621.78096485, 10190838.443461582, 10192168.539578155, 10195110.157412922, 10225956.25, 10230055.829084866, 10402639.978550615, 10408095.499333533, 10582260.9375, 10585783.203637257, 10596815.526150024, 10596874.087235425, 10663937.777072737, 10665565.625, 10680129.579751827, 10686253.94978708, 10705243.75, 10705504.064348197, 10729771.875, 10739442.1875, 10784224.936396083, 10799603.125, 10815638.51893719, 10829207.043027302, 10837791.372730546, 10844632.775663845, 10880795.3125, 10898965.625, 10916131.454186348, 10941900.443710843, 10957107.8125, 10986949.735379541, 11018998.106338171, 11024853.817890352, 11030639.51941954, 11033802.165300637, 11052324.460746842, 11071135.9375, 11071137.88031827, 11093649.676767902, 11107926.357197778, 11123938.928427286, 11143141.251118861, 11159482.543154588, 11186677.734524926, 11229018.382730575, 11233646.411707735, 11233780.076828234, 11236040.967448102, 11237910.9375, 11249754.6875, 11279488.844439974, 11291017.1875, 11294085.9375, 11310617.1875, 11341198.4375, 11344702.73746789, 11347298.4375, 11354182.985993952, 11378704.6875, 11396429.677812982, 11398708.71401414, 11399413.492453648, 11402308.092733603, 11420870.3125, 11420903.488645686, 11431582.374111319, 11432052.518887535, 11433859.681084147, 11447397.152862154, 11451203.056180226, 11488490.650144037, 11516098.31959967, 11613028.936210578, 11626726.709864268, 11626817.311300121, 11628563.152104197, 11673821.85650828, 11673821.875, 11706545.3125, 11722884.618936045, 11755437.558304133, 11764134.975138417, 11772678.353457358, 11785406.25, 11804904.13648396, 11818168.225603428, 11877417.744354038, 11921802.973980421, 11959568.17964946, 11984739.540043319, 12015505.418493357, 12041455.137286793, 12092203.591711788, 12100521.393175196, 12131414.66473626, 12143668.848209804, 12198083.62735456, 12198093.34365881, 12239600.76803065, 12257311.682403829, 12282651.592229303, 12289352.753715519, 12291997.641627688, 12294665.625, 12318800.701937545, 12318813.455492124, 12372744.911889901, 12427852.040481599, 12430241.826282337, 12547744.528036656, 12569500.0, 12952840.454283915, 12970522.69510423, 13049070.220363623, 13276364.962848535, 13276376.779615752, 13858681.25, 14450389.319346175, 14710927.804203188, 15072921.905077254, 15178587.870901396, 15211905.557589756, 15256706.25, 15284377.719930524, 15291069.04164132, 15303101.269023059, 15304348.8348185, 15318644.785143396, 15321398.4375, 15324154.494008344, 15327932.921263957, 15359477.995760437, 15360747.742242921, 15374339.707215859, 15379635.594810378, 15381346.875, 15383157.614539031, 15383294.647755792, 15383591.146199854, 15384172.318714632, 15387651.506118132, 15388912.5, 15389782.944353718, 15389982.671205446, 15390114.86425464, 15390186.891343651, 15390462.126100888, 15390951.406599412, 15390954.794298781, 15391090.625, 15392536.477420002, 15393520.236630753, 15393690.625, 15393843.75, 15394433.873455653, 15394658.223672023, 15396059.904936356, 15396488.20601578, 15398510.9375, 15408115.625, 15410326.583299898, 15410600.51916369, 15411689.0625, 15411706.303775823, 15414542.1875, 15419894.533010738, 15420603.236051753, 15421432.8125, 15429002.589214025, 15429033.831818478, 15431190.13146488, 15432904.982209058, 15432938.221826943, 15432986.998185309, 15433159.171029083, 15434942.1875, 15434996.656685894, 15435226.375320546, 15436426.218176639, 15438847.977936052, 15438873.935081283, 15441038.67998852, 15442004.403550897, 15442518.288594292, 15443937.069588449, 15444962.399269804, 15446340.017237553, 15446868.512747144, 15447233.155267956, 15448122.879490118, 15448806.25, 15448955.321106259, 15449161.534944594, 15449442.635855636, 15451588.059665965, 15452427.808526678, 15453429.404653298, 15458031.102638222, 15458170.3125, 15458896.875, 15459564.94014392, 15459587.069608657, 15459640.257828135, 15459689.0625, 15460734.730971701, 15461154.6875, 15461156.217324343, 15462219.103055658, 15462994.590594474, 15464126.5625, 15466853.34073769, 15468139.0625, 15470961.916636279, 15474154.621239528, 15474160.528608892, 15474909.9452271, 15476054.40692688, 15478826.552798787, 15480841.572617812, 15481607.544233797, 15482405.441724584, 15482406.89357917, 15483538.816897377, 15483595.143409465, 15484662.137072323, 15484693.605484346, 15485370.66438118, 15485489.0625, 15486159.375, 15487190.625, 15487457.884362103, 15488420.27841284, 15488591.991387729, 15489752.811119437, 15490663.188931316, 15491065.347592993, 15491184.575559953, 15493092.444215843, 15493889.0625, 15494235.065787116, 15494828.632352982, 15497227.775480138, 15497665.918154292, 15497957.556043966, 15499251.153322447, 15500017.331435425, 15500472.90277291, 15500531.787224466, 15500823.826992352, 15501021.875, 15501305.13316321, 15501560.553528411, 15502708.280631438, 15503980.790661817, 15504361.276361162, 15506338.893866632, 15507104.41693105, 15507142.564682646, 15507271.11912453, 15507298.769373102, 15507398.402451595, 15507441.197488703, 15507475.014689779, 15507477.467293473, 15507993.199304076, 15508234.911490092, 15508243.349172015, 15508521.090057611, 15508696.875, 15508707.431283293, 15509112.5, 15509145.3125, 15509932.860368475, 15510817.523265373, 15510910.304555042, 15511290.558689542, 15511542.403435923, 15511670.3125, 15511689.521521667, 15511892.956434457, 15513042.730684582, 15513515.944813222, 15513804.6875, 15513853.125, 15514284.375, 15514851.5625, 15515066.675342446, 15515574.639260145, 15515719.496578626, 15516030.843683662, 15516040.598098429, 15516731.25, 15517459.939303774, 15517979.539347207, 15518741.454789698, 15518875.0, 15519250.332557224, 15519599.912880164, 15520034.372708315, 15520578.998318233, 15521246.86877183, 15522432.8125, 15522735.10296987, 15523542.1875, 15524401.260080438, 15524600.74869413, 15524732.416161286, 15524991.420287617, 15525360.9375, 15525368.183999494, 15525489.0625, 15525806.401004428, 15526181.029394822, 15526636.259477783, 15526687.5, 15526823.004264332, 15527146.626395384, 15527750.0, 15528250.866213625, 15528425.0, 15528536.438425466, 15528576.82111855, 15528829.6875, 15528920.18409018, 15529206.416787442, 15529312.393912168, 15529387.194084367, 15529445.84929936, 15529629.977673393, 15529646.744024206, 15529847.602450926, 15529890.524306098, 15530154.6875, 15530574.898691844, 15530907.629803723, 15530923.259279408, 15531176.64557835, 15531183.820525711, 15532286.927801294, 15532427.73405514, 15532467.782998005, 15532502.024127629, 15532681.914243827, 15532786.501049876, 15532787.135173459, 15533242.148025397, 15533272.317838304, 15533438.97936588, 15533786.946060186, 15533943.75, 15534095.3125, 15534196.054577922, 15534265.625, 15534370.162447665, 15534423.187611809, 15534550.263978217, 15534756.06612656, 15534940.625, 15534986.98011865, 15535005.672092343, 15535010.354820253, 15535104.785384407, 15535245.3125, 15535309.375, 15535332.693932958, 15535619.686696967, 15535653.527166748, 15536504.777477795, 15536573.4375, 15536634.375, 15537027.173649734, 15537474.761835855, 15537787.941948319, 15538367.01869764, 15538376.607196363, 15538556.372584593, 15539250.729892058, 15539482.8125, 15540047.22069142, 15540066.501898028, 15540506.57340115, 15540562.5, 15540690.51118824, 15540784.259833397, 15540944.019227065, 15541008.696352053, 15541188.410028523, 15541243.587113567, 15541416.101627368, 15541947.443707902, 15542005.885861514, 15542317.997599263, 15542368.542499322, 15542448.017924337, 15542501.5625, 15542528.997816762, 15542579.657796297, 15542621.909381129, 15542704.34640562, 15542754.134251377, 15542896.875, 15542916.120616104, 15542935.200311573, 15542940.165957835, 15543130.974214591, 15543637.266089242, 15543656.072011601, 15544134.940564582, 15544474.306525547, 15545995.197486863, 15546111.61536368, 15546309.610124292, 15546634.106428256, 15546995.246407555, 15547084.097593157, 15547216.868479518, 15547339.914856164, 15547423.4375, 15547547.322838115, 15547576.5625, 15547962.5, 15548114.808456982, 15548270.835717896, 15548526.328714663, 15548612.598987708, 15548620.3125, 15548649.603991833, 15548713.709272614, 15548787.5, 15548915.08330533, 15549025.090138197, 15549123.788018974, 15549232.453197043, 15549479.295858921, 15549499.252265608, 15549614.0625, 15549628.125, 15549643.978434486, 15549817.54446095, 15549863.770317115, 15549906.080962049, 15550433.360203894, 15550499.951418579, 15550537.51543372, 15550811.529775005, 15550879.37715252, 15550899.787840828, 15551449.850056222, 15551559.496114576, 15551756.219719127, 15552160.504784752, 15552388.942916248, 15552761.578182707, 15552799.786979156, 15552856.25, 15552945.740888875, 15553625.0, 15558440.273571247, 15559579.347826572, 15559714.963753205, 15559809.86127164, 15560015.798711723, 15560156.683165714, 15560969.49156728, 15564638.557245554, 15565088.779048955, 15567362.153743397, 15567650.656381993, 15579871.756554112, 15581589.68951559, 15582390.007087661, 15582435.9375, 15583067.772051362, 15583206.00371993, 15584088.362319823, 15584168.72981859, 15584616.21863997, 15584733.947758548, 15585321.529211571, 15585445.3125, 15585794.15477233, 15586385.192272644, 15587141.423751181, 15587909.375, 15588430.039833529, 15588527.502072236, 15589792.1875, 15589882.46355403, 15590460.323449222, 15592448.301034555, 15592840.932735316, 15593353.125543224, 15594791.122510917, 15594823.932002468, 15595608.659425678, 15595732.61119527, 15597555.022438396, 15597631.967583966, 15598102.925758211, 15599111.745499307, 15600234.882855274, 15600258.28812135, 15601274.67676189, 15601464.0625, 15601491.813851213, 15601986.42191218, 15602106.140864052, 15602967.800214285, 15603075.76436395, 15603541.576882664, 15603884.375, 15603979.6875, 15604051.53256174, 15604082.704485193, 15604121.457417244, 15604159.934180696, 15604342.855709221, 15604362.843684088, 15604821.875, 15605645.3125, 15605695.610142065, 15605711.650398865, 15606056.029769951, 15606622.426548265, 15606833.44060969, 15607355.60099674, 15607662.488479309, 15607802.325792668, 15608067.1875, 15608127.231103208, 15608634.54611491, 15608792.649204427, 15608960.256753245, 15609960.620701157, 15610053.125, 15610833.232921999, 15611090.625, 15611359.899335533, 15611711.17219772, 15611715.652246015, 15612034.375, 15612118.570853433, 15612349.09226821, 15612401.60717913, 15612519.398760276, 15612523.65001008, 15612550.086043384, 15612606.323940173, 15613133.216581637, 15613145.334412923, 15613412.958425028, 15613478.125, 15613495.381206749, 15613545.587527832, 15613656.662726661, 15613862.647862226, 15614040.581949072, 15614107.811821241, 15614150.621516543, 15614173.938300524, 15614206.534085479, 15614228.52570885, 15614256.371252883, 15614334.018652368, 15614339.0625, 15614360.054332128, 15614401.124870606, 15614437.307615899, 15614437.5, 15614439.246297348, 15614441.259159623, 15614614.615824202, 15614619.37407701, 15614629.299745467, 15614649.40344387, 15614685.78879368, 15614710.9375, 15614726.5625, 15614767.283418616, 15614874.918254362, 15614886.719657384, 15614938.67966361, 15615056.830706635, 15615115.57100921, 15615139.028911285, 15615144.989001123, 15615157.178703938, 15615274.63873921, 15615276.5625, 15615284.375, 15615288.97335265, 15615289.0625, 15615406.670237117, 15615434.375, 15615454.6875, 15615457.389253916, 15615457.70752682, 15615488.682096299, 15615531.66096774, 15615549.447261117, 15615628.125, 15615740.089297635, 15615819.89568511, 15615880.167785285, 15615903.45162204, 15615907.545068052, 15615918.937118206, 15616026.075530002, 15616029.138190087, 15616054.227968032, 15616110.265945183, 15616124.36495315, 15616138.35685526, 15616167.1875, 15616328.093583895, 15616526.5467628, 15616585.9375, 15616633.405664837, 15616852.711409548, 15616999.738476824, 15617370.3125, 15617373.2131232, 15617672.988582883, 15623108.194198977, 15624901.5625, 15624901.5625, 15624928.125, 15624929.616797127, 15624971.762778977, 15624981.905019416, 15624991.889282944, 15625003.09446474, 15625018.582888288, 15625024.785860278, 15625045.296439867, 15625046.875, 15625049.866178686, 15625057.591735832, 15625068.02097268, 15625081.190771144, 15625090.378993051, 15625099.951898195, 15625100.0, 15625147.751576401, 15625157.8125, 15625176.296621678, 15625180.698922498, 15625191.94182868, ...], [29.130165786196933, 21.033519358909775, 24.65148170776095, 31.662440236039533, 5.566092464553174, 11.253737995323545, 48.30629849510644, 6.923902039725982, 10.027839893297394, 53.147903922886904, 37.51384202404535, 9.039861762442202, 19.05199599797877, 20.08406454186948, 53.73713475975862, 73.98801037795052, 14.155010532765049, 18.036066310869337, 25.618359426606183, 27.27748635970746, 105.50926262448581, 13.691488816824656, 68.75272287037102, 17.606947794627683, 54.68702735043847, 54.56287581499977, 13.098367244360158, 25.357796595236536, 5.562965629163852, 23.03189010182996, 58.67340388532348, 6.801706852315825, 92.16858628136023, 20.337249094127255, 59.357677902782925, 54.58423208113097, 7.015507694155984, 32.09076210486825, 28.417420856907263, 5.189291179817152, 18.572057123891724, 12.896638224341324, 6.929788568128459, 39.55059193734629, 63.49023952604863, 72.65146900640254, 64.95770480887111, 18.75613503972371, 42.44450260209477, 11.420525154099204, 30.645872423111857, 65.07989509308774, 25.646776040946442, 17.549148277932353, 5.639622779157873, 103.1438475982944, 33.709166893363516, 44.156748328882216, 48.13615998359312, 20.4348663276008, 62.57202688295302, 13.014304295337134, 66.1255671597957, 12.73689201793219, 57.91493329373578, 10.141169963359665, 90.81367915421845, 15.353053615313637, 53.641461769909625, 19.424213887382855, 24.414424829711983, 13.299638898511176, 61.910054362779135, 28.148891284440005, 12.113664305694643, 114.53938574652815, 59.298473857954924, 18.33178529717063, 65.54990908172445, 20.523288963483573, 15.53074692799808, 55.72223364643053, 56.37184128029806, 20.75968747033191, 14.731272891579197, 78.7409288676123, 15.679211950669456, 16.349791166385618, 16.890497021327242, 59.66754287669902, 89.9469928821169, 5.727189291246205, 6.785239821073499, 25.113565489478095, 61.74058658649634, 63.11561934412304, 62.314074085274356, 27.157448609645517, 5.255099759766281, 80.40511394725578, 23.0433726457816, 59.275107796076185, 68.61984214972432, 35.97619160807409, 106.24846994429565, 5.424605946968387, 8.001498036268888, 14.512274688796634, 58.239772105680075, 62.952621510678945, 29.973131617963208, 56.04209787234874, 35.51745284239519, 93.43242971507117, 61.94581835036061, 40.71949636225973, 119.45183193004567, 49.64380615044668, 9.211115858033622, 58.14232156277876, 13.106358300564109, 21.361172023422696, 36.77310705214746, 79.06076894177214, 25.903446846390597, 9.512736921111848, 15.872098057451534, 36.435786331888345, 6.854718741463797, 5.657653015891238, 60.60145238141973, 128.36284185876264, 9.208925783631196, 82.07182380294685, 9.71393724270983, 25.632897243420366, 12.249632418875752, 105.44116891036641, 5.988368257571054, 25.43171501268155, 57.7391287468088, 6.960113502627959, 85.94615924011939, 77.73341937657602, 7.140320675726034, 28.669122925197726, 43.73018744950364, 24.405017772162015, 30.84104726532843, 6.679936544766731, 8.812077486812951, 12.364355587724447, 47.3026244747773, 31.364701846976427, 10.300213547668418, 118.85633243815445, 7.6358489817807005, 93.17969219093611, 12.903131202726485, 43.959770377802386, 54.860291704365466, 123.44226326116187, 8.374334278891292, 83.9720929461699, 61.08811961081952, 40.64804757737852, 69.22772659388396, 183.01537277609393, 22.15624805371505, 21.53146588554066, 16.752088148575396, 6.733958305844887, 22.516711582298363, 6.752266135209159, 25.717162384275184, 147.6690708860736, 21.617016764048124, 37.35371784645356, 17.095422824095806, 123.34784516354787, 47.80392587048865, 21.795511945465673, 117.8067523396085, 6.277847842133613, 52.106175644106436, 20.401067415018677, 9.245756885894908, 71.73889798213438, 8.801341718724162, 27.294094667633438, 40.296608648992525, 13.491568601185904, 114.28547294890016, 41.615169474527974, 34.21401671957112, 5.176684955247233, 8.623088389772622, 35.33097168606583, 11.939908558088547, 58.28873817234222, 23.728095382480547, 47.073846860486384, 132.13223731921272, 62.0650210702307, 18.076315873996723, 33.53518520263613, 10.11192233118419, 62.532481627404294, 7.277255726134475, 13.235123063360561, 23.647316140644843, 43.974753181908994, 19.594384071200196, 57.872342781579874, 20.592926500712398, 119.75082100185004, 55.35523811985667, 104.24959215306009, 5.609807365886988, 83.16916804239989, 44.80549753530507, 70.61568411918236, 49.72018480681825, 36.7232440764517, 18.121860422605995, 22.853422967189278, 65.21818823806434, 34.64027965131569, 47.06823330083491, 73.24811353854246, 33.21778816354781, 103.02388328094945, 24.670097676543246, 21.105294039614233, 32.15167371663364, 12.290982145818287, 78.83807925908242, 77.31795213985819, 7.825838293694161, 30.715045646600075, 30.717842578785593, 47.392436657925124, 23.628771432981782, 7.191541853836747, 14.604527843207052, 18.892378161795268, 89.80630755520791, 24.537023498045645, 141.98303662279537, 34.79453887864745, 42.755233519460305, 12.901715986201586, 131.0256779613369, 43.69523894153656, 17.49529221271376, 141.49768150026605, 12.983577279942184, 99.32532279488885, 46.83477885857733, 92.32562755883964, 187.18910311973715, 7.905750318878348, 47.891846064361516, 118.36044754448145, 118.56141544701859, 13.156419033469039, 69.72042095156371, 107.94388311490017, 41.18812702632647, 27.134649447576905, 32.1200759335535, 20.236497256316486, 28.08437440430824, 14.747516029665515, 14.238979514592433, 8.327107041042026, 186.73750716513126, 37.7793128502393, 34.15410716930912, 15.612005647431978, 27.651122043939036, 8.512758584428669, 32.75658817016742, 66.00721785167238, 36.51735471691756, 6.48282172706316, 42.624096318332626, 32.96853906554666, 37.88197660450544, 66.19381328585217, 42.387154082201405, 21.094004291269947, 11.897380143333136, 13.19761971728532, 48.31797825768278, 64.55075697509406, 7.862427079927315, 19.535410671031244, 42.41134329206491, 36.17386204263186, 13.551522873978227, 48.43512804310083, 22.24232439934675, 92.7977254366484, 40.670286127033236, 45.18352202452388, 50.220702362361806, 20.129441800350115, 39.24249184267678, 46.32625869884785, 50.84888113995109, 76.18516862894167, 11.177345684721283, 18.714675967020355, 27.99315530982681, 23.474674243622665, 34.677873063361424, 91.3630375292675, 18.204344735740502, 22.49513765749765, 47.88741017710869, 44.295375307050065, 84.7787338640216, 8.149865920512509, 70.51297279684297, 5.540844148079734, 32.5887669732824, 395.54228686616455, 7.0020186535800075, 23.66145304536528, 17.95453180114935, 9.34138993857783, 8.059580150176052, 103.24611866483826, 27.1417423525958, 7.945800785582396, 29.317413909612316, 59.391131486886174, 78.16713561413277, 9.612888610941384, 37.22152353931861, 67.4481821841191, 16.88331107047097, 82.13886367724311, 35.175356466231186, 17.98721736579565, 13.200079207513612, 122.14760375194473, 105.79716832472631, 16.094002877346966, 7.475666885494496, 58.66612062751131, 5.086464170740127, 14.195870046096967, 28.12560910744235, 58.22139453902324, 57.51972958851742, 10.248131703356535, 51.081089590071855, 80.78636745209387, 22.726988619153012, 43.13170433184459, 7.85645051414387, 11.590288086614969, 33.63650981337601, 90.66855096622947, 12.718971218450324, 38.848487074488936, 48.967833431427565, 36.9031098002082, 58.343100022427016, 22.777397062746715, 64.12764500208706, 98.63253000079456, 61.34840538730941, 18.900013904906412, 89.14665959022346, 61.427445109351176, 37.10146875896462, 92.36358828135523, 59.71229789372047, 72.02370169951081, 76.1472795797668, 23.360689628861696, 16.495956187272824, 106.86696890294051, 12.221701808138958, 49.16199688979245, 49.91836244732363, 16.620618832033905, 20.489052953201906, 14.212765037825836, 26.129977160440657, 12.271146150681153, 10.731277813792676, 13.63636355411395, 11.705644680695247, 29.152656299337064, 33.58893603508609, 5.2122351394249735, 57.3033179128331, 43.04282693040708, 24.857055042971396, 30.50238306728032, 50.4240604503108, 32.659597978464134, 79.77848851696963, 13.644997707384803, 49.88051564105097, 8.380505380103308, 46.129930084704824, 38.41398981966029, 19.087459908183188, 25.88704943295687, 11.595929077316987, 49.075268509111055, 6.126749546157046, 60.54297539143357, 23.76820581115249, 11.642394234470249, 108.72136855084466, 64.75167349274263, 30.986419362415475, 78.95669160084948, 24.876910941332994, 15.534605364531593, 6.788476574362062, 18.18787282450212, 25.67847778923905, 72.12576036466129, 64.03166424319642, 5.722460639005406, 116.79937397103983, 17.858026829865853, 5.251584652333342, 46.27174737320245, 8.015208381485486, 13.259722521627316, 159.90273682632926, 34.19404365540712, 20.818894031065398, 87.41288514335108, 6.005697411735251, 5.555315717760904, 6.860401678206478, 46.631090961056124, 66.19898143410697, 24.818948873988756, 12.695384914692452, 29.2537035113277, 31.702672460806816, 18.818757962090405, 92.53782168451747, 84.55550831489685, 22.163427417419925, 114.72757005957254, 12.43628834929816, 13.04222927763664, 28.099004041571195, 48.532205196430596, 24.274705019711522, 19.058159117682052, 33.84813303719561, 20.939722422978374, 19.373766918301186, 26.8265718333768, 33.301727290476364, 32.58297870294634, 87.55912386542566, 16.020048503479202, 42.74050016683569, 11.17504719615668, 7.2224873702165935, 17.174738607749994, 51.858756695029044, 44.922284931896044, 24.2926392241995, 57.6103851639399, 16.708178377868375, 6.407483388013922, 64.29609521457843, 9.172983957539648, 113.01537375732995, 5.1277496748607625, 67.64539657806463, 56.85244973910036, 55.298104555086134, 68.96088741566773, 7.533174148708458, 17.439996931941, 7.2655478484037985, 19.471534694780836, 71.3988866703138, 61.42184608714814, 40.68855392619001, 22.25490911231817, 37.01268216547901, 18.471294236199178, 22.85055162223397, 35.993774384469084, 11.298846852841345, 84.53490068947575, 9.833859257121247, 67.33311633835801, 40.763135187809496, 92.1783925070237, 5.325024390258965, 16.78045925443035, 37.07230261079634, 12.445366271909295, 45.62622452977295, 96.71403242918174, 18.943026366397135, 17.37424115718662, 55.20386840056576, 8.315221085899747, 68.43240118171609, 19.094784339066113, 9.427102737628033, 40.62153883272976, 21.143392512690436, 7.417922521924889, 63.125772642288, 78.95034788520411, 8.709122737958188, 8.940312541014984, 62.48917364045434, 44.50140235806913, 11.308591260008562, 65.53350081127559, 17.277759608812367, 162.0185928731105, 55.974061772992776, 28.51654239498245, 24.600692939462565, 21.8869366129543, 53.94354746452547, 46.12343437476744, 13.040291548753475, 24.58676408490583, 6.311498223489893, 46.993848452307304, 74.59220723925937, 7.8496905029941235, 28.86905982981162, 29.038110169688295, 7.276775680338, 6.701928098127874, 7.04903318626147, 14.408086737282018, 102.08720583888608, 45.72803247416149, 6.952354326859975, 22.216772888491263, 22.929030087725607, 30.400817238350953, 16.49735885321045, 38.07505953336083, 6.263078841937572, 5.412144741148579, 19.532445488305935, 47.84157173565729, 28.353324197983028, 40.00893003788755, 45.694783164058805, 21.509386722616917, 63.065919939820816, 30.846006373131303, 13.970056662709744, 8.281453816540735, 13.022050511382515, 24.164740923048193, 55.69783339836862, 12.15762529985402, 21.194972615059097, 5.336160763632099, 49.716124067246085, 14.417880498980464, 16.47689196308635, 43.14023394760197, 39.72481401224769, 123.20697267158059, 24.57142309494324, 62.05171868305931, 35.278643044049105, 21.127623007653995, 34.97361983485927, 29.508687823511845, 62.82962929892888, 11.55416746345684, 41.24553242874005, 32.43933048510449, 8.574424595234941, 9.052373647124188, 25.208306270198847, 14.046512320582298, 28.784516081965773, 74.21876410728123, 85.5132553491003, 5.109178528205318, 50.58609421972444, 58.94605102595681, 16.964140513151, 10.576267093688347, 60.52098169523815, 21.908545604160423, 54.69060431092098, 92.63400798410518, 29.43154935100745, 30.183478191246955, 22.98344186323812, 16.377766220210372, 14.80958313669792, 17.688846715197922, 8.2943608328648, 12.913925874098656, 56.84924193014149, 17.474824537871047, 13.60611673450058, 29.31750015946456, 42.92409514115122, 7.470941732017409, 50.73779022711042, 29.416018022291137, 5.292568174776508, 30.947484902816566, 12.976114244681543, 8.25181979247032, 17.41172998573073, 52.25911033541865, 83.08682286454304, 12.58804369258932, 7.812268885574132, 39.61438172578923, 33.34985713193533, 77.18780653153523, 67.52890639738716, 58.494785988674124, 21.37267343795686, 28.722007135604894, 5.755978863175216, 30.32402013116271, 11.085916663425536, 42.38490079386015, 26.806574367265007, 14.405368163267145, 12.730901181270282, 106.36779630748057, 16.628640428541708, 6.746237519115954, 27.65819998285243, 19.792925464583213, 12.957879205502064, 72.61717570753243, 24.059849640088743, 44.00089249173644, 75.5920719839843, 68.37434790990328, 53.14187224790709, 12.64930633216273, 66.13722952985711, 13.148849176975496, 45.744257223602645, 6.286467079618913, 8.173264061311517, 41.36293676095911, 48.313229180165216, 7.453715526618177, 14.675039997632346, 62.9265682942912, 19.735616934169403, 48.7940815171583, 17.270014905712113, 7.1911355751317805, 54.78103309296261, 9.225135387291987, 98.13719359538689, 57.65753823963708, 10.680993335935499, 52.16786366977447, 16.176289225365156, 10.928973988941069, 12.493416226504047, 14.571115912094212, 45.55459690924491, 38.314973827031054, 77.75461296112611, 5.800910111162492, 52.09861392633657, 8.013622920808352, 67.95110893929254, 21.114186332279385, 15.274455762871222, 7.779193270417754, 18.267259590671525, 16.61368063684596, 10.601632356088428, 6.084003802840814, 16.948892977941917, 5.242824481327309, 20.971384173906404, 49.841644814337684, 37.03902746098532, 7.8956592304783335, 90.84264500594387, 59.73405100539529, 124.88160315472899, 16.053136313972466, 14.28411393584791, 33.64359396325933, 36.120173883163616, 10.330443132274866, 20.706156400496088, 64.99481585841995, 50.38936212371491, 74.25266741553159, 15.017331805310771, 29.320518225612133, 63.096816880398904, 15.29592383730222, 62.32431051002511, 55.925660665552044, 94.99842107146054, 6.2375697857476835, 5.638970782314336, 52.64807393190165, 64.26909150987757, 9.437251841775831, 58.63330244585744, 31.303361413342685, 16.446052222559405, 56.332843601601134, 16.336279874191426, 55.48858652412061, 17.15897762547779, 29.892229907082744, 7.703604128303955, 62.101457088504205, 27.503053689353344, 14.354998239198666, 92.72354540266129, 5.308983543904629, 47.454905459545735, 78.61237681101358, 25.008861034816714, 7.015359415834859, 40.967367729773514, 12.834929126848207, 27.950244310462796, 27.215500271874323, 9.058732722362995, 20.977868720204906, 29.590322570179488, 6.866657603462521, 51.71634686919425, 28.29192890490565, 58.310217903604645, 24.6333173873121, 25.44530557124696, 55.619575852076835, 81.67201521686913, 26.44114568615907, 44.77538213388206, 15.92041528770106, 38.3346959255598, 27.282050511712033, 33.31291781265457, 23.510784280292377, 45.83095899628411, 119.86069647415835, 7.773663013692159, 46.40436697336044, 30.99292464201324, 10.053311144699238, 17.397638394557617, 14.119497535483795, 29.06756104350015, 76.31894717846356, 13.620173687744556, 246.71145854450515, 29.9613737903664, 43.53372295099056, 53.878544771776355, 9.646482207266427, 13.72863899416391, 8.08978849484169, 42.75415981906818, 29.28607397376466, 55.69729831266232, 11.504578849808029, 16.502318915680657, 23.85111069849885, 16.815210567958804, 108.06770711073783, 23.94441145508431, 66.93060584508382, 29.717106582063245, 10.674953168305203, 5.6933873740011185, 60.81081110074492, 32.518515784210145, 31.947914729506753, 34.02448770862367, 105.46754789436255, 125.94671987951172, 14.187315329993302, 46.73297518001547, 51.624464005613795, 67.57432891524158, 6.43337755145114, 51.088730240993996, 7.3803903197586065, 78.53730988405276, 14.718422667199633, 11.87974790672404, 18.146467456810292, 55.12954986826344, 9.10270293631792, 33.16601549407485, 8.667121708180884, 7.090660072355564, 5.747859820367574, 63.38118939378988, 49.649448419434876, 12.183433498847132, 14.079137296511524, 10.185170493066071, 14.865141262261417, 12.202445557986646, 46.371291620678065, 8.11180884129808, 45.81030954848255, 6.847099393518976, 19.352099066766833, 78.0078984856104, 60.69154492512038, 113.86699985988676, 101.46734931022175, 51.35797106826309, 10.622829517969734, 6.394956984865432, 22.550123194606144, 43.23885321042664, 33.56714607035877, 12.00590672467782, 9.787731860480147, 36.01009881356119, 10.826987344240324, 113.1926492628003, 18.627137776470015, 25.129169050446176, 49.759560733041, 13.978347349781455, 39.09084785934321, 18.57625370403286, 54.0097955621288, 5.593702104384104, 23.100677852907477, 54.715007966426874, 134.67023628334, 18.958414352065596, 13.79736572152108, 68.46645652623349, 59.28488774314183, 14.828613549244219, 26.557643196644765, 10.53222897830242, 17.608919231627247, 30.02863493850994, 9.639958855620081, 29.1678979280881, 36.46054197665661, 34.11911317177622, 18.59478492593554, 14.973601305652487, 14.46876067137352, 18.671402799275754, 37.05899236573983, 28.29892948648604, 18.950656226499206, 47.001220129352554, 51.62652966422712, 12.540615554029312, 26.790307119963494, 76.22630479506431, 33.42429202459796, 59.16848702851087, 19.629177878317492, 28.576569792630735, 17.4041031722772, 11.515501992799175, 5.61555323553458, 88.91106903933246, 25.839147987217572, 81.96419739081092, 12.042938372862672, 8.662282665890713, 85.30450058300667, 7.634657413832177, 20.345060973734256, 6.846951848647329, 15.025694231075182, 8.544850298832255, 54.146481887575504, 127.63111391969102, 9.57531022359965, 22.579974331835576, 63.94290593282501, 23.67575842018935, 12.836575841297647, 25.016648604393517, 17.269306643575543, 11.602815138535501, 16.7257898529162, 6.506268161849524, 37.55377713212158, 34.28910161655978, 23.770181070547554, 18.8865481238659, 8.187395784471082, 57.4714765888735, 7.1706193377985885, 42.33753929083137, 64.47258544494255, 12.26679181900537, 36.61126693029019, 17.124904233711778, 25.89694914622444, 39.558180093846, 75.42099306132465, 14.650996247218913, 27.00610863879542, 58.10388835342992, 5.6828189067983095, 52.88754826724772, 69.09530119547539, 27.877055282485212, 7.490279317171412, 8.84741895010857, 51.42006475302248, 124.22689580454785, 29.763761085832787, 18.56384871666519, 57.09382926107306, 16.82821535886805, 37.0337275017616, 44.08422885528342, 10.524869875890028, 49.05554203862572, 5.682968384348871, 25.15949190957663, 20.982654211837627, 59.3873857372328, 28.32330646363428, 6.683051119589654, 17.15405418973391, 7.725803429357085, 71.83413681682731, 5.134521494502931, 8.04481989884842, 48.513390060089435, 79.52048643313675, 12.879534855022326, 20.244015380138805, 8.798407765426935, 85.60486135738338, 75.35466801332379, 137.8985635415019, 46.94272675350092, 5.179410116182355, 22.400679822241642, 10.742137131478302, 36.035898026702185, 24.767303367872508, 94.54200955904534, 53.417403753991174, 41.997450528326915, 61.8019038693472, 44.75003090127687, 27.200080286413485, 90.38465846659976, 28.113470646607, 25.485615777772086, 129.64476351970686, 34.960306754472626, 69.6655204398069, 38.87195541519422, 67.88636412240818, 26.134024488677973, 7.5252960554845805, 17.983240762564844, 56.11664865412229, 24.465831339567014, 68.49774042642518, 50.23779428605529, 30.98210873062004, 46.54229238289926, 64.03355779515827, 13.188300262514044, 17.390223585089522, ...])
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)