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 = 44918
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);
([6888318.75, 6987249.890429264, 7148619.361507741, 7179600.441178366, 7222442.662038474, 7238983.462394515, 7242315.534799793, 7246400.0, 7282042.226404844, 7282762.348004964, 7283567.1875, 7288232.760807004, 7291101.226032964, 7369209.365105971, 7416728.1958717825, 7429895.028359425, 7432978.041775772, 7435443.099264942, 7442602.434041161, 7458418.148709831, 7460943.324585341, 7464919.676511728, 7468632.8125, 7471762.041664162, 7472993.224713975, 7477128.995698111, 7485923.248121899, 7499279.6875, 7501148.555055144, 7501594.871092593, 7501763.345901539, 7504037.5, 7506021.39524929, 7506786.585513622, 7507891.77239736, 7509232.578236912, 7509678.125, 7509706.121722595, 7510440.236063635, 7514766.499206264, 7515068.53054033, 7515493.693448111, 7519497.682896868, 7520845.3125, 7521019.1930497205, 7521894.127226286, 7529569.176483067, 7531522.631929548, 7561615.2898011245, 7564043.75, 7565580.157743728, 7567784.608502619, 7614853.125, 7624323.4375, 7624363.31878517, 7631178.729754526, 7635689.476365765, 7637458.994802111, 7648408.497637234, 7663131.169956592, 7667133.948721268, 7677724.983135648, 7679728.125, 7684640.122120414, 7694725.097332549, 7698014.519945896, 7751143.75, 7768573.785679477, 7769973.4375, 7781786.088359193, 7787047.438942813, 7801563.443858465, 7805102.042836102, 7811134.591037795, 7878418.448392018, 7890041.260719886, 7890201.698859157, 7895450.142539734, 7897033.209979254, 7898990.806040144, 7900998.678428545, 7968491.875169629, 7972476.677659645, 7978174.267119678, 8001454.062580362, 8012464.527183953, 8020260.890210807, 8041976.927142017, 8045890.625, 8096453.125, 8104092.377687549, 8104847.270308237, 8126092.801301591, 8159381.829011642, 8160202.215027047, 8171034.476414098, 8202906.993471413, 8202929.096248385, 8204600.568275867, 8207916.63896531, 8208483.1601128215, 8208934.910426251, 8209581.25, 8213228.166622023, 8217447.258847086, 8222917.477640515, 8234077.107050583, 8236167.1469195355, 8237318.587638724, 8269565.5674996115, 8275896.875, 8277007.926384007, 8277015.510438198, 8277025.721419738, 8281478.125, 8284073.4375, 8285911.066204164, 8285967.0765080135, 8289796.072079742, 8308084.509953338, 8309022.11594354, 8309145.716505481, 8309217.571931377, 8311246.660969725, 8311514.0625, 8318482.8125, 8329532.312484165, 8333121.249926588, 8334165.412548128, 8354955.6057588225, 8361036.896127208, 8365404.317264255, 8380133.240558294, 8388110.569318017, 8399201.5625, 8407285.960514842, 8407554.333711572, 8408156.274735129, 8433044.811435906, 8434715.38205139, 8434767.523854777, 8437297.047452148, 8439200.525358632, 8439208.280490078, 8439837.639447534, 8441375.448923323, 8443510.852178173, 8461370.007830229, 8461443.082017798, 8476073.4375, 8476649.3411095, 8489417.080383888, 8489441.80003542, 8490291.845558338, 8493090.227862144, 8493224.489801176, 8523152.890268607, 8534453.101585932, 8541536.387312977, 8541781.25, 8543233.252603363, 8543540.134887496, 8543741.217293475, 8546619.783373805, 8561069.932023162, 8603007.8125, 8603397.396010615, 8614147.503885476, 8625539.21284185, 8642187.5, 8667965.5789095, 8675388.379737033, 8677492.1875, 8735535.9375, 8795217.044520956, 8806792.665889123, 8807683.18067558, 8885267.47642773, 8926936.271561341, 8934967.111375831, 9001858.801842893, 9007114.652697371, 9053530.289810652, 9097013.48968767, 9098904.505348444, 9197855.359697489, 9308791.231976753, 9320094.232286027, 9328230.185349818, 9344100.0, 9347114.778785223, 9354501.5625, 9382188.331046958, 9398439.836823542, 9419560.808843786, 9422982.179710075, 9458294.830982022, 9525407.8125, 9532909.22884327, 9538074.273040392, 9542298.930557111, 9577255.312356014, 9607257.8125, 9607703.125, 9611077.918847632, 9647125.195695704, 9652359.281446595, 9691684.375, 9712932.049714189, 9713377.956533752, 9713642.729349583, 9714194.45241508, 9757023.504800096, 9801425.0, 9813103.136399567, 9813416.990305383, 9822856.440348873, 9867739.960000148, 9874920.337278713, 9880174.828125322, 9887701.356862606, 9889614.719758123, 9895448.192797204, 9896392.255989207, 9899707.8125, 9903485.922681712, 9904647.60437386, 9905276.5625, 9937668.787864015, 9937749.071040168, 9938948.4375, 9941064.0625, 9942244.139276825, 9957063.342067793, 9968229.493882302, 9977695.231394127, 9978685.9375, 9979963.385252178, 9981551.186691733, 9982907.152985297, 9995264.0625, 10036932.250742255, 10108719.793622073, 10110384.598324403, 10114719.305370918, 10135601.053755617, 10144561.239232542, 10165743.365066286, 10175904.1497502, 10182612.5, 10234251.355262011, 10272030.96625148, 10273030.607457362, 10275384.122854494, 10275387.431514522, 10319335.9375, 10343873.4375, 10370247.745579217, 10376617.710020402, 10378071.778020319, 10396904.099436356, 10403682.165614624, 10415033.21380195, 10461718.586238494, 10481943.495329484, 10501516.93523078, 10504482.8125, 10534553.607161405, 10534621.875, 10534639.0625, 10552888.474686172, 10560547.563118812, 10562053.558557373, 10566325.0, 10575516.817292657, 10583763.213021092, 10589970.799176287, 10607000.374554304, 10618153.82091169, 10618590.421662023, 10624962.322830671, 10625543.35684923, 10627488.850111065, 10664548.4375, 10675830.176084587, 10718855.521721909, 10727194.198195338, 10735830.772890246, 10738460.978649018, 10738474.14105928, 10785829.69095709, 10792646.875, 10828309.752784766, 10837765.336818783, 10838324.852736467, 10839911.382795924, 10842824.150408339, 10843583.926383218, 10886513.487847742, 10886781.657451969, 10890592.794794064, 10892393.682304045, 10898584.375, 10899022.236095224, 10899578.127893532, 10935776.297675097, 10942925.0, 10944286.767940149, 10945290.062720785, 10955653.015848367, 10988614.389877701, 10988620.1978414, 10997531.914176682, 10999951.5625, 11013916.951500898, 11015001.253562583, 11060566.423988683, 11065239.382696707, 11091172.160351751, 11112232.864618635, 11132489.960395515, 11147603.663588883, 11163991.38323551, 11174411.936257692, 11184265.00073713, 11189860.485791292, 11240740.962202104, 11250067.699766986, 11276370.3125, 11315636.065226933, 11315636.422320887, 11362159.699140565, 11372689.0625, 11379111.800387979, 11379807.8125, 11392778.125, 11458976.592147296, 11477550.0, 11520017.519559015, 11521525.141547434, 11522675.815419864, 11537075.43577178, 11560771.089885803, 11572126.5625, 11635387.700793345, 11638223.4375, 11662954.819690118, 11756425.0, 11762187.479281565, 11790005.588977858, 11802546.440521006, 11837999.034008138, 11852168.99169287, 11854292.1875, 11863426.5625, 11924501.276727984, 11968506.767835727, 11989117.1875, 11996367.895317905, 12108484.126530966, 12111816.742894927, 12179055.039584616, 12214814.600380803, 12218223.67290411, 12218225.532712026, 12226123.199764173, 12241255.999270435, 12249051.680303963, 12259020.203114374, 12260866.859498667, 12271950.0, 12321283.190468824, 12341700.60603369, 12364935.91597443, 12404294.182764051, 12404319.448579807, 12411586.012398697, 12462067.1875, 12549806.623481376, 12650698.615982125, 12651918.688985212, 12678710.617567703, 12731449.348020261, 12749836.830241319, 12756825.286952939, 12834959.0975928, 12875973.727983445, 13102766.440678526, 13236579.6875, 14002764.807684269, 15409325.635026092, 15525122.44816432, 15538663.959341988, 15553577.200270807, 15553583.105729185, 15571998.869991537, 15579073.12409298, 15585817.19800235, 15597523.4375, 15620193.75, 15620245.29494314, 15620739.33906246, 15621928.125, 15626204.291892873, 15626494.71905008, 15627788.351440426, 15629140.002484385, 15636286.850008318, 15640064.0625, 15644557.431843497, 15645213.245377228, 15645896.242948709, 15648799.27803994, 15650199.026565157, 15650983.901684802, 15651002.668826306, 15651653.055653824, 15651705.400405832, 15652785.492210172, 15653039.579601143, 15653080.513266318, 15653477.969750797, 15653902.662259694, 15654188.847406646, 15654237.428798737, 15654596.479848431, 15661060.9375, 15662465.625, 15662568.272830263, 15664782.665280037, 15664993.986496741, 15665168.700395564, 15665417.154345026, 15666286.608489059, 15667853.612591604, 15668635.663308578, 15668752.856864288, 15670763.671070842, 15671320.718809204, 15671658.864219606, 15672464.948515514, 15672532.114209792, 15672850.687682085, 15672918.289759843, 15673409.131120924, 15673561.06359319, 15673875.722711269, 15673957.427023781, 15674331.033836123, 15674611.534994237, 15674829.083501616, 15675060.667451808, 15675096.216463756, 15675420.3125, 15675698.649589071, 15676438.61336769, 15676454.015878256, 15676750.736858347, 15677036.975328166, 15677109.435016857, 15677146.943110708, 15677248.374432562, 15677984.193868792, 15678429.6875, 15678551.97520661, 15678552.765767012, 15678859.118880473, 15678891.043448403, 15680373.4375, 15680470.967186935, 15680501.354906723, 15680584.375, 15680594.72471437, 15680617.526959822, 15680839.0625, 15681439.617158627, 15681789.96637932, 15682422.638628302, 15682565.136641622, 15682793.75, 15682905.657773644, 15683055.093733624, 15683078.428315083, 15683150.855540767, 15683703.125, 15683727.707135478, 15683829.36015787, 15683873.186237143, 15683996.239919996, 15684577.7664598, 15684632.057035562, 15685064.651508177, 15685149.757169439, 15685233.994345898, 15685344.721845394, 15685628.125, 15685643.49239944, 15685861.512839602, 15686017.391530553, 15686337.5, 15686500.316284936, 15686885.803889038, 15686976.439313054, 15687059.375, 15687230.19678999, 15687361.882540157, 15687541.868306166, 15687719.965865392, 15687891.405193247, 15688010.852038164, 15688049.857641932, 15688077.84418615, 15688181.25, 15688298.642771415, 15688339.484037103, 15688538.088823158, 15688736.093518376, 15688815.911290102, 15688908.441799538, 15688925.061334927, 15689182.791317971, 15689327.352186048, 15689356.836648624, 15689438.39965429, 15689497.359358383, 15689504.6875, 15689712.936804375, 15689751.618780283, 15689794.89114412, 15689982.777909646, 15689985.725170929, 15690040.767794805, 15690043.88790327, 15690237.5, 15690313.716780473, 15690462.5, 15690506.181230005, 15690543.75, 15690778.125, 15690790.625, 15690850.0, 15690875.334523233, 15690909.3235515, 15690938.091831677, 15691159.081423929, 15691235.77354326, 15691251.5625, 15691467.912781408, 15691542.743972717, 15691610.980205685, 15691656.155531468, 15691728.125, 15691800.06500458, 15691816.775502514, 15691829.316700092, 15691880.203321457, 15692180.588454572, 15692326.375087973, 15692340.625, 15692348.911274834, 15692356.696575083, 15692640.371185157, 15692642.1875, 15692671.847970603, 15692745.072793, 15692842.1875, 15692868.75, 15692971.675025204, 15693004.6875, 15693034.788415888, 15693213.708624242, 15693642.107462863, 15693690.347592536, 15693732.939829756, 15693837.276284594, 15693872.521795513, 15693903.112915628, 15694023.4375, 15694046.287369283, 15694063.913822424, 15694073.41557119, 15694073.4375, 15694102.724323379, 15694178.218795247, 15694179.849476827, 15694246.245808452, 15694389.89122893, 15694752.583436828, 15694793.183422456, 15694804.471164824, 15694898.921202363, 15694930.238684518, 15694931.76076911, 15694964.0625, 15694975.0, 15695075.0, 15695119.136715913, 15695174.21992692, 15695212.94566393, 15695231.07081198, 15695288.297312802, 15695302.549729744, 15695330.496401077, 15695343.920433521, 15695415.625, 15695448.4375, 15695546.15362629, 15695556.25, 15695601.399489282, 15695608.404366322, 15695615.290750572, 15695634.007075462, 15695642.810577082, 15695684.506685492, 15695768.039752707, 15695782.330024637, 15695789.139903115, 15695865.14181652, 15695866.894747546, 15695884.375, 15695905.772395395, 15695925.0, 15695926.5625, 15695984.375, 15695992.1875, 15696084.19338842, 15696104.684787473, 15696121.340029065, 15696173.698216079, 15696287.404948846, 15696337.94292525, 15696450.869073495, 15696724.147531943, 15696730.134540163, 15696769.180295968, 15696917.704132255, 15696958.670155339, 15696962.5, 15696965.65567615, 15697035.687325953, 15697065.70592956, 15697114.868703168, 15697115.625, 15697140.388725584, 15697163.91801381, 15697249.592825497, 15697284.279226173, 15697340.488503885, 15697345.3125, 15697420.869168296, 15697426.968812268, 15697493.17295858, 15697494.421586633, 15697557.508915037, 15697700.590035995, 15697701.489799608, 15697716.102792826, 15697742.604601381, 15697783.714307345, 15697842.988513445, 15697895.2785518, 15698010.9375, 15698087.5, 15698096.888718726, 15698115.650974693, 15698116.040377004, 15698227.892241495, 15698374.085621145, 15698415.625, 15698435.261783898, 15698493.75, 15698528.125, 15698535.562827809, 15698575.0, 15698608.535424938, 15698611.97566554, 15698618.397007104, 15698625.335201532, 15698640.439789029, 15698643.526027627, 15698648.494856171, 15698680.819282724, 15698683.021881938, 15698691.161018018, 15698743.877303028, 15698844.727006827, 15698846.875, 15698871.623689054, 15698892.1875, 15699054.439428274, 15699070.3125, 15699108.769469641, 15699115.65606952, 15699230.83326691, 15699273.4375, 15699312.950854994, 15699376.344567716, 15699504.974710014, 15699586.475215849, 15699648.455107652, 15699696.595765926, 15699724.007074213, 15699726.773422657, 15699753.62232225, 15699773.4375, 15699773.670951776, 15699794.18037734, 15699817.1875, 15699894.128599951, 15700040.763236752, 15700059.821381504, 15700067.198729359, 15700078.659330465, 15700126.483184764, 15700164.832715131, 15700229.6875, 15700231.25, 15700243.753821557, 15700282.578551454, 15700292.1875, 15700293.700820753, 15700305.649609113, 15700309.375, 15700312.304721622, 15700418.82044311, 15700424.550141523, 15700457.785481866, 15700514.0625, 15700537.089086132, 15700542.1875, 15700544.130819438, 15700585.564336034, 15700663.241568971, 15700699.775482029, 15700721.469952414, 15700729.03501016, 15700753.393970126, 15700778.50545473, 15700895.158441965, 15700908.979166731, 15700916.639081212, 15700976.5625, 15701001.258999141, 15701038.291752983, 15701067.1875, 15701309.37720877, 15701352.64576287, 15701371.187522821, 15701379.067294972, 15701508.742851196, 15701573.4375, 15701784.53061735, 15701831.25, 15701879.600015564, 15701889.26674041, 15701930.421017444, 15701948.4375, 15701954.918504266, 15701955.513950448, 15701968.179670556, 15702081.441099979, 15702098.4375, 15702108.803064143, 15702170.3125, 15702259.505505426, 15702286.711556692, 15702325.934832236, 15702369.224243367, 15702418.456367262, 15702420.84695663, 15702429.343182422, 15702439.940588774, 15702443.37368414, 15702498.4375, 15702564.0625, 15702568.604497524, 15702578.839858951, 15702640.453611694, 15702653.848035853, 15702685.425434109, 15702707.437899698, 15702760.9375, 15702810.9375, 15702824.768169088, 15702838.97001973, 15702884.479672013, 15702894.415277397, 15702982.396315068, 15702987.264810557, 15703025.317671128, 15703211.301397286, 15703219.382999962, 15703274.716947423, 15703291.340452375, 15703369.81859037, 15703395.05749097, 15703431.76729907, 15703436.115347832, 15703449.116794974, 15703456.249378573, 15703468.746799262, 15703509.182621555, 15703520.775349058, 15703534.15590741, 15703534.610797593, 15703592.117597843, 15703600.200885462, 15703617.119393326, 15703654.576694535, 15703657.830269434, 15703684.375, 15703715.413191164, 15703769.032223793, 15703777.701322064, 15703846.65286002, 15703857.736506172, 15703880.681709817, 15703934.235387705, 15704018.571473667, 15704082.235931924, 15704116.72252238, 15704213.65388815, 15704230.193366723, 15704293.522835147, 15704345.058550796, 15704443.635031793, 15704456.404081093, 15704489.0625, 15704576.5625, 15704889.426948125, 15704928.125, 15704965.198687032, 15704968.75, 15705012.424725272, 15705037.009287117, 15705086.581705393, 15705119.663198482, 15705138.765843954, 15705212.5, 15705279.559452968, 15705281.448627518, 15705367.1875, 15705567.989241235, 15705585.159610325, 15705626.5625, 15705745.484265134, 15705749.78996193, 15705756.599274196, 15705845.764226597, 15705866.734327931, 15705891.464062871, 15705922.243591849, 15705936.837367274, 15705968.80143685, 15706048.4375, 15706053.125, 15706147.242852652, 15706162.378136007, 15706409.919226747, 15706448.4375, 15706472.153865118, 15706516.45010899, 15706523.581576293, 15706528.795467364, 15706551.812485434, 15706603.125, 15706785.78851439, 15706965.145567095, 15706967.1875, 15707003.111893019, 15707090.625, 15707117.647254407, 15707215.478691546, 15707304.111799931, 15707355.218398675, 15707356.25, 15707489.0625, 15707655.805251298, 15707656.283569539, 15707828.021834034, 15707844.4685961, 15707880.979312673, 15707905.177352954, 15707930.856689373, 15708185.787210405, 15708192.39238604, 15708344.402133478, 15708462.954542754, 15708592.156321183, 15708621.1300017, 15708703.804029202, 15708743.365843462, 15708760.295224218, 15708912.5, 15708937.094083607, 15709003.125, 15709163.643795753, 15709268.75, 15709325.066415, 15709347.548779288, 15709408.83968546, 15709554.230458345, 15709801.782620788, 15709885.165813865, 15709942.237201195, 15710036.493882231, 15710076.5625, 15710159.375, 15710200.303821092, 15710209.470711458, 15710309.375, 15710319.236474741, 15710446.875, 15710773.523771977, 15710817.1875, 15710825.0, 15710829.420705225, 15710832.507301489, 15710851.5625, 15710971.19276341, 15711006.047243766, 15711012.5, 15711031.03247052, 15711051.750894101, 15711151.5625, 15711266.988520239, 15711305.619829573, 15711358.106978001, 15711358.481456779, 15711511.657188041, 15711623.4375, 15711652.838502156, 15711708.467747394, 15711916.494997531, 15711984.375, 15712032.047506351, 15712040.625, 15712066.33006533, 15712118.030223062, 15712121.875, 15712200.635006294, 15712330.163217176, 15712421.495485624, 15712426.247574486, 15712505.245009046, 15712522.308530567, 15712540.868331343, 15712592.1875, 15712630.779392663, 15712761.526663586, 15712915.581551436, 15712927.780568123, 15712949.916915039, 15712983.98571472, 15713183.757804992, 15713195.3125, 15713570.629749574, 15713707.382161073, 15713933.628113152, 15713976.50620033, 15714016.292130344, 15714016.695974978, 15714023.101726685, 15714055.031098705, 15714127.88088787, 15714206.873522032, 15714254.6875, 15714324.604192648, 15714505.647153426, 15714509.375, 15714545.188765645, 15714553.125, 15714578.125, 15714590.625, 15714609.967693789, 15714639.0625, 15714820.82806408, 15714835.249657802, 15714973.362496017, 15715060.704712182, 15715148.365321064, 15715388.740074614, 15715421.727566086, 15715661.17372455, 15715670.597995494, 15715760.113344185, 15715917.785931634, 15716184.375, 15716209.375, 15716255.3713672, 15716504.434612095, 15716611.192840284, 15717025.97335751, 15717162.4290141, 15717419.642791431, 15717445.980897283, 15717550.0, 15718268.50800347, 15718525.0, 15718846.404184848, ...], [40.95288773055132, 93.40616915896481, 9.908172247943321, 19.188242341874286, 17.12213659057786, 57.196961179423845, 26.859810124079697, 54.140001752128875, 14.75859614379086, 67.28884264861463, 33.020193849641274, 22.697354546955943, 8.116317000466754, 8.281352118806355, 11.240320866879784, 38.23076021374394, 62.07930808262842, 20.110603499319158, 41.061959765549204, 20.538874695850566, 8.073732597249915, 20.23594595944409, 124.27920651262114, 34.87679549687952, 16.90973394740277, 6.383850949474664, 14.265687498889823, 120.53290301271913, 82.7896670230677, 22.098207291764385, 21.05595327019902, 57.56480967911992, 32.62535465880933, 6.352695516322354, 22.383972230278946, 24.62839957381254, 52.084400682633515, 10.93295090657058, 23.95842972411852, 19.80011867132949, 24.83710031561927, 14.730253877190723, 14.384058266761608, 40.42001787857259, 8.535641804742074, 41.71053824344131, 16.861333694426143, 12.560434484925933, 13.801256808733452, 31.561870021915606, 17.09838730857625, 6.811036444035127, 118.89809959489432, 33.73056739712469, 43.41233058016611, 8.634553443658717, 5.976276443471324, 40.68312717874508, 9.98673011258203, 14.644952768890878, 13.532590151306884, 34.52784324336365, 43.69639463579459, 86.06594207931907, 73.16550078383904, 11.926862363250637, 52.18795971622376, 11.719344981210538, 29.924680508480648, 29.773574948729408, 25.055678176712284, 17.03412817885939, 270.58123448777576, 76.88159863922861, 5.597573561273269, 9.93376286688327, 5.403712625101678, 15.514139647849948, 28.959835163385, 42.55340526133894, 21.38280600178804, 14.716504515670547, 19.43534815537012, 98.88739975521909, 20.331341939579318, 11.941021527856504, 35.16704809028437, 102.97683403186393, 105.1261763284252, 110.39271649479774, 91.1655248978314, 54.823920884066716, 11.976005092793963, 24.31492535932839, 20.382317013465777, 11.266436168741269, 5.755766682873402, 31.160539958097985, 13.928434914644903, 13.19505779312839, 5.47688692954124, 41.71225450691827, 141.7995875350059, 11.193393954964009, 20.8853834047297, 16.176133033888895, 7.812828282393353, 24.673612562192968, 35.73641365259558, 27.436390194488858, 37.42790080252414, 25.50088134353354, 54.524430655676454, 14.65250614552565, 39.60906931003951, 77.28248361788916, 5.467317915000434, 26.50793391755463, 29.15170430673094, 7.652788341574585, 22.10678516790043, 16.939863738286952, 5.97359822760037, 68.24574334802024, 70.54639391014241, 98.66628022737738, 40.954480454574885, 12.996072864819041, 32.725626566532696, 66.54342892016666, 112.40709374769224, 86.40652313602433, 7.238712789272745, 23.115765446850933, 103.21077991141385, 133.41859730983458, 13.74515400984361, 69.53057427995832, 86.58615698362391, 56.03914093850479, 8.472834148377432, 5.1693974352715015, 8.585412933119706, 5.358217880721225, 6.284978797927501, 16.981782978280215, 46.72390863238607, 13.894858867379696, 5.186731354505999, 63.22756303552695, 8.83017902927366, 50.525050567914874, 22.69429800193478, 100.2266336712517, 20.47156505989673, 39.71738233159326, 10.779612290121069, 36.173608874984225, 7.244936437592958, 75.10478536670928, 55.85037427363212, 58.17450207397844, 77.5200968941764, 19.79914864468096, 22.774455379300992, 42.25743604929624, 65.91468012113928, 50.281394103606516, 15.547273730767138, 33.988700137899144, 27.64458502998568, 19.845070024360467, 36.691277086102694, 64.86997224265868, 40.733355755219236, 52.717584506318964, 21.748884248200724, 17.989970430725386, 20.303171776295095, 9.267854795574895, 20.793094637696452, 225.4669403435569, 68.40314809989209, 13.1309578057695, 14.640212656086891, 89.18672326945196, 25.08384294995748, 11.975676338175301, 12.995290888869711, 49.53702879145902, 5.112819707167272, 69.16195083627791, 7.934270714286412, 6.928609961258526, 14.591815432104074, 20.201851901930883, 32.87812349540765, 87.25262106362128, 40.36742343206116, 39.67310338974213, 19.314722331051065, 47.98016197333877, 71.57558204161715, 63.12966433398572, 9.162967677960562, 6.108689049714793, 75.47979673878082, 55.055970593382064, 10.113480753297567, 40.62773530309605, 100.59527828010778, 12.43735026612406, 28.073255393729365, 111.92102620153683, 5.614675103124015, 35.85525025188167, 29.918221288547976, 37.75649111818932, 5.534284340527355, 37.29949989591421, 34.64947823306499, 12.338149427334502, 96.06384214704853, 7.139572526084087, 37.042719509259484, 53.07283227218418, 67.82680672925497, 80.1403729723193, 15.08782038260296, 6.350703341504258, 59.38804639215898, 58.71905523373299, 5.048165566739619, 47.19545467552771, 63.49455586591951, 11.003256227918, 56.63457999024508, 12.865476629381687, 61.56260994473875, 25.372943954028578, 45.55129664767314, 51.7001116170094, 144.6048117782135, 9.527655753448474, 17.58621370009544, 81.0315078411764, 9.60026793187255, 22.7232492851231, 13.733445852144797, 54.771934614644266, 71.15650416070254, 23.960575460281273, 72.70160410134534, 104.54573367771052, 46.70494770628256, 35.93183485142346, 30.615802793001183, 57.310858648017216, 7.803828512390373, 26.743854716156775, 19.943340678587163, 6.023316644995238, 6.846358232060869, 60.840949539253685, 24.347562862210527, 24.38020410796528, 54.128692494815354, 83.98870457040157, 32.767996957475006, 55.62986890342443, 52.477809715455585, 36.93756237482111, 115.83264985478013, 107.25189154219683, 13.696152401199896, 12.461007292762089, 20.369779216435212, 28.72844457895774, 7.875948424480132, 5.3350019820155445, 118.01575913882253, 13.628527407699806, 38.38708577696015, 85.44465364312852, 9.78177842374054, 7.935664092027046, 45.58348347760275, 21.724522697382124, 90.04671057266702, 33.67900695580617, 17.95452174730859, 62.018348604976715, 86.27662628353501, 78.8040237616193, 33.24041722385044, 44.11620295744791, 32.30886474817213, 24.148512503749984, 44.01873106060238, 16.760967025446966, 73.26853064948745, 11.023517014057246, 51.45944195716085, 58.39074841535499, 14.952549687578221, 5.450513614456218, 179.3172782695001, 19.45339295178324, 28.26828592699966, 62.59642936420862, 40.477114298384194, 26.447018100822135, 12.353190228069025, 73.78621023517378, 24.604203031102816, 13.88166313077275, 67.26399306611047, 6.829160526440703, 9.58493064632928, 12.80570980287806, 16.52841193964071, 9.832496231528498, 120.99661783476859, 76.91147665779565, 73.50588831110929, 5.154973410837674, 49.54643623633085, 79.52827302155724, 111.15070965532068, 36.98278640302523, 28.628749268608374, 98.56790357228192, 139.85639764931398, 6.382741963067457, 31.89368621014325, 45.09572259874131, 68.39531438640864, 44.803394318804266, 99.9868269239471, 14.620000330981416, 19.337954996405617, 6.557643144828321, 43.21604487189528, 34.3985086557223, 11.456766818323551, 60.26833956100544, 15.470487863559514, 66.14887059041118, 97.70905092872067, 111.19797387069956, 28.036169209300123, 12.20846449076246, 26.924553373585482, 107.37186683939642, 48.63679333095013, 23.934201865391447, 26.111091484270343, 65.90273678379884, 35.13549565348427, 24.432078858180212, 5.901599783840963, 75.02119843887434, 39.0076308399167, 59.144684024839336, 17.452759984821746, 64.59387878868391, 28.741430269758798, 5.071044794498227, 14.540353564587283, 36.21861721958474, 102.92561540757379, 71.12451344415186, 8.635354463045305, 14.860093896713614, 120.01114475560934, 62.6541035371059, 27.481329161683504, 29.44324580229762, 69.44142924009432, 15.668429644240444, 14.713939994499455, 103.46213463568691, 59.33991185844138, 84.07064643825132, 28.7993570251849, 24.04368799389634, 16.177762395242283, 19.339928008260966, 50.1296463251229, 17.28628451689132, 18.07771061021551, 8.614865785204003, 10.970203704676173, 19.560954338565026, 11.619213924257387, 59.56920279341096, 13.86788194456155, 17.38767729268179, 40.51825201993298, 29.90340786123779, 5.8126823497506575, 5.299707209951299, 47.14081873712684, 20.39549959041461, 17.76540038051373, 10.172585035252856, 13.00257812600695, 12.933205383334107, 49.80816002056352, 8.095040314405336, 6.922034822067353, 10.265234202634874, 6.180098634466711, 35.18319918843851, 108.75549757927904, 8.973333096065543, 69.85620932970204, 18.594832926729925, 13.47842413086989, 45.62236772827824, 6.178398265581321, 25.794363680815316, 86.38890480757702, 9.15591914686604, 12.177237661115004, 7.4663085274468255, 73.49920513342725, 66.46971163811106, 21.723908097197043, 10.905134088384347, 67.42229228397005, 14.755752229418407, 20.446797958689682, 18.311764391264518, 82.81188945013939, 22.177102111716614, 68.73688269730394, 38.13149706509264, 26.58152900353164, 34.90421882291391, 91.53113976186035, 19.719529974481194, 7.87245767505287, 25.90135907599981, 14.08686707284004, 5.823369367665305, 12.482742632452876, 28.104176161877845, 24.266388066516036, 9.893467537072858, 70.81262488174947, 24.141025740962533, 22.412612789085543, 33.13348944264154, 5.625886166062858, 19.343631523025653, 7.960711349582221, 19.67109694568166, 21.250466140023125, 11.629052584314831, 15.207629984199043, 5.289143115843346, 43.84560603176311, 62.544983483015, 6.553793055030411, 23.022503302055817, 10.749660380994948, 55.144915900857825, 56.839954674106764, 52.0683487945849, 41.27697978386156, 57.539782257535435, 101.1869634817431, 7.730808960227691, 43.1722184211351, 17.581977213337957, 12.91164712448494, 6.613851963955321, 41.55777273820744, 34.166929312856126, 14.913307304976119, 44.20355983175428, 99.63132083144002, 11.965513517793333, 81.2106307685054, 24.701189413080023, 20.034794457878313, 24.472448043679194, 10.261628391600576, 46.95124112627577, 41.455661757601355, 12.192745016390909, 30.094092452196893, 84.51306974534901, 10.314962333984466, 42.4671288049523, 14.042856542685172, 12.16425737720736, 6.109576740561178, 49.369941530791195, 20.38350103638255, 14.455581457682698, 36.9326032134127, 36.12788003575685, 6.333761724497412, 6.968078682995554, 49.495666164029345, 23.17278270245279, 24.07267858742251, 65.71972453152281, 39.718260415988524, 56.20776500707686, 61.44606198354716, 8.398195534534857, 16.835093929898676, 27.250532846152915, 86.30806262162949, 7.198798651983307, 18.04116275766896, 49.35248471587899, 7.115894656315024, 59.80759462651291, 8.623247372782787, 10.228775413030146, 17.17677270553516, 63.91212080554469, 16.91644763272164, 59.00628119099668, 34.35328944295884, 35.2522534301989, 14.189590880650334, 24.509941913124806, 5.4037722421638765, 42.3534826250931, 39.775638800665824, 34.60353062172897, 27.234374124260746, 79.09596783016565, 55.47354062330648, 49.161193417570765, 60.73945309616221, 16.390802627165943, 27.546352872696623, 17.806751640386025, 9.094920403249501, 7.079009218339189, 34.783347687181816, 18.68061226727513, 78.45334602706437, 7.618756976901013, 71.56960109953071, 55.10150981081016, 9.386979777612169, 23.276338779242195, 16.26766301550348, 12.042582366343773, 10.230305800733483, 11.634406064647608, 39.71257888883025, 17.117907312945547, 16.969070250882098, 49.47170944998838, 118.45516794808495, 25.103833927781828, 32.32546962507012, 53.46124354905346, 29.630345483623817, 19.019234468514735, 85.05983872941238, 5.7335839463463, 65.3741328095156, 27.035903810225488, 73.00752297800709, 8.355079091842555, 5.160183939432229, 5.565317180463744, 14.895648638886074, 41.31149459196195, 42.467545153886576, 25.89740197791898, 6.264431790364271, 42.8573504674291, 74.55457738791483, 8.33680854569838, 11.390691033673535, 61.723556611621476, 12.728368685857417, 8.911935902914209, 10.344270679047781, 25.605601212811305, 46.121053273933846, 5.742758393737405, 12.032427624285075, 102.04824986923246, 86.40001390471022, 42.66656830456111, 16.653424017350257, 5.496382139658221, 128.79471593506443, 6.728252678976276, 19.518983799685373, 31.48384118456976, 19.288401862650577, 53.40294824780097, 30.252686456114304, 68.65280110276137, 6.180166184894449, 53.90730828533111, 21.104184335609016, 17.806964679263476, 13.804140180494421, 7.027981396307576, 8.646055676935184, 83.69293657556558, 31.435310937195705, 6.670860826832601, 79.73277914339471, 66.316162282525, 32.075132513008235, 137.91871850366448, 21.719453697054238, 65.76966045395207, 47.694152830583405, 28.60898338135459, 91.12983221974736, 53.126108420294095, 115.98406746738223, 47.686044070067496, 103.50302220772863, 26.776718330862234, 11.898615314401052, 7.951030507341119, 18.575059595463525, 16.971586035069294, 73.48293679269234, 17.359674441041857, 49.56180008705397, 60.84490979019415, 39.09140446111972, 5.197094751869865, 15.2592159595802, 63.65680443331164, 45.565675005665035, 24.600371005959577, 40.75008915896291, 22.471912603921286, 14.588611730584741, 7.554604308690947, 114.50900605546619, 19.07347899039639, 11.82831666437117, 20.75752100116754, 9.97210660965974, 15.766798265714488, 90.3206908451772, 14.671465511044662, 73.5536793450882, 36.36301289166197, 8.82894601577644, 30.15324213759498, 104.9819710955461, 112.41208188457918, 51.56006400995677, 14.275384645644351, 22.534200434082166, 22.683069887128575, 24.649417212700932, 65.37884065888885, 44.951342092810066, 7.958889590585121, 69.29063496097424, 121.99229484377909, 13.682915381271618, 59.26585980840758, 17.73299497279301, 10.39639239822011, 50.666744804978336, 29.518657785092685, 52.10953901306618, 24.773026132862714, 61.15259196714243, 22.21324217014046, 11.471554424506516, 67.98507921545817, 23.168087268957628, 27.032438319722733, 42.96435455506131, 13.087673602661361, 67.41034113037331, 48.9203867230093, 80.12479505942224, 20.501238412033196, 6.091336143649227, 22.36599260496022, 41.527342039263786, 5.175996406922636, 28.411471270975518, 37.45830374656691, 35.69905119803836, 8.295910546169512, 25.45522781844146, 28.25822409611763, 15.811390491283403, 70.05824429405914, 37.30454542510963, 11.513326402145903, 42.33219423131803, 85.89512507486431, 46.57221531545752, 90.98511676121157, 38.69888434729279, 114.20652902238822, 17.462202873139436, 19.67966705039554, 10.080307002017463, 84.86317839025887, 43.84317103543276, 14.956095445462864, 24.632789844335974, 64.05429626309027, 109.95495665240196, 20.546879331261028, 33.71548988658494, 30.990924410252603, 7.140092949934472, 8.97793939794795, 6.758124568381774, 32.67196773982347, 22.43032834623102, 53.88129296974503, 15.033198368114679, 24.936519421592607, 18.795092532329157, 9.14851160094601, 13.593845214986423, 8.834563763085773, 11.575867847518518, 8.498565067720891, 23.26127167055828, 22.599212001474804, 32.93167012068123, 33.60354803877201, 9.08731640774631, 15.259082715529185, 68.73187114456785, 58.153001521709186, 51.08608460244335, 90.60921086883852, 6.3940735174317425, 20.2689075795871, 108.81036820278996, 9.466546489960118, 52.535755429546654, 60.09279804136307, 9.510284571515125, 18.738273342417944, 58.10740659020059, 51.53878805094265, 72.39054757227527, 13.137470728715147, 15.723609388609777, 84.16701055868751, 8.005638352541485, 36.12171743333506, 37.28588899856597, 47.50721944425422, 12.989484599258834, 17.12050186823373, 23.8324167686456, 13.705453279177364, 62.23102751532227, 6.6341513531697585, 49.67806587787904, 29.190069800873722, 36.08604455641559, 25.947540612785797, 44.107357443383336, 10.869982081058401, 10.028035331250491, 21.373575069370116, 22.842409802637484, 65.1327575821908, 100.18872909773438, 19.886849698620495, 107.5564004314543, 10.948258508353106, 6.596693921175543, 9.00265611449914, 118.45233068004522, 8.46202852709767, 23.48002404517322, 42.59656071938276, 7.048981847241163, 17.872365877594294, 23.745069780038943, 30.52648605929065, 17.363508348754802, 15.6656699085055, 9.980415981705873, 7.121288312700031, 67.79250137688759, 28.830215764971328, 11.937427092988123, 34.8787657946197, 11.51742361917995, 9.27298818081074, 74.14477456861378, 21.82318600532416, 6.469860663266366, 6.767059290542962, 53.30544419399539, 5.239255617851652, 5.724958027906494, 10.524309431257308, 9.150378501795188, 27.106729503669772, 6.030930715857904, 38.81951258672008, 56.48159797577688, 35.70474475358808, 7.443296805478013, 8.081703414108091, 48.877373494254314, 43.36669112638934, 35.02123887731956, 7.091554436798191, 11.377400256794402, 43.7562229285182, 47.923824364558214, 16.539990988776317, 45.03740987274425, 38.72499625619453, 88.75246934065102, 90.4131529696868, 16.657445235548245, 5.490113008136558, 107.9655566401656, 41.32796397871126, 95.07708328390383, 5.393601373427589, 25.614652716052873, 40.836191541709866, 19.23435155840435, 26.635249208215164, 219.21795363649804, 5.541475324793284, 7.067312322808766, 9.645292970431681, 5.077203900159608, 21.973308663305968, 20.20686178093731, 8.491612033068282, 55.02875144755976, 15.141255236913212, 47.41813766823519, 78.37628369779019, 11.75586631844443, 45.12106639539209, 6.877248906000796, 99.39376251704141, 11.593485753163465, 30.59449483056698, 59.44589899306587, 19.71526896285829, 91.57200992192696, 48.65171025005172, 25.892550171404533, 61.66514367137449, 61.566009592334815, 50.776510938609356, 54.99437419637784, 11.93137256807514, 5.095587454464317, 20.769788072673585, 17.442196009649415, 88.44850336953947, 97.6114267186956, 65.49622510530122, 28.667219765086998, 24.95432016404755, 18.63414635718186, 31.333722826581514, 31.770777830710013, 59.72634800100859, 10.900648459613471, 90.6334186120377, 64.07740405807115, 6.326387005790463, 11.079319533783593, 12.701657972391558, 7.312171044331747, 59.5389073005671, 22.313182297645987, 85.10107585742405, 56.553405654784925, 71.7007632363085, 5.5912928916428735, 49.085722146382025, 11.23312918577695, 6.598166924142652, 88.60877714878531, 5.780919735240292, 73.81087531597738, 40.93448208547633, 173.6245600397033, 12.125087241670029, 72.01444008334184, 32.38015850630286, 58.887258958840754, 11.28067974069505, 29.13781704672598, 88.25809663628635, 32.923317699817744, 15.280859872587236, 46.359451350826376, 44.994780183781366, 39.35770615630581, 23.684564234882348, 74.49801098834004, 6.63454052488975, 71.34761046044508, 64.70248711545698, 7.5264112177903275, 11.435525941686379, 43.41553775935272, 9.168637048336437, 5.580107598842811, 16.196774823472587, 41.96243772345283, 13.781466659876923, 54.48054038854012, 36.09370023697221, 5.3117657813840715, 20.982960726831834, 44.06618903636201, 32.53813434326859, 58.411384218611644, 49.76681551962175, 16.361725707041003, 29.437435624247755, 55.3606535720524, 17.128670098834384, 57.294783181562906, 13.86320900400374, 72.00865682780287, 21.09499041704913, 77.97832302386598, 32.92287160437883, 30.10371992090582, 39.44274259780419, 8.263733868401237, 23.199306516614648, 26.982806331089023, 7.468257340458156, 5.6685726036595385, 58.00267686080116, 25.343120253748957, 13.520968090766926, 19.339429311450193, 14.731177380104128, 36.55864732618588, 26.953389152177834, 30.925714083581457, 16.435660927387097, 7.0587272116040545, 9.920841235862984, 71.28295110689152, 48.37104143675542, 42.68286834370141, 70.05025498272613, 19.692734241397943, 29.885033723484778, 31.53119815323464, 51.10827509150099, 21.21030684679611, 30.730329117846157, 70.45374292547912, 40.373628342924555, 15.826694228188595, 8.16719559538222, 67.69480379528616, 50.33836754714425, 14.697761055803067, 11.518169849870729, 7.709866866068149, 5.4943753505807935, 72.60713017145572, 49.4980483632012, 87.27738368870529, 29.76495969467374, 36.85606742831723, 26.04807290756515, 14.592799174497177, 6.47602084736118, 26.73508980113317, 12.36239352279895, 49.86421760459904, 14.09293633616799, 46.52599925654186, 31.703725225400305, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6888318.75, 6987249.890429264, 7148619.361507741, 7179600.441178366, 7222442.662038474, 7238983.462394515, 7242315.534799793, 7246400.0, 7282042.226404844, 7282762.348004964, 7283567.1875, 7288232.760807004, 7291101.226032964, 7369209.365105971, 7416728.1958717825, 7429895.028359425, 7432978.041775772, 7435443.099264942, 7442602.434041161, 7458418.148709831, 7460943.324585341, 7464919.676511728, 7468632.8125, 7471762.041664162, 7472993.224713975, 7477128.995698111, 7485923.248121899, 7499279.6875, 7501148.555055144, 7501594.871092593, 7501763.345901539, 7504037.5, 7506021.39524929, 7506786.585513622, 7507891.77239736, 7509232.578236912, 7509678.125, 7509706.121722595, 7510440.236063635, 7514766.499206264, 7515068.53054033, 7515493.693448111, 7519497.682896868, 7520845.3125, 7521019.1930497205, 7521894.127226286, 7529569.176483067, 7531522.631929548, 7561615.2898011245, 7564043.75, 7565580.157743728, 7567784.608502619, 7614853.125, 7624323.4375, 7624363.31878517, 7631178.729754526, 7635689.476365765, 7637458.994802111, 7648408.497637234, 7663131.169956592, 7667133.948721268, 7677724.983135648, 7679728.125, 7684640.122120414, 7694725.097332549, 7698014.519945896, 7751143.75, 7768573.785679477, 7769973.4375, 7781786.088359193, 7787047.438942813, 7801563.443858465, 7805102.042836102, 7811134.591037795, 7878418.448392018, 7890041.260719886, 7890201.698859157, 7895450.142539734, 7897033.209979254, 7898990.806040144, 7900998.678428545, 7968491.875169629, 7972476.677659645, 7978174.267119678, 8001454.062580362, 8012464.527183953, 8020260.890210807, 8041976.927142017, 8045890.625, 8096453.125, 8104092.377687549, 8104847.270308237, 8126092.801301591, 8159381.829011642, 8160202.215027047, 8171034.476414098, 8202906.993471413, 8202929.096248385, 8204600.568275867, 8207916.63896531, 8208483.1601128215, 8208934.910426251, 8209581.25, 8213228.166622023, 8217447.258847086, 8222917.477640515, 8234077.107050583, 8236167.1469195355, 8237318.587638724, 8269565.5674996115, 8275896.875, 8277007.926384007, 8277015.510438198, 8277025.721419738, 8281478.125, 8284073.4375, 8285911.066204164, 8285967.0765080135, 8289796.072079742, 8308084.509953338, 8309022.11594354, 8309145.716505481, 8309217.571931377, 8311246.660969725, 8311514.0625, 8318482.8125, 8329532.312484165, 8333121.249926588, 8334165.412548128, 8354955.6057588225, 8361036.896127208, 8365404.317264255, 8380133.240558294, 8388110.569318017, 8399201.5625, 8407285.960514842, 8407554.333711572, 8408156.274735129, 8433044.811435906, 8434715.38205139, 8434767.523854777, 8437297.047452148, 8439200.525358632, 8439208.280490078, 8439837.639447534, 8441375.448923323, 8443510.852178173, 8461370.007830229, 8461443.082017798, 8476073.4375, 8476649.3411095, 8489417.080383888, 8489441.80003542, 8490291.845558338, 8493090.227862144, 8493224.489801176, 8523152.890268607, 8534453.101585932, 8541536.387312977, 8541781.25, 8543233.252603363, 8543540.134887496, 8543741.217293475, 8546619.783373805, 8561069.932023162, 8603007.8125, 8603397.396010615, 8614147.503885476, 8625539.21284185, 8642187.5, 8667965.5789095, 8675388.379737033, 8677492.1875, 8735535.9375, 8795217.044520956, 8806792.665889123, 8807683.18067558, 8885267.47642773, 8926936.271561341, 8934967.111375831, 9001858.801842893, 9007114.652697371, 9053530.289810652, 9097013.48968767, 9098904.505348444, 9197855.359697489, 9308791.231976753, 9320094.232286027, 9328230.185349818, 9344100.0, 9347114.778785223, 9354501.5625, 9382188.331046958, 9398439.836823542, 9419560.808843786, 9422982.179710075, 9458294.830982022, 9525407.8125, 9532909.22884327, 9538074.273040392, 9542298.930557111, 9577255.312356014, 9607257.8125, 9607703.125, 9611077.918847632, 9647125.195695704, 9652359.281446595, 9691684.375, 9712932.049714189, 9713377.956533752, 9713642.729349583, 9714194.45241508, 9757023.504800096, 9801425.0, 9813103.136399567, 9813416.990305383, 9822856.440348873, 9867739.960000148, 9874920.337278713, 9880174.828125322, 9887701.356862606, 9889614.719758123, 9895448.192797204, 9896392.255989207, 9899707.8125, 9903485.922681712, 9904647.60437386, 9905276.5625, 9937668.787864015, 9937749.071040168, 9938948.4375, 9941064.0625, 9942244.139276825, 9957063.342067793, 9968229.493882302, 9977695.231394127, 9978685.9375, 9979963.385252178, 9981551.186691733, 9982907.152985297, 9995264.0625, 10036932.250742255, 10108719.793622073, 10110384.598324403, 10114719.305370918, 10135601.053755617, 10144561.239232542, 10165743.365066286, 10175904.1497502, 10182612.5, 10234251.355262011, 10272030.96625148, 10273030.607457362, 10275384.122854494, 10275387.431514522, 10319335.9375, 10343873.4375, 10370247.745579217, 10376617.710020402, 10378071.778020319, 10396904.099436356, 10403682.165614624, 10415033.21380195, 10461718.586238494, 10481943.495329484, 10501516.93523078, 10504482.8125, 10534553.607161405, 10534621.875, 10534639.0625, 10552888.474686172, 10560547.563118812, 10562053.558557373, 10566325.0, 10575516.817292657, 10583763.213021092, 10589970.799176287, 10607000.374554304, 10618153.82091169, 10618590.421662023, 10624962.322830671, 10625543.35684923, 10627488.850111065, 10664548.4375, 10675830.176084587, 10718855.521721909, 10727194.198195338, 10735830.772890246, 10738460.978649018, 10738474.14105928, 10785829.69095709, 10792646.875, 10828309.752784766, 10837765.336818783, 10838324.852736467, 10839911.382795924, 10842824.150408339, 10843583.926383218, 10886513.487847742, 10886781.657451969, 10890592.794794064, 10892393.682304045, 10898584.375, 10899022.236095224, 10899578.127893532, 10935776.297675097, 10942925.0, 10944286.767940149, 10945290.062720785, 10955653.015848367, 10988614.389877701, 10988620.1978414, 10997531.914176682, 10999951.5625, 11013916.951500898, 11015001.253562583, 11060566.423988683, 11065239.382696707, 11091172.160351751, 11112232.864618635, 11132489.960395515, 11147603.663588883, 11163991.38323551, 11174411.936257692, 11184265.00073713, 11189860.485791292, 11240740.962202104, 11250067.699766986, 11276370.3125, 11315636.065226933, 11315636.422320887, 11362159.699140565, 11372689.0625, 11379111.800387979, 11379807.8125, 11392778.125, 11458976.592147296, 11477550.0, 11520017.519559015, 11521525.141547434, 11522675.815419864, 11537075.43577178, 11560771.089885803, 11572126.5625, 11635387.700793345, 11638223.4375, 11662954.819690118, 11756425.0, 11762187.479281565, 11790005.588977858, 11802546.440521006, 11837999.034008138, 11852168.99169287, 11854292.1875, 11863426.5625, 11924501.276727984, 11968506.767835727, 11989117.1875, 11996367.895317905, 12108484.126530966, 12111816.742894927, 12179055.039584616, 12214814.600380803, 12218223.67290411, 12218225.532712026, 12226123.199764173, 12241255.999270435, 12249051.680303963, 12259020.203114374, 12260866.859498667, 12271950.0, 12321283.190468824, 12341700.60603369, 12364935.91597443, 12404294.182764051, 12404319.448579807, 12411586.012398697, 12462067.1875, 12549806.623481376, 12650698.615982125, 12651918.688985212, 12678710.617567703, 12731449.348020261, 12749836.830241319, 12756825.286952939, 12834959.0975928, 12875973.727983445, 13102766.440678526, 13236579.6875, 14002764.807684269, 15409325.635026092, 15525122.44816432, 15538663.959341988, 15553577.200270807, 15553583.105729185, 15571998.869991537, 15579073.12409298, 15585817.19800235, 15597523.4375, 15620193.75, 15620245.29494314, 15620739.33906246, 15621928.125, 15626204.291892873, 15626494.71905008, 15627788.351440426, 15629140.002484385, 15636286.850008318, 15640064.0625, 15644557.431843497, 15645213.245377228, 15645896.242948709, 15648799.27803994, 15650199.026565157, 15650983.901684802, 15651002.668826306, 15651653.055653824, 15651705.400405832, 15652785.492210172, 15653039.579601143, 15653080.513266318, 15653477.969750797, 15653902.662259694, 15654188.847406646, 15654237.428798737, 15654596.479848431, 15661060.9375, 15662465.625, 15662568.272830263, 15664782.665280037, 15664993.986496741, 15665168.700395564, 15665417.154345026, 15666286.608489059, 15667853.612591604, 15668635.663308578, 15668752.856864288, 15670763.671070842, 15671320.718809204, 15671658.864219606, 15672464.948515514, 15672532.114209792, 15672850.687682085, 15672918.289759843, 15673409.131120924, 15673561.06359319, 15673875.722711269, 15673957.427023781, 15674331.033836123, 15674611.534994237, 15674829.083501616, 15675060.667451808, 15675096.216463756, 15675420.3125, 15675698.649589071, 15676438.61336769, 15676454.015878256, 15676750.736858347, 15677036.975328166, 15677109.435016857, 15677146.943110708, 15677248.374432562, 15677984.193868792, 15678429.6875, 15678551.97520661, 15678552.765767012, 15678859.118880473, 15678891.043448403, 15680373.4375, 15680470.967186935, 15680501.354906723, 15680584.375, 15680594.72471437, 15680617.526959822, 15680839.0625, 15681439.617158627, 15681789.96637932, 15682422.638628302, 15682565.136641622, 15682793.75, 15682905.657773644, 15683055.093733624, 15683078.428315083, 15683150.855540767, 15683703.125, 15683727.707135478, 15683829.36015787, 15683873.186237143, 15683996.239919996, 15684577.7664598, 15684632.057035562, 15685064.651508177, 15685149.757169439, 15685233.994345898, 15685344.721845394, 15685628.125, 15685643.49239944, 15685861.512839602, 15686017.391530553, 15686337.5, 15686500.316284936, 15686885.803889038, 15686976.439313054, 15687059.375, 15687230.19678999, 15687361.882540157, 15687541.868306166, 15687719.965865392, 15687891.405193247, 15688010.852038164, 15688049.857641932, 15688077.84418615, 15688181.25, 15688298.642771415, 15688339.484037103, 15688538.088823158, 15688736.093518376, 15688815.911290102, 15688908.441799538, 15688925.061334927, 15689182.791317971, 15689327.352186048, 15689356.836648624, 15689438.39965429, 15689497.359358383, 15689504.6875, 15689712.936804375, 15689751.618780283, 15689794.89114412, 15689982.777909646, 15689985.725170929, 15690040.767794805, 15690043.88790327, 15690237.5, 15690313.716780473, 15690462.5, 15690506.181230005, 15690543.75, 15690778.125, 15690790.625, 15690850.0, 15690875.334523233, 15690909.3235515, 15690938.091831677, 15691159.081423929, 15691235.77354326, 15691251.5625, 15691467.912781408, 15691542.743972717, 15691610.980205685, 15691656.155531468, 15691728.125, 15691800.06500458, 15691816.775502514, 15691829.316700092, 15691880.203321457, 15692180.588454572, 15692326.375087973, 15692340.625, 15692348.911274834, 15692356.696575083, 15692640.371185157, 15692642.1875, 15692671.847970603, 15692745.072793, 15692842.1875, 15692868.75, 15692971.675025204, 15693004.6875, 15693034.788415888, 15693213.708624242, 15693642.107462863, 15693690.347592536, 15693732.939829756, 15693837.276284594, 15693872.521795513, 15693903.112915628, 15694023.4375, 15694046.287369283, 15694063.913822424, 15694073.41557119, 15694073.4375, 15694102.724323379, 15694178.218795247, 15694179.849476827, 15694246.245808452, 15694389.89122893, 15694752.583436828, 15694793.183422456, 15694804.471164824, 15694898.921202363, 15694930.238684518, 15694931.76076911, 15694964.0625, 15694975.0, 15695075.0, 15695119.136715913, 15695174.21992692, 15695212.94566393, 15695231.07081198, 15695288.297312802, 15695302.549729744, 15695330.496401077, 15695343.920433521, 15695415.625, 15695448.4375, 15695546.15362629, 15695556.25, 15695601.399489282, 15695608.404366322, 15695615.290750572, 15695634.007075462, 15695642.810577082, 15695684.506685492, 15695768.039752707, 15695782.330024637, 15695789.139903115, 15695865.14181652, 15695866.894747546, 15695884.375, 15695905.772395395, 15695925.0, 15695926.5625, 15695984.375, 15695992.1875, 15696084.19338842, 15696104.684787473, 15696121.340029065, 15696173.698216079, 15696287.404948846, 15696337.94292525, 15696450.869073495, 15696724.147531943, 15696730.134540163, 15696769.180295968, 15696917.704132255, 15696958.670155339, 15696962.5, 15696965.65567615, 15697035.687325953, 15697065.70592956, 15697114.868703168, 15697115.625, 15697140.388725584, 15697163.91801381, 15697249.592825497, 15697284.279226173, 15697340.488503885, 15697345.3125, 15697420.869168296, 15697426.968812268, 15697493.17295858, 15697494.421586633, 15697557.508915037, 15697700.590035995, 15697701.489799608, 15697716.102792826, 15697742.604601381, 15697783.714307345, 15697842.988513445, 15697895.2785518, 15698010.9375, 15698087.5, 15698096.888718726, 15698115.650974693, 15698116.040377004, 15698227.892241495, 15698374.085621145, 15698415.625, 15698435.261783898, 15698493.75, 15698528.125, 15698535.562827809, 15698575.0, 15698608.535424938, 15698611.97566554, 15698618.397007104, 15698625.335201532, 15698640.439789029, 15698643.526027627, 15698648.494856171, 15698680.819282724, 15698683.021881938, 15698691.161018018, 15698743.877303028, 15698844.727006827, 15698846.875, 15698871.623689054, 15698892.1875, 15699054.439428274, 15699070.3125, 15699108.769469641, 15699115.65606952, 15699230.83326691, 15699273.4375, 15699312.950854994, 15699376.344567716, 15699504.974710014, 15699586.475215849, 15699648.455107652, 15699696.595765926, 15699724.007074213, 15699726.773422657, 15699753.62232225, 15699773.4375, 15699773.670951776, 15699794.18037734, 15699817.1875, 15699894.128599951, 15700040.763236752, 15700059.821381504, 15700067.198729359, 15700078.659330465, 15700126.483184764, 15700164.832715131, 15700229.6875, 15700231.25, 15700243.753821557, 15700282.578551454, 15700292.1875, 15700293.700820753, 15700305.649609113, 15700309.375, 15700312.304721622, 15700418.82044311, 15700424.550141523, 15700457.785481866, 15700514.0625, 15700537.089086132, 15700542.1875, 15700544.130819438, 15700585.564336034, 15700663.241568971, 15700699.775482029, 15700721.469952414, 15700729.03501016, 15700753.393970126, 15700778.50545473, 15700895.158441965, 15700908.979166731, 15700916.639081212, 15700976.5625, 15701001.258999141, 15701038.291752983, 15701067.1875, 15701309.37720877, 15701352.64576287, 15701371.187522821, 15701379.067294972, 15701508.742851196, 15701573.4375, 15701784.53061735, 15701831.25, 15701879.600015564, 15701889.26674041, 15701930.421017444, 15701948.4375, 15701954.918504266, 15701955.513950448, 15701968.179670556, 15702081.441099979, 15702098.4375, 15702108.803064143, 15702170.3125, 15702259.505505426, 15702286.711556692, 15702325.934832236, 15702369.224243367, 15702418.456367262, 15702420.84695663, 15702429.343182422, 15702439.940588774, 15702443.37368414, 15702498.4375, 15702564.0625, 15702568.604497524, 15702578.839858951, 15702640.453611694, 15702653.848035853, 15702685.425434109, 15702707.437899698, 15702760.9375, 15702810.9375, 15702824.768169088, 15702838.97001973, 15702884.479672013, 15702894.415277397, 15702982.396315068, 15702987.264810557, 15703025.317671128, 15703211.301397286, 15703219.382999962, 15703274.716947423, 15703291.340452375, 15703369.81859037, 15703395.05749097, 15703431.76729907, 15703436.115347832, 15703449.116794974, 15703456.249378573, 15703468.746799262, 15703509.182621555, 15703520.775349058, 15703534.15590741, 15703534.610797593, 15703592.117597843, 15703600.200885462, 15703617.119393326, 15703654.576694535, 15703657.830269434, 15703684.375, 15703715.413191164, 15703769.032223793, 15703777.701322064, 15703846.65286002, 15703857.736506172, 15703880.681709817, 15703934.235387705, 15704018.571473667, 15704082.235931924, 15704116.72252238, 15704213.65388815, 15704230.193366723, 15704293.522835147, 15704345.058550796, 15704443.635031793, 15704456.404081093, 15704489.0625, 15704576.5625, 15704889.426948125, 15704928.125, 15704965.198687032, 15704968.75, 15705012.424725272, 15705037.009287117, 15705086.581705393, 15705119.663198482, 15705138.765843954, 15705212.5, 15705279.559452968, 15705281.448627518, 15705367.1875, 15705567.989241235, 15705585.159610325, 15705626.5625, 15705745.484265134, 15705749.78996193, 15705756.599274196, 15705845.764226597, 15705866.734327931, 15705891.464062871, 15705922.243591849, 15705936.837367274, 15705968.80143685, 15706048.4375, 15706053.125, 15706147.242852652, 15706162.378136007, 15706409.919226747, 15706448.4375, 15706472.153865118, 15706516.45010899, 15706523.581576293, 15706528.795467364, 15706551.812485434, 15706603.125, 15706785.78851439, 15706965.145567095, 15706967.1875, 15707003.111893019, 15707090.625, 15707117.647254407, 15707215.478691546, 15707304.111799931, 15707355.218398675, 15707356.25, 15707489.0625, 15707655.805251298, 15707656.283569539, 15707828.021834034, 15707844.4685961, 15707880.979312673, 15707905.177352954, 15707930.856689373, 15708185.787210405, 15708192.39238604, 15708344.402133478, 15708462.954542754, 15708592.156321183, 15708621.1300017, 15708703.804029202, 15708743.365843462, 15708760.295224218, 15708912.5, 15708937.094083607, 15709003.125, 15709163.643795753, 15709268.75, 15709325.066415, 15709347.548779288, 15709408.83968546, 15709554.230458345, 15709801.782620788, 15709885.165813865, 15709942.237201195, 15710036.493882231, 15710076.5625, 15710159.375, 15710200.303821092, 15710209.470711458, 15710309.375, 15710319.236474741, 15710446.875, 15710773.523771977, 15710817.1875, 15710825.0, 15710829.420705225, 15710832.507301489, 15710851.5625, 15710971.19276341, 15711006.047243766, 15711012.5, 15711031.03247052, 15711051.750894101, 15711151.5625, 15711266.988520239, 15711305.619829573, 15711358.106978001, 15711358.481456779, 15711511.657188041, 15711623.4375, 15711652.838502156, 15711708.467747394, 15711916.494997531, 15711984.375, 15712032.047506351, 15712040.625, 15712066.33006533, 15712118.030223062, 15712121.875, 15712200.635006294, 15712330.163217176, 15712421.495485624, 15712426.247574486, 15712505.245009046, 15712522.308530567, 15712540.868331343, 15712592.1875, 15712630.779392663, 15712761.526663586, 15712915.581551436, 15712927.780568123, 15712949.916915039, 15712983.98571472, 15713183.757804992, 15713195.3125, 15713570.629749574, 15713707.382161073, 15713933.628113152, 15713976.50620033, 15714016.292130344, 15714016.695974978, 15714023.101726685, 15714055.031098705, 15714127.88088787, 15714206.873522032, 15714254.6875, 15714324.604192648, 15714505.647153426, 15714509.375, 15714545.188765645, 15714553.125, 15714578.125, 15714590.625, 15714609.967693789, 15714639.0625, 15714820.82806408, 15714835.249657802, 15714973.362496017, 15715060.704712182, 15715148.365321064, 15715388.740074614, 15715421.727566086, 15715661.17372455, 15715670.597995494, 15715760.113344185, 15715917.785931634, 15716184.375, 15716209.375, 15716255.3713672, 15716504.434612095, 15716611.192840284, 15717025.97335751, 15717162.4290141, 15717419.642791431, 15717445.980897283, 15717550.0, 15718268.50800347, 15718525.0, 15718846.404184848, ...], [40.95288773055132, 93.40616915896481, 9.908172247943321, 19.188242341874286, 17.12213659057786, 57.196961179423845, 26.859810124079697, 54.140001752128875, 14.75859614379086, 67.28884264861463, 33.020193849641274, 22.697354546955943, 8.116317000466754, 8.281352118806355, 11.240320866879784, 38.23076021374394, 62.07930808262842, 20.110603499319158, 41.061959765549204, 20.538874695850566, 8.073732597249915, 20.23594595944409, 124.27920651262114, 34.87679549687952, 16.90973394740277, 6.383850949474664, 14.265687498889823, 120.53290301271913, 82.7896670230677, 22.098207291764385, 21.05595327019902, 57.56480967911992, 32.62535465880933, 6.352695516322354, 22.383972230278946, 24.62839957381254, 52.084400682633515, 10.93295090657058, 23.95842972411852, 19.80011867132949, 24.83710031561927, 14.730253877190723, 14.384058266761608, 40.42001787857259, 8.535641804742074, 41.71053824344131, 16.861333694426143, 12.560434484925933, 13.801256808733452, 31.561870021915606, 17.09838730857625, 6.811036444035127, 118.89809959489432, 33.73056739712469, 43.41233058016611, 8.634553443658717, 5.976276443471324, 40.68312717874508, 9.98673011258203, 14.644952768890878, 13.532590151306884, 34.52784324336365, 43.69639463579459, 86.06594207931907, 73.16550078383904, 11.926862363250637, 52.18795971622376, 11.719344981210538, 29.924680508480648, 29.773574948729408, 25.055678176712284, 17.03412817885939, 270.58123448777576, 76.88159863922861, 5.597573561273269, 9.93376286688327, 5.403712625101678, 15.514139647849948, 28.959835163385, 42.55340526133894, 21.38280600178804, 14.716504515670547, 19.43534815537012, 98.88739975521909, 20.331341939579318, 11.941021527856504, 35.16704809028437, 102.97683403186393, 105.1261763284252, 110.39271649479774, 91.1655248978314, 54.823920884066716, 11.976005092793963, 24.31492535932839, 20.382317013465777, 11.266436168741269, 5.755766682873402, 31.160539958097985, 13.928434914644903, 13.19505779312839, 5.47688692954124, 41.71225450691827, 141.7995875350059, 11.193393954964009, 20.8853834047297, 16.176133033888895, 7.812828282393353, 24.673612562192968, 35.73641365259558, 27.436390194488858, 37.42790080252414, 25.50088134353354, 54.524430655676454, 14.65250614552565, 39.60906931003951, 77.28248361788916, 5.467317915000434, 26.50793391755463, 29.15170430673094, 7.652788341574585, 22.10678516790043, 16.939863738286952, 5.97359822760037, 68.24574334802024, 70.54639391014241, 98.66628022737738, 40.954480454574885, 12.996072864819041, 32.725626566532696, 66.54342892016666, 112.40709374769224, 86.40652313602433, 7.238712789272745, 23.115765446850933, 103.21077991141385, 133.41859730983458, 13.74515400984361, 69.53057427995832, 86.58615698362391, 56.03914093850479, 8.472834148377432, 5.1693974352715015, 8.585412933119706, 5.358217880721225, 6.284978797927501, 16.981782978280215, 46.72390863238607, 13.894858867379696, 5.186731354505999, 63.22756303552695, 8.83017902927366, 50.525050567914874, 22.69429800193478, 100.2266336712517, 20.47156505989673, 39.71738233159326, 10.779612290121069, 36.173608874984225, 7.244936437592958, 75.10478536670928, 55.85037427363212, 58.17450207397844, 77.5200968941764, 19.79914864468096, 22.774455379300992, 42.25743604929624, 65.91468012113928, 50.281394103606516, 15.547273730767138, 33.988700137899144, 27.64458502998568, 19.845070024360467, 36.691277086102694, 64.86997224265868, 40.733355755219236, 52.717584506318964, 21.748884248200724, 17.989970430725386, 20.303171776295095, 9.267854795574895, 20.793094637696452, 225.4669403435569, 68.40314809989209, 13.1309578057695, 14.640212656086891, 89.18672326945196, 25.08384294995748, 11.975676338175301, 12.995290888869711, 49.53702879145902, 5.112819707167272, 69.16195083627791, 7.934270714286412, 6.928609961258526, 14.591815432104074, 20.201851901930883, 32.87812349540765, 87.25262106362128, 40.36742343206116, 39.67310338974213, 19.314722331051065, 47.98016197333877, 71.57558204161715, 63.12966433398572, 9.162967677960562, 6.108689049714793, 75.47979673878082, 55.055970593382064, 10.113480753297567, 40.62773530309605, 100.59527828010778, 12.43735026612406, 28.073255393729365, 111.92102620153683, 5.614675103124015, 35.85525025188167, 29.918221288547976, 37.75649111818932, 5.534284340527355, 37.29949989591421, 34.64947823306499, 12.338149427334502, 96.06384214704853, 7.139572526084087, 37.042719509259484, 53.07283227218418, 67.82680672925497, 80.1403729723193, 15.08782038260296, 6.350703341504258, 59.38804639215898, 58.71905523373299, 5.048165566739619, 47.19545467552771, 63.49455586591951, 11.003256227918, 56.63457999024508, 12.865476629381687, 61.56260994473875, 25.372943954028578, 45.55129664767314, 51.7001116170094, 144.6048117782135, 9.527655753448474, 17.58621370009544, 81.0315078411764, 9.60026793187255, 22.7232492851231, 13.733445852144797, 54.771934614644266, 71.15650416070254, 23.960575460281273, 72.70160410134534, 104.54573367771052, 46.70494770628256, 35.93183485142346, 30.615802793001183, 57.310858648017216, 7.803828512390373, 26.743854716156775, 19.943340678587163, 6.023316644995238, 6.846358232060869, 60.840949539253685, 24.347562862210527, 24.38020410796528, 54.128692494815354, 83.98870457040157, 32.767996957475006, 55.62986890342443, 52.477809715455585, 36.93756237482111, 115.83264985478013, 107.25189154219683, 13.696152401199896, 12.461007292762089, 20.369779216435212, 28.72844457895774, 7.875948424480132, 5.3350019820155445, 118.01575913882253, 13.628527407699806, 38.38708577696015, 85.44465364312852, 9.78177842374054, 7.935664092027046, 45.58348347760275, 21.724522697382124, 90.04671057266702, 33.67900695580617, 17.95452174730859, 62.018348604976715, 86.27662628353501, 78.8040237616193, 33.24041722385044, 44.11620295744791, 32.30886474817213, 24.148512503749984, 44.01873106060238, 16.760967025446966, 73.26853064948745, 11.023517014057246, 51.45944195716085, 58.39074841535499, 14.952549687578221, 5.450513614456218, 179.3172782695001, 19.45339295178324, 28.26828592699966, 62.59642936420862, 40.477114298384194, 26.447018100822135, 12.353190228069025, 73.78621023517378, 24.604203031102816, 13.88166313077275, 67.26399306611047, 6.829160526440703, 9.58493064632928, 12.80570980287806, 16.52841193964071, 9.832496231528498, 120.99661783476859, 76.91147665779565, 73.50588831110929, 5.154973410837674, 49.54643623633085, 79.52827302155724, 111.15070965532068, 36.98278640302523, 28.628749268608374, 98.56790357228192, 139.85639764931398, 6.382741963067457, 31.89368621014325, 45.09572259874131, 68.39531438640864, 44.803394318804266, 99.9868269239471, 14.620000330981416, 19.337954996405617, 6.557643144828321, 43.21604487189528, 34.3985086557223, 11.456766818323551, 60.26833956100544, 15.470487863559514, 66.14887059041118, 97.70905092872067, 111.19797387069956, 28.036169209300123, 12.20846449076246, 26.924553373585482, 107.37186683939642, 48.63679333095013, 23.934201865391447, 26.111091484270343, 65.90273678379884, 35.13549565348427, 24.432078858180212, 5.901599783840963, 75.02119843887434, 39.0076308399167, 59.144684024839336, 17.452759984821746, 64.59387878868391, 28.741430269758798, 5.071044794498227, 14.540353564587283, 36.21861721958474, 102.92561540757379, 71.12451344415186, 8.635354463045305, 14.860093896713614, 120.01114475560934, 62.6541035371059, 27.481329161683504, 29.44324580229762, 69.44142924009432, 15.668429644240444, 14.713939994499455, 103.46213463568691, 59.33991185844138, 84.07064643825132, 28.7993570251849, 24.04368799389634, 16.177762395242283, 19.339928008260966, 50.1296463251229, 17.28628451689132, 18.07771061021551, 8.614865785204003, 10.970203704676173, 19.560954338565026, 11.619213924257387, 59.56920279341096, 13.86788194456155, 17.38767729268179, 40.51825201993298, 29.90340786123779, 5.8126823497506575, 5.299707209951299, 47.14081873712684, 20.39549959041461, 17.76540038051373, 10.172585035252856, 13.00257812600695, 12.933205383334107, 49.80816002056352, 8.095040314405336, 6.922034822067353, 10.265234202634874, 6.180098634466711, 35.18319918843851, 108.75549757927904, 8.973333096065543, 69.85620932970204, 18.594832926729925, 13.47842413086989, 45.62236772827824, 6.178398265581321, 25.794363680815316, 86.38890480757702, 9.15591914686604, 12.177237661115004, 7.4663085274468255, 73.49920513342725, 66.46971163811106, 21.723908097197043, 10.905134088384347, 67.42229228397005, 14.755752229418407, 20.446797958689682, 18.311764391264518, 82.81188945013939, 22.177102111716614, 68.73688269730394, 38.13149706509264, 26.58152900353164, 34.90421882291391, 91.53113976186035, 19.719529974481194, 7.87245767505287, 25.90135907599981, 14.08686707284004, 5.823369367665305, 12.482742632452876, 28.104176161877845, 24.266388066516036, 9.893467537072858, 70.81262488174947, 24.141025740962533, 22.412612789085543, 33.13348944264154, 5.625886166062858, 19.343631523025653, 7.960711349582221, 19.67109694568166, 21.250466140023125, 11.629052584314831, 15.207629984199043, 5.289143115843346, 43.84560603176311, 62.544983483015, 6.553793055030411, 23.022503302055817, 10.749660380994948, 55.144915900857825, 56.839954674106764, 52.0683487945849, 41.27697978386156, 57.539782257535435, 101.1869634817431, 7.730808960227691, 43.1722184211351, 17.581977213337957, 12.91164712448494, 6.613851963955321, 41.55777273820744, 34.166929312856126, 14.913307304976119, 44.20355983175428, 99.63132083144002, 11.965513517793333, 81.2106307685054, 24.701189413080023, 20.034794457878313, 24.472448043679194, 10.261628391600576, 46.95124112627577, 41.455661757601355, 12.192745016390909, 30.094092452196893, 84.51306974534901, 10.314962333984466, 42.4671288049523, 14.042856542685172, 12.16425737720736, 6.109576740561178, 49.369941530791195, 20.38350103638255, 14.455581457682698, 36.9326032134127, 36.12788003575685, 6.333761724497412, 6.968078682995554, 49.495666164029345, 23.17278270245279, 24.07267858742251, 65.71972453152281, 39.718260415988524, 56.20776500707686, 61.44606198354716, 8.398195534534857, 16.835093929898676, 27.250532846152915, 86.30806262162949, 7.198798651983307, 18.04116275766896, 49.35248471587899, 7.115894656315024, 59.80759462651291, 8.623247372782787, 10.228775413030146, 17.17677270553516, 63.91212080554469, 16.91644763272164, 59.00628119099668, 34.35328944295884, 35.2522534301989, 14.189590880650334, 24.509941913124806, 5.4037722421638765, 42.3534826250931, 39.775638800665824, 34.60353062172897, 27.234374124260746, 79.09596783016565, 55.47354062330648, 49.161193417570765, 60.73945309616221, 16.390802627165943, 27.546352872696623, 17.806751640386025, 9.094920403249501, 7.079009218339189, 34.783347687181816, 18.68061226727513, 78.45334602706437, 7.618756976901013, 71.56960109953071, 55.10150981081016, 9.386979777612169, 23.276338779242195, 16.26766301550348, 12.042582366343773, 10.230305800733483, 11.634406064647608, 39.71257888883025, 17.117907312945547, 16.969070250882098, 49.47170944998838, 118.45516794808495, 25.103833927781828, 32.32546962507012, 53.46124354905346, 29.630345483623817, 19.019234468514735, 85.05983872941238, 5.7335839463463, 65.3741328095156, 27.035903810225488, 73.00752297800709, 8.355079091842555, 5.160183939432229, 5.565317180463744, 14.895648638886074, 41.31149459196195, 42.467545153886576, 25.89740197791898, 6.264431790364271, 42.8573504674291, 74.55457738791483, 8.33680854569838, 11.390691033673535, 61.723556611621476, 12.728368685857417, 8.911935902914209, 10.344270679047781, 25.605601212811305, 46.121053273933846, 5.742758393737405, 12.032427624285075, 102.04824986923246, 86.40001390471022, 42.66656830456111, 16.653424017350257, 5.496382139658221, 128.79471593506443, 6.728252678976276, 19.518983799685373, 31.48384118456976, 19.288401862650577, 53.40294824780097, 30.252686456114304, 68.65280110276137, 6.180166184894449, 53.90730828533111, 21.104184335609016, 17.806964679263476, 13.804140180494421, 7.027981396307576, 8.646055676935184, 83.69293657556558, 31.435310937195705, 6.670860826832601, 79.73277914339471, 66.316162282525, 32.075132513008235, 137.91871850366448, 21.719453697054238, 65.76966045395207, 47.694152830583405, 28.60898338135459, 91.12983221974736, 53.126108420294095, 115.98406746738223, 47.686044070067496, 103.50302220772863, 26.776718330862234, 11.898615314401052, 7.951030507341119, 18.575059595463525, 16.971586035069294, 73.48293679269234, 17.359674441041857, 49.56180008705397, 60.84490979019415, 39.09140446111972, 5.197094751869865, 15.2592159595802, 63.65680443331164, 45.565675005665035, 24.600371005959577, 40.75008915896291, 22.471912603921286, 14.588611730584741, 7.554604308690947, 114.50900605546619, 19.07347899039639, 11.82831666437117, 20.75752100116754, 9.97210660965974, 15.766798265714488, 90.3206908451772, 14.671465511044662, 73.5536793450882, 36.36301289166197, 8.82894601577644, 30.15324213759498, 104.9819710955461, 112.41208188457918, 51.56006400995677, 14.275384645644351, 22.534200434082166, 22.683069887128575, 24.649417212700932, 65.37884065888885, 44.951342092810066, 7.958889590585121, 69.29063496097424, 121.99229484377909, 13.682915381271618, 59.26585980840758, 17.73299497279301, 10.39639239822011, 50.666744804978336, 29.518657785092685, 52.10953901306618, 24.773026132862714, 61.15259196714243, 22.21324217014046, 11.471554424506516, 67.98507921545817, 23.168087268957628, 27.032438319722733, 42.96435455506131, 13.087673602661361, 67.41034113037331, 48.9203867230093, 80.12479505942224, 20.501238412033196, 6.091336143649227, 22.36599260496022, 41.527342039263786, 5.175996406922636, 28.411471270975518, 37.45830374656691, 35.69905119803836, 8.295910546169512, 25.45522781844146, 28.25822409611763, 15.811390491283403, 70.05824429405914, 37.30454542510963, 11.513326402145903, 42.33219423131803, 85.89512507486431, 46.57221531545752, 90.98511676121157, 38.69888434729279, 114.20652902238822, 17.462202873139436, 19.67966705039554, 10.080307002017463, 84.86317839025887, 43.84317103543276, 14.956095445462864, 24.632789844335974, 64.05429626309027, 109.95495665240196, 20.546879331261028, 33.71548988658494, 30.990924410252603, 7.140092949934472, 8.97793939794795, 6.758124568381774, 32.67196773982347, 22.43032834623102, 53.88129296974503, 15.033198368114679, 24.936519421592607, 18.795092532329157, 9.14851160094601, 13.593845214986423, 8.834563763085773, 11.575867847518518, 8.498565067720891, 23.26127167055828, 22.599212001474804, 32.93167012068123, 33.60354803877201, 9.08731640774631, 15.259082715529185, 68.73187114456785, 58.153001521709186, 51.08608460244335, 90.60921086883852, 6.3940735174317425, 20.2689075795871, 108.81036820278996, 9.466546489960118, 52.535755429546654, 60.09279804136307, 9.510284571515125, 18.738273342417944, 58.10740659020059, 51.53878805094265, 72.39054757227527, 13.137470728715147, 15.723609388609777, 84.16701055868751, 8.005638352541485, 36.12171743333506, 37.28588899856597, 47.50721944425422, 12.989484599258834, 17.12050186823373, 23.8324167686456, 13.705453279177364, 62.23102751532227, 6.6341513531697585, 49.67806587787904, 29.190069800873722, 36.08604455641559, 25.947540612785797, 44.107357443383336, 10.869982081058401, 10.028035331250491, 21.373575069370116, 22.842409802637484, 65.1327575821908, 100.18872909773438, 19.886849698620495, 107.5564004314543, 10.948258508353106, 6.596693921175543, 9.00265611449914, 118.45233068004522, 8.46202852709767, 23.48002404517322, 42.59656071938276, 7.048981847241163, 17.872365877594294, 23.745069780038943, 30.52648605929065, 17.363508348754802, 15.6656699085055, 9.980415981705873, 7.121288312700031, 67.79250137688759, 28.830215764971328, 11.937427092988123, 34.8787657946197, 11.51742361917995, 9.27298818081074, 74.14477456861378, 21.82318600532416, 6.469860663266366, 6.767059290542962, 53.30544419399539, 5.239255617851652, 5.724958027906494, 10.524309431257308, 9.150378501795188, 27.106729503669772, 6.030930715857904, 38.81951258672008, 56.48159797577688, 35.70474475358808, 7.443296805478013, 8.081703414108091, 48.877373494254314, 43.36669112638934, 35.02123887731956, 7.091554436798191, 11.377400256794402, 43.7562229285182, 47.923824364558214, 16.539990988776317, 45.03740987274425, 38.72499625619453, 88.75246934065102, 90.4131529696868, 16.657445235548245, 5.490113008136558, 107.9655566401656, 41.32796397871126, 95.07708328390383, 5.393601373427589, 25.614652716052873, 40.836191541709866, 19.23435155840435, 26.635249208215164, 219.21795363649804, 5.541475324793284, 7.067312322808766, 9.645292970431681, 5.077203900159608, 21.973308663305968, 20.20686178093731, 8.491612033068282, 55.02875144755976, 15.141255236913212, 47.41813766823519, 78.37628369779019, 11.75586631844443, 45.12106639539209, 6.877248906000796, 99.39376251704141, 11.593485753163465, 30.59449483056698, 59.44589899306587, 19.71526896285829, 91.57200992192696, 48.65171025005172, 25.892550171404533, 61.66514367137449, 61.566009592334815, 50.776510938609356, 54.99437419637784, 11.93137256807514, 5.095587454464317, 20.769788072673585, 17.442196009649415, 88.44850336953947, 97.6114267186956, 65.49622510530122, 28.667219765086998, 24.95432016404755, 18.63414635718186, 31.333722826581514, 31.770777830710013, 59.72634800100859, 10.900648459613471, 90.6334186120377, 64.07740405807115, 6.326387005790463, 11.079319533783593, 12.701657972391558, 7.312171044331747, 59.5389073005671, 22.313182297645987, 85.10107585742405, 56.553405654784925, 71.7007632363085, 5.5912928916428735, 49.085722146382025, 11.23312918577695, 6.598166924142652, 88.60877714878531, 5.780919735240292, 73.81087531597738, 40.93448208547633, 173.6245600397033, 12.125087241670029, 72.01444008334184, 32.38015850630286, 58.887258958840754, 11.28067974069505, 29.13781704672598, 88.25809663628635, 32.923317699817744, 15.280859872587236, 46.359451350826376, 44.994780183781366, 39.35770615630581, 23.684564234882348, 74.49801098834004, 6.63454052488975, 71.34761046044508, 64.70248711545698, 7.5264112177903275, 11.435525941686379, 43.41553775935272, 9.168637048336437, 5.580107598842811, 16.196774823472587, 41.96243772345283, 13.781466659876923, 54.48054038854012, 36.09370023697221, 5.3117657813840715, 20.982960726831834, 44.06618903636201, 32.53813434326859, 58.411384218611644, 49.76681551962175, 16.361725707041003, 29.437435624247755, 55.3606535720524, 17.128670098834384, 57.294783181562906, 13.86320900400374, 72.00865682780287, 21.09499041704913, 77.97832302386598, 32.92287160437883, 30.10371992090582, 39.44274259780419, 8.263733868401237, 23.199306516614648, 26.982806331089023, 7.468257340458156, 5.6685726036595385, 58.00267686080116, 25.343120253748957, 13.520968090766926, 19.339429311450193, 14.731177380104128, 36.55864732618588, 26.953389152177834, 30.925714083581457, 16.435660927387097, 7.0587272116040545, 9.920841235862984, 71.28295110689152, 48.37104143675542, 42.68286834370141, 70.05025498272613, 19.692734241397943, 29.885033723484778, 31.53119815323464, 51.10827509150099, 21.21030684679611, 30.730329117846157, 70.45374292547912, 40.373628342924555, 15.826694228188595, 8.16719559538222, 67.69480379528616, 50.33836754714425, 14.697761055803067, 11.518169849870729, 7.709866866068149, 5.4943753505807935, 72.60713017145572, 49.4980483632012, 87.27738368870529, 29.76495969467374, 36.85606742831723, 26.04807290756515, 14.592799174497177, 6.47602084736118, 26.73508980113317, 12.36239352279895, 49.86421760459904, 14.09293633616799, 46.52599925654186, 31.703725225400305, ...])
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);
([6888318.75, 6987249.890429264, 7148619.361507741, 7179600.441178366, 7222442.662038474, 7238983.462394515, 7242315.534799793, 7246400.0, 7282042.226404844, 7282762.348004964, 7283567.1875, 7288232.760807004, 7291101.226032964, 7369209.365105971, 7416728.1958717825, 7429895.028359425, 7432978.041775772, 7435443.099264942, 7442602.434041161, 7458418.148709831, 7460943.324585341, 7464919.676511728, 7468632.8125, 7471762.041664162, 7472993.224713975, 7477128.995698111, 7485923.248121899, 7499279.6875, 7501148.555055144, 7501594.871092593, 7501763.345901539, 7504037.5, 7506021.39524929, 7506786.585513622, 7507891.77239736, 7509232.578236912, 7509678.125, 7509706.121722595, 7510440.236063635, 7514766.499206264, 7515068.53054033, 7515493.693448111, 7519497.682896868, 7520845.3125, 7521019.1930497205, 7521894.127226286, 7529569.176483067, 7531522.631929548, 7561615.2898011245, 7564043.75, 7565580.157743728, 7567784.608502619, 7614853.125, 7624323.4375, 7624363.31878517, 7631178.729754526, 7635689.476365765, 7637458.994802111, 7648408.497637234, 7663131.169956592, 7667133.948721268, 7677724.983135648, 7679728.125, 7684640.122120414, 7694725.097332549, 7698014.519945896, 7751143.75, 7768573.785679477, 7769973.4375, 7781786.088359193, 7787047.438942813, 7801563.443858465, 7805102.042836102, 7811134.591037795, 7878418.448392018, 7890041.260719886, 7890201.698859157, 7895450.142539734, 7897033.209979254, 7898990.806040144, 7900998.678428545, 7968491.875169629, 7972476.677659645, 7978174.267119678, 8001454.062580362, 8012464.527183953, 8020260.890210807, 8041976.927142017, 8045890.625, 8096453.125, 8104092.377687549, 8104847.270308237, 8126092.801301591, 8159381.829011642, 8160202.215027047, 8171034.476414098, 8202906.993471413, 8202929.096248385, 8204600.568275867, 8207916.63896531, 8208483.1601128215, 8208934.910426251, 8209581.25, 8213228.166622023, 8217447.258847086, 8222917.477640515, 8234077.107050583, 8236167.1469195355, 8237318.587638724, 8269565.5674996115, 8275896.875, 8277007.926384007, 8277015.510438198, 8277025.721419738, 8281478.125, 8284073.4375, 8285911.066204164, 8285967.0765080135, 8289796.072079742, 8308084.509953338, 8309022.11594354, 8309145.716505481, 8309217.571931377, 8311246.660969725, 8311514.0625, 8318482.8125, 8329532.312484165, 8333121.249926588, 8334165.412548128, 8354955.6057588225, 8361036.896127208, 8365404.317264255, 8380133.240558294, 8388110.569318017, 8399201.5625, 8407285.960514842, 8407554.333711572, 8408156.274735129, 8433044.811435906, 8434715.38205139, 8434767.523854777, 8437297.047452148, 8439200.525358632, 8439208.280490078, 8439837.639447534, 8441375.448923323, 8443510.852178173, 8461370.007830229, 8461443.082017798, 8476073.4375, 8476649.3411095, 8489417.080383888, 8489441.80003542, 8490291.845558338, 8493090.227862144, 8493224.489801176, 8523152.890268607, 8534453.101585932, 8541536.387312977, 8541781.25, 8543233.252603363, 8543540.134887496, 8543741.217293475, 8546619.783373805, 8561069.932023162, 8603007.8125, 8603397.396010615, 8614147.503885476, 8625539.21284185, 8642187.5, 8667965.5789095, 8675388.379737033, 8677492.1875, 8735535.9375, 8795217.044520956, 8806792.665889123, 8807683.18067558, 8885267.47642773, 8926936.271561341, 8934967.111375831, 9001858.801842893, 9007114.652697371, 9053530.289810652, 9097013.48968767, 9098904.505348444, 9197855.359697489, 9308791.231976753, 9320094.232286027, 9328230.185349818, 9344100.0, 9347114.778785223, 9354501.5625, 9382188.331046958, 9398439.836823542, 9419560.808843786, 9422982.179710075, 9458294.830982022, 9525407.8125, 9532909.22884327, 9538074.273040392, 9542298.930557111, 9577255.312356014, 9607257.8125, 9607703.125, 9611077.918847632, 9647125.195695704, 9652359.281446595, 9691684.375, 9712932.049714189, 9713377.956533752, 9713642.729349583, 9714194.45241508, 9757023.504800096, 9801425.0, 9813103.136399567, 9813416.990305383, 9822856.440348873, 9867739.960000148, 9874920.337278713, 9880174.828125322, 9887701.356862606, 9889614.719758123, 9895448.192797204, 9896392.255989207, 9899707.8125, 9903485.922681712, 9904647.60437386, 9905276.5625, 9937668.787864015, 9937749.071040168, 9938948.4375, 9941064.0625, 9942244.139276825, 9957063.342067793, 9968229.493882302, 9977695.231394127, 9978685.9375, 9979963.385252178, 9981551.186691733, 9982907.152985297, 9995264.0625, 10036932.250742255, 10108719.793622073, 10110384.598324403, 10114719.305370918, 10135601.053755617, 10144561.239232542, 10165743.365066286, 10175904.1497502, 10182612.5, 10234251.355262011, 10272030.96625148, 10273030.607457362, 10275384.122854494, 10275387.431514522, 10319335.9375, 10343873.4375, 10370247.745579217, 10376617.710020402, 10378071.778020319, 10396904.099436356, 10403682.165614624, 10415033.21380195, 10461718.586238494, 10481943.495329484, 10501516.93523078, 10504482.8125, 10534553.607161405, 10534621.875, 10534639.0625, 10552888.474686172, 10560547.563118812, 10562053.558557373, 10566325.0, 10575516.817292657, 10583763.213021092, 10589970.799176287, 10607000.374554304, 10618153.82091169, 10618590.421662023, 10624962.322830671, 10625543.35684923, 10627488.850111065, 10664548.4375, 10675830.176084587, 10718855.521721909, 10727194.198195338, 10735830.772890246, 10738460.978649018, 10738474.14105928, 10785829.69095709, 10792646.875, 10828309.752784766, 10837765.336818783, 10838324.852736467, 10839911.382795924, 10842824.150408339, 10843583.926383218, 10886513.487847742, 10886781.657451969, 10890592.794794064, 10892393.682304045, 10898584.375, 10899022.236095224, 10899578.127893532, 10935776.297675097, 10942925.0, 10944286.767940149, 10945290.062720785, 10955653.015848367, 10988614.389877701, 10988620.1978414, 10997531.914176682, 10999951.5625, 11013916.951500898, 11015001.253562583, 11060566.423988683, 11065239.382696707, 11091172.160351751, 11112232.864618635, 11132489.960395515, 11147603.663588883, 11163991.38323551, 11174411.936257692, 11184265.00073713, 11189860.485791292, 11240740.962202104, 11250067.699766986, 11276370.3125, 11315636.065226933, 11315636.422320887, 11362159.699140565, 11372689.0625, 11379111.800387979, 11379807.8125, 11392778.125, 11458976.592147296, 11477550.0, 11520017.519559015, 11521525.141547434, 11522675.815419864, 11537075.43577178, 11560771.089885803, 11572126.5625, 11635387.700793345, 11638223.4375, 11662954.819690118, 11756425.0, 11762187.479281565, 11790005.588977858, 11802546.440521006, 11837999.034008138, 11852168.99169287, 11854292.1875, 11863426.5625, 11924501.276727984, 11968506.767835727, 11989117.1875, 11996367.895317905, 12108484.126530966, 12111816.742894927, 12179055.039584616, 12214814.600380803, 12218223.67290411, 12218225.532712026, 12226123.199764173, 12241255.999270435, 12249051.680303963, 12259020.203114374, 12260866.859498667, 12271950.0, 12321283.190468824, 12341700.60603369, 12364935.91597443, 12404294.182764051, 12404319.448579807, 12411586.012398697, 12462067.1875, 12549806.623481376, 12650698.615982125, 12651918.688985212, 12678710.617567703, 12731449.348020261, 12749836.830241319, 12756825.286952939, 12834959.0975928, 12875973.727983445, 13102766.440678526, 13236579.6875, 14002764.807684269, 15409325.635026092, 15525122.44816432, 15538663.959341988, 15553577.200270807, 15553583.105729185, 15571998.869991537, 15579073.12409298, 15585817.19800235, 15597523.4375, 15620193.75, 15620245.29494314, 15620739.33906246, 15621928.125, 15626204.291892873, 15626494.71905008, 15627788.351440426, 15629140.002484385, 15636286.850008318, 15640064.0625, 15644557.431843497, 15645213.245377228, 15645896.242948709, 15648799.27803994, 15650199.026565157, 15650983.901684802, 15651002.668826306, 15651653.055653824, 15651705.400405832, 15652785.492210172, 15653039.579601143, 15653080.513266318, 15653477.969750797, 15653902.662259694, 15654188.847406646, 15654237.428798737, 15654596.479848431, 15661060.9375, 15662465.625, 15662568.272830263, 15664782.665280037, 15664993.986496741, 15665168.700395564, 15665417.154345026, 15666286.608489059, 15667853.612591604, 15668635.663308578, 15668752.856864288, 15670763.671070842, 15671320.718809204, 15671658.864219606, 15672464.948515514, 15672532.114209792, 15672850.687682085, 15672918.289759843, 15673409.131120924, 15673561.06359319, 15673875.722711269, 15673957.427023781, 15674331.033836123, 15674611.534994237, 15674829.083501616, 15675060.667451808, 15675096.216463756, 15675420.3125, 15675698.649589071, 15676438.61336769, 15676454.015878256, 15676750.736858347, 15677036.975328166, 15677109.435016857, 15677146.943110708, 15677248.374432562, 15677984.193868792, 15678429.6875, 15678551.97520661, 15678552.765767012, 15678859.118880473, 15678891.043448403, 15680373.4375, 15680470.967186935, 15680501.354906723, 15680584.375, 15680594.72471437, 15680617.526959822, 15680839.0625, 15681439.617158627, 15681789.96637932, 15682422.638628302, 15682565.136641622, 15682793.75, 15682905.657773644, 15683055.093733624, 15683078.428315083, 15683150.855540767, 15683703.125, 15683727.707135478, 15683829.36015787, 15683873.186237143, 15683996.239919996, 15684577.7664598, 15684632.057035562, 15685064.651508177, 15685149.757169439, 15685233.994345898, 15685344.721845394, 15685628.125, 15685643.49239944, 15685861.512839602, 15686017.391530553, 15686337.5, 15686500.316284936, 15686885.803889038, 15686976.439313054, 15687059.375, 15687230.19678999, 15687361.882540157, 15687541.868306166, 15687719.965865392, 15687891.405193247, 15688010.852038164, 15688049.857641932, 15688077.84418615, 15688181.25, 15688298.642771415, 15688339.484037103, 15688538.088823158, 15688736.093518376, 15688815.911290102, 15688908.441799538, 15688925.061334927, 15689182.791317971, 15689327.352186048, 15689356.836648624, 15689438.39965429, 15689497.359358383, 15689504.6875, 15689712.936804375, 15689751.618780283, 15689794.89114412, 15689982.777909646, 15689985.725170929, 15690040.767794805, 15690043.88790327, 15690237.5, 15690313.716780473, 15690462.5, 15690506.181230005, 15690543.75, 15690778.125, 15690790.625, 15690850.0, 15690875.334523233, 15690909.3235515, 15690938.091831677, 15691159.081423929, 15691235.77354326, 15691251.5625, 15691467.912781408, 15691542.743972717, 15691610.980205685, 15691656.155531468, 15691728.125, 15691800.06500458, 15691816.775502514, 15691829.316700092, 15691880.203321457, 15692180.588454572, 15692326.375087973, 15692340.625, 15692348.911274834, 15692356.696575083, 15692640.371185157, 15692642.1875, 15692671.847970603, 15692745.072793, 15692842.1875, 15692868.75, 15692971.675025204, 15693004.6875, 15693034.788415888, 15693213.708624242, 15693642.107462863, 15693690.347592536, 15693732.939829756, 15693837.276284594, 15693872.521795513, 15693903.112915628, 15694023.4375, 15694046.287369283, 15694063.913822424, 15694073.41557119, 15694073.4375, 15694102.724323379, 15694178.218795247, 15694179.849476827, 15694246.245808452, 15694389.89122893, 15694752.583436828, 15694793.183422456, 15694804.471164824, 15694898.921202363, 15694930.238684518, 15694931.76076911, 15694964.0625, 15694975.0, 15695075.0, 15695119.136715913, 15695174.21992692, 15695212.94566393, 15695231.07081198, 15695288.297312802, 15695302.549729744, 15695330.496401077, 15695343.920433521, 15695415.625, 15695448.4375, 15695546.15362629, 15695556.25, 15695601.399489282, 15695608.404366322, 15695615.290750572, 15695634.007075462, 15695642.810577082, 15695684.506685492, 15695768.039752707, 15695782.330024637, 15695789.139903115, 15695865.14181652, 15695866.894747546, 15695884.375, 15695905.772395395, 15695925.0, 15695926.5625, 15695984.375, 15695992.1875, 15696084.19338842, 15696104.684787473, 15696121.340029065, 15696173.698216079, 15696287.404948846, 15696337.94292525, 15696450.869073495, 15696724.147531943, 15696730.134540163, 15696769.180295968, 15696917.704132255, 15696958.670155339, 15696962.5, 15696965.65567615, 15697035.687325953, 15697065.70592956, 15697114.868703168, 15697115.625, 15697140.388725584, 15697163.91801381, 15697249.592825497, 15697284.279226173, 15697340.488503885, 15697345.3125, 15697420.869168296, 15697426.968812268, 15697493.17295858, 15697494.421586633, 15697557.508915037, 15697700.590035995, 15697701.489799608, 15697716.102792826, 15697742.604601381, 15697783.714307345, 15697842.988513445, 15697895.2785518, 15698010.9375, 15698087.5, 15698096.888718726, 15698115.650974693, 15698116.040377004, 15698227.892241495, 15698374.085621145, 15698415.625, 15698435.261783898, 15698493.75, 15698528.125, 15698535.562827809, 15698575.0, 15698608.535424938, 15698611.97566554, 15698618.397007104, 15698625.335201532, 15698640.439789029, 15698643.526027627, 15698648.494856171, 15698680.819282724, 15698683.021881938, 15698691.161018018, 15698743.877303028, 15698844.727006827, 15698846.875, 15698871.623689054, 15698892.1875, 15699054.439428274, 15699070.3125, 15699108.769469641, 15699115.65606952, 15699230.83326691, 15699273.4375, 15699312.950854994, 15699376.344567716, 15699504.974710014, 15699586.475215849, 15699648.455107652, 15699696.595765926, 15699724.007074213, 15699726.773422657, 15699753.62232225, 15699773.4375, 15699773.670951776, 15699794.18037734, 15699817.1875, 15699894.128599951, 15700040.763236752, 15700059.821381504, 15700067.198729359, 15700078.659330465, 15700126.483184764, 15700164.832715131, 15700229.6875, 15700231.25, 15700243.753821557, 15700282.578551454, 15700292.1875, 15700293.700820753, 15700305.649609113, 15700309.375, 15700312.304721622, 15700418.82044311, 15700424.550141523, 15700457.785481866, 15700514.0625, 15700537.089086132, 15700542.1875, 15700544.130819438, 15700585.564336034, 15700663.241568971, 15700699.775482029, 15700721.469952414, 15700729.03501016, 15700753.393970126, 15700778.50545473, 15700895.158441965, 15700908.979166731, 15700916.639081212, 15700976.5625, 15701001.258999141, 15701038.291752983, 15701067.1875, 15701309.37720877, 15701352.64576287, 15701371.187522821, 15701379.067294972, 15701508.742851196, 15701573.4375, 15701784.53061735, 15701831.25, 15701879.600015564, 15701889.26674041, 15701930.421017444, 15701948.4375, 15701954.918504266, 15701955.513950448, 15701968.179670556, 15702081.441099979, 15702098.4375, 15702108.803064143, 15702170.3125, 15702259.505505426, 15702286.711556692, 15702325.934832236, 15702369.224243367, 15702418.456367262, 15702420.84695663, 15702429.343182422, 15702439.940588774, 15702443.37368414, 15702498.4375, 15702564.0625, 15702568.604497524, 15702578.839858951, 15702640.453611694, 15702653.848035853, 15702685.425434109, 15702707.437899698, 15702760.9375, 15702810.9375, 15702824.768169088, 15702838.97001973, 15702884.479672013, 15702894.415277397, 15702982.396315068, 15702987.264810557, 15703025.317671128, 15703211.301397286, 15703219.382999962, 15703274.716947423, 15703291.340452375, 15703369.81859037, 15703395.05749097, 15703431.76729907, 15703436.115347832, 15703449.116794974, 15703456.249378573, 15703468.746799262, 15703509.182621555, 15703520.775349058, 15703534.15590741, 15703534.610797593, 15703592.117597843, 15703600.200885462, 15703617.119393326, 15703654.576694535, 15703657.830269434, 15703684.375, 15703715.413191164, 15703769.032223793, 15703777.701322064, 15703846.65286002, 15703857.736506172, 15703880.681709817, 15703934.235387705, 15704018.571473667, 15704082.235931924, 15704116.72252238, 15704213.65388815, 15704230.193366723, 15704293.522835147, 15704345.058550796, 15704443.635031793, 15704456.404081093, 15704489.0625, 15704576.5625, 15704889.426948125, 15704928.125, 15704965.198687032, 15704968.75, 15705012.424725272, 15705037.009287117, 15705086.581705393, 15705119.663198482, 15705138.765843954, 15705212.5, 15705279.559452968, 15705281.448627518, 15705367.1875, 15705567.989241235, 15705585.159610325, 15705626.5625, 15705745.484265134, 15705749.78996193, 15705756.599274196, 15705845.764226597, 15705866.734327931, 15705891.464062871, 15705922.243591849, 15705936.837367274, 15705968.80143685, 15706048.4375, 15706053.125, 15706147.242852652, 15706162.378136007, 15706409.919226747, 15706448.4375, 15706472.153865118, 15706516.45010899, 15706523.581576293, 15706528.795467364, 15706551.812485434, 15706603.125, 15706785.78851439, 15706965.145567095, 15706967.1875, 15707003.111893019, 15707090.625, 15707117.647254407, 15707215.478691546, 15707304.111799931, 15707355.218398675, 15707356.25, 15707489.0625, 15707655.805251298, 15707656.283569539, 15707828.021834034, 15707844.4685961, 15707880.979312673, 15707905.177352954, 15707930.856689373, 15708185.787210405, 15708192.39238604, 15708344.402133478, 15708462.954542754, 15708592.156321183, 15708621.1300017, 15708703.804029202, 15708743.365843462, 15708760.295224218, 15708912.5, 15708937.094083607, 15709003.125, 15709163.643795753, 15709268.75, 15709325.066415, 15709347.548779288, 15709408.83968546, 15709554.230458345, 15709801.782620788, 15709885.165813865, 15709942.237201195, 15710036.493882231, 15710076.5625, 15710159.375, 15710200.303821092, 15710209.470711458, 15710309.375, 15710319.236474741, 15710446.875, 15710773.523771977, 15710817.1875, 15710825.0, 15710829.420705225, 15710832.507301489, 15710851.5625, 15710971.19276341, 15711006.047243766, 15711012.5, 15711031.03247052, 15711051.750894101, 15711151.5625, 15711266.988520239, 15711305.619829573, 15711358.106978001, 15711358.481456779, 15711511.657188041, 15711623.4375, 15711652.838502156, 15711708.467747394, 15711916.494997531, 15711984.375, 15712032.047506351, 15712040.625, 15712066.33006533, 15712118.030223062, 15712121.875, 15712200.635006294, 15712330.163217176, 15712421.495485624, 15712426.247574486, 15712505.245009046, 15712522.308530567, 15712540.868331343, 15712592.1875, 15712630.779392663, 15712761.526663586, 15712915.581551436, 15712927.780568123, 15712949.916915039, 15712983.98571472, 15713183.757804992, 15713195.3125, 15713570.629749574, 15713707.382161073, 15713933.628113152, 15713976.50620033, 15714016.292130344, 15714016.695974978, 15714023.101726685, 15714055.031098705, 15714127.88088787, 15714206.873522032, 15714254.6875, 15714324.604192648, 15714505.647153426, 15714509.375, 15714545.188765645, 15714553.125, 15714578.125, 15714590.625, 15714609.967693789, 15714639.0625, 15714820.82806408, 15714835.249657802, 15714973.362496017, 15715060.704712182, 15715148.365321064, 15715388.740074614, 15715421.727566086, 15715661.17372455, 15715670.597995494, 15715760.113344185, 15715917.785931634, 15716184.375, 15716209.375, 15716255.3713672, 15716504.434612095, 15716611.192840284, 15717025.97335751, 15717162.4290141, 15717419.642791431, 15717445.980897283, 15717550.0, 15718268.50800347, 15718525.0, 15718846.404184848, ...], [40.95288773055132, 93.40616915896481, 9.908172247943321, 19.188242341874286, 17.12213659057786, 57.196961179423845, 26.859810124079697, 54.140001752128875, 14.75859614379086, 67.28884264861463, 33.020193849641274, 22.697354546955943, 8.116317000466754, 8.281352118806355, 11.240320866879784, 38.23076021374394, 62.07930808262842, 20.110603499319158, 41.061959765549204, 20.538874695850566, 8.073732597249915, 20.23594595944409, 124.27920651262114, 34.87679549687952, 16.90973394740277, 6.383850949474664, 14.265687498889823, 120.53290301271913, 82.7896670230677, 22.098207291764385, 21.05595327019902, 57.56480967911992, 32.62535465880933, 6.352695516322354, 22.383972230278946, 24.62839957381254, 52.084400682633515, 10.93295090657058, 23.95842972411852, 19.80011867132949, 24.83710031561927, 14.730253877190723, 14.384058266761608, 40.42001787857259, 8.535641804742074, 41.71053824344131, 16.861333694426143, 12.560434484925933, 13.801256808733452, 31.561870021915606, 17.09838730857625, 6.811036444035127, 118.89809959489432, 33.73056739712469, 43.41233058016611, 8.634553443658717, 5.976276443471324, 40.68312717874508, 9.98673011258203, 14.644952768890878, 13.532590151306884, 34.52784324336365, 43.69639463579459, 86.06594207931907, 73.16550078383904, 11.926862363250637, 52.18795971622376, 11.719344981210538, 29.924680508480648, 29.773574948729408, 25.055678176712284, 17.03412817885939, 270.58123448777576, 76.88159863922861, 5.597573561273269, 9.93376286688327, 5.403712625101678, 15.514139647849948, 28.959835163385, 42.55340526133894, 21.38280600178804, 14.716504515670547, 19.43534815537012, 98.88739975521909, 20.331341939579318, 11.941021527856504, 35.16704809028437, 102.97683403186393, 105.1261763284252, 110.39271649479774, 91.1655248978314, 54.823920884066716, 11.976005092793963, 24.31492535932839, 20.382317013465777, 11.266436168741269, 5.755766682873402, 31.160539958097985, 13.928434914644903, 13.19505779312839, 5.47688692954124, 41.71225450691827, 141.7995875350059, 11.193393954964009, 20.8853834047297, 16.176133033888895, 7.812828282393353, 24.673612562192968, 35.73641365259558, 27.436390194488858, 37.42790080252414, 25.50088134353354, 54.524430655676454, 14.65250614552565, 39.60906931003951, 77.28248361788916, 5.467317915000434, 26.50793391755463, 29.15170430673094, 7.652788341574585, 22.10678516790043, 16.939863738286952, 5.97359822760037, 68.24574334802024, 70.54639391014241, 98.66628022737738, 40.954480454574885, 12.996072864819041, 32.725626566532696, 66.54342892016666, 112.40709374769224, 86.40652313602433, 7.238712789272745, 23.115765446850933, 103.21077991141385, 133.41859730983458, 13.74515400984361, 69.53057427995832, 86.58615698362391, 56.03914093850479, 8.472834148377432, 5.1693974352715015, 8.585412933119706, 5.358217880721225, 6.284978797927501, 16.981782978280215, 46.72390863238607, 13.894858867379696, 5.186731354505999, 63.22756303552695, 8.83017902927366, 50.525050567914874, 22.69429800193478, 100.2266336712517, 20.47156505989673, 39.71738233159326, 10.779612290121069, 36.173608874984225, 7.244936437592958, 75.10478536670928, 55.85037427363212, 58.17450207397844, 77.5200968941764, 19.79914864468096, 22.774455379300992, 42.25743604929624, 65.91468012113928, 50.281394103606516, 15.547273730767138, 33.988700137899144, 27.64458502998568, 19.845070024360467, 36.691277086102694, 64.86997224265868, 40.733355755219236, 52.717584506318964, 21.748884248200724, 17.989970430725386, 20.303171776295095, 9.267854795574895, 20.793094637696452, 225.4669403435569, 68.40314809989209, 13.1309578057695, 14.640212656086891, 89.18672326945196, 25.08384294995748, 11.975676338175301, 12.995290888869711, 49.53702879145902, 5.112819707167272, 69.16195083627791, 7.934270714286412, 6.928609961258526, 14.591815432104074, 20.201851901930883, 32.87812349540765, 87.25262106362128, 40.36742343206116, 39.67310338974213, 19.314722331051065, 47.98016197333877, 71.57558204161715, 63.12966433398572, 9.162967677960562, 6.108689049714793, 75.47979673878082, 55.055970593382064, 10.113480753297567, 40.62773530309605, 100.59527828010778, 12.43735026612406, 28.073255393729365, 111.92102620153683, 5.614675103124015, 35.85525025188167, 29.918221288547976, 37.75649111818932, 5.534284340527355, 37.29949989591421, 34.64947823306499, 12.338149427334502, 96.06384214704853, 7.139572526084087, 37.042719509259484, 53.07283227218418, 67.82680672925497, 80.1403729723193, 15.08782038260296, 6.350703341504258, 59.38804639215898, 58.71905523373299, 5.048165566739619, 47.19545467552771, 63.49455586591951, 11.003256227918, 56.63457999024508, 12.865476629381687, 61.56260994473875, 25.372943954028578, 45.55129664767314, 51.7001116170094, 144.6048117782135, 9.527655753448474, 17.58621370009544, 81.0315078411764, 9.60026793187255, 22.7232492851231, 13.733445852144797, 54.771934614644266, 71.15650416070254, 23.960575460281273, 72.70160410134534, 104.54573367771052, 46.70494770628256, 35.93183485142346, 30.615802793001183, 57.310858648017216, 7.803828512390373, 26.743854716156775, 19.943340678587163, 6.023316644995238, 6.846358232060869, 60.840949539253685, 24.347562862210527, 24.38020410796528, 54.128692494815354, 83.98870457040157, 32.767996957475006, 55.62986890342443, 52.477809715455585, 36.93756237482111, 115.83264985478013, 107.25189154219683, 13.696152401199896, 12.461007292762089, 20.369779216435212, 28.72844457895774, 7.875948424480132, 5.3350019820155445, 118.01575913882253, 13.628527407699806, 38.38708577696015, 85.44465364312852, 9.78177842374054, 7.935664092027046, 45.58348347760275, 21.724522697382124, 90.04671057266702, 33.67900695580617, 17.95452174730859, 62.018348604976715, 86.27662628353501, 78.8040237616193, 33.24041722385044, 44.11620295744791, 32.30886474817213, 24.148512503749984, 44.01873106060238, 16.760967025446966, 73.26853064948745, 11.023517014057246, 51.45944195716085, 58.39074841535499, 14.952549687578221, 5.450513614456218, 179.3172782695001, 19.45339295178324, 28.26828592699966, 62.59642936420862, 40.477114298384194, 26.447018100822135, 12.353190228069025, 73.78621023517378, 24.604203031102816, 13.88166313077275, 67.26399306611047, 6.829160526440703, 9.58493064632928, 12.80570980287806, 16.52841193964071, 9.832496231528498, 120.99661783476859, 76.91147665779565, 73.50588831110929, 5.154973410837674, 49.54643623633085, 79.52827302155724, 111.15070965532068, 36.98278640302523, 28.628749268608374, 98.56790357228192, 139.85639764931398, 6.382741963067457, 31.89368621014325, 45.09572259874131, 68.39531438640864, 44.803394318804266, 99.9868269239471, 14.620000330981416, 19.337954996405617, 6.557643144828321, 43.21604487189528, 34.3985086557223, 11.456766818323551, 60.26833956100544, 15.470487863559514, 66.14887059041118, 97.70905092872067, 111.19797387069956, 28.036169209300123, 12.20846449076246, 26.924553373585482, 107.37186683939642, 48.63679333095013, 23.934201865391447, 26.111091484270343, 65.90273678379884, 35.13549565348427, 24.432078858180212, 5.901599783840963, 75.02119843887434, 39.0076308399167, 59.144684024839336, 17.452759984821746, 64.59387878868391, 28.741430269758798, 5.071044794498227, 14.540353564587283, 36.21861721958474, 102.92561540757379, 71.12451344415186, 8.635354463045305, 14.860093896713614, 120.01114475560934, 62.6541035371059, 27.481329161683504, 29.44324580229762, 69.44142924009432, 15.668429644240444, 14.713939994499455, 103.46213463568691, 59.33991185844138, 84.07064643825132, 28.7993570251849, 24.04368799389634, 16.177762395242283, 19.339928008260966, 50.1296463251229, 17.28628451689132, 18.07771061021551, 8.614865785204003, 10.970203704676173, 19.560954338565026, 11.619213924257387, 59.56920279341096, 13.86788194456155, 17.38767729268179, 40.51825201993298, 29.90340786123779, 5.8126823497506575, 5.299707209951299, 47.14081873712684, 20.39549959041461, 17.76540038051373, 10.172585035252856, 13.00257812600695, 12.933205383334107, 49.80816002056352, 8.095040314405336, 6.922034822067353, 10.265234202634874, 6.180098634466711, 35.18319918843851, 108.75549757927904, 8.973333096065543, 69.85620932970204, 18.594832926729925, 13.47842413086989, 45.62236772827824, 6.178398265581321, 25.794363680815316, 86.38890480757702, 9.15591914686604, 12.177237661115004, 7.4663085274468255, 73.49920513342725, 66.46971163811106, 21.723908097197043, 10.905134088384347, 67.42229228397005, 14.755752229418407, 20.446797958689682, 18.311764391264518, 82.81188945013939, 22.177102111716614, 68.73688269730394, 38.13149706509264, 26.58152900353164, 34.90421882291391, 91.53113976186035, 19.719529974481194, 7.87245767505287, 25.90135907599981, 14.08686707284004, 5.823369367665305, 12.482742632452876, 28.104176161877845, 24.266388066516036, 9.893467537072858, 70.81262488174947, 24.141025740962533, 22.412612789085543, 33.13348944264154, 5.625886166062858, 19.343631523025653, 7.960711349582221, 19.67109694568166, 21.250466140023125, 11.629052584314831, 15.207629984199043, 5.289143115843346, 43.84560603176311, 62.544983483015, 6.553793055030411, 23.022503302055817, 10.749660380994948, 55.144915900857825, 56.839954674106764, 52.0683487945849, 41.27697978386156, 57.539782257535435, 101.1869634817431, 7.730808960227691, 43.1722184211351, 17.581977213337957, 12.91164712448494, 6.613851963955321, 41.55777273820744, 34.166929312856126, 14.913307304976119, 44.20355983175428, 99.63132083144002, 11.965513517793333, 81.2106307685054, 24.701189413080023, 20.034794457878313, 24.472448043679194, 10.261628391600576, 46.95124112627577, 41.455661757601355, 12.192745016390909, 30.094092452196893, 84.51306974534901, 10.314962333984466, 42.4671288049523, 14.042856542685172, 12.16425737720736, 6.109576740561178, 49.369941530791195, 20.38350103638255, 14.455581457682698, 36.9326032134127, 36.12788003575685, 6.333761724497412, 6.968078682995554, 49.495666164029345, 23.17278270245279, 24.07267858742251, 65.71972453152281, 39.718260415988524, 56.20776500707686, 61.44606198354716, 8.398195534534857, 16.835093929898676, 27.250532846152915, 86.30806262162949, 7.198798651983307, 18.04116275766896, 49.35248471587899, 7.115894656315024, 59.80759462651291, 8.623247372782787, 10.228775413030146, 17.17677270553516, 63.91212080554469, 16.91644763272164, 59.00628119099668, 34.35328944295884, 35.2522534301989, 14.189590880650334, 24.509941913124806, 5.4037722421638765, 42.3534826250931, 39.775638800665824, 34.60353062172897, 27.234374124260746, 79.09596783016565, 55.47354062330648, 49.161193417570765, 60.73945309616221, 16.390802627165943, 27.546352872696623, 17.806751640386025, 9.094920403249501, 7.079009218339189, 34.783347687181816, 18.68061226727513, 78.45334602706437, 7.618756976901013, 71.56960109953071, 55.10150981081016, 9.386979777612169, 23.276338779242195, 16.26766301550348, 12.042582366343773, 10.230305800733483, 11.634406064647608, 39.71257888883025, 17.117907312945547, 16.969070250882098, 49.47170944998838, 118.45516794808495, 25.103833927781828, 32.32546962507012, 53.46124354905346, 29.630345483623817, 19.019234468514735, 85.05983872941238, 5.7335839463463, 65.3741328095156, 27.035903810225488, 73.00752297800709, 8.355079091842555, 5.160183939432229, 5.565317180463744, 14.895648638886074, 41.31149459196195, 42.467545153886576, 25.89740197791898, 6.264431790364271, 42.8573504674291, 74.55457738791483, 8.33680854569838, 11.390691033673535, 61.723556611621476, 12.728368685857417, 8.911935902914209, 10.344270679047781, 25.605601212811305, 46.121053273933846, 5.742758393737405, 12.032427624285075, 102.04824986923246, 86.40001390471022, 42.66656830456111, 16.653424017350257, 5.496382139658221, 128.79471593506443, 6.728252678976276, 19.518983799685373, 31.48384118456976, 19.288401862650577, 53.40294824780097, 30.252686456114304, 68.65280110276137, 6.180166184894449, 53.90730828533111, 21.104184335609016, 17.806964679263476, 13.804140180494421, 7.027981396307576, 8.646055676935184, 83.69293657556558, 31.435310937195705, 6.670860826832601, 79.73277914339471, 66.316162282525, 32.075132513008235, 137.91871850366448, 21.719453697054238, 65.76966045395207, 47.694152830583405, 28.60898338135459, 91.12983221974736, 53.126108420294095, 115.98406746738223, 47.686044070067496, 103.50302220772863, 26.776718330862234, 11.898615314401052, 7.951030507341119, 18.575059595463525, 16.971586035069294, 73.48293679269234, 17.359674441041857, 49.56180008705397, 60.84490979019415, 39.09140446111972, 5.197094751869865, 15.2592159595802, 63.65680443331164, 45.565675005665035, 24.600371005959577, 40.75008915896291, 22.471912603921286, 14.588611730584741, 7.554604308690947, 114.50900605546619, 19.07347899039639, 11.82831666437117, 20.75752100116754, 9.97210660965974, 15.766798265714488, 90.3206908451772, 14.671465511044662, 73.5536793450882, 36.36301289166197, 8.82894601577644, 30.15324213759498, 104.9819710955461, 112.41208188457918, 51.56006400995677, 14.275384645644351, 22.534200434082166, 22.683069887128575, 24.649417212700932, 65.37884065888885, 44.951342092810066, 7.958889590585121, 69.29063496097424, 121.99229484377909, 13.682915381271618, 59.26585980840758, 17.73299497279301, 10.39639239822011, 50.666744804978336, 29.518657785092685, 52.10953901306618, 24.773026132862714, 61.15259196714243, 22.21324217014046, 11.471554424506516, 67.98507921545817, 23.168087268957628, 27.032438319722733, 42.96435455506131, 13.087673602661361, 67.41034113037331, 48.9203867230093, 80.12479505942224, 20.501238412033196, 6.091336143649227, 22.36599260496022, 41.527342039263786, 5.175996406922636, 28.411471270975518, 37.45830374656691, 35.69905119803836, 8.295910546169512, 25.45522781844146, 28.25822409611763, 15.811390491283403, 70.05824429405914, 37.30454542510963, 11.513326402145903, 42.33219423131803, 85.89512507486431, 46.57221531545752, 90.98511676121157, 38.69888434729279, 114.20652902238822, 17.462202873139436, 19.67966705039554, 10.080307002017463, 84.86317839025887, 43.84317103543276, 14.956095445462864, 24.632789844335974, 64.05429626309027, 109.95495665240196, 20.546879331261028, 33.71548988658494, 30.990924410252603, 7.140092949934472, 8.97793939794795, 6.758124568381774, 32.67196773982347, 22.43032834623102, 53.88129296974503, 15.033198368114679, 24.936519421592607, 18.795092532329157, 9.14851160094601, 13.593845214986423, 8.834563763085773, 11.575867847518518, 8.498565067720891, 23.26127167055828, 22.599212001474804, 32.93167012068123, 33.60354803877201, 9.08731640774631, 15.259082715529185, 68.73187114456785, 58.153001521709186, 51.08608460244335, 90.60921086883852, 6.3940735174317425, 20.2689075795871, 108.81036820278996, 9.466546489960118, 52.535755429546654, 60.09279804136307, 9.510284571515125, 18.738273342417944, 58.10740659020059, 51.53878805094265, 72.39054757227527, 13.137470728715147, 15.723609388609777, 84.16701055868751, 8.005638352541485, 36.12171743333506, 37.28588899856597, 47.50721944425422, 12.989484599258834, 17.12050186823373, 23.8324167686456, 13.705453279177364, 62.23102751532227, 6.6341513531697585, 49.67806587787904, 29.190069800873722, 36.08604455641559, 25.947540612785797, 44.107357443383336, 10.869982081058401, 10.028035331250491, 21.373575069370116, 22.842409802637484, 65.1327575821908, 100.18872909773438, 19.886849698620495, 107.5564004314543, 10.948258508353106, 6.596693921175543, 9.00265611449914, 118.45233068004522, 8.46202852709767, 23.48002404517322, 42.59656071938276, 7.048981847241163, 17.872365877594294, 23.745069780038943, 30.52648605929065, 17.363508348754802, 15.6656699085055, 9.980415981705873, 7.121288312700031, 67.79250137688759, 28.830215764971328, 11.937427092988123, 34.8787657946197, 11.51742361917995, 9.27298818081074, 74.14477456861378, 21.82318600532416, 6.469860663266366, 6.767059290542962, 53.30544419399539, 5.239255617851652, 5.724958027906494, 10.524309431257308, 9.150378501795188, 27.106729503669772, 6.030930715857904, 38.81951258672008, 56.48159797577688, 35.70474475358808, 7.443296805478013, 8.081703414108091, 48.877373494254314, 43.36669112638934, 35.02123887731956, 7.091554436798191, 11.377400256794402, 43.7562229285182, 47.923824364558214, 16.539990988776317, 45.03740987274425, 38.72499625619453, 88.75246934065102, 90.4131529696868, 16.657445235548245, 5.490113008136558, 107.9655566401656, 41.32796397871126, 95.07708328390383, 5.393601373427589, 25.614652716052873, 40.836191541709866, 19.23435155840435, 26.635249208215164, 219.21795363649804, 5.541475324793284, 7.067312322808766, 9.645292970431681, 5.077203900159608, 21.973308663305968, 20.20686178093731, 8.491612033068282, 55.02875144755976, 15.141255236913212, 47.41813766823519, 78.37628369779019, 11.75586631844443, 45.12106639539209, 6.877248906000796, 99.39376251704141, 11.593485753163465, 30.59449483056698, 59.44589899306587, 19.71526896285829, 91.57200992192696, 48.65171025005172, 25.892550171404533, 61.66514367137449, 61.566009592334815, 50.776510938609356, 54.99437419637784, 11.93137256807514, 5.095587454464317, 20.769788072673585, 17.442196009649415, 88.44850336953947, 97.6114267186956, 65.49622510530122, 28.667219765086998, 24.95432016404755, 18.63414635718186, 31.333722826581514, 31.770777830710013, 59.72634800100859, 10.900648459613471, 90.6334186120377, 64.07740405807115, 6.326387005790463, 11.079319533783593, 12.701657972391558, 7.312171044331747, 59.5389073005671, 22.313182297645987, 85.10107585742405, 56.553405654784925, 71.7007632363085, 5.5912928916428735, 49.085722146382025, 11.23312918577695, 6.598166924142652, 88.60877714878531, 5.780919735240292, 73.81087531597738, 40.93448208547633, 173.6245600397033, 12.125087241670029, 72.01444008334184, 32.38015850630286, 58.887258958840754, 11.28067974069505, 29.13781704672598, 88.25809663628635, 32.923317699817744, 15.280859872587236, 46.359451350826376, 44.994780183781366, 39.35770615630581, 23.684564234882348, 74.49801098834004, 6.63454052488975, 71.34761046044508, 64.70248711545698, 7.5264112177903275, 11.435525941686379, 43.41553775935272, 9.168637048336437, 5.580107598842811, 16.196774823472587, 41.96243772345283, 13.781466659876923, 54.48054038854012, 36.09370023697221, 5.3117657813840715, 20.982960726831834, 44.06618903636201, 32.53813434326859, 58.411384218611644, 49.76681551962175, 16.361725707041003, 29.437435624247755, 55.3606535720524, 17.128670098834384, 57.294783181562906, 13.86320900400374, 72.00865682780287, 21.09499041704913, 77.97832302386598, 32.92287160437883, 30.10371992090582, 39.44274259780419, 8.263733868401237, 23.199306516614648, 26.982806331089023, 7.468257340458156, 5.6685726036595385, 58.00267686080116, 25.343120253748957, 13.520968090766926, 19.339429311450193, 14.731177380104128, 36.55864732618588, 26.953389152177834, 30.925714083581457, 16.435660927387097, 7.0587272116040545, 9.920841235862984, 71.28295110689152, 48.37104143675542, 42.68286834370141, 70.05025498272613, 19.692734241397943, 29.885033723484778, 31.53119815323464, 51.10827509150099, 21.21030684679611, 30.730329117846157, 70.45374292547912, 40.373628342924555, 15.826694228188595, 8.16719559538222, 67.69480379528616, 50.33836754714425, 14.697761055803067, 11.518169849870729, 7.709866866068149, 5.4943753505807935, 72.60713017145572, 49.4980483632012, 87.27738368870529, 29.76495969467374, 36.85606742831723, 26.04807290756515, 14.592799174497177, 6.47602084736118, 26.73508980113317, 12.36239352279895, 49.86421760459904, 14.09293633616799, 46.52599925654186, 31.703725225400305, ...])
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)