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 = 44915
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);
([7318977.936908559, 7373104.272276476, 7373907.928370211, 7378623.698863027, 7378798.0575052975, 7379281.992267022, 7379694.39139963, 7380293.894345755, 7439625.0, 7471064.0625, 7472813.318105961, 7475766.74208597, 7498102.328965184, 7529449.57164259, 7531069.499038854, 7532395.457440086, 7532975.526411074, 7533030.559907175, 7533401.891226552, 7533806.0676336335, 7536523.764365596, 7539117.1875, 7539332.8125, 7539936.382724284, 7542262.742977611, 7542960.637691556, 7543868.656541548, 7549274.196923749, 7554964.3932825755, 7561316.635604131, 7571471.875, 7573967.1875, 7573974.129659105, 7575579.552357739, 7575986.276500337, 7576739.664292178, 7577984.420056852, 7578143.359640738, 7578563.775084801, 7578590.771384269, 7581696.2395682195, 7583785.219761133, 7584527.320009786, 7585030.069526192, 7585094.683671317, 7585271.994194073, 7585375.339759889, 7585433.237318064, 7586053.179308481, 7586078.85064881, 7586578.125, 7586598.509803816, 7587150.799789009, 7587364.317691066, 7587859.160090244, 7588681.182835565, 7588991.141190357, 7589928.125, 7592113.1428901, 7592161.134630524, 7592171.242334944, 7592188.11294505, 7593920.1203933, 7594450.709233673, 7594676.5625, 7595965.625, 7596375.00673467, 7596881.494153722, 7597288.390445072, 7598160.9375, 7598685.417144351, 7598868.75, 7599035.325857534, 7599074.944883305, 7599732.853638706, 7599782.532411102, 7599788.081723925, 7599983.70868451, 7600284.375, 7600493.396143867, 7601186.126419466, 7601399.337959437, 7602040.546935142, 7603840.367750812, 7603893.831357888, 7604126.239078937, 7606049.787555555, 7606829.199942653, 7609668.489929428, 7610025.200490214, 7612520.789823815, 7615888.428992297, 7618114.328386767, 7620582.697355506, 7621114.0625, 7621780.248811067, 7622796.875, 7623071.099552853, 7624198.262622698, 7625025.0, 7625870.3125, 7627377.483344514, 7631743.761330213, 7632301.894663805, 7632832.615952263, 7634011.071139913, 7634031.018171545, 7634120.113806638, 7634991.751329093, 7635186.788273698, 7636354.104824642, 7636918.75, 7636954.077033667, 7637680.969660134, 7637760.260034048, 7639277.268607342, 7639445.310615965, 7642943.655511116, 7644502.113691135, 7647139.115186028, 7648699.7325973455, 7651235.9375, 7652073.4375, 7652772.092883292, 7653152.546996426, 7654084.6850803215, 7654122.108990167, 7654655.28855849, 7655924.795960863, 7657080.944104458, 7658575.624816112, 7659950.0, 7660121.02094849, 7661143.577718097, 7661247.683089663, 7661642.1875, 7663492.473730209, 7663843.75, 7666356.25, 7666407.803821483, 7666563.692948233, 7667526.5625, 7667530.585188513, 7667919.561008403, 7668105.935668638, 7668506.069359233, 7670852.561999943, 7672879.879552679, 7673681.643020447, 7676180.28870489, 7679771.875, 7680151.4297934, 7681507.563326462, 7684864.0625, 7692679.6875, 7693681.323032685, 7695389.411892107, 7695541.975805814, 7695596.0989539465, 7702784.222637432, 7705409.478244027, 7710942.342876462, 7712805.782308559, 7715103.916920243, 7717098.939624754, 7718789.0625, 7719429.479301377, 7719571.539797646, 7719772.999202276, 7719856.629266145, 7722903.160650512, 7723868.965312569, 7728536.184068949, 7729997.3737657, 7731074.529799376, 7731614.956501462, 7732605.034660297, 7732795.991615346, 7733267.1875, 7733662.681615936, 7737057.8125, 7737235.458575974, 7739120.200854776, 7740593.75, 7741266.191768622, 7742070.7839115495, 7742228.125, 7743191.924650109, 7744018.568040647, 7744260.85200607, 7744478.125, 7744785.9375, 7744928.125, 7745365.9312973535, 7745761.853920072, 7745792.054458607, 7746057.288617292, 7746246.875, 7746656.160985043, 7747920.3125, 7751253.062840425, 7752150.622055644, 7752867.095996629, 7753459.589697653, 7755925.976016179, 7756706.212076755, 7758165.237044873, 7759646.969692027, 7766113.013349843, 7768711.5015742425, 7772437.753117218, 7772940.335695438, 7775274.560090205, 7778820.305697136, 7779095.91071723, 7784114.810207435, 7785675.866207424, 7786777.570420964, 7788963.512192336, 7790949.602060338, 7791162.43483262, 7791218.659281264, 7791275.512329343, 7792148.242556153, 7792213.176567932, 7792226.832588723, 7792660.571728714, 7792704.5748669775, 7794754.227284544, 7795175.916292196, 7795181.14389812, 7798645.3125, 7799502.78120394, 7800177.8313590055, 7801721.875, 7801874.3865577, 7808829.982582579, 7809068.352401778, 7809581.127543034, 7813517.03338414, 7814247.550224402, 7814707.71081564, 7815541.3844459625, 7815945.4385432, 7816352.466671645, 7820676.400803026, 7822050.0, 7823126.5087109, 7827036.374034549, 7827218.978944126, 7831073.194217441, 7831805.901765235, 7832105.95559611, 7838682.020581318, 7840636.672307275, 7841124.268585748, 7841248.077317415, 7844460.4198936, 7845512.778662192, 7845871.255112385, 7847133.336461757, 7847530.734772495, 7848282.20945787, 7848864.785753196, 7849547.966611728, 7850743.779415567, 7853540.245944809, 7853943.6835218165, 7854579.6875, 7856088.819954726, 7856825.6225535935, 7857156.405714807, 7857731.25, 7860446.532035239, 7860762.5, 7861831.044124957, 7864024.136293234, 7865159.375, 7865482.8125, 7869977.40876379, 7870410.981652913, 7870628.125, 7870692.94684154, 7870929.6875, 7873365.1668258365, 7874115.820842237, 7874581.108074316, 7875556.762223356, 7879365.625, 7881961.764191539, 7884421.233342376, 7884523.386088318, 7884543.430315498, 7885808.48586951, 7886255.970966743, 7889306.526396937, 7889541.367638701, 7892737.5, 7894952.932304042, 7895561.973999042, 7896195.975603108, 7896918.325357062, 7897996.429678123, 7898151.5625, 7898159.086354737, 7898593.006926, 7899290.872332323, 7903158.855858526, 7906711.460835348, 7907671.476332669, 7908296.14201354, 7908645.653162148, 7909521.060071947, 7911352.884020036, 7916195.454480163, 7921325.078909727, 7927541.1804982275, 7934680.9474515915, 7937691.186901673, 7938131.174842805, 7938133.100840827, 7939062.488445985, 7941929.924024403, 7945123.130516382, 7949131.164574275, 7950910.9375, 7952108.400745172, 7953671.875, 7956574.400443356, 7958205.776080779, 7958669.055056212, 7958851.359835294, 7959256.219313749, 7960021.42515708, 7967076.75084728, 7970595.346523539, 7972639.525658274, 7972662.1719871955, 7974958.419210397, 7976759.375, 7976856.562421821, 7977515.625, 7979767.937523504, 7980018.848088993, 7983532.233894047, 7988666.096884496, 7991299.874171302, 7991573.4375, 7991927.019085266, 7993424.147445241, 7996674.694816281, 8005370.731945743, 8007185.667671382, 8012247.0780908875, 8012513.005431102, 8022630.616636044, 8025576.15114261, 8031377.8700837735, 8031380.966563612, 8031388.826389616, 8047903.125, 8050370.990780045, 8051246.659643418, 8051640.625, 8054277.230954862, 8057777.720365854, 8059022.321830714, 8059198.4375, 8059419.726737017, 8064526.5625, 8065852.881600988, 8066659.119058143, 8067287.387588012, 8067333.377564499, 8067339.140154645, 8067865.944643445, 8068317.910331743, 8100915.625, 8105373.4375, 8109471.710785657, 8111981.084052592, 8120173.42902992, 8122212.363114108, 8122225.661241799, 8126187.8913075905, 8131726.570972417, 8135337.752993684, 8139155.510835723, 8140036.522147993, 8144948.077487295, 8164032.520088676, 8164045.3125, 8164051.146116534, 8164375.125253346, 8165196.875, 8179790.131507219, 8186784.451900339, 8188485.287533039, 8192585.9375, 8193316.322632462, 8210456.694163237, 8211889.47425439, 8225255.475478028, 8229740.5104764495, 8230187.329694655, 8230512.5, 8231254.447656653, 8231274.1663122205, 8236634.059300718, 8237295.035667498, 8238328.125, 8254374.925111782, 8272171.875, 8274160.444663688, 8274633.222582178, 8287324.355301009, 8287663.466805725, 8289605.082783021, 8290264.787022481, 8293144.854434648, 8304294.329596702, 8308546.029506781, 8316778.125, 8325850.139521755, 8340639.766154326, 8352864.0625, 8354116.848030366, 8402135.041199487, 8407815.673763296, 8419637.407033578, 8424237.202061106, 8425989.58385981, 8440201.232317558, 8445384.956780177, 8447040.482379591, 8454541.746854706, 8456299.812811093, 8461183.763623964, 8461217.521706833, 8468539.159050556, 8484066.545905134, 8510047.347004214, 8512291.047148816, 8512373.76492798, 8512858.87487476, 8513185.46049554, 8515709.292390117, 8517502.610062176, 8528014.0625, 8531715.242063707, 8532357.774015646, 8532918.317022895, 8540523.272685278, 8554513.801070815, 8554691.837048681, 8557648.91880639, 8558326.5625, 8561822.365202405, 8561916.25120436, 8569030.651503926, 8593722.195110727, 8599936.863273773, 8634520.121893954, 8639823.333285965, 8657013.446418656, 8662755.582708396, 8669018.75, 8694131.345422352, 8710828.125, 8726696.716252971, 8727354.6875, 8729390.791240094, 8735440.625, 8737531.861142624, 8740120.429691207, 8792243.13929108, 8805128.125, 8830438.697814334, 8831167.30736483, 8831970.3125, 8837156.564397402, 8846247.425612886, 8862123.92723159, 8875820.47266815, 8878283.26404421, 8878818.75, 8888249.388451118, 8904957.388898298, 8915773.4375, 8918882.8125, 8923409.375, 8941152.78175443, 8984930.257826889, 8989217.1875, 8993097.541819861, 9013988.861505032, 9039531.25, 9051558.042177621, 9058689.609968962, 9058710.230558112, 9082351.203805378, 9093161.539925557, 9095465.795311702, 9116375.0, 9130661.813199822, 9158100.14190346, 9159306.221145568, 9160763.154709915, 9160840.145407943, 9167298.824325105, 9328003.74509288, 9329316.46087764, 9372468.75, 9378729.6875, 9392754.002358714, 9407427.546496226, 9420190.195153207, 9420839.794997986, 9432529.513487764, 9433091.84324908, 9433924.688822515, 9438378.125, 9440610.732149672, 9442167.445451332, 9446389.0625, 9449420.3125, 9452642.988391515, 9471737.495990133, 9486390.625, 9495502.793024339, 9497576.525455395, 9500103.502366256, 9511994.0788077, 9515761.353495216, 9517757.605373163, 9517759.193484707, 9518868.274587365, 9519781.144018982, 9522736.105718784, 9523684.031734051, 9524570.954247026, 9524579.6875, 9524780.246027537, 9524841.33671912, 9527900.319339087, 9541960.405512853, 9542083.72901252, 9542217.211536186, 9542234.375, 9548323.173447985, 9549428.104761278, 9549741.865153044, 9550165.625, 9553544.1956664, 9553753.994761804, 9554669.511236032, 9558354.807937594, 9558694.385960532, 9565827.544386346, 9580836.6349683, 9585787.335509425, 9595842.459099097, 9612073.384172564, 9612634.41518742, 9619055.322342722, 9620279.6875, 9620482.513516592, 9626888.761323087, 9631225.566724684, 9633405.342691086, 9634612.676952785, 9648763.702690143, 9648861.42536001, 9650765.478113046, 9656084.155412266, 9661978.380541103, 9679825.0, 9680400.108127676, 9681734.207211962, 9682827.091734191, 9683524.95465088, 9687923.377957053, 9688471.098750751, 9693315.189015826, 9722214.755129427, 9728352.788527891, 9743950.387454942, 9755696.710293397, 9772657.8125, 9773431.25, 9776790.160232272, 9776839.596425338, 9778731.201168194, 9779356.091755379, 9784898.80428164, 9785095.178272538, 9786167.1875, 9786414.94452482, 9786484.910013957, 9786709.5414668, 9799277.462296493, 9800845.669927765, 9800845.939124437, 9832634.670573361, 9837527.42504518, 9839036.868692638, 9848149.005035624, 9848228.283921102, 9874385.839860842, 9876860.164954796, 9891392.1875, 9893207.972239051, 9893892.668973584, 9900216.892032592, 9901648.233147118, 9902823.4375, 9909732.888423586, 9912180.781913953, 9922643.653619625, 9939618.030713262, 9964946.073858336, 9974085.44496896, 9974103.130849307, 9977872.95021126, 9978401.5625, 9984252.867665205, 10002012.0165509, 10003309.375, 10004644.124771718, 10005602.875132436, 10009060.016215073, 10018000.7493121, 10022737.450506676, 10022787.798297312, 10024184.604770487, 10035339.223581824, 10047123.50475421, 10062832.018966187, 10063153.402837366, 10080155.990027206, 10090546.487611003, 10098793.220247934, 10100320.53126004, 10101129.206006095, 10114504.222499639, 10123016.987642322, 10129160.9375, 10130406.25, 10133124.40164168, 10142246.875, 10142345.3125, 10146078.125, 10161020.228553118, 10168094.833891572, 10172406.25, 10172495.375495058, 10172725.307636151, 10174627.377587615, 10175170.789330937, 10175267.07336891, 10177476.81518699, 10177543.75, 10184603.48244422, 10194423.307966841, 10194763.134283595, 10198370.72424189, 10198606.742551815, 10199686.354087029, 10212558.394394381, 10214062.38435214, 10214088.23479605, 10215939.038228516, 10216382.767797815, 10219165.625, 10227906.134033727, 10256835.874366924, 10258929.6875, 10260221.425451837, 10263658.537467334, 10264246.959289491, 10265049.507017866, 10271740.251196919, 10271837.74643641, 10277556.25, 10278540.903904492, 10293355.1031912, 10297671.424002446, 10297814.015138617, 10298801.504841063, 10301253.36191743, 10301414.998616695, 10301426.779858004, 10302163.047785368, 10302215.625, 10302846.28208091, 10303040.251089318, 10303827.64497602, 10304940.625, 10305671.329684697, 10305857.751652895, 10306532.680851663, 10309344.656938678, 10310286.252050163, 10324424.620603153, 10327766.314625343, 10332698.53112003, 10333738.623710627, 10333748.672884459, 10364437.5, 10365231.887558354, 10365481.25, 10367383.20395013, 10368027.843452977, 10378774.669498691, 10381432.616905222, 10384379.666903416, 10387609.180322597, 10397089.0625, 10401918.75, 10408748.981842177, 10408842.315709563, 10410476.648339199, 10415252.556598635, 10421147.23576221, 10431048.508787248, 10435800.0, 10441212.944118975, 10441238.231005518, 10442274.4659818, 10442291.72666502, 10442823.073483415, 10446765.625, 10447443.75, 10450407.099329306, 10451548.203352997, 10453376.245650597, 10454073.226703953, 10455015.085023547, 10462565.625, 10465294.923756966, 10468096.845332507, 10491904.565755827, 10493232.8125, 10493438.225161133, 10494096.422590923, 10495185.500890706, 10496050.80110801, 10496564.9311626, 10498929.6875, 10510471.6741652, 10514757.8125, 10515961.329858575, 10523021.344943652, 10546769.210074732, 10550791.156628022, 10552204.07620903, 10554639.0625, 10558565.903220223, 10572860.9375, 10597429.994895449, 10631686.837359916, 10632801.5625, 10634812.972197998, 10653319.283787569, 10668340.513772277, 10679836.253019912, 10733995.3125, 10752740.898680199, 10753942.1875, 10785381.25, 10785715.451286774, 10797737.5, 10802886.897428375, 10826483.512250133, 10829728.67784605, 10858732.557261001, 10864253.379107794, 10877051.71836483, 10887154.6875, 10898871.875, 10935002.172422592, 10947832.779555222, 10948049.1029314, 10952792.673869591, 10952885.830064286, 10968618.055415079, 11002282.138289567, 11005552.7363193, 11007473.055063473, 11007929.252342753, 11009457.726680167, 11019017.41818414, 11046854.543504985, 11049412.5, 11050942.65176473, 11052831.25, 11052862.330833752, 11059638.629882382, 11062132.697763909, 11063955.141921464, 11076625.0, 11082976.5625, 11089943.881870575, 11090315.625, 11091595.791964725, 11091952.318712767, 11093330.509620767, 11093349.305666288, 11093384.667875387, 11093666.207285827, 11099759.36138517, 11100547.774089703, 11102657.821925502, 11102972.09781553, 11108650.482972795, 11119379.41009267, 11123241.096410837, 11124520.010285452, 11125693.634514598, 11132829.407004202, 11134071.193073928, 11135018.361760499, 11135018.548587354, 11137797.440350078, 11144482.90455039, 11144485.9375, 11145838.99655154, 11146117.550541556, 11148571.875, 11149613.174031723, 11150752.193266455, 11150752.699084174, 11152267.854150316, 11156428.424758025, 11156503.53487309, 11159590.625, 11163445.007385517, 11166523.653215285, 11177971.206690477, 11179465.382860761, 11180520.47384244, 11180526.370514842, 11186035.188672526, 11188765.806147762, 11189546.319488075, 11190047.61828455, 11190123.66991307, 11191347.31733677, 11192304.506869653, 11192760.481156541, 11192989.734090952, 11194709.956309078, 11197481.412662107, 11199280.340067307, 11199462.185927492, 11200621.691317327, 11209461.82563321, 11222521.866129179, 11223806.25, 11224184.375, 11225054.64224188, 11226292.673891336, 11232037.107800156, 11233797.386542028, 11241290.355902914, 11243777.113339132, 11252403.125, 11252596.71600599, 11253393.496970365, 11254494.148991775, 11255079.22329767, 11267970.3125, 11269451.000077736, 11270659.024233589, 11283967.3799627, 11283984.385681814, 11284732.8125, 11291530.008683318, 11309910.94171321, 11311483.719518548, 11311764.890258182, 11314382.58852532, 11314983.168395223, 11336456.25, 11345554.6875, 11349997.364894621, 11357189.96447429, 11358583.496681638, 11364713.48744068, 11369192.195305387, 11376137.081329957, 11377862.829324597, 11378436.6053935, 11418675.0, 11423116.538073124, 11427076.5625, 11427095.667793527, 11428871.663697826, 11430502.587756256, 11460796.241729213, 11485742.1875, 11489158.75989646, 11492928.125, 11517559.539692406, 11538294.448534254, 11544295.19189743, 11550126.5625, 11584254.045506647, 11600944.519649915, 11647375.244297497, 11651817.1875, 11662496.018695172, 11689447.399416452, 11706230.065928372, 11734523.606800381, 11784144.07799318, 11801173.4375, 11812694.729168382, 11879356.174663574, 11960987.476980235, 11971954.6875, 11991226.247996915, 11999714.0625, 12106828.806234809, 12127330.581650103, 12127391.535587877, 12180160.310066445, 12233400.0, 12309147.80139529, 12378799.767999262, 12479707.8125, 12484662.5, 12521799.577367418, 13790212.137361128, 14724956.052662991, 14828899.077276217, 15047032.577100238, 15200413.367750833, 15206853.125, 15238145.229430027, 15263971.482223243, 15265468.75, 15289183.209341532, 15304673.205607375, 15318850.895905994, 15336814.0625, 15353479.74660881, 15356201.535764221, 15369545.991378788, 15369618.993656265, 15372918.75, 15379192.1875, 15379443.462110814, 15379965.722810607, 15381930.406766353, 15382094.658054497, 15383603.853734273, 15383854.775596473, 15383916.721599663, 15386636.254557433, 15386719.277959602, 15386858.121139934, 15389046.408406068, 15389727.23991455, 15390685.9375, 15392178.664989479, 15392201.569966674, 15396122.342983995, 15396426.744079242, 15397903.319303188, 15398982.8125, 15399579.782129478, 15401328.376469564, 15403044.78609463, 15403061.314428307, 15403227.42135534, 15403538.140806463, 15403625.97040164, 15405032.740621632, 15405428.577104405, 15406109.211463232, 15407608.609886203, 15407734.375, 15407882.8125, 15408556.448878732, 15408974.13876862, 15409916.12615591, 15410118.034985777, 15410347.004710583, 15410807.948554313, 15411124.98603896, 15411601.5625, 15411660.777693406, 15413473.676424542, 15415333.858860629, 15415631.483158436, 15416395.18181652, 15416501.520185744, 15417274.194195157, 15417320.3125, ...], [25.293836342708097, 13.564384591277861, 48.044975069408785, 21.511510532522948, 91.95031812762487, 18.800039769348693, 8.657619632104046, 9.45651268430945, 73.68534029857733, 29.281277703012595, 81.0901582459018, 7.449709948597624, 30.294382111871, 6.21455409391716, 64.13226257508329, 18.737657615278934, 12.063953688224704, 5.664202525982313, 8.46841556206901, 68.69578510316614, 11.68018144864475, 74.51168027797006, 36.379089141095214, 23.517281961888393, 25.631809101257875, 25.96442460039063, 85.70115831757835, 12.566155496294675, 11.687347571648163, 51.34926979888492, 86.0042379268266, 73.43715455602658, 18.453309012607914, 20.95692847093801, 16.412890435192192, 23.267626193083913, 16.916973328175683, 21.884521353110244, 23.912837227803763, 15.530442133011633, 20.240714955725963, 85.07088332402117, 10.066136046251529, 17.552217762703982, 20.297521024772053, 11.319269999284877, 7.730926134933765, 82.8890503791147, 13.439396302706719, 12.489354610124932, 35.38977723310222, 66.36642381788756, 8.760232693568911, 72.24137434632746, 22.530816587026813, 17.49297457782995, 7.80125117289766, 100.22410093990538, 75.39705397111598, 6.29242985162341, 57.757429439754695, 17.93784797808091, 39.93553418080698, 121.45076608112934, 36.61798289282493, 66.28615892982126, 14.96724111406492, 6.526057898675267, 12.878298031032136, 103.31126453893778, 44.395933872470536, 42.06828864422637, 5.375595209320384, 27.47957724149643, 27.337975210634543, 24.008454566993596, 47.002748121135326, 10.224695484618856, 77.9241192767665, 8.107915682891477, 84.69094214730578, 8.82802423477581, 27.07039664374865, 39.04913883823154, 6.7798584672535505, 132.8328673875644, 8.177339882864803, 13.360253202811105, 6.712672929843941, 7.175170983269417, 6.139184259023317, 38.88862560132742, 35.977929067915966, 90.56813727696864, 51.22829291809467, 16.22107567926317, 76.70186869222248, 59.65420897280627, 79.32528039171763, 128.00312336312507, 33.28326770988426, 30.858847468452407, 133.94869320753634, 19.269554411832992, 17.040355156491444, 15.476582147034327, 54.45485228268567, 25.137207645187907, 22.15437090398502, 10.17181551494987, 8.882951388416949, 81.84319436530194, 42.21445982959399, 13.970790357455108, 20.099923839468303, 17.049373754239404, 39.200775954394345, 7.569416474403836, 50.60765830176361, 15.146199819654422, 14.011659632260182, 30.257486171602014, 68.51092084103747, 36.273127254513355, 34.64064054338527, 16.27162403729959, 21.459939217265408, 5.110472661602432, 9.164636635848233, 57.718340542551296, 14.247628703087399, 38.37054985458858, 25.346552641160393, 25.53183142693462, 29.514112300378795, 45.08029450391535, 44.23103361886502, 45.259490581147595, 84.57443083649373, 5.706205906008305, 22.901190781919478, 127.35653259986589, 12.896246810208554, 5.6605439753685305, 30.962385975522523, 14.294966968604875, 32.262374024213166, 27.571861393737812, 30.03868521594871, 24.352587626192648, 28.952040213520174, 26.151988702620155, 24.422441695250694, 81.62160196597713, 107.60058658066536, 69.79883192414559, 16.46447158883488, 6.454410568993566, 10.098521396663253, 14.390924585369051, 50.62508914312588, 26.787164534258, 8.964955581139229, 72.39530795098433, 12.015115207016041, 135.73535499033994, 24.998757777789518, 13.801246248581657, 32.3673751250803, 5.842585993209309, 31.836634200552524, 19.51292049361249, 106.45770501216982, 79.64558189830622, 5.441940541963704, 5.501492592464515, 22.137073924451276, 12.385860198561353, 88.44935912474531, 15.682084287959027, 36.063193800690755, 44.59180576760751, 14.532386503039316, 55.56208684016638, 6.57976554979808, 57.563068219554445, 31.57741283614351, 6.446661771240031, 25.38551086339796, 103.46050648391864, 45.537064778590555, 63.32848190503244, 36.93235311744178, 41.39027164517624, 12.943014064463208, 10.925932921621122, 119.66779249281502, 53.07522281644234, 20.25393996785678, 79.12580366150972, 56.70377494445749, 31.855756972762926, 14.603846070420248, 71.31820748850858, 100.38818326994777, 5.936109731124318, 15.522029281987857, 5.821020046714556, 17.340834748131293, 9.85871043360306, 5.832949204874378, 20.307674046599626, 22.114233608886668, 72.4613470695461, 8.630464414248399, 30.616157281575862, 24.44527751652724, 15.948608800481601, 6.983935239931366, 13.614535385555993, 33.0963861603628, 26.850898888834994, 26.074783408935083, 10.836081528500264, 18.348789012704046, 60.490931961532624, 60.329776821734114, 10.956102668593545, 8.057331426772055, 58.14453342986833, 14.551953863237237, 57.726504289527654, 16.886701165641963, 48.7109802724727, 48.3689223588219, 51.73451696288329, 16.199657689296647, 5.1562040704035725, 36.26042108542415, 6.733123688626405, 18.019748560976947, 17.860087490728617, 97.40071545015785, 11.330606464921843, 26.135286905395894, 78.78416752486758, 54.16965528094782, 23.857169851951053, 49.23903655776237, 16.6530419967649, 24.503312112115264, 23.153561404480637, 219.51634205726336, 12.591845652602235, 228.0957052060209, 67.5622731592178, 6.222739721382481, 81.77085730115793, 16.121853546328605, 19.111160096877825, 6.872822805047153, 6.204226127388589, 65.77831167097447, 5.4936899542553395, 44.26527347993923, 41.004765709439766, 50.00348985909882, 73.50170058671807, 45.37546574903198, 19.616517231901142, 7.295318445884656, 48.26633541243325, 47.19409500827004, 96.05266509190831, 56.68486800143871, 40.943649208596355, 68.86868719215755, 87.27173706430584, 31.737511456251404, 129.27780551351262, 20.38499464204972, 35.23674412412039, 85.94369084641338, 35.488336859558, 37.063540508530295, 8.392930290752188, 14.426809384299622, 17.33438173796114, 45.55477210124396, 5.37107054637415, 12.9541299315577, 27.547025068459227, 27.430060488144395, 6.000273230258679, 31.512419719536993, 16.111200203339745, 8.7226504914183, 55.97311915553706, 94.33990802132057, 7.4234613928712445, 8.671397948689414, 8.996423131318904, 13.47833335422079, 111.72541479741048, 23.89687442758523, 16.815598617559562, 34.23732619584774, 10.402862263156296, 36.663182700740265, 33.726680968263906, 62.780523940715696, 5.633172541561709, 61.607957610986034, 38.62140338204895, 24.224407739474543, 15.251055218686645, 102.10148613063618, 13.901431791401373, 62.290520416649464, 27.121439840171824, 6.8224700340779645, 34.88521322775221, 11.5186940191962, 23.66194362867183, 6.746570985826226, 49.31889704332234, 17.78473313627673, 77.66848127827961, 7.399886446256572, 8.960438357917148, 25.735619262955524, 62.42851253252694, 27.863591931578753, 51.259104113912855, 11.43544597409962, 16.734805973300162, 6.562231957293739, 32.18510358494498, 21.81704518237242, 81.11151883704828, 36.295576408622026, 30.72283996443568, 52.86507399089525, 163.6361826309435, 115.91977895423221, 17.10745007668909, 103.78987202705986, 44.818023266855455, 5.481710995296198, 55.45216124901485, 15.53199202775436, 18.894762725489805, 124.51694884836009, 5.9572892163652895, 6.142285461308622, 63.0321014003311, 9.006221169010518, 24.344228856866142, 8.142170777056343, 24.602653960320392, 30.928410219566324, 18.360190955522896, 51.57967196514778, 60.39174049945858, 76.56539554969183, 50.24966095096294, 113.65660135581041, 56.8735362243119, 38.43606952408953, 49.37880530624334, 14.088414065943489, 13.453850283933857, 23.23689665076741, 12.14297796570121, 22.409063333647193, 66.18998348045011, 16.016748848900072, 37.583516761147244, 57.24392091831116, 6.246671637402536, 7.078501853688326, 33.50220210512279, 34.82362664677044, 88.32788606523455, 21.889602387462105, 78.53672153393885, 173.06436080949607, 8.775905078019917, 12.183635153516308, 23.013281218554948, 13.93296620397693, 36.61928727855424, 10.533789618909518, 6.788772735485408, 54.568338719231924, 22.009683925653583, 5.946130565433987, 8.836294397613184, 147.50534377836024, 12.426727500065036, 62.65034963480658, 203.255944701533, 56.41647941275868, 14.522255880652336, 14.329825475718575, 42.259862473010806, 7.059799791625915, 21.30190180248023, 26.384257293925042, 10.720918196013232, 80.24170368721391, 85.38582240726465, 53.84549735668257, 29.226881436129585, 16.615546380247167, 21.481629303675973, 13.071386279310621, 28.257472840508047, 12.4868181374649, 17.17479067423969, 33.86343396393068, 18.623144123892818, 85.15837686205774, 51.9355650693615, 47.63935352788434, 30.108653847356422, 65.33712378791529, 8.673370830421325, 15.130687758350003, 39.80597257328491, 23.77710517037677, 6.872255627544516, 102.58940340838747, 37.333379171051924, 153.09833368864025, 86.13064041974522, 40.44158618014959, 47.09319139616486, 6.123557282382237, 70.08019305486799, 91.70388553763496, 8.553016720221143, 9.715825096812614, 29.605797259866506, 21.491850994845606, 5.510369363012937, 26.99106652047585, 21.34537056341895, 56.21828529120175, 38.569202311803224, 9.299073099229346, 46.939151974526325, 14.348443259101147, 14.030647351843186, 237.48501098169928, 140.6924775786487, 80.8963051715756, 70.1490842876288, 18.021489623105488, 10.305478762065121, 7.723270266587282, 157.71036788651418, 31.666355053638217, 43.64327445247201, 61.65706359424205, 19.97221298353382, 39.45112827042722, 5.345202124331198, 86.27130391611033, 69.32160200719916, 41.62917313992131, 15.615402170560557, 62.04009755920981, 16.180928173129324, 97.79101170012575, 7.396343486939304, 36.90943565141855, 47.84731529196574, 7.647173804199328, 30.405345213893742, 55.068634952618936, 63.862283617827806, 30.91119456309071, 11.387642084084872, 13.49881391647542, 40.23305285795024, 20.44811673708182, 50.23032599956953, 86.13899277108987, 70.97453169715413, 44.96670900836078, 23.213622226957373, 7.823417910893804, 166.44790668238545, 18.284222681161516, 10.82742962392762, 46.27301152774308, 112.08492504020757, 7.273206202279877, 7.36610838762247, 94.94951636372664, 12.220911513839324, 156.8359416547464, 93.91496503648341, 5.500651236734847, 262.1312627467819, 39.74937196447353, 9.953999138975439, 5.898700307972365, 53.39177793904142, 34.094560115387864, 7.936391164159017, 31.32033098140878, 42.125338249762564, 49.4527955721298, 20.744168166679717, 186.82996328392844, 42.529919033131065, 31.06908458204444, 55.78089804185254, 23.609007110701015, 30.432810204702843, 14.212606019144006, 11.556349418007034, 104.35775092886773, 45.98559388039742, 126.58219086324013, 28.44598396064831, 46.25102780109307, 49.9228233275725, 47.9099653015558, 9.672261856770358, 107.80531026727901, 6.849499239611752, 25.01427673194367, 10.85536433299929, 32.182745572635966, 33.334430537379866, 51.508166134170864, 13.776828622271987, 18.12085420102109, 48.15490952423642, 158.21863244695027, 100.46263291482205, 98.6231600962879, 17.79282450106082, 67.65686789692244, 11.165485902942633, 33.150489602200196, 7.053728258629528, 11.096219050336252, 7.03921837807061, 33.488656051635516, 78.84812726337182, 19.76418471115929, 27.876506592886727, 11.321325505894798, 8.654180369006871, 120.99116447884927, 23.7517467886362, 44.58234070425099, 15.111078523910074, 27.512100765995704, 39.413318020323956, 25.65571829995043, 41.295331677741245, 30.16328449747669, 23.674738174551113, 82.42669384374858, 23.50933815877033, 197.83233167944812, 70.55589703705131, 11.986716288548944, 25.92564942098612, 36.58219417142389, 13.53571405719756, 101.06922752236468, 94.72014369797016, 35.57371686359586, 54.272481324005135, 77.03679496625114, 7.105887100334163, 59.41957985948969, 8.068736052830248, 76.1746276223456, 9.062228640650636, 16.65722482370668, 18.90996302084131, 59.63518883899304, 90.26498136794925, 7.443365470054355, 117.86242261800382, 155.8783129949107, 33.29968722165132, 34.62060392882668, 26.127486570364834, 29.206717382644786, 10.20810427520149, 5.10913379115746, 5.468957131964898, 13.83683030587528, 121.17902588327286, 68.41254552289612, 5.409895028048272, 51.87980410865656, 10.250252996088474, 26.188533296617777, 5.169079351675545, 26.732638770507364, 23.112537737090136, 85.70735268143521, 97.60765242293832, 77.57562166899748, 7.045889521875859, 25.054550725033675, 74.20760950416201, 5.711607084631244, 7.00361226606622, 151.4741990562043, 12.763081401038466, 35.09924104632007, 8.042229880102722, 26.846096867716227, 13.360994526288836, 63.61169358068529, 97.5023852926567, 5.276383843376076, 44.47929650695015, 198.35040572371736, 24.412956894525546, 23.03445836648296, 7.898767795637559, 56.25384547770568, 29.06777668282348, 11.506906061226763, 15.593206972261347, 22.332132738839036, 20.85432046926139, 76.53615759312763, 22.417425240464198, 33.16365531252743, 6.0346893448149395, 61.88005149993086, 92.85777570162941, 37.23515160256352, 14.230795931300575, 70.65049999784969, 76.94621892772338, 20.565000671793136, 95.12781488237087, 49.123714989625654, 87.3917105438153, 8.242678153789228, 5.779396196792577, 118.34334911495672, 8.320173488282064, 18.044792257370453, 66.15016058775824, 11.964902680325954, 6.076310462005617, 8.424880883595282, 64.07119142669988, 7.218693562661291, 26.203292909988583, 9.932238245096093, 5.845087006436888, 105.60924263033226, 8.519886926808141, 59.371523944244345, 29.600350906444277, 41.48392923343646, 5.2028039939498, 136.56921560769823, 37.94497380373327, 51.17599120945461, 105.36081847894084, 45.15718712584232, 97.18257575339213, 26.261699760822523, 6.096908663077833, 61.63940345867455, 9.034141492271061, 17.32499884247492, 39.69834706095717, 33.06010906018271, 11.84619984108691, 10.489060019744235, 78.978222830449, 27.433523389476008, 33.54782804824119, 8.852536865285071, 5.626183152858608, 11.223412826639745, 63.14167840737549, 76.51507209501344, 8.098272839057657, 23.830555147692934, 64.13033271151413, 5.672909904714078, 29.25931473289789, 37.7369669118212, 20.070010086315026, 64.01629783295758, 22.939169726514805, 60.868913655209056, 39.14926777671783, 81.85071231875772, 50.65820567504516, 56.90115980830849, 23.360418485000864, 54.56612790417984, 23.883469608253236, 43.13087066328048, 57.21839681148099, 6.242798664021126, 28.123608533906953, 55.588001454136574, 104.92635889416105, 51.62773501048592, 35.10765381049009, 29.980009656673747, 8.332498222862743, 32.114178741248836, 21.539559195986275, 91.85761028502701, 62.6963906025196, 35.61203862866456, 5.4940419446270665, 41.1037369186701, 13.43460511920851, 13.714568414007257, 54.40228403252883, 47.38133029314849, 94.5271535982605, 9.140966870496433, 75.84746423627608, 24.96124476761757, 40.45895861951908, 36.165976847572516, 42.715519183404396, 5.8117883816315254, 6.468174624165549, 147.5009819784318, 69.72319933292569, 21.98135561031056, 22.149655411766833, 19.229590097514254, 53.74311636041427, 73.25534751636067, 36.68678141125356, 58.69296404579872, 5.97431865707526, 60.83364631002352, 6.327129715909542, 17.44644289709242, 55.7180248644535, 61.446244236203114, 28.87902991824052, 69.67652543103753, 16.25867664150196, 12.90164211202448, 54.77294282516168, 17.407342315802392, 7.8084255461129075, 70.4228894373225, 8.460788003149627, 36.89167178883097, 96.70447805227593, 46.84117638287384, 40.683908603799445, 142.65661346251375, 43.47787220116474, 104.95047041046169, 56.245245000116356, 79.51845728542469, 5.125084474328635, 16.007393873888656, 6.795027893904212, 50.35536636829381, 42.189433888945736, 43.63669379972557, 31.334951991089937, 18.304141190652118, 8.561690520196326, 10.963830047699492, 52.301940014766316, 19.915097619215913, 35.51795305126248, 12.321347015524395, 51.8434396288796, 5.807657504448685, 30.136714594052044, 71.4201038281072, 83.90664551955976, 25.61941277600771, 51.15745575302717, 14.333682268816924, 63.034300671229246, 26.445734272738157, 121.17852138612602, 50.16230673788232, 82.12015497885804, 100.2222348681942, 52.49996117577627, 17.14948706687174, 18.89959053855064, 19.389236028412803, 6.632377301302365, 33.014944587621855, 28.888687869298753, 28.258247606802858, 69.86055580038348, 17.062849860222393, 15.864708493190921, 43.091163934912046, 24.043686281504087, 7.783127610047499, 72.12479408091977, 56.18313517972436, 7.0496195741338195, 10.20640951438668, 22.685451678104954, 25.097410523598885, 64.24837289891208, 7.145860977620094, 33.74711961737517, 14.695964719908925, 51.79303231757053, 47.91961068096873, 12.37471276986788, 18.050506346787746, 7.456128054215407, 17.816792457037735, 21.049829539142962, 5.048519376858698, 71.06405202339867, 23.68563031670477, 30.7760092608197, 19.963783736614108, 41.82024716526853, 15.59432626629662, 25.236038739224927, 12.692586827906311, 5.718384545260123, 182.09597239664365, 177.53109788533894, 15.908098701276002, 8.535215785310337, 9.183201591968054, 103.91989887905505, 8.676810333129076, 189.24065669209347, 24.021039773755902, 42.876520371327246, 126.05304580841518, 75.89089757639636, 44.34021915147933, 24.384793368699377, 51.24578590446633, 53.56581979205953, 67.3141095446004, 87.11229807142931, 7.467288802899967, 12.033979379019737, 34.47461089255727, 38.526087093771125, 64.02555718073326, 7.546727002528665, 24.36985612191518, 11.81441746962706, 37.83722564282026, 46.81774297146356, 5.891878554454841, 25.870067826877207, 61.619757467533724, 19.31111248552211, 29.216516952338505, 7.7236872868315665, 22.236869877204718, 7.38220184062081, 21.532596313595526, 85.0926601843464, 97.42992701000902, 68.53716004882045, 92.26147311497574, 47.16605331501745, 49.07643440042063, 12.397000429306825, 37.31459364308256, 20.77876408614236, 13.22017544199855, 7.210798269797075, 42.67222612022374, 158.02711618110646, 80.04718390077333, 55.39976932581153, 60.2224892718787, 100.57327423939637, 8.021535986190633, 93.68331555859695, 54.60789609423709, 20.416905720923076, 29.306999810646353, 36.71132509642325, 18.496497201886054, 20.044847577192932, 45.56890034919382, 6.96233288480394, 7.907536227894736, 86.46742946823248, 58.95336086376468, 19.173364652428926, 35.24899575363531, 62.69965292546096, 11.40306359793988, 5.632450922430044, 31.255359959929955, 48.92382192354463, 22.64975752666325, 115.83071435095823, 69.85595028902713, 11.771850637891784, 30.38543474061917, 18.379912124539775, 19.963449588850985, 5.150452039810196, 6.191052897112926, 63.438896273174514, 20.234948468919868, 5.451896143868137, 87.9571421177929, 43.78980078187751, 13.543052123627959, 7.477140056073796, 27.645126253268074, 54.92918794624827, 76.7818927138975, 64.02401643174326, 37.87147821061639, 11.000299010293759, 6.2188173149901536, 43.861029188670386, 54.202688255836705, 24.661532508463115, 14.492086979867679, 110.29663571947725, 6.775364838321423, 5.812004691975614, 29.81706109434477, 9.546291602820403, 41.20062745430934, 108.42113863397519, 54.95782772147236, 23.954424957274536, 21.26440013476568, 61.94115979467455, 8.713603278980735, 8.333720194968159, 5.780293543507099, 26.229533168096758, 11.319902997725801, 14.64916597521164, 8.054340929852481, 12.382127232040387, 49.08544430626152, 6.575207397813799, 20.823103999475126, 12.038633029777142, 7.670259137908831, 27.76958118941473, 39.32818990424815, 15.314891496816943, 15.995227969692353, 10.393816131174306, 38.27635662174936, 19.676708423186952, 7.852705021661052, 8.876359727481214, 51.15270101705353, 23.967859505735472, 11.399054912301846, 68.53124760811428, 81.04577846095617, 73.42914365901791, 64.85402140240461, 13.248953166792614, 7.7951450832213895, 6.945378759597145, 25.479151471611942, 15.486746013702893, 11.105954693723513, 29.948283804199104, 33.320798181633805, 9.541942648084182, 52.26689849916002, 31.00153820352819, 61.829618355584756, 7.588004701211039, 24.377116271265546, 35.49439428696497, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7318977.936908559, 7373104.272276476, 7373907.928370211, 7378623.698863027, 7378798.0575052975, 7379281.992267022, 7379694.39139963, 7380293.894345755, 7439625.0, 7471064.0625, 7472813.318105961, 7475766.74208597, 7498102.328965184, 7529449.57164259, 7531069.499038854, 7532395.457440086, 7532975.526411074, 7533030.559907175, 7533401.891226552, 7533806.0676336335, 7536523.764365596, 7539117.1875, 7539332.8125, 7539936.382724284, 7542262.742977611, 7542960.637691556, 7543868.656541548, 7549274.196923749, 7554964.3932825755, 7561316.635604131, 7571471.875, 7573967.1875, 7573974.129659105, 7575579.552357739, 7575986.276500337, 7576739.664292178, 7577984.420056852, 7578143.359640738, 7578563.775084801, 7578590.771384269, 7581696.2395682195, 7583785.219761133, 7584527.320009786, 7585030.069526192, 7585094.683671317, 7585271.994194073, 7585375.339759889, 7585433.237318064, 7586053.179308481, 7586078.85064881, 7586578.125, 7586598.509803816, 7587150.799789009, 7587364.317691066, 7587859.160090244, 7588681.182835565, 7588991.141190357, 7589928.125, 7592113.1428901, 7592161.134630524, 7592171.242334944, 7592188.11294505, 7593920.1203933, 7594450.709233673, 7594676.5625, 7595965.625, 7596375.00673467, 7596881.494153722, 7597288.390445072, 7598160.9375, 7598685.417144351, 7598868.75, 7599035.325857534, 7599074.944883305, 7599732.853638706, 7599782.532411102, 7599788.081723925, 7599983.70868451, 7600284.375, 7600493.396143867, 7601186.126419466, 7601399.337959437, 7602040.546935142, 7603840.367750812, 7603893.831357888, 7604126.239078937, 7606049.787555555, 7606829.199942653, 7609668.489929428, 7610025.200490214, 7612520.789823815, 7615888.428992297, 7618114.328386767, 7620582.697355506, 7621114.0625, 7621780.248811067, 7622796.875, 7623071.099552853, 7624198.262622698, 7625025.0, 7625870.3125, 7627377.483344514, 7631743.761330213, 7632301.894663805, 7632832.615952263, 7634011.071139913, 7634031.018171545, 7634120.113806638, 7634991.751329093, 7635186.788273698, 7636354.104824642, 7636918.75, 7636954.077033667, 7637680.969660134, 7637760.260034048, 7639277.268607342, 7639445.310615965, 7642943.655511116, 7644502.113691135, 7647139.115186028, 7648699.7325973455, 7651235.9375, 7652073.4375, 7652772.092883292, 7653152.546996426, 7654084.6850803215, 7654122.108990167, 7654655.28855849, 7655924.795960863, 7657080.944104458, 7658575.624816112, 7659950.0, 7660121.02094849, 7661143.577718097, 7661247.683089663, 7661642.1875, 7663492.473730209, 7663843.75, 7666356.25, 7666407.803821483, 7666563.692948233, 7667526.5625, 7667530.585188513, 7667919.561008403, 7668105.935668638, 7668506.069359233, 7670852.561999943, 7672879.879552679, 7673681.643020447, 7676180.28870489, 7679771.875, 7680151.4297934, 7681507.563326462, 7684864.0625, 7692679.6875, 7693681.323032685, 7695389.411892107, 7695541.975805814, 7695596.0989539465, 7702784.222637432, 7705409.478244027, 7710942.342876462, 7712805.782308559, 7715103.916920243, 7717098.939624754, 7718789.0625, 7719429.479301377, 7719571.539797646, 7719772.999202276, 7719856.629266145, 7722903.160650512, 7723868.965312569, 7728536.184068949, 7729997.3737657, 7731074.529799376, 7731614.956501462, 7732605.034660297, 7732795.991615346, 7733267.1875, 7733662.681615936, 7737057.8125, 7737235.458575974, 7739120.200854776, 7740593.75, 7741266.191768622, 7742070.7839115495, 7742228.125, 7743191.924650109, 7744018.568040647, 7744260.85200607, 7744478.125, 7744785.9375, 7744928.125, 7745365.9312973535, 7745761.853920072, 7745792.054458607, 7746057.288617292, 7746246.875, 7746656.160985043, 7747920.3125, 7751253.062840425, 7752150.622055644, 7752867.095996629, 7753459.589697653, 7755925.976016179, 7756706.212076755, 7758165.237044873, 7759646.969692027, 7766113.013349843, 7768711.5015742425, 7772437.753117218, 7772940.335695438, 7775274.560090205, 7778820.305697136, 7779095.91071723, 7784114.810207435, 7785675.866207424, 7786777.570420964, 7788963.512192336, 7790949.602060338, 7791162.43483262, 7791218.659281264, 7791275.512329343, 7792148.242556153, 7792213.176567932, 7792226.832588723, 7792660.571728714, 7792704.5748669775, 7794754.227284544, 7795175.916292196, 7795181.14389812, 7798645.3125, 7799502.78120394, 7800177.8313590055, 7801721.875, 7801874.3865577, 7808829.982582579, 7809068.352401778, 7809581.127543034, 7813517.03338414, 7814247.550224402, 7814707.71081564, 7815541.3844459625, 7815945.4385432, 7816352.466671645, 7820676.400803026, 7822050.0, 7823126.5087109, 7827036.374034549, 7827218.978944126, 7831073.194217441, 7831805.901765235, 7832105.95559611, 7838682.020581318, 7840636.672307275, 7841124.268585748, 7841248.077317415, 7844460.4198936, 7845512.778662192, 7845871.255112385, 7847133.336461757, 7847530.734772495, 7848282.20945787, 7848864.785753196, 7849547.966611728, 7850743.779415567, 7853540.245944809, 7853943.6835218165, 7854579.6875, 7856088.819954726, 7856825.6225535935, 7857156.405714807, 7857731.25, 7860446.532035239, 7860762.5, 7861831.044124957, 7864024.136293234, 7865159.375, 7865482.8125, 7869977.40876379, 7870410.981652913, 7870628.125, 7870692.94684154, 7870929.6875, 7873365.1668258365, 7874115.820842237, 7874581.108074316, 7875556.762223356, 7879365.625, 7881961.764191539, 7884421.233342376, 7884523.386088318, 7884543.430315498, 7885808.48586951, 7886255.970966743, 7889306.526396937, 7889541.367638701, 7892737.5, 7894952.932304042, 7895561.973999042, 7896195.975603108, 7896918.325357062, 7897996.429678123, 7898151.5625, 7898159.086354737, 7898593.006926, 7899290.872332323, 7903158.855858526, 7906711.460835348, 7907671.476332669, 7908296.14201354, 7908645.653162148, 7909521.060071947, 7911352.884020036, 7916195.454480163, 7921325.078909727, 7927541.1804982275, 7934680.9474515915, 7937691.186901673, 7938131.174842805, 7938133.100840827, 7939062.488445985, 7941929.924024403, 7945123.130516382, 7949131.164574275, 7950910.9375, 7952108.400745172, 7953671.875, 7956574.400443356, 7958205.776080779, 7958669.055056212, 7958851.359835294, 7959256.219313749, 7960021.42515708, 7967076.75084728, 7970595.346523539, 7972639.525658274, 7972662.1719871955, 7974958.419210397, 7976759.375, 7976856.562421821, 7977515.625, 7979767.937523504, 7980018.848088993, 7983532.233894047, 7988666.096884496, 7991299.874171302, 7991573.4375, 7991927.019085266, 7993424.147445241, 7996674.694816281, 8005370.731945743, 8007185.667671382, 8012247.0780908875, 8012513.005431102, 8022630.616636044, 8025576.15114261, 8031377.8700837735, 8031380.966563612, 8031388.826389616, 8047903.125, 8050370.990780045, 8051246.659643418, 8051640.625, 8054277.230954862, 8057777.720365854, 8059022.321830714, 8059198.4375, 8059419.726737017, 8064526.5625, 8065852.881600988, 8066659.119058143, 8067287.387588012, 8067333.377564499, 8067339.140154645, 8067865.944643445, 8068317.910331743, 8100915.625, 8105373.4375, 8109471.710785657, 8111981.084052592, 8120173.42902992, 8122212.363114108, 8122225.661241799, 8126187.8913075905, 8131726.570972417, 8135337.752993684, 8139155.510835723, 8140036.522147993, 8144948.077487295, 8164032.520088676, 8164045.3125, 8164051.146116534, 8164375.125253346, 8165196.875, 8179790.131507219, 8186784.451900339, 8188485.287533039, 8192585.9375, 8193316.322632462, 8210456.694163237, 8211889.47425439, 8225255.475478028, 8229740.5104764495, 8230187.329694655, 8230512.5, 8231254.447656653, 8231274.1663122205, 8236634.059300718, 8237295.035667498, 8238328.125, 8254374.925111782, 8272171.875, 8274160.444663688, 8274633.222582178, 8287324.355301009, 8287663.466805725, 8289605.082783021, 8290264.787022481, 8293144.854434648, 8304294.329596702, 8308546.029506781, 8316778.125, 8325850.139521755, 8340639.766154326, 8352864.0625, 8354116.848030366, 8402135.041199487, 8407815.673763296, 8419637.407033578, 8424237.202061106, 8425989.58385981, 8440201.232317558, 8445384.956780177, 8447040.482379591, 8454541.746854706, 8456299.812811093, 8461183.763623964, 8461217.521706833, 8468539.159050556, 8484066.545905134, 8510047.347004214, 8512291.047148816, 8512373.76492798, 8512858.87487476, 8513185.46049554, 8515709.292390117, 8517502.610062176, 8528014.0625, 8531715.242063707, 8532357.774015646, 8532918.317022895, 8540523.272685278, 8554513.801070815, 8554691.837048681, 8557648.91880639, 8558326.5625, 8561822.365202405, 8561916.25120436, 8569030.651503926, 8593722.195110727, 8599936.863273773, 8634520.121893954, 8639823.333285965, 8657013.446418656, 8662755.582708396, 8669018.75, 8694131.345422352, 8710828.125, 8726696.716252971, 8727354.6875, 8729390.791240094, 8735440.625, 8737531.861142624, 8740120.429691207, 8792243.13929108, 8805128.125, 8830438.697814334, 8831167.30736483, 8831970.3125, 8837156.564397402, 8846247.425612886, 8862123.92723159, 8875820.47266815, 8878283.26404421, 8878818.75, 8888249.388451118, 8904957.388898298, 8915773.4375, 8918882.8125, 8923409.375, 8941152.78175443, 8984930.257826889, 8989217.1875, 8993097.541819861, 9013988.861505032, 9039531.25, 9051558.042177621, 9058689.609968962, 9058710.230558112, 9082351.203805378, 9093161.539925557, 9095465.795311702, 9116375.0, 9130661.813199822, 9158100.14190346, 9159306.221145568, 9160763.154709915, 9160840.145407943, 9167298.824325105, 9328003.74509288, 9329316.46087764, 9372468.75, 9378729.6875, 9392754.002358714, 9407427.546496226, 9420190.195153207, 9420839.794997986, 9432529.513487764, 9433091.84324908, 9433924.688822515, 9438378.125, 9440610.732149672, 9442167.445451332, 9446389.0625, 9449420.3125, 9452642.988391515, 9471737.495990133, 9486390.625, 9495502.793024339, 9497576.525455395, 9500103.502366256, 9511994.0788077, 9515761.353495216, 9517757.605373163, 9517759.193484707, 9518868.274587365, 9519781.144018982, 9522736.105718784, 9523684.031734051, 9524570.954247026, 9524579.6875, 9524780.246027537, 9524841.33671912, 9527900.319339087, 9541960.405512853, 9542083.72901252, 9542217.211536186, 9542234.375, 9548323.173447985, 9549428.104761278, 9549741.865153044, 9550165.625, 9553544.1956664, 9553753.994761804, 9554669.511236032, 9558354.807937594, 9558694.385960532, 9565827.544386346, 9580836.6349683, 9585787.335509425, 9595842.459099097, 9612073.384172564, 9612634.41518742, 9619055.322342722, 9620279.6875, 9620482.513516592, 9626888.761323087, 9631225.566724684, 9633405.342691086, 9634612.676952785, 9648763.702690143, 9648861.42536001, 9650765.478113046, 9656084.155412266, 9661978.380541103, 9679825.0, 9680400.108127676, 9681734.207211962, 9682827.091734191, 9683524.95465088, 9687923.377957053, 9688471.098750751, 9693315.189015826, 9722214.755129427, 9728352.788527891, 9743950.387454942, 9755696.710293397, 9772657.8125, 9773431.25, 9776790.160232272, 9776839.596425338, 9778731.201168194, 9779356.091755379, 9784898.80428164, 9785095.178272538, 9786167.1875, 9786414.94452482, 9786484.910013957, 9786709.5414668, 9799277.462296493, 9800845.669927765, 9800845.939124437, 9832634.670573361, 9837527.42504518, 9839036.868692638, 9848149.005035624, 9848228.283921102, 9874385.839860842, 9876860.164954796, 9891392.1875, 9893207.972239051, 9893892.668973584, 9900216.892032592, 9901648.233147118, 9902823.4375, 9909732.888423586, 9912180.781913953, 9922643.653619625, 9939618.030713262, 9964946.073858336, 9974085.44496896, 9974103.130849307, 9977872.95021126, 9978401.5625, 9984252.867665205, 10002012.0165509, 10003309.375, 10004644.124771718, 10005602.875132436, 10009060.016215073, 10018000.7493121, 10022737.450506676, 10022787.798297312, 10024184.604770487, 10035339.223581824, 10047123.50475421, 10062832.018966187, 10063153.402837366, 10080155.990027206, 10090546.487611003, 10098793.220247934, 10100320.53126004, 10101129.206006095, 10114504.222499639, 10123016.987642322, 10129160.9375, 10130406.25, 10133124.40164168, 10142246.875, 10142345.3125, 10146078.125, 10161020.228553118, 10168094.833891572, 10172406.25, 10172495.375495058, 10172725.307636151, 10174627.377587615, 10175170.789330937, 10175267.07336891, 10177476.81518699, 10177543.75, 10184603.48244422, 10194423.307966841, 10194763.134283595, 10198370.72424189, 10198606.742551815, 10199686.354087029, 10212558.394394381, 10214062.38435214, 10214088.23479605, 10215939.038228516, 10216382.767797815, 10219165.625, 10227906.134033727, 10256835.874366924, 10258929.6875, 10260221.425451837, 10263658.537467334, 10264246.959289491, 10265049.507017866, 10271740.251196919, 10271837.74643641, 10277556.25, 10278540.903904492, 10293355.1031912, 10297671.424002446, 10297814.015138617, 10298801.504841063, 10301253.36191743, 10301414.998616695, 10301426.779858004, 10302163.047785368, 10302215.625, 10302846.28208091, 10303040.251089318, 10303827.64497602, 10304940.625, 10305671.329684697, 10305857.751652895, 10306532.680851663, 10309344.656938678, 10310286.252050163, 10324424.620603153, 10327766.314625343, 10332698.53112003, 10333738.623710627, 10333748.672884459, 10364437.5, 10365231.887558354, 10365481.25, 10367383.20395013, 10368027.843452977, 10378774.669498691, 10381432.616905222, 10384379.666903416, 10387609.180322597, 10397089.0625, 10401918.75, 10408748.981842177, 10408842.315709563, 10410476.648339199, 10415252.556598635, 10421147.23576221, 10431048.508787248, 10435800.0, 10441212.944118975, 10441238.231005518, 10442274.4659818, 10442291.72666502, 10442823.073483415, 10446765.625, 10447443.75, 10450407.099329306, 10451548.203352997, 10453376.245650597, 10454073.226703953, 10455015.085023547, 10462565.625, 10465294.923756966, 10468096.845332507, 10491904.565755827, 10493232.8125, 10493438.225161133, 10494096.422590923, 10495185.500890706, 10496050.80110801, 10496564.9311626, 10498929.6875, 10510471.6741652, 10514757.8125, 10515961.329858575, 10523021.344943652, 10546769.210074732, 10550791.156628022, 10552204.07620903, 10554639.0625, 10558565.903220223, 10572860.9375, 10597429.994895449, 10631686.837359916, 10632801.5625, 10634812.972197998, 10653319.283787569, 10668340.513772277, 10679836.253019912, 10733995.3125, 10752740.898680199, 10753942.1875, 10785381.25, 10785715.451286774, 10797737.5, 10802886.897428375, 10826483.512250133, 10829728.67784605, 10858732.557261001, 10864253.379107794, 10877051.71836483, 10887154.6875, 10898871.875, 10935002.172422592, 10947832.779555222, 10948049.1029314, 10952792.673869591, 10952885.830064286, 10968618.055415079, 11002282.138289567, 11005552.7363193, 11007473.055063473, 11007929.252342753, 11009457.726680167, 11019017.41818414, 11046854.543504985, 11049412.5, 11050942.65176473, 11052831.25, 11052862.330833752, 11059638.629882382, 11062132.697763909, 11063955.141921464, 11076625.0, 11082976.5625, 11089943.881870575, 11090315.625, 11091595.791964725, 11091952.318712767, 11093330.509620767, 11093349.305666288, 11093384.667875387, 11093666.207285827, 11099759.36138517, 11100547.774089703, 11102657.821925502, 11102972.09781553, 11108650.482972795, 11119379.41009267, 11123241.096410837, 11124520.010285452, 11125693.634514598, 11132829.407004202, 11134071.193073928, 11135018.361760499, 11135018.548587354, 11137797.440350078, 11144482.90455039, 11144485.9375, 11145838.99655154, 11146117.550541556, 11148571.875, 11149613.174031723, 11150752.193266455, 11150752.699084174, 11152267.854150316, 11156428.424758025, 11156503.53487309, 11159590.625, 11163445.007385517, 11166523.653215285, 11177971.206690477, 11179465.382860761, 11180520.47384244, 11180526.370514842, 11186035.188672526, 11188765.806147762, 11189546.319488075, 11190047.61828455, 11190123.66991307, 11191347.31733677, 11192304.506869653, 11192760.481156541, 11192989.734090952, 11194709.956309078, 11197481.412662107, 11199280.340067307, 11199462.185927492, 11200621.691317327, 11209461.82563321, 11222521.866129179, 11223806.25, 11224184.375, 11225054.64224188, 11226292.673891336, 11232037.107800156, 11233797.386542028, 11241290.355902914, 11243777.113339132, 11252403.125, 11252596.71600599, 11253393.496970365, 11254494.148991775, 11255079.22329767, 11267970.3125, 11269451.000077736, 11270659.024233589, 11283967.3799627, 11283984.385681814, 11284732.8125, 11291530.008683318, 11309910.94171321, 11311483.719518548, 11311764.890258182, 11314382.58852532, 11314983.168395223, 11336456.25, 11345554.6875, 11349997.364894621, 11357189.96447429, 11358583.496681638, 11364713.48744068, 11369192.195305387, 11376137.081329957, 11377862.829324597, 11378436.6053935, 11418675.0, 11423116.538073124, 11427076.5625, 11427095.667793527, 11428871.663697826, 11430502.587756256, 11460796.241729213, 11485742.1875, 11489158.75989646, 11492928.125, 11517559.539692406, 11538294.448534254, 11544295.19189743, 11550126.5625, 11584254.045506647, 11600944.519649915, 11647375.244297497, 11651817.1875, 11662496.018695172, 11689447.399416452, 11706230.065928372, 11734523.606800381, 11784144.07799318, 11801173.4375, 11812694.729168382, 11879356.174663574, 11960987.476980235, 11971954.6875, 11991226.247996915, 11999714.0625, 12106828.806234809, 12127330.581650103, 12127391.535587877, 12180160.310066445, 12233400.0, 12309147.80139529, 12378799.767999262, 12479707.8125, 12484662.5, 12521799.577367418, 13790212.137361128, 14724956.052662991, 14828899.077276217, 15047032.577100238, 15200413.367750833, 15206853.125, 15238145.229430027, 15263971.482223243, 15265468.75, 15289183.209341532, 15304673.205607375, 15318850.895905994, 15336814.0625, 15353479.74660881, 15356201.535764221, 15369545.991378788, 15369618.993656265, 15372918.75, 15379192.1875, 15379443.462110814, 15379965.722810607, 15381930.406766353, 15382094.658054497, 15383603.853734273, 15383854.775596473, 15383916.721599663, 15386636.254557433, 15386719.277959602, 15386858.121139934, 15389046.408406068, 15389727.23991455, 15390685.9375, 15392178.664989479, 15392201.569966674, 15396122.342983995, 15396426.744079242, 15397903.319303188, 15398982.8125, 15399579.782129478, 15401328.376469564, 15403044.78609463, 15403061.314428307, 15403227.42135534, 15403538.140806463, 15403625.97040164, 15405032.740621632, 15405428.577104405, 15406109.211463232, 15407608.609886203, 15407734.375, 15407882.8125, 15408556.448878732, 15408974.13876862, 15409916.12615591, 15410118.034985777, 15410347.004710583, 15410807.948554313, 15411124.98603896, 15411601.5625, 15411660.777693406, 15413473.676424542, 15415333.858860629, 15415631.483158436, 15416395.18181652, 15416501.520185744, 15417274.194195157, 15417320.3125, ...], [25.293836342708097, 13.564384591277861, 48.044975069408785, 21.511510532522948, 91.95031812762487, 18.800039769348693, 8.657619632104046, 9.45651268430945, 73.68534029857733, 29.281277703012595, 81.0901582459018, 7.449709948597624, 30.294382111871, 6.21455409391716, 64.13226257508329, 18.737657615278934, 12.063953688224704, 5.664202525982313, 8.46841556206901, 68.69578510316614, 11.68018144864475, 74.51168027797006, 36.379089141095214, 23.517281961888393, 25.631809101257875, 25.96442460039063, 85.70115831757835, 12.566155496294675, 11.687347571648163, 51.34926979888492, 86.0042379268266, 73.43715455602658, 18.453309012607914, 20.95692847093801, 16.412890435192192, 23.267626193083913, 16.916973328175683, 21.884521353110244, 23.912837227803763, 15.530442133011633, 20.240714955725963, 85.07088332402117, 10.066136046251529, 17.552217762703982, 20.297521024772053, 11.319269999284877, 7.730926134933765, 82.8890503791147, 13.439396302706719, 12.489354610124932, 35.38977723310222, 66.36642381788756, 8.760232693568911, 72.24137434632746, 22.530816587026813, 17.49297457782995, 7.80125117289766, 100.22410093990538, 75.39705397111598, 6.29242985162341, 57.757429439754695, 17.93784797808091, 39.93553418080698, 121.45076608112934, 36.61798289282493, 66.28615892982126, 14.96724111406492, 6.526057898675267, 12.878298031032136, 103.31126453893778, 44.395933872470536, 42.06828864422637, 5.375595209320384, 27.47957724149643, 27.337975210634543, 24.008454566993596, 47.002748121135326, 10.224695484618856, 77.9241192767665, 8.107915682891477, 84.69094214730578, 8.82802423477581, 27.07039664374865, 39.04913883823154, 6.7798584672535505, 132.8328673875644, 8.177339882864803, 13.360253202811105, 6.712672929843941, 7.175170983269417, 6.139184259023317, 38.88862560132742, 35.977929067915966, 90.56813727696864, 51.22829291809467, 16.22107567926317, 76.70186869222248, 59.65420897280627, 79.32528039171763, 128.00312336312507, 33.28326770988426, 30.858847468452407, 133.94869320753634, 19.269554411832992, 17.040355156491444, 15.476582147034327, 54.45485228268567, 25.137207645187907, 22.15437090398502, 10.17181551494987, 8.882951388416949, 81.84319436530194, 42.21445982959399, 13.970790357455108, 20.099923839468303, 17.049373754239404, 39.200775954394345, 7.569416474403836, 50.60765830176361, 15.146199819654422, 14.011659632260182, 30.257486171602014, 68.51092084103747, 36.273127254513355, 34.64064054338527, 16.27162403729959, 21.459939217265408, 5.110472661602432, 9.164636635848233, 57.718340542551296, 14.247628703087399, 38.37054985458858, 25.346552641160393, 25.53183142693462, 29.514112300378795, 45.08029450391535, 44.23103361886502, 45.259490581147595, 84.57443083649373, 5.706205906008305, 22.901190781919478, 127.35653259986589, 12.896246810208554, 5.6605439753685305, 30.962385975522523, 14.294966968604875, 32.262374024213166, 27.571861393737812, 30.03868521594871, 24.352587626192648, 28.952040213520174, 26.151988702620155, 24.422441695250694, 81.62160196597713, 107.60058658066536, 69.79883192414559, 16.46447158883488, 6.454410568993566, 10.098521396663253, 14.390924585369051, 50.62508914312588, 26.787164534258, 8.964955581139229, 72.39530795098433, 12.015115207016041, 135.73535499033994, 24.998757777789518, 13.801246248581657, 32.3673751250803, 5.842585993209309, 31.836634200552524, 19.51292049361249, 106.45770501216982, 79.64558189830622, 5.441940541963704, 5.501492592464515, 22.137073924451276, 12.385860198561353, 88.44935912474531, 15.682084287959027, 36.063193800690755, 44.59180576760751, 14.532386503039316, 55.56208684016638, 6.57976554979808, 57.563068219554445, 31.57741283614351, 6.446661771240031, 25.38551086339796, 103.46050648391864, 45.537064778590555, 63.32848190503244, 36.93235311744178, 41.39027164517624, 12.943014064463208, 10.925932921621122, 119.66779249281502, 53.07522281644234, 20.25393996785678, 79.12580366150972, 56.70377494445749, 31.855756972762926, 14.603846070420248, 71.31820748850858, 100.38818326994777, 5.936109731124318, 15.522029281987857, 5.821020046714556, 17.340834748131293, 9.85871043360306, 5.832949204874378, 20.307674046599626, 22.114233608886668, 72.4613470695461, 8.630464414248399, 30.616157281575862, 24.44527751652724, 15.948608800481601, 6.983935239931366, 13.614535385555993, 33.0963861603628, 26.850898888834994, 26.074783408935083, 10.836081528500264, 18.348789012704046, 60.490931961532624, 60.329776821734114, 10.956102668593545, 8.057331426772055, 58.14453342986833, 14.551953863237237, 57.726504289527654, 16.886701165641963, 48.7109802724727, 48.3689223588219, 51.73451696288329, 16.199657689296647, 5.1562040704035725, 36.26042108542415, 6.733123688626405, 18.019748560976947, 17.860087490728617, 97.40071545015785, 11.330606464921843, 26.135286905395894, 78.78416752486758, 54.16965528094782, 23.857169851951053, 49.23903655776237, 16.6530419967649, 24.503312112115264, 23.153561404480637, 219.51634205726336, 12.591845652602235, 228.0957052060209, 67.5622731592178, 6.222739721382481, 81.77085730115793, 16.121853546328605, 19.111160096877825, 6.872822805047153, 6.204226127388589, 65.77831167097447, 5.4936899542553395, 44.26527347993923, 41.004765709439766, 50.00348985909882, 73.50170058671807, 45.37546574903198, 19.616517231901142, 7.295318445884656, 48.26633541243325, 47.19409500827004, 96.05266509190831, 56.68486800143871, 40.943649208596355, 68.86868719215755, 87.27173706430584, 31.737511456251404, 129.27780551351262, 20.38499464204972, 35.23674412412039, 85.94369084641338, 35.488336859558, 37.063540508530295, 8.392930290752188, 14.426809384299622, 17.33438173796114, 45.55477210124396, 5.37107054637415, 12.9541299315577, 27.547025068459227, 27.430060488144395, 6.000273230258679, 31.512419719536993, 16.111200203339745, 8.7226504914183, 55.97311915553706, 94.33990802132057, 7.4234613928712445, 8.671397948689414, 8.996423131318904, 13.47833335422079, 111.72541479741048, 23.89687442758523, 16.815598617559562, 34.23732619584774, 10.402862263156296, 36.663182700740265, 33.726680968263906, 62.780523940715696, 5.633172541561709, 61.607957610986034, 38.62140338204895, 24.224407739474543, 15.251055218686645, 102.10148613063618, 13.901431791401373, 62.290520416649464, 27.121439840171824, 6.8224700340779645, 34.88521322775221, 11.5186940191962, 23.66194362867183, 6.746570985826226, 49.31889704332234, 17.78473313627673, 77.66848127827961, 7.399886446256572, 8.960438357917148, 25.735619262955524, 62.42851253252694, 27.863591931578753, 51.259104113912855, 11.43544597409962, 16.734805973300162, 6.562231957293739, 32.18510358494498, 21.81704518237242, 81.11151883704828, 36.295576408622026, 30.72283996443568, 52.86507399089525, 163.6361826309435, 115.91977895423221, 17.10745007668909, 103.78987202705986, 44.818023266855455, 5.481710995296198, 55.45216124901485, 15.53199202775436, 18.894762725489805, 124.51694884836009, 5.9572892163652895, 6.142285461308622, 63.0321014003311, 9.006221169010518, 24.344228856866142, 8.142170777056343, 24.602653960320392, 30.928410219566324, 18.360190955522896, 51.57967196514778, 60.39174049945858, 76.56539554969183, 50.24966095096294, 113.65660135581041, 56.8735362243119, 38.43606952408953, 49.37880530624334, 14.088414065943489, 13.453850283933857, 23.23689665076741, 12.14297796570121, 22.409063333647193, 66.18998348045011, 16.016748848900072, 37.583516761147244, 57.24392091831116, 6.246671637402536, 7.078501853688326, 33.50220210512279, 34.82362664677044, 88.32788606523455, 21.889602387462105, 78.53672153393885, 173.06436080949607, 8.775905078019917, 12.183635153516308, 23.013281218554948, 13.93296620397693, 36.61928727855424, 10.533789618909518, 6.788772735485408, 54.568338719231924, 22.009683925653583, 5.946130565433987, 8.836294397613184, 147.50534377836024, 12.426727500065036, 62.65034963480658, 203.255944701533, 56.41647941275868, 14.522255880652336, 14.329825475718575, 42.259862473010806, 7.059799791625915, 21.30190180248023, 26.384257293925042, 10.720918196013232, 80.24170368721391, 85.38582240726465, 53.84549735668257, 29.226881436129585, 16.615546380247167, 21.481629303675973, 13.071386279310621, 28.257472840508047, 12.4868181374649, 17.17479067423969, 33.86343396393068, 18.623144123892818, 85.15837686205774, 51.9355650693615, 47.63935352788434, 30.108653847356422, 65.33712378791529, 8.673370830421325, 15.130687758350003, 39.80597257328491, 23.77710517037677, 6.872255627544516, 102.58940340838747, 37.333379171051924, 153.09833368864025, 86.13064041974522, 40.44158618014959, 47.09319139616486, 6.123557282382237, 70.08019305486799, 91.70388553763496, 8.553016720221143, 9.715825096812614, 29.605797259866506, 21.491850994845606, 5.510369363012937, 26.99106652047585, 21.34537056341895, 56.21828529120175, 38.569202311803224, 9.299073099229346, 46.939151974526325, 14.348443259101147, 14.030647351843186, 237.48501098169928, 140.6924775786487, 80.8963051715756, 70.1490842876288, 18.021489623105488, 10.305478762065121, 7.723270266587282, 157.71036788651418, 31.666355053638217, 43.64327445247201, 61.65706359424205, 19.97221298353382, 39.45112827042722, 5.345202124331198, 86.27130391611033, 69.32160200719916, 41.62917313992131, 15.615402170560557, 62.04009755920981, 16.180928173129324, 97.79101170012575, 7.396343486939304, 36.90943565141855, 47.84731529196574, 7.647173804199328, 30.405345213893742, 55.068634952618936, 63.862283617827806, 30.91119456309071, 11.387642084084872, 13.49881391647542, 40.23305285795024, 20.44811673708182, 50.23032599956953, 86.13899277108987, 70.97453169715413, 44.96670900836078, 23.213622226957373, 7.823417910893804, 166.44790668238545, 18.284222681161516, 10.82742962392762, 46.27301152774308, 112.08492504020757, 7.273206202279877, 7.36610838762247, 94.94951636372664, 12.220911513839324, 156.8359416547464, 93.91496503648341, 5.500651236734847, 262.1312627467819, 39.74937196447353, 9.953999138975439, 5.898700307972365, 53.39177793904142, 34.094560115387864, 7.936391164159017, 31.32033098140878, 42.125338249762564, 49.4527955721298, 20.744168166679717, 186.82996328392844, 42.529919033131065, 31.06908458204444, 55.78089804185254, 23.609007110701015, 30.432810204702843, 14.212606019144006, 11.556349418007034, 104.35775092886773, 45.98559388039742, 126.58219086324013, 28.44598396064831, 46.25102780109307, 49.9228233275725, 47.9099653015558, 9.672261856770358, 107.80531026727901, 6.849499239611752, 25.01427673194367, 10.85536433299929, 32.182745572635966, 33.334430537379866, 51.508166134170864, 13.776828622271987, 18.12085420102109, 48.15490952423642, 158.21863244695027, 100.46263291482205, 98.6231600962879, 17.79282450106082, 67.65686789692244, 11.165485902942633, 33.150489602200196, 7.053728258629528, 11.096219050336252, 7.03921837807061, 33.488656051635516, 78.84812726337182, 19.76418471115929, 27.876506592886727, 11.321325505894798, 8.654180369006871, 120.99116447884927, 23.7517467886362, 44.58234070425099, 15.111078523910074, 27.512100765995704, 39.413318020323956, 25.65571829995043, 41.295331677741245, 30.16328449747669, 23.674738174551113, 82.42669384374858, 23.50933815877033, 197.83233167944812, 70.55589703705131, 11.986716288548944, 25.92564942098612, 36.58219417142389, 13.53571405719756, 101.06922752236468, 94.72014369797016, 35.57371686359586, 54.272481324005135, 77.03679496625114, 7.105887100334163, 59.41957985948969, 8.068736052830248, 76.1746276223456, 9.062228640650636, 16.65722482370668, 18.90996302084131, 59.63518883899304, 90.26498136794925, 7.443365470054355, 117.86242261800382, 155.8783129949107, 33.29968722165132, 34.62060392882668, 26.127486570364834, 29.206717382644786, 10.20810427520149, 5.10913379115746, 5.468957131964898, 13.83683030587528, 121.17902588327286, 68.41254552289612, 5.409895028048272, 51.87980410865656, 10.250252996088474, 26.188533296617777, 5.169079351675545, 26.732638770507364, 23.112537737090136, 85.70735268143521, 97.60765242293832, 77.57562166899748, 7.045889521875859, 25.054550725033675, 74.20760950416201, 5.711607084631244, 7.00361226606622, 151.4741990562043, 12.763081401038466, 35.09924104632007, 8.042229880102722, 26.846096867716227, 13.360994526288836, 63.61169358068529, 97.5023852926567, 5.276383843376076, 44.47929650695015, 198.35040572371736, 24.412956894525546, 23.03445836648296, 7.898767795637559, 56.25384547770568, 29.06777668282348, 11.506906061226763, 15.593206972261347, 22.332132738839036, 20.85432046926139, 76.53615759312763, 22.417425240464198, 33.16365531252743, 6.0346893448149395, 61.88005149993086, 92.85777570162941, 37.23515160256352, 14.230795931300575, 70.65049999784969, 76.94621892772338, 20.565000671793136, 95.12781488237087, 49.123714989625654, 87.3917105438153, 8.242678153789228, 5.779396196792577, 118.34334911495672, 8.320173488282064, 18.044792257370453, 66.15016058775824, 11.964902680325954, 6.076310462005617, 8.424880883595282, 64.07119142669988, 7.218693562661291, 26.203292909988583, 9.932238245096093, 5.845087006436888, 105.60924263033226, 8.519886926808141, 59.371523944244345, 29.600350906444277, 41.48392923343646, 5.2028039939498, 136.56921560769823, 37.94497380373327, 51.17599120945461, 105.36081847894084, 45.15718712584232, 97.18257575339213, 26.261699760822523, 6.096908663077833, 61.63940345867455, 9.034141492271061, 17.32499884247492, 39.69834706095717, 33.06010906018271, 11.84619984108691, 10.489060019744235, 78.978222830449, 27.433523389476008, 33.54782804824119, 8.852536865285071, 5.626183152858608, 11.223412826639745, 63.14167840737549, 76.51507209501344, 8.098272839057657, 23.830555147692934, 64.13033271151413, 5.672909904714078, 29.25931473289789, 37.7369669118212, 20.070010086315026, 64.01629783295758, 22.939169726514805, 60.868913655209056, 39.14926777671783, 81.85071231875772, 50.65820567504516, 56.90115980830849, 23.360418485000864, 54.56612790417984, 23.883469608253236, 43.13087066328048, 57.21839681148099, 6.242798664021126, 28.123608533906953, 55.588001454136574, 104.92635889416105, 51.62773501048592, 35.10765381049009, 29.980009656673747, 8.332498222862743, 32.114178741248836, 21.539559195986275, 91.85761028502701, 62.6963906025196, 35.61203862866456, 5.4940419446270665, 41.1037369186701, 13.43460511920851, 13.714568414007257, 54.40228403252883, 47.38133029314849, 94.5271535982605, 9.140966870496433, 75.84746423627608, 24.96124476761757, 40.45895861951908, 36.165976847572516, 42.715519183404396, 5.8117883816315254, 6.468174624165549, 147.5009819784318, 69.72319933292569, 21.98135561031056, 22.149655411766833, 19.229590097514254, 53.74311636041427, 73.25534751636067, 36.68678141125356, 58.69296404579872, 5.97431865707526, 60.83364631002352, 6.327129715909542, 17.44644289709242, 55.7180248644535, 61.446244236203114, 28.87902991824052, 69.67652543103753, 16.25867664150196, 12.90164211202448, 54.77294282516168, 17.407342315802392, 7.8084255461129075, 70.4228894373225, 8.460788003149627, 36.89167178883097, 96.70447805227593, 46.84117638287384, 40.683908603799445, 142.65661346251375, 43.47787220116474, 104.95047041046169, 56.245245000116356, 79.51845728542469, 5.125084474328635, 16.007393873888656, 6.795027893904212, 50.35536636829381, 42.189433888945736, 43.63669379972557, 31.334951991089937, 18.304141190652118, 8.561690520196326, 10.963830047699492, 52.301940014766316, 19.915097619215913, 35.51795305126248, 12.321347015524395, 51.8434396288796, 5.807657504448685, 30.136714594052044, 71.4201038281072, 83.90664551955976, 25.61941277600771, 51.15745575302717, 14.333682268816924, 63.034300671229246, 26.445734272738157, 121.17852138612602, 50.16230673788232, 82.12015497885804, 100.2222348681942, 52.49996117577627, 17.14948706687174, 18.89959053855064, 19.389236028412803, 6.632377301302365, 33.014944587621855, 28.888687869298753, 28.258247606802858, 69.86055580038348, 17.062849860222393, 15.864708493190921, 43.091163934912046, 24.043686281504087, 7.783127610047499, 72.12479408091977, 56.18313517972436, 7.0496195741338195, 10.20640951438668, 22.685451678104954, 25.097410523598885, 64.24837289891208, 7.145860977620094, 33.74711961737517, 14.695964719908925, 51.79303231757053, 47.91961068096873, 12.37471276986788, 18.050506346787746, 7.456128054215407, 17.816792457037735, 21.049829539142962, 5.048519376858698, 71.06405202339867, 23.68563031670477, 30.7760092608197, 19.963783736614108, 41.82024716526853, 15.59432626629662, 25.236038739224927, 12.692586827906311, 5.718384545260123, 182.09597239664365, 177.53109788533894, 15.908098701276002, 8.535215785310337, 9.183201591968054, 103.91989887905505, 8.676810333129076, 189.24065669209347, 24.021039773755902, 42.876520371327246, 126.05304580841518, 75.89089757639636, 44.34021915147933, 24.384793368699377, 51.24578590446633, 53.56581979205953, 67.3141095446004, 87.11229807142931, 7.467288802899967, 12.033979379019737, 34.47461089255727, 38.526087093771125, 64.02555718073326, 7.546727002528665, 24.36985612191518, 11.81441746962706, 37.83722564282026, 46.81774297146356, 5.891878554454841, 25.870067826877207, 61.619757467533724, 19.31111248552211, 29.216516952338505, 7.7236872868315665, 22.236869877204718, 7.38220184062081, 21.532596313595526, 85.0926601843464, 97.42992701000902, 68.53716004882045, 92.26147311497574, 47.16605331501745, 49.07643440042063, 12.397000429306825, 37.31459364308256, 20.77876408614236, 13.22017544199855, 7.210798269797075, 42.67222612022374, 158.02711618110646, 80.04718390077333, 55.39976932581153, 60.2224892718787, 100.57327423939637, 8.021535986190633, 93.68331555859695, 54.60789609423709, 20.416905720923076, 29.306999810646353, 36.71132509642325, 18.496497201886054, 20.044847577192932, 45.56890034919382, 6.96233288480394, 7.907536227894736, 86.46742946823248, 58.95336086376468, 19.173364652428926, 35.24899575363531, 62.69965292546096, 11.40306359793988, 5.632450922430044, 31.255359959929955, 48.92382192354463, 22.64975752666325, 115.83071435095823, 69.85595028902713, 11.771850637891784, 30.38543474061917, 18.379912124539775, 19.963449588850985, 5.150452039810196, 6.191052897112926, 63.438896273174514, 20.234948468919868, 5.451896143868137, 87.9571421177929, 43.78980078187751, 13.543052123627959, 7.477140056073796, 27.645126253268074, 54.92918794624827, 76.7818927138975, 64.02401643174326, 37.87147821061639, 11.000299010293759, 6.2188173149901536, 43.861029188670386, 54.202688255836705, 24.661532508463115, 14.492086979867679, 110.29663571947725, 6.775364838321423, 5.812004691975614, 29.81706109434477, 9.546291602820403, 41.20062745430934, 108.42113863397519, 54.95782772147236, 23.954424957274536, 21.26440013476568, 61.94115979467455, 8.713603278980735, 8.333720194968159, 5.780293543507099, 26.229533168096758, 11.319902997725801, 14.64916597521164, 8.054340929852481, 12.382127232040387, 49.08544430626152, 6.575207397813799, 20.823103999475126, 12.038633029777142, 7.670259137908831, 27.76958118941473, 39.32818990424815, 15.314891496816943, 15.995227969692353, 10.393816131174306, 38.27635662174936, 19.676708423186952, 7.852705021661052, 8.876359727481214, 51.15270101705353, 23.967859505735472, 11.399054912301846, 68.53124760811428, 81.04577846095617, 73.42914365901791, 64.85402140240461, 13.248953166792614, 7.7951450832213895, 6.945378759597145, 25.479151471611942, 15.486746013702893, 11.105954693723513, 29.948283804199104, 33.320798181633805, 9.541942648084182, 52.26689849916002, 31.00153820352819, 61.829618355584756, 7.588004701211039, 24.377116271265546, 35.49439428696497, ...])
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);
([7318977.936908559, 7373104.272276476, 7373907.928370211, 7378623.698863027, 7378798.0575052975, 7379281.992267022, 7379694.39139963, 7380293.894345755, 7439625.0, 7471064.0625, 7472813.318105961, 7475766.74208597, 7498102.328965184, 7529449.57164259, 7531069.499038854, 7532395.457440086, 7532975.526411074, 7533030.559907175, 7533401.891226552, 7533806.0676336335, 7536523.764365596, 7539117.1875, 7539332.8125, 7539936.382724284, 7542262.742977611, 7542960.637691556, 7543868.656541548, 7549274.196923749, 7554964.3932825755, 7561316.635604131, 7571471.875, 7573967.1875, 7573974.129659105, 7575579.552357739, 7575986.276500337, 7576739.664292178, 7577984.420056852, 7578143.359640738, 7578563.775084801, 7578590.771384269, 7581696.2395682195, 7583785.219761133, 7584527.320009786, 7585030.069526192, 7585094.683671317, 7585271.994194073, 7585375.339759889, 7585433.237318064, 7586053.179308481, 7586078.85064881, 7586578.125, 7586598.509803816, 7587150.799789009, 7587364.317691066, 7587859.160090244, 7588681.182835565, 7588991.141190357, 7589928.125, 7592113.1428901, 7592161.134630524, 7592171.242334944, 7592188.11294505, 7593920.1203933, 7594450.709233673, 7594676.5625, 7595965.625, 7596375.00673467, 7596881.494153722, 7597288.390445072, 7598160.9375, 7598685.417144351, 7598868.75, 7599035.325857534, 7599074.944883305, 7599732.853638706, 7599782.532411102, 7599788.081723925, 7599983.70868451, 7600284.375, 7600493.396143867, 7601186.126419466, 7601399.337959437, 7602040.546935142, 7603840.367750812, 7603893.831357888, 7604126.239078937, 7606049.787555555, 7606829.199942653, 7609668.489929428, 7610025.200490214, 7612520.789823815, 7615888.428992297, 7618114.328386767, 7620582.697355506, 7621114.0625, 7621780.248811067, 7622796.875, 7623071.099552853, 7624198.262622698, 7625025.0, 7625870.3125, 7627377.483344514, 7631743.761330213, 7632301.894663805, 7632832.615952263, 7634011.071139913, 7634031.018171545, 7634120.113806638, 7634991.751329093, 7635186.788273698, 7636354.104824642, 7636918.75, 7636954.077033667, 7637680.969660134, 7637760.260034048, 7639277.268607342, 7639445.310615965, 7642943.655511116, 7644502.113691135, 7647139.115186028, 7648699.7325973455, 7651235.9375, 7652073.4375, 7652772.092883292, 7653152.546996426, 7654084.6850803215, 7654122.108990167, 7654655.28855849, 7655924.795960863, 7657080.944104458, 7658575.624816112, 7659950.0, 7660121.02094849, 7661143.577718097, 7661247.683089663, 7661642.1875, 7663492.473730209, 7663843.75, 7666356.25, 7666407.803821483, 7666563.692948233, 7667526.5625, 7667530.585188513, 7667919.561008403, 7668105.935668638, 7668506.069359233, 7670852.561999943, 7672879.879552679, 7673681.643020447, 7676180.28870489, 7679771.875, 7680151.4297934, 7681507.563326462, 7684864.0625, 7692679.6875, 7693681.323032685, 7695389.411892107, 7695541.975805814, 7695596.0989539465, 7702784.222637432, 7705409.478244027, 7710942.342876462, 7712805.782308559, 7715103.916920243, 7717098.939624754, 7718789.0625, 7719429.479301377, 7719571.539797646, 7719772.999202276, 7719856.629266145, 7722903.160650512, 7723868.965312569, 7728536.184068949, 7729997.3737657, 7731074.529799376, 7731614.956501462, 7732605.034660297, 7732795.991615346, 7733267.1875, 7733662.681615936, 7737057.8125, 7737235.458575974, 7739120.200854776, 7740593.75, 7741266.191768622, 7742070.7839115495, 7742228.125, 7743191.924650109, 7744018.568040647, 7744260.85200607, 7744478.125, 7744785.9375, 7744928.125, 7745365.9312973535, 7745761.853920072, 7745792.054458607, 7746057.288617292, 7746246.875, 7746656.160985043, 7747920.3125, 7751253.062840425, 7752150.622055644, 7752867.095996629, 7753459.589697653, 7755925.976016179, 7756706.212076755, 7758165.237044873, 7759646.969692027, 7766113.013349843, 7768711.5015742425, 7772437.753117218, 7772940.335695438, 7775274.560090205, 7778820.305697136, 7779095.91071723, 7784114.810207435, 7785675.866207424, 7786777.570420964, 7788963.512192336, 7790949.602060338, 7791162.43483262, 7791218.659281264, 7791275.512329343, 7792148.242556153, 7792213.176567932, 7792226.832588723, 7792660.571728714, 7792704.5748669775, 7794754.227284544, 7795175.916292196, 7795181.14389812, 7798645.3125, 7799502.78120394, 7800177.8313590055, 7801721.875, 7801874.3865577, 7808829.982582579, 7809068.352401778, 7809581.127543034, 7813517.03338414, 7814247.550224402, 7814707.71081564, 7815541.3844459625, 7815945.4385432, 7816352.466671645, 7820676.400803026, 7822050.0, 7823126.5087109, 7827036.374034549, 7827218.978944126, 7831073.194217441, 7831805.901765235, 7832105.95559611, 7838682.020581318, 7840636.672307275, 7841124.268585748, 7841248.077317415, 7844460.4198936, 7845512.778662192, 7845871.255112385, 7847133.336461757, 7847530.734772495, 7848282.20945787, 7848864.785753196, 7849547.966611728, 7850743.779415567, 7853540.245944809, 7853943.6835218165, 7854579.6875, 7856088.819954726, 7856825.6225535935, 7857156.405714807, 7857731.25, 7860446.532035239, 7860762.5, 7861831.044124957, 7864024.136293234, 7865159.375, 7865482.8125, 7869977.40876379, 7870410.981652913, 7870628.125, 7870692.94684154, 7870929.6875, 7873365.1668258365, 7874115.820842237, 7874581.108074316, 7875556.762223356, 7879365.625, 7881961.764191539, 7884421.233342376, 7884523.386088318, 7884543.430315498, 7885808.48586951, 7886255.970966743, 7889306.526396937, 7889541.367638701, 7892737.5, 7894952.932304042, 7895561.973999042, 7896195.975603108, 7896918.325357062, 7897996.429678123, 7898151.5625, 7898159.086354737, 7898593.006926, 7899290.872332323, 7903158.855858526, 7906711.460835348, 7907671.476332669, 7908296.14201354, 7908645.653162148, 7909521.060071947, 7911352.884020036, 7916195.454480163, 7921325.078909727, 7927541.1804982275, 7934680.9474515915, 7937691.186901673, 7938131.174842805, 7938133.100840827, 7939062.488445985, 7941929.924024403, 7945123.130516382, 7949131.164574275, 7950910.9375, 7952108.400745172, 7953671.875, 7956574.400443356, 7958205.776080779, 7958669.055056212, 7958851.359835294, 7959256.219313749, 7960021.42515708, 7967076.75084728, 7970595.346523539, 7972639.525658274, 7972662.1719871955, 7974958.419210397, 7976759.375, 7976856.562421821, 7977515.625, 7979767.937523504, 7980018.848088993, 7983532.233894047, 7988666.096884496, 7991299.874171302, 7991573.4375, 7991927.019085266, 7993424.147445241, 7996674.694816281, 8005370.731945743, 8007185.667671382, 8012247.0780908875, 8012513.005431102, 8022630.616636044, 8025576.15114261, 8031377.8700837735, 8031380.966563612, 8031388.826389616, 8047903.125, 8050370.990780045, 8051246.659643418, 8051640.625, 8054277.230954862, 8057777.720365854, 8059022.321830714, 8059198.4375, 8059419.726737017, 8064526.5625, 8065852.881600988, 8066659.119058143, 8067287.387588012, 8067333.377564499, 8067339.140154645, 8067865.944643445, 8068317.910331743, 8100915.625, 8105373.4375, 8109471.710785657, 8111981.084052592, 8120173.42902992, 8122212.363114108, 8122225.661241799, 8126187.8913075905, 8131726.570972417, 8135337.752993684, 8139155.510835723, 8140036.522147993, 8144948.077487295, 8164032.520088676, 8164045.3125, 8164051.146116534, 8164375.125253346, 8165196.875, 8179790.131507219, 8186784.451900339, 8188485.287533039, 8192585.9375, 8193316.322632462, 8210456.694163237, 8211889.47425439, 8225255.475478028, 8229740.5104764495, 8230187.329694655, 8230512.5, 8231254.447656653, 8231274.1663122205, 8236634.059300718, 8237295.035667498, 8238328.125, 8254374.925111782, 8272171.875, 8274160.444663688, 8274633.222582178, 8287324.355301009, 8287663.466805725, 8289605.082783021, 8290264.787022481, 8293144.854434648, 8304294.329596702, 8308546.029506781, 8316778.125, 8325850.139521755, 8340639.766154326, 8352864.0625, 8354116.848030366, 8402135.041199487, 8407815.673763296, 8419637.407033578, 8424237.202061106, 8425989.58385981, 8440201.232317558, 8445384.956780177, 8447040.482379591, 8454541.746854706, 8456299.812811093, 8461183.763623964, 8461217.521706833, 8468539.159050556, 8484066.545905134, 8510047.347004214, 8512291.047148816, 8512373.76492798, 8512858.87487476, 8513185.46049554, 8515709.292390117, 8517502.610062176, 8528014.0625, 8531715.242063707, 8532357.774015646, 8532918.317022895, 8540523.272685278, 8554513.801070815, 8554691.837048681, 8557648.91880639, 8558326.5625, 8561822.365202405, 8561916.25120436, 8569030.651503926, 8593722.195110727, 8599936.863273773, 8634520.121893954, 8639823.333285965, 8657013.446418656, 8662755.582708396, 8669018.75, 8694131.345422352, 8710828.125, 8726696.716252971, 8727354.6875, 8729390.791240094, 8735440.625, 8737531.861142624, 8740120.429691207, 8792243.13929108, 8805128.125, 8830438.697814334, 8831167.30736483, 8831970.3125, 8837156.564397402, 8846247.425612886, 8862123.92723159, 8875820.47266815, 8878283.26404421, 8878818.75, 8888249.388451118, 8904957.388898298, 8915773.4375, 8918882.8125, 8923409.375, 8941152.78175443, 8984930.257826889, 8989217.1875, 8993097.541819861, 9013988.861505032, 9039531.25, 9051558.042177621, 9058689.609968962, 9058710.230558112, 9082351.203805378, 9093161.539925557, 9095465.795311702, 9116375.0, 9130661.813199822, 9158100.14190346, 9159306.221145568, 9160763.154709915, 9160840.145407943, 9167298.824325105, 9328003.74509288, 9329316.46087764, 9372468.75, 9378729.6875, 9392754.002358714, 9407427.546496226, 9420190.195153207, 9420839.794997986, 9432529.513487764, 9433091.84324908, 9433924.688822515, 9438378.125, 9440610.732149672, 9442167.445451332, 9446389.0625, 9449420.3125, 9452642.988391515, 9471737.495990133, 9486390.625, 9495502.793024339, 9497576.525455395, 9500103.502366256, 9511994.0788077, 9515761.353495216, 9517757.605373163, 9517759.193484707, 9518868.274587365, 9519781.144018982, 9522736.105718784, 9523684.031734051, 9524570.954247026, 9524579.6875, 9524780.246027537, 9524841.33671912, 9527900.319339087, 9541960.405512853, 9542083.72901252, 9542217.211536186, 9542234.375, 9548323.173447985, 9549428.104761278, 9549741.865153044, 9550165.625, 9553544.1956664, 9553753.994761804, 9554669.511236032, 9558354.807937594, 9558694.385960532, 9565827.544386346, 9580836.6349683, 9585787.335509425, 9595842.459099097, 9612073.384172564, 9612634.41518742, 9619055.322342722, 9620279.6875, 9620482.513516592, 9626888.761323087, 9631225.566724684, 9633405.342691086, 9634612.676952785, 9648763.702690143, 9648861.42536001, 9650765.478113046, 9656084.155412266, 9661978.380541103, 9679825.0, 9680400.108127676, 9681734.207211962, 9682827.091734191, 9683524.95465088, 9687923.377957053, 9688471.098750751, 9693315.189015826, 9722214.755129427, 9728352.788527891, 9743950.387454942, 9755696.710293397, 9772657.8125, 9773431.25, 9776790.160232272, 9776839.596425338, 9778731.201168194, 9779356.091755379, 9784898.80428164, 9785095.178272538, 9786167.1875, 9786414.94452482, 9786484.910013957, 9786709.5414668, 9799277.462296493, 9800845.669927765, 9800845.939124437, 9832634.670573361, 9837527.42504518, 9839036.868692638, 9848149.005035624, 9848228.283921102, 9874385.839860842, 9876860.164954796, 9891392.1875, 9893207.972239051, 9893892.668973584, 9900216.892032592, 9901648.233147118, 9902823.4375, 9909732.888423586, 9912180.781913953, 9922643.653619625, 9939618.030713262, 9964946.073858336, 9974085.44496896, 9974103.130849307, 9977872.95021126, 9978401.5625, 9984252.867665205, 10002012.0165509, 10003309.375, 10004644.124771718, 10005602.875132436, 10009060.016215073, 10018000.7493121, 10022737.450506676, 10022787.798297312, 10024184.604770487, 10035339.223581824, 10047123.50475421, 10062832.018966187, 10063153.402837366, 10080155.990027206, 10090546.487611003, 10098793.220247934, 10100320.53126004, 10101129.206006095, 10114504.222499639, 10123016.987642322, 10129160.9375, 10130406.25, 10133124.40164168, 10142246.875, 10142345.3125, 10146078.125, 10161020.228553118, 10168094.833891572, 10172406.25, 10172495.375495058, 10172725.307636151, 10174627.377587615, 10175170.789330937, 10175267.07336891, 10177476.81518699, 10177543.75, 10184603.48244422, 10194423.307966841, 10194763.134283595, 10198370.72424189, 10198606.742551815, 10199686.354087029, 10212558.394394381, 10214062.38435214, 10214088.23479605, 10215939.038228516, 10216382.767797815, 10219165.625, 10227906.134033727, 10256835.874366924, 10258929.6875, 10260221.425451837, 10263658.537467334, 10264246.959289491, 10265049.507017866, 10271740.251196919, 10271837.74643641, 10277556.25, 10278540.903904492, 10293355.1031912, 10297671.424002446, 10297814.015138617, 10298801.504841063, 10301253.36191743, 10301414.998616695, 10301426.779858004, 10302163.047785368, 10302215.625, 10302846.28208091, 10303040.251089318, 10303827.64497602, 10304940.625, 10305671.329684697, 10305857.751652895, 10306532.680851663, 10309344.656938678, 10310286.252050163, 10324424.620603153, 10327766.314625343, 10332698.53112003, 10333738.623710627, 10333748.672884459, 10364437.5, 10365231.887558354, 10365481.25, 10367383.20395013, 10368027.843452977, 10378774.669498691, 10381432.616905222, 10384379.666903416, 10387609.180322597, 10397089.0625, 10401918.75, 10408748.981842177, 10408842.315709563, 10410476.648339199, 10415252.556598635, 10421147.23576221, 10431048.508787248, 10435800.0, 10441212.944118975, 10441238.231005518, 10442274.4659818, 10442291.72666502, 10442823.073483415, 10446765.625, 10447443.75, 10450407.099329306, 10451548.203352997, 10453376.245650597, 10454073.226703953, 10455015.085023547, 10462565.625, 10465294.923756966, 10468096.845332507, 10491904.565755827, 10493232.8125, 10493438.225161133, 10494096.422590923, 10495185.500890706, 10496050.80110801, 10496564.9311626, 10498929.6875, 10510471.6741652, 10514757.8125, 10515961.329858575, 10523021.344943652, 10546769.210074732, 10550791.156628022, 10552204.07620903, 10554639.0625, 10558565.903220223, 10572860.9375, 10597429.994895449, 10631686.837359916, 10632801.5625, 10634812.972197998, 10653319.283787569, 10668340.513772277, 10679836.253019912, 10733995.3125, 10752740.898680199, 10753942.1875, 10785381.25, 10785715.451286774, 10797737.5, 10802886.897428375, 10826483.512250133, 10829728.67784605, 10858732.557261001, 10864253.379107794, 10877051.71836483, 10887154.6875, 10898871.875, 10935002.172422592, 10947832.779555222, 10948049.1029314, 10952792.673869591, 10952885.830064286, 10968618.055415079, 11002282.138289567, 11005552.7363193, 11007473.055063473, 11007929.252342753, 11009457.726680167, 11019017.41818414, 11046854.543504985, 11049412.5, 11050942.65176473, 11052831.25, 11052862.330833752, 11059638.629882382, 11062132.697763909, 11063955.141921464, 11076625.0, 11082976.5625, 11089943.881870575, 11090315.625, 11091595.791964725, 11091952.318712767, 11093330.509620767, 11093349.305666288, 11093384.667875387, 11093666.207285827, 11099759.36138517, 11100547.774089703, 11102657.821925502, 11102972.09781553, 11108650.482972795, 11119379.41009267, 11123241.096410837, 11124520.010285452, 11125693.634514598, 11132829.407004202, 11134071.193073928, 11135018.361760499, 11135018.548587354, 11137797.440350078, 11144482.90455039, 11144485.9375, 11145838.99655154, 11146117.550541556, 11148571.875, 11149613.174031723, 11150752.193266455, 11150752.699084174, 11152267.854150316, 11156428.424758025, 11156503.53487309, 11159590.625, 11163445.007385517, 11166523.653215285, 11177971.206690477, 11179465.382860761, 11180520.47384244, 11180526.370514842, 11186035.188672526, 11188765.806147762, 11189546.319488075, 11190047.61828455, 11190123.66991307, 11191347.31733677, 11192304.506869653, 11192760.481156541, 11192989.734090952, 11194709.956309078, 11197481.412662107, 11199280.340067307, 11199462.185927492, 11200621.691317327, 11209461.82563321, 11222521.866129179, 11223806.25, 11224184.375, 11225054.64224188, 11226292.673891336, 11232037.107800156, 11233797.386542028, 11241290.355902914, 11243777.113339132, 11252403.125, 11252596.71600599, 11253393.496970365, 11254494.148991775, 11255079.22329767, 11267970.3125, 11269451.000077736, 11270659.024233589, 11283967.3799627, 11283984.385681814, 11284732.8125, 11291530.008683318, 11309910.94171321, 11311483.719518548, 11311764.890258182, 11314382.58852532, 11314983.168395223, 11336456.25, 11345554.6875, 11349997.364894621, 11357189.96447429, 11358583.496681638, 11364713.48744068, 11369192.195305387, 11376137.081329957, 11377862.829324597, 11378436.6053935, 11418675.0, 11423116.538073124, 11427076.5625, 11427095.667793527, 11428871.663697826, 11430502.587756256, 11460796.241729213, 11485742.1875, 11489158.75989646, 11492928.125, 11517559.539692406, 11538294.448534254, 11544295.19189743, 11550126.5625, 11584254.045506647, 11600944.519649915, 11647375.244297497, 11651817.1875, 11662496.018695172, 11689447.399416452, 11706230.065928372, 11734523.606800381, 11784144.07799318, 11801173.4375, 11812694.729168382, 11879356.174663574, 11960987.476980235, 11971954.6875, 11991226.247996915, 11999714.0625, 12106828.806234809, 12127330.581650103, 12127391.535587877, 12180160.310066445, 12233400.0, 12309147.80139529, 12378799.767999262, 12479707.8125, 12484662.5, 12521799.577367418, 13790212.137361128, 14724956.052662991, 14828899.077276217, 15047032.577100238, 15200413.367750833, 15206853.125, 15238145.229430027, 15263971.482223243, 15265468.75, 15289183.209341532, 15304673.205607375, 15318850.895905994, 15336814.0625, 15353479.74660881, 15356201.535764221, 15369545.991378788, 15369618.993656265, 15372918.75, 15379192.1875, 15379443.462110814, 15379965.722810607, 15381930.406766353, 15382094.658054497, 15383603.853734273, 15383854.775596473, 15383916.721599663, 15386636.254557433, 15386719.277959602, 15386858.121139934, 15389046.408406068, 15389727.23991455, 15390685.9375, 15392178.664989479, 15392201.569966674, 15396122.342983995, 15396426.744079242, 15397903.319303188, 15398982.8125, 15399579.782129478, 15401328.376469564, 15403044.78609463, 15403061.314428307, 15403227.42135534, 15403538.140806463, 15403625.97040164, 15405032.740621632, 15405428.577104405, 15406109.211463232, 15407608.609886203, 15407734.375, 15407882.8125, 15408556.448878732, 15408974.13876862, 15409916.12615591, 15410118.034985777, 15410347.004710583, 15410807.948554313, 15411124.98603896, 15411601.5625, 15411660.777693406, 15413473.676424542, 15415333.858860629, 15415631.483158436, 15416395.18181652, 15416501.520185744, 15417274.194195157, 15417320.3125, ...], [25.293836342708097, 13.564384591277861, 48.044975069408785, 21.511510532522948, 91.95031812762487, 18.800039769348693, 8.657619632104046, 9.45651268430945, 73.68534029857733, 29.281277703012595, 81.0901582459018, 7.449709948597624, 30.294382111871, 6.21455409391716, 64.13226257508329, 18.737657615278934, 12.063953688224704, 5.664202525982313, 8.46841556206901, 68.69578510316614, 11.68018144864475, 74.51168027797006, 36.379089141095214, 23.517281961888393, 25.631809101257875, 25.96442460039063, 85.70115831757835, 12.566155496294675, 11.687347571648163, 51.34926979888492, 86.0042379268266, 73.43715455602658, 18.453309012607914, 20.95692847093801, 16.412890435192192, 23.267626193083913, 16.916973328175683, 21.884521353110244, 23.912837227803763, 15.530442133011633, 20.240714955725963, 85.07088332402117, 10.066136046251529, 17.552217762703982, 20.297521024772053, 11.319269999284877, 7.730926134933765, 82.8890503791147, 13.439396302706719, 12.489354610124932, 35.38977723310222, 66.36642381788756, 8.760232693568911, 72.24137434632746, 22.530816587026813, 17.49297457782995, 7.80125117289766, 100.22410093990538, 75.39705397111598, 6.29242985162341, 57.757429439754695, 17.93784797808091, 39.93553418080698, 121.45076608112934, 36.61798289282493, 66.28615892982126, 14.96724111406492, 6.526057898675267, 12.878298031032136, 103.31126453893778, 44.395933872470536, 42.06828864422637, 5.375595209320384, 27.47957724149643, 27.337975210634543, 24.008454566993596, 47.002748121135326, 10.224695484618856, 77.9241192767665, 8.107915682891477, 84.69094214730578, 8.82802423477581, 27.07039664374865, 39.04913883823154, 6.7798584672535505, 132.8328673875644, 8.177339882864803, 13.360253202811105, 6.712672929843941, 7.175170983269417, 6.139184259023317, 38.88862560132742, 35.977929067915966, 90.56813727696864, 51.22829291809467, 16.22107567926317, 76.70186869222248, 59.65420897280627, 79.32528039171763, 128.00312336312507, 33.28326770988426, 30.858847468452407, 133.94869320753634, 19.269554411832992, 17.040355156491444, 15.476582147034327, 54.45485228268567, 25.137207645187907, 22.15437090398502, 10.17181551494987, 8.882951388416949, 81.84319436530194, 42.21445982959399, 13.970790357455108, 20.099923839468303, 17.049373754239404, 39.200775954394345, 7.569416474403836, 50.60765830176361, 15.146199819654422, 14.011659632260182, 30.257486171602014, 68.51092084103747, 36.273127254513355, 34.64064054338527, 16.27162403729959, 21.459939217265408, 5.110472661602432, 9.164636635848233, 57.718340542551296, 14.247628703087399, 38.37054985458858, 25.346552641160393, 25.53183142693462, 29.514112300378795, 45.08029450391535, 44.23103361886502, 45.259490581147595, 84.57443083649373, 5.706205906008305, 22.901190781919478, 127.35653259986589, 12.896246810208554, 5.6605439753685305, 30.962385975522523, 14.294966968604875, 32.262374024213166, 27.571861393737812, 30.03868521594871, 24.352587626192648, 28.952040213520174, 26.151988702620155, 24.422441695250694, 81.62160196597713, 107.60058658066536, 69.79883192414559, 16.46447158883488, 6.454410568993566, 10.098521396663253, 14.390924585369051, 50.62508914312588, 26.787164534258, 8.964955581139229, 72.39530795098433, 12.015115207016041, 135.73535499033994, 24.998757777789518, 13.801246248581657, 32.3673751250803, 5.842585993209309, 31.836634200552524, 19.51292049361249, 106.45770501216982, 79.64558189830622, 5.441940541963704, 5.501492592464515, 22.137073924451276, 12.385860198561353, 88.44935912474531, 15.682084287959027, 36.063193800690755, 44.59180576760751, 14.532386503039316, 55.56208684016638, 6.57976554979808, 57.563068219554445, 31.57741283614351, 6.446661771240031, 25.38551086339796, 103.46050648391864, 45.537064778590555, 63.32848190503244, 36.93235311744178, 41.39027164517624, 12.943014064463208, 10.925932921621122, 119.66779249281502, 53.07522281644234, 20.25393996785678, 79.12580366150972, 56.70377494445749, 31.855756972762926, 14.603846070420248, 71.31820748850858, 100.38818326994777, 5.936109731124318, 15.522029281987857, 5.821020046714556, 17.340834748131293, 9.85871043360306, 5.832949204874378, 20.307674046599626, 22.114233608886668, 72.4613470695461, 8.630464414248399, 30.616157281575862, 24.44527751652724, 15.948608800481601, 6.983935239931366, 13.614535385555993, 33.0963861603628, 26.850898888834994, 26.074783408935083, 10.836081528500264, 18.348789012704046, 60.490931961532624, 60.329776821734114, 10.956102668593545, 8.057331426772055, 58.14453342986833, 14.551953863237237, 57.726504289527654, 16.886701165641963, 48.7109802724727, 48.3689223588219, 51.73451696288329, 16.199657689296647, 5.1562040704035725, 36.26042108542415, 6.733123688626405, 18.019748560976947, 17.860087490728617, 97.40071545015785, 11.330606464921843, 26.135286905395894, 78.78416752486758, 54.16965528094782, 23.857169851951053, 49.23903655776237, 16.6530419967649, 24.503312112115264, 23.153561404480637, 219.51634205726336, 12.591845652602235, 228.0957052060209, 67.5622731592178, 6.222739721382481, 81.77085730115793, 16.121853546328605, 19.111160096877825, 6.872822805047153, 6.204226127388589, 65.77831167097447, 5.4936899542553395, 44.26527347993923, 41.004765709439766, 50.00348985909882, 73.50170058671807, 45.37546574903198, 19.616517231901142, 7.295318445884656, 48.26633541243325, 47.19409500827004, 96.05266509190831, 56.68486800143871, 40.943649208596355, 68.86868719215755, 87.27173706430584, 31.737511456251404, 129.27780551351262, 20.38499464204972, 35.23674412412039, 85.94369084641338, 35.488336859558, 37.063540508530295, 8.392930290752188, 14.426809384299622, 17.33438173796114, 45.55477210124396, 5.37107054637415, 12.9541299315577, 27.547025068459227, 27.430060488144395, 6.000273230258679, 31.512419719536993, 16.111200203339745, 8.7226504914183, 55.97311915553706, 94.33990802132057, 7.4234613928712445, 8.671397948689414, 8.996423131318904, 13.47833335422079, 111.72541479741048, 23.89687442758523, 16.815598617559562, 34.23732619584774, 10.402862263156296, 36.663182700740265, 33.726680968263906, 62.780523940715696, 5.633172541561709, 61.607957610986034, 38.62140338204895, 24.224407739474543, 15.251055218686645, 102.10148613063618, 13.901431791401373, 62.290520416649464, 27.121439840171824, 6.8224700340779645, 34.88521322775221, 11.5186940191962, 23.66194362867183, 6.746570985826226, 49.31889704332234, 17.78473313627673, 77.66848127827961, 7.399886446256572, 8.960438357917148, 25.735619262955524, 62.42851253252694, 27.863591931578753, 51.259104113912855, 11.43544597409962, 16.734805973300162, 6.562231957293739, 32.18510358494498, 21.81704518237242, 81.11151883704828, 36.295576408622026, 30.72283996443568, 52.86507399089525, 163.6361826309435, 115.91977895423221, 17.10745007668909, 103.78987202705986, 44.818023266855455, 5.481710995296198, 55.45216124901485, 15.53199202775436, 18.894762725489805, 124.51694884836009, 5.9572892163652895, 6.142285461308622, 63.0321014003311, 9.006221169010518, 24.344228856866142, 8.142170777056343, 24.602653960320392, 30.928410219566324, 18.360190955522896, 51.57967196514778, 60.39174049945858, 76.56539554969183, 50.24966095096294, 113.65660135581041, 56.8735362243119, 38.43606952408953, 49.37880530624334, 14.088414065943489, 13.453850283933857, 23.23689665076741, 12.14297796570121, 22.409063333647193, 66.18998348045011, 16.016748848900072, 37.583516761147244, 57.24392091831116, 6.246671637402536, 7.078501853688326, 33.50220210512279, 34.82362664677044, 88.32788606523455, 21.889602387462105, 78.53672153393885, 173.06436080949607, 8.775905078019917, 12.183635153516308, 23.013281218554948, 13.93296620397693, 36.61928727855424, 10.533789618909518, 6.788772735485408, 54.568338719231924, 22.009683925653583, 5.946130565433987, 8.836294397613184, 147.50534377836024, 12.426727500065036, 62.65034963480658, 203.255944701533, 56.41647941275868, 14.522255880652336, 14.329825475718575, 42.259862473010806, 7.059799791625915, 21.30190180248023, 26.384257293925042, 10.720918196013232, 80.24170368721391, 85.38582240726465, 53.84549735668257, 29.226881436129585, 16.615546380247167, 21.481629303675973, 13.071386279310621, 28.257472840508047, 12.4868181374649, 17.17479067423969, 33.86343396393068, 18.623144123892818, 85.15837686205774, 51.9355650693615, 47.63935352788434, 30.108653847356422, 65.33712378791529, 8.673370830421325, 15.130687758350003, 39.80597257328491, 23.77710517037677, 6.872255627544516, 102.58940340838747, 37.333379171051924, 153.09833368864025, 86.13064041974522, 40.44158618014959, 47.09319139616486, 6.123557282382237, 70.08019305486799, 91.70388553763496, 8.553016720221143, 9.715825096812614, 29.605797259866506, 21.491850994845606, 5.510369363012937, 26.99106652047585, 21.34537056341895, 56.21828529120175, 38.569202311803224, 9.299073099229346, 46.939151974526325, 14.348443259101147, 14.030647351843186, 237.48501098169928, 140.6924775786487, 80.8963051715756, 70.1490842876288, 18.021489623105488, 10.305478762065121, 7.723270266587282, 157.71036788651418, 31.666355053638217, 43.64327445247201, 61.65706359424205, 19.97221298353382, 39.45112827042722, 5.345202124331198, 86.27130391611033, 69.32160200719916, 41.62917313992131, 15.615402170560557, 62.04009755920981, 16.180928173129324, 97.79101170012575, 7.396343486939304, 36.90943565141855, 47.84731529196574, 7.647173804199328, 30.405345213893742, 55.068634952618936, 63.862283617827806, 30.91119456309071, 11.387642084084872, 13.49881391647542, 40.23305285795024, 20.44811673708182, 50.23032599956953, 86.13899277108987, 70.97453169715413, 44.96670900836078, 23.213622226957373, 7.823417910893804, 166.44790668238545, 18.284222681161516, 10.82742962392762, 46.27301152774308, 112.08492504020757, 7.273206202279877, 7.36610838762247, 94.94951636372664, 12.220911513839324, 156.8359416547464, 93.91496503648341, 5.500651236734847, 262.1312627467819, 39.74937196447353, 9.953999138975439, 5.898700307972365, 53.39177793904142, 34.094560115387864, 7.936391164159017, 31.32033098140878, 42.125338249762564, 49.4527955721298, 20.744168166679717, 186.82996328392844, 42.529919033131065, 31.06908458204444, 55.78089804185254, 23.609007110701015, 30.432810204702843, 14.212606019144006, 11.556349418007034, 104.35775092886773, 45.98559388039742, 126.58219086324013, 28.44598396064831, 46.25102780109307, 49.9228233275725, 47.9099653015558, 9.672261856770358, 107.80531026727901, 6.849499239611752, 25.01427673194367, 10.85536433299929, 32.182745572635966, 33.334430537379866, 51.508166134170864, 13.776828622271987, 18.12085420102109, 48.15490952423642, 158.21863244695027, 100.46263291482205, 98.6231600962879, 17.79282450106082, 67.65686789692244, 11.165485902942633, 33.150489602200196, 7.053728258629528, 11.096219050336252, 7.03921837807061, 33.488656051635516, 78.84812726337182, 19.76418471115929, 27.876506592886727, 11.321325505894798, 8.654180369006871, 120.99116447884927, 23.7517467886362, 44.58234070425099, 15.111078523910074, 27.512100765995704, 39.413318020323956, 25.65571829995043, 41.295331677741245, 30.16328449747669, 23.674738174551113, 82.42669384374858, 23.50933815877033, 197.83233167944812, 70.55589703705131, 11.986716288548944, 25.92564942098612, 36.58219417142389, 13.53571405719756, 101.06922752236468, 94.72014369797016, 35.57371686359586, 54.272481324005135, 77.03679496625114, 7.105887100334163, 59.41957985948969, 8.068736052830248, 76.1746276223456, 9.062228640650636, 16.65722482370668, 18.90996302084131, 59.63518883899304, 90.26498136794925, 7.443365470054355, 117.86242261800382, 155.8783129949107, 33.29968722165132, 34.62060392882668, 26.127486570364834, 29.206717382644786, 10.20810427520149, 5.10913379115746, 5.468957131964898, 13.83683030587528, 121.17902588327286, 68.41254552289612, 5.409895028048272, 51.87980410865656, 10.250252996088474, 26.188533296617777, 5.169079351675545, 26.732638770507364, 23.112537737090136, 85.70735268143521, 97.60765242293832, 77.57562166899748, 7.045889521875859, 25.054550725033675, 74.20760950416201, 5.711607084631244, 7.00361226606622, 151.4741990562043, 12.763081401038466, 35.09924104632007, 8.042229880102722, 26.846096867716227, 13.360994526288836, 63.61169358068529, 97.5023852926567, 5.276383843376076, 44.47929650695015, 198.35040572371736, 24.412956894525546, 23.03445836648296, 7.898767795637559, 56.25384547770568, 29.06777668282348, 11.506906061226763, 15.593206972261347, 22.332132738839036, 20.85432046926139, 76.53615759312763, 22.417425240464198, 33.16365531252743, 6.0346893448149395, 61.88005149993086, 92.85777570162941, 37.23515160256352, 14.230795931300575, 70.65049999784969, 76.94621892772338, 20.565000671793136, 95.12781488237087, 49.123714989625654, 87.3917105438153, 8.242678153789228, 5.779396196792577, 118.34334911495672, 8.320173488282064, 18.044792257370453, 66.15016058775824, 11.964902680325954, 6.076310462005617, 8.424880883595282, 64.07119142669988, 7.218693562661291, 26.203292909988583, 9.932238245096093, 5.845087006436888, 105.60924263033226, 8.519886926808141, 59.371523944244345, 29.600350906444277, 41.48392923343646, 5.2028039939498, 136.56921560769823, 37.94497380373327, 51.17599120945461, 105.36081847894084, 45.15718712584232, 97.18257575339213, 26.261699760822523, 6.096908663077833, 61.63940345867455, 9.034141492271061, 17.32499884247492, 39.69834706095717, 33.06010906018271, 11.84619984108691, 10.489060019744235, 78.978222830449, 27.433523389476008, 33.54782804824119, 8.852536865285071, 5.626183152858608, 11.223412826639745, 63.14167840737549, 76.51507209501344, 8.098272839057657, 23.830555147692934, 64.13033271151413, 5.672909904714078, 29.25931473289789, 37.7369669118212, 20.070010086315026, 64.01629783295758, 22.939169726514805, 60.868913655209056, 39.14926777671783, 81.85071231875772, 50.65820567504516, 56.90115980830849, 23.360418485000864, 54.56612790417984, 23.883469608253236, 43.13087066328048, 57.21839681148099, 6.242798664021126, 28.123608533906953, 55.588001454136574, 104.92635889416105, 51.62773501048592, 35.10765381049009, 29.980009656673747, 8.332498222862743, 32.114178741248836, 21.539559195986275, 91.85761028502701, 62.6963906025196, 35.61203862866456, 5.4940419446270665, 41.1037369186701, 13.43460511920851, 13.714568414007257, 54.40228403252883, 47.38133029314849, 94.5271535982605, 9.140966870496433, 75.84746423627608, 24.96124476761757, 40.45895861951908, 36.165976847572516, 42.715519183404396, 5.8117883816315254, 6.468174624165549, 147.5009819784318, 69.72319933292569, 21.98135561031056, 22.149655411766833, 19.229590097514254, 53.74311636041427, 73.25534751636067, 36.68678141125356, 58.69296404579872, 5.97431865707526, 60.83364631002352, 6.327129715909542, 17.44644289709242, 55.7180248644535, 61.446244236203114, 28.87902991824052, 69.67652543103753, 16.25867664150196, 12.90164211202448, 54.77294282516168, 17.407342315802392, 7.8084255461129075, 70.4228894373225, 8.460788003149627, 36.89167178883097, 96.70447805227593, 46.84117638287384, 40.683908603799445, 142.65661346251375, 43.47787220116474, 104.95047041046169, 56.245245000116356, 79.51845728542469, 5.125084474328635, 16.007393873888656, 6.795027893904212, 50.35536636829381, 42.189433888945736, 43.63669379972557, 31.334951991089937, 18.304141190652118, 8.561690520196326, 10.963830047699492, 52.301940014766316, 19.915097619215913, 35.51795305126248, 12.321347015524395, 51.8434396288796, 5.807657504448685, 30.136714594052044, 71.4201038281072, 83.90664551955976, 25.61941277600771, 51.15745575302717, 14.333682268816924, 63.034300671229246, 26.445734272738157, 121.17852138612602, 50.16230673788232, 82.12015497885804, 100.2222348681942, 52.49996117577627, 17.14948706687174, 18.89959053855064, 19.389236028412803, 6.632377301302365, 33.014944587621855, 28.888687869298753, 28.258247606802858, 69.86055580038348, 17.062849860222393, 15.864708493190921, 43.091163934912046, 24.043686281504087, 7.783127610047499, 72.12479408091977, 56.18313517972436, 7.0496195741338195, 10.20640951438668, 22.685451678104954, 25.097410523598885, 64.24837289891208, 7.145860977620094, 33.74711961737517, 14.695964719908925, 51.79303231757053, 47.91961068096873, 12.37471276986788, 18.050506346787746, 7.456128054215407, 17.816792457037735, 21.049829539142962, 5.048519376858698, 71.06405202339867, 23.68563031670477, 30.7760092608197, 19.963783736614108, 41.82024716526853, 15.59432626629662, 25.236038739224927, 12.692586827906311, 5.718384545260123, 182.09597239664365, 177.53109788533894, 15.908098701276002, 8.535215785310337, 9.183201591968054, 103.91989887905505, 8.676810333129076, 189.24065669209347, 24.021039773755902, 42.876520371327246, 126.05304580841518, 75.89089757639636, 44.34021915147933, 24.384793368699377, 51.24578590446633, 53.56581979205953, 67.3141095446004, 87.11229807142931, 7.467288802899967, 12.033979379019737, 34.47461089255727, 38.526087093771125, 64.02555718073326, 7.546727002528665, 24.36985612191518, 11.81441746962706, 37.83722564282026, 46.81774297146356, 5.891878554454841, 25.870067826877207, 61.619757467533724, 19.31111248552211, 29.216516952338505, 7.7236872868315665, 22.236869877204718, 7.38220184062081, 21.532596313595526, 85.0926601843464, 97.42992701000902, 68.53716004882045, 92.26147311497574, 47.16605331501745, 49.07643440042063, 12.397000429306825, 37.31459364308256, 20.77876408614236, 13.22017544199855, 7.210798269797075, 42.67222612022374, 158.02711618110646, 80.04718390077333, 55.39976932581153, 60.2224892718787, 100.57327423939637, 8.021535986190633, 93.68331555859695, 54.60789609423709, 20.416905720923076, 29.306999810646353, 36.71132509642325, 18.496497201886054, 20.044847577192932, 45.56890034919382, 6.96233288480394, 7.907536227894736, 86.46742946823248, 58.95336086376468, 19.173364652428926, 35.24899575363531, 62.69965292546096, 11.40306359793988, 5.632450922430044, 31.255359959929955, 48.92382192354463, 22.64975752666325, 115.83071435095823, 69.85595028902713, 11.771850637891784, 30.38543474061917, 18.379912124539775, 19.963449588850985, 5.150452039810196, 6.191052897112926, 63.438896273174514, 20.234948468919868, 5.451896143868137, 87.9571421177929, 43.78980078187751, 13.543052123627959, 7.477140056073796, 27.645126253268074, 54.92918794624827, 76.7818927138975, 64.02401643174326, 37.87147821061639, 11.000299010293759, 6.2188173149901536, 43.861029188670386, 54.202688255836705, 24.661532508463115, 14.492086979867679, 110.29663571947725, 6.775364838321423, 5.812004691975614, 29.81706109434477, 9.546291602820403, 41.20062745430934, 108.42113863397519, 54.95782772147236, 23.954424957274536, 21.26440013476568, 61.94115979467455, 8.713603278980735, 8.333720194968159, 5.780293543507099, 26.229533168096758, 11.319902997725801, 14.64916597521164, 8.054340929852481, 12.382127232040387, 49.08544430626152, 6.575207397813799, 20.823103999475126, 12.038633029777142, 7.670259137908831, 27.76958118941473, 39.32818990424815, 15.314891496816943, 15.995227969692353, 10.393816131174306, 38.27635662174936, 19.676708423186952, 7.852705021661052, 8.876359727481214, 51.15270101705353, 23.967859505735472, 11.399054912301846, 68.53124760811428, 81.04577846095617, 73.42914365901791, 64.85402140240461, 13.248953166792614, 7.7951450832213895, 6.945378759597145, 25.479151471611942, 15.486746013702893, 11.105954693723513, 29.948283804199104, 33.320798181633805, 9.541942648084182, 52.26689849916002, 31.00153820352819, 61.829618355584756, 7.588004701211039, 24.377116271265546, 35.49439428696497, ...])
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)