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 = 45338
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);
([3593533.6073298957, 3692667.1875, 3693684.8544791504, 3694460.6885990184, 3695491.776256526, 3695684.4009962506, 3695725.0, 3696198.4375, 3696347.456395998, 3696519.9575768607, 3697194.431753911, 3697389.223102124, 3697704.6875, 3700454.664112146, 3701523.3038751367, 3710019.6607934833, 3726078.125, 3726094.5551123484, 3783364.0625, 3786548.4375, 3793984.9325052374, 3800084.0948935165, 3815321.410450079, 3817820.0398342772, 3892578.476046498, 3896032.8125, 3910659.803495657, 3913071.6588080237, 3914614.0625, 3927037.5, 3927039.9698765054, 3999631.25, 4024112.5, 4026867.1875, 4037517.8997900262, 4037595.642027792, 4043072.6256075418, 4073055.5071998113, 4095503.125, 4177589.4333857344, 4180453.0254467735, 4192080.156573577, 4217282.4165660255, 4217284.377646067, 4219832.430386474, 4577874.86603861, 6138880.731281627, 6144117.1875, 6166015.374894951, 6166942.359600332, 6168306.256622094, 6168367.286614265, 6169353.856853733, 6170132.218901195, 6170625.647519703, 6170994.829098312, 6171151.016563165, 6171254.944005762, 6171591.963194601, 6172060.9375, 6172166.688981818, 6172172.347247702, 6172354.27273588, 6172507.69703886, 6172544.781796686, 6172586.144848916, 6172587.973220219, 6172593.75, 6172603.756444776, 6172661.291479375, 6172669.01965237, 6172671.487222272, 6172914.0625, 6173122.687819055, 6173254.676178244, 6173292.511238123, 6173953.181157549, 6174238.799103912, 6174428.125, 6174437.203913306, 6174452.539167371, 6175246.6838154, 6176855.688885958, 6178386.900749339, 6179803.125, 6262770.086969879, 6263591.1356012495, 6300781.2444203505, 6303010.610917826, 6337047.330903345, 6378398.4375, 6380953.125, 6385891.063422638, 6392758.912666492, 6393390.625, 6393510.9375, 6396699.670693848, 6461590.366596878, 6493134.115206644, 6524652.215973045, 6547626.975067467, 6558341.043940322, 6562525.0, 6562526.881443478, 6564754.6875, 6571652.895896833, 6598445.171191057, 6603148.399246579, 6603156.144393956, 6656179.984765813, 6659044.032848726, 6659739.0625, 6659926.164604305, 6661626.5625, 6662045.3125, 6662113.570774599, 6662853.505001048, 6664515.625, 6665350.363943202, 6665649.023666957, 6665874.917867756, 6667045.3125, 6667442.1875, 6668356.25, 6670981.126072345, 6671053.795556212, 6683868.539342068, 6684457.856260641, 6684515.625, 6685506.166106129, 6690529.6875, 6696019.824833934, 6696041.990891119, 6697383.524037088, 6697787.758964359, 6697810.255124904, 6697975.973716895, 6698326.5625, 6698724.5679938495, 6699334.375, 6699478.110121345, 6699896.533509481, 6699942.852484165, 6700216.12792848, 6700556.25, 6700635.801656938, 6700904.6875, 6701017.1875, 6701037.5, 6701299.905648684, 6701548.561384802, 6701557.678400658, 6701942.1875, 6701981.25, 6702016.374810492, 6702052.617503006, 6702481.25, 6702666.786666368, 6702681.087542613, 6702700.168461383, 6702714.0625, 6702997.254834697, 6703116.662868775, 6703134.55784106, 6703211.659974226, 6703244.220783826, 6703256.25, 6703344.091005854, 6703412.530105868, 6703425.059500919, 6703463.403287743, 6703504.559291433, 6703568.501958248, 6703609.26533296, 6703688.005812635, 6703695.034318656, 6703792.458190314, 6703848.4375, 6703957.203252941, 6704034.988260588, 6704322.228933115, 6704373.22076041, 6704600.668945419, 6704616.548920534, 6704718.5918873325, 6704726.452246769, 6704764.0625, 6704814.786865581, 6705035.797726658, 6705139.0625, 6705269.939783624, 6705898.78017148, 6706407.8125, 6706914.125361228, 6707292.1875, 6707309.075907432, 6716930.133829155, 6721629.7800916275, 6724940.069793978, 6728564.426389747, 6741125.6911541745, 6747138.562465311, 6751284.978841411, 6752435.631276778, 6763485.333800893, 6765954.6875, 6769032.8125, 6770565.3425050955, 6773384.375, 6777020.012784416, 6777380.850175955, 6777637.5, 6777707.635791832, 6779485.9375, 6779672.626317253, 6781362.995417247, 6781387.330384155, 6781482.385204296, 6781525.308291401, 6783300.760546378, 6783962.786529506, 6795054.6875, 6795567.579788549, 6799985.104016683, 6804264.891973366, 6804856.25, 6810207.612697534, 6810302.628798131, 6810590.625, 6810603.62006092, 6810925.851226323, 6811577.783978468, 6811612.5, 6812261.999139557, 6812596.661083963, 6812664.0625, 6814286.56825574, 6814609.375, 6827414.74536172, 6840408.655648822, 6840692.962612083, 6843237.086072537, 6843942.7591205295, 6844130.022231259, 6860766.81179261, 6864173.4375, 6864198.4375, 6865423.651497109, 6865911.374105897, 6866023.4375, 6867090.2051258255, 6867865.028175603, 6868107.8125, 6868217.1875, 6868457.8125, 6868517.1875, 6868909.0271099815, 6869251.11520497, 6869575.457626838, 6869601.272354424, 6869993.603484025, 6870401.978756419, 6870528.125, 6870556.25, 6870914.512069588, 6870977.532198505, 6871121.540786097, 6871235.9375, 6871312.084953645, 6871434.417700087, 6871724.40168503, 6872323.254436084, 6876137.427708006, 6878488.490007061, 6882256.416379738, 6883870.3125, 6883987.5, 6883994.250046992, 6884029.145491327, 6884439.438206387, 6884451.5625, 6884601.5625, 6884609.15632329, 6884658.995974069, 6884807.610556026, 6885010.207808951, 6885404.6875, 6885501.367120378, 6885746.875, 6885773.4375, 6885790.625, 6885825.3681922415, 6886003.125, 6886207.349730911, 6886262.739614607, 6886327.399814922, 6886629.841776807, 6886738.751559027, 6886745.869371078, 6886785.104380131, 6886940.392727647, 6886968.033391209, 6887136.869297514, 6887295.764669439, 6887341.069215675, 6887506.25, 6887556.644418318, 6887743.75, 6887751.5625, 6887792.561364213, 6887896.875, 6888237.5, 6888240.625, 6888246.025110418, 6888418.892331713, 6888450.0, 6888493.75, 6888545.236318609, 6888588.095015193, 6888685.791711604, 6888818.460211766, 6888946.875, 6889122.866161031, 6889258.306480662, 6889623.721323056, 6889635.974191512, 6890000.0, 6890064.94446062, 6890137.086245236, 6890424.873493443, 6890526.060269019, 6890609.766531258, 6890755.564524302, 6890913.335389633, 6891451.006983983, 6891708.733967133, 6891721.875, 6891729.62163, 6891920.231257437, 6892319.831761064, 6892481.25, 6892516.566497283, 6892565.061948163, 6892749.732611344, 6892892.1875, 6893047.779173284, 6893196.6118771555, 6893646.875, 6894535.9375, 6894805.1565456195, 6894811.407196048, 6897166.511294914, 6899847.022660352, 6899863.887060044, 6903625.575356724, 6903676.395707668, 6905374.90816525, 6905710.097322987, 6905712.5, 6907981.833744831, 6908221.875, 6911221.723467895, 6911254.2310235705, 6917423.4375, 6927433.147738558, 6928585.9375, 6929676.2914938945, 6931619.862049252, 6932467.1875, 6934354.042990233, 6935726.7952344045, 6937602.040661393, 6937683.622576715, 6937749.636764655, 6938422.744445702, 6939149.839106963, 6939787.564162874, 6942204.6875, 6943985.268658144, 6944311.483714714, 6944448.772974847, 6945685.9375, 6947256.25, 6947860.748918629, 6948149.376071002, 6948473.371013496, 6948597.742833609, 6948723.264155516, 6949114.0625, 6950061.271180031, 6950250.9724929705, 6956535.9375, 6956681.493256391, 6958513.508597545, 6959504.6875, 6961361.5187934395, 6963118.459552721, 6963182.8125, 6966109.161892826, 6966296.875, 6966733.613629601, 6967583.196778121, 6968351.626193938, 6970633.8443225315, 6971877.812612175, 6972475.0, 6974529.6875, 6975298.4375, 6980957.591664186, 6984896.550813759, 6988412.5, 6993100.73320997, 6995624.636896754, 6998622.449343205, 7002164.321049921, 7002975.339799643, 7003557.21796782, 7003798.175233922, 7003905.663378332, 7004152.976714823, 7004377.943861467, 7004398.4375, 7004421.875, 7004563.648369641, 7004810.9375, 7004940.902066821, 7004974.517278548, 7005143.75, 7005307.202890054, 7005369.382308567, 7005808.976374588, 7006133.786132171, 7006326.537706586, 7006343.925953769, 7006371.404153638, 7006419.650134785, 7006526.5625, 7006555.246412975, 7006617.1875, 7006763.897250615, 7007070.3125, 7007161.182055925, 7007182.447144658, 7007184.782121465, 7007255.710832817, 7007523.267468647, 7007524.97872563, 7007535.298788695, 7007549.5057512075, 7007703.988814262, 7007746.402570398, 7007813.0299190665, 7007823.740682797, 7007983.373831683, 7007997.618950893, 7008008.323279098, 7008167.1875, 7008330.801584261, 7008509.138071635, 7008626.722501497, 7008771.875, 7008806.87139124, 7009104.6875, 7009110.9375, 7009125.889428649, 7009138.045278276, 7009171.875, 7009178.229719912, 7009446.639592686, 7009485.927551011, 7009498.4375, 7009650.021463726, 7009657.126724941, 7009712.188041395, 7009798.308386215, 7009928.518632927, 7010011.9749746835, 7010298.168935775, 7010503.031427841, 7010505.926332713, 7010737.867080746, 7010791.499903956, 7010805.039204138, 7010858.886493763, 7011170.102500222, 7011170.619222013, 7011335.536519206, 7011360.164159362, 7011457.079589143, 7011560.775110043, 7011573.109368158, 7011646.51979631, 7011714.0625, 7011717.1875, 7011835.863514513, 7012001.210974245, 7012003.364594171, 7012259.375, 7012358.052441231, 7012610.9375, 7012990.625, 7012993.75, 7013121.875, 7013180.34300697, 7013314.707912379, 7013605.604694645, 7013617.071934241, 7014170.3125, 7014267.1875, 7014571.875, 7014585.9375, 7014819.781976353, 7014996.788686426, 7015030.462194122, 7015123.735156613, 7015216.430733456, 7015282.8125, 7015342.096656919, 7015496.765762891, 7015561.727374194, 7015649.090540155, 7016059.014467437, 7016171.875, 7016302.047913723, 7016324.255600523, 7016338.117807727, 7016521.05475708, 7016587.5, 7016681.929729433, 7016725.943310323, 7016762.778579077, 7016810.9375, 7016818.499449074, 7016917.783048891, 7016939.288688008, 7017115.420805831, 7017219.849716178, 7017265.559464373, 7017267.059641029, 7017289.13275656, 7017545.537458036, 7017549.697625256, 7017839.048068189, 7017913.389249026, 7017918.75, 7018107.509499343, 7018126.5625, 7018130.49900413, 7018143.832061946, 7018163.159486127, 7018187.5, 7018231.0159475915, 7018488.303577897, 7018501.5625, 7018572.791175242, 7018907.642565091, 7019103.7941045845, 7019127.664638427, 7019175.717415673, 7019299.16361076, 7019517.550226362, 7019967.257658069, 7020018.946832888, 7020373.7267787205, 7020592.436647839, 7020607.8125, 7020840.935973976, 7020857.8125, 7020926.268074804, 7020950.5540402755, 7021046.462826172, 7021076.5625, 7021111.221859785, 7021149.459505099, 7021166.902764768, 7021319.5869019125, 7021355.848391678, 7021367.805857764, 7021406.2140871035, 7021498.002407478, 7021553.715645827, 7021676.924540305, 7021684.67065414, 7021715.805118746, 7021830.307690485, 7021842.309871361, 7021897.05209953, 7021929.527645373, 7022306.408033754, 7022416.960389132, 7022479.072432974, 7022743.75, 7022782.357354397, 7022804.6875, 7022864.076699911, 7023163.414381745, 7023233.014279666, 7023382.680657504, 7023437.843396912, 7023542.707025532, 7023546.344516178, 7023564.0625, 7023607.328170652, 7023875.0, 7024045.3125, 7024195.100139035, 7024221.875, 7024231.061866867, 7024254.442373898, 7024400.261631466, 7024406.25, 7024603.42544469, 7024725.0, 7024907.151511478, 7024945.549324059, 7025293.75, 7025384.592341419, 7025940.798786797, 7026484.375, 7026538.208761636, 7026648.411170435, 7026871.106177491, 7027005.955268841, 7027025.603086989, 7027070.3125, 7027153.004473126, 7027159.375, 7027675.0, 7027814.481598906, 7028705.744063011, 7029202.2679388635, 7029250.0, 7029545.3125, 7029606.25, 7029707.8125, 7030080.036431449, 7030094.85236769, 7030104.6875, 7030174.018548706, 7030211.380303177, 7030479.490687073, 7030512.1700973455, 7030587.41652032, 7030696.620297119, 7030730.280922662, 7030740.798099747, 7030757.8125, 7031072.680019378, 7031083.456104658, 7031107.235492106, 7031192.023020738, 7031321.875, 7031322.059937101, 7031449.731612117, 7031531.5195232695, 7031540.509004683, 7031541.195785702, 7031574.344942053, 7031594.386414976, 7031672.894108364, 7031770.980524875, 7031825.0, 7031842.126263781, 7031866.201402084, 7032052.749852379, 7032054.038329464, 7032129.398132097, 7032178.7753495015, 7032196.787276881, 7032320.396102406, 7032343.429944582, 7032401.518759249, 7032462.1445509335, 7032518.419887711, 7032735.9375, 7032935.847144469, 7032945.610079311, 7033337.5, 7033432.149987072, 7034122.051266445, 7034298.07957008, 7035329.6875, 7035560.470327294, 7035735.880854068, 7035915.668423371, 7036087.5, 7036521.875, 7036539.150874282, 7036682.640841369, 7036802.169756646, 7037202.253525316, 7037389.823189339, 7037515.707554154, 7037754.6875, 7037761.882517111, 7037763.894210046, 7037843.75, 7037899.540423744, 7037983.663635765, 7038049.434541817, 7038067.077921538, 7038114.513720826, 7038120.085862824, 7038211.479411853, 7038336.138745484, 7038339.0625, 7038348.565936016, 7038389.0625, 7038483.4996716175, 7038689.392028726, 7038755.4981801575, 7038808.36477904, 7038926.804478732, 7038932.829511, 7038977.656641484, 7038984.584686759, 7039006.25, 7039025.059323966, 7039042.1875, 7039071.875, 7039127.892235238, 7039160.903987263, 7039248.534092481, 7039307.091990605, 7039343.75, 7039380.977545099, 7039411.930672401, 7039479.427660095, 7039513.622188956, 7039617.477897808, 7039703.039334615, 7039778.034120351, 7039873.4375, 7039873.579314938, 7039931.181556676, 7039959.192685342, 7040057.830089801, 7040070.577165438, 7040109.375, 7040329.6875, 7040334.416483151, 7040418.75, 7040649.62411523, 7040694.053062592, 7040794.937166657, 7040882.8125, 7041015.625, 7041135.537262992, 7041362.5, 7041507.930079261, 7041512.431442469, 7041551.239264339, 7041568.012797459, 7041623.178932975, 7041644.37533981, 7041721.881807179, 7041908.425517328, 7041985.398321721, 7042025.054788634, 7042230.780252905, 7042299.033751468, 7042546.517899724, 7042627.322431793, 7042695.3125, 7042696.227563949, 7043052.592305523, 7043200.0, 7043326.5625, 7043648.4375, 7043690.001288822, 7043999.348688487, 7044096.45707408, 7044920.3125, 7045196.875, 7046717.456796696, 7047415.911549775, 7048163.368637251, 7048335.302258089, 7048430.270079842, 7048481.25, 7049057.132170269, 7049090.625, 7049482.092055266, 7049665.625, 7049813.298352661, 7050384.375, 7050565.625, 7050691.395736582, 7050921.964405893, 7051235.9375, 7051592.705935588, 7051711.587608079, 7051718.696553011, 7051816.513834576, 7051914.197376399, 7051943.626135862, 7052190.6741865855, 7052303.122399154, 7052318.75, 7052425.766199852, 7052763.223356383, 7052928.125, 7052990.625, 7053130.12343157, 7053196.844351508, 7053206.25, 7053258.819623272, 7053313.901869954, 7053407.8125, 7053488.324968222, 7053630.987593685, 7053652.298141321, 7053733.888764877, 7053989.577784661, 7054030.437539759, 7054512.5, 7054847.352720441, 7054939.0625, 7054946.179358031, 7055575.310851649, 7055576.367137317, 7055598.174912291, 7055643.859814858, 7055726.5625, 7056185.536269076, 7056215.415398084, 7057405.8575586295, 7057475.356406076, 7057539.589977187, 7057939.0625, 7057992.1875, 7058418.0785752535, 7059226.980436409, 7059230.84006685, 7059853.125, 7059862.350309902, 7060856.25, 7061000.971657704, 7061981.25, 7061993.696784796, 7062463.57518604, 7062860.9375, 7063324.210727671, 7063396.157413938, 7063453.715937169, 7063700.87139056, 7064164.615251035, 7064642.938083584, 7064750.021318294, 7064882.8125, 7065068.538112941, 7065880.252424472, 7065967.212170966, 7065986.8735505985, 7066549.4085037075, 7066683.861800196, 7067016.375950914, 7067146.875, 7067181.25, 7067215.625, 7067276.5625, 7067384.375, 7067927.0977874445, 7067967.1875, 7068206.4151126575, 7068297.046084644, 7068552.980711952, 7068781.25, 7069000.730083086, 7069009.375, 7069049.955902136, 7069107.37216586, 7069483.146000805, 7069654.6875, 7070178.971536273, 7070181.073283763, 7070188.025877252, 7070504.607845371, 7070597.943630761, 7070944.47574215, 7071018.59776765, 7071111.752039764, 7071215.464822809, 7071244.92732368, 7071245.237087759, 7071256.001634696, 7071291.227561483, 7071449.68436826, 7071598.23449369, 7071602.107626648, 7071777.976361049, 7071990.625, 7072057.303389408, 7072083.3777276715, 7072146.875, 7072163.9634777345, 7072216.68227798, 7072224.563369472, 7072302.858993923, 7072769.2601793185, 7072873.4375, 7073057.8125, 7073226.296830715, 7073254.267009639, 7073451.139344482, 7073475.209094276, 7073515.625, 7073533.6552726505, 7073541.0904407585, 7073546.72293937, 7073705.354546174, 7073745.82883447, 7073920.6991888555, 7073938.660352551, 7074030.998738893, 7074140.108159124, 7074154.6875, 7074177.664087054, 7074201.142854668, 7074267.1875, 7074392.083984888, 7074504.340753222, 7074527.227957772, 7074686.428032611, 7074700.0, 7074781.9481858285, 7074893.8306700755, 7075007.263535689, 7075107.8125, 7075252.431037843, 7075261.413334813, 7075321.510986656, 7075422.6389836725, 7075748.4375, 7075821.875, 7075837.196350567, 7075932.8125, 7075943.75, 7075991.740567139, 7076303.586871062, 7076326.69330811, 7076825.0, 7076967.6125666695, 7076978.232084055, 7077000.209056045, 7077326.606704051, 7077340.9239888275, 7077504.123042664, 7077547.457704855, 7078056.536766674, 7078285.9375, 7078548.344428672, 7078642.1875, 7078819.154977719, 7079057.866856376, 7079468.7341640415, 7079547.383307822, 7079632.516183204, 7080002.647329173, 7080643.75, 7080820.281638824, 7081256.25, 7081564.332608155, 7081681.25, 7081994.1192287635, 7082574.496948883, 7082789.924734407, 7082856.840342152, 7083367.869148234, 7083703.125, 7083996.23268967, 7084023.1904966505, 7084029.6875, 7084058.04887135, 7084143.65171228, 7084235.860780542, 7084259.054165973, 7084343.475192727, 7084458.547869138, 7084474.972315999, 7084679.197742895, 7084928.770365263, 7084932.8125, 7084971.875, 7085239.491361187, 7085364.121875457, 7085900.954502128, 7085985.9375, 7086309.966872955, 7086417.51284305, 7086494.8529867185, 7086512.395899414, 7086589.0625, 7086601.033384879, 7086646.875, 7086663.506663011, 7086879.598067825, 7086887.5, 7087035.9375, 7087036.88641162, ...], [35.24906071978223, 73.53183173462325, 14.105382119387293, 9.129452325366916, 6.424501305711403, 7.128302089345975, 55.790351821815605, 68.66094068516249, 84.61874168394391, 43.04488230536538, 18.38338253753527, 18.541269858024506, 54.82346417846053, 16.694576886539828, 26.13718825749974, 5.43447296081136, 28.952137550991427, 5.660193709553189, 54.06602860413328, 89.89160549294397, 34.966133850977855, 13.971524566577314, 63.317434667745744, 79.84932051152823, 5.047509763377826, 63.53598856450397, 5.846380493421636, 24.88374843400171, 36.902168922332336, 70.50371291869577, 20.073684003386575, 50.94193058720271, 45.62800863457399, 45.616602643984685, 18.590591349956988, 14.919319508521248, 19.528726855828744, 7.929299646543923, 97.97187064005176, 75.82423270088847, 26.342821765496176, 6.563225601499607, 55.82120150528594, 14.951604591588483, 13.66093691917469, 26.131769197102606, 8.030081776226249, 50.71748250924527, 87.57274361737343, 46.82683925017076, 15.825946147061167, 29.110352619788372, 24.212002164020856, 15.80537127047385, 46.09074396061416, 18.89404865314572, 27.519394351064395, 63.728432504381345, 46.37640221004044, 85.09319442062981, 83.66036669670169, 17.109457987725754, 70.5043921128411, 102.05081206091691, 21.192190160252952, 15.795464970243472, 8.553749562411438, 59.10203397365375, 15.730438009048694, 9.64979100600356, 16.079594684331436, 7.023115827495589, 89.08085910582821, 94.10567239249642, 5.613418100477747, 5.104881692043166, 9.379343285850576, 31.825032912057353, 59.34733922017397, 23.800857758928778, 26.75079261150048, 62.6704788571197, 75.68465511911677, 6.972359594301904, 78.5094815568912, 82.0232681830268, 12.032090698196127, 66.57334472854865, 13.827489364271422, 5.48168068066116, 54.63098612115082, 37.135998761528235, 16.9251328855664, 22.270227323390756, 58.235481317310786, 69.09368188528194, 23.383477709065442, 24.29703540784889, 36.63597328188992, 123.5536310749163, 104.37223255998322, 6.321620337256098, 41.01396962402416, 9.616479341360789, 65.42770845074769, 79.9503558515587, 32.90062440533757, 64.69873537113118, 10.966554706233687, 6.305500797543198, 7.197843393101941, 30.272517974266528, 29.425159830943514, 64.92622831918383, 74.9502759167917, 59.011703342567465, 16.61899676512314, 64.05154139391304, 117.28374587792698, 5.647316788996795, 26.999377332587965, 122.92097623843104, 70.28277486837352, 74.45103328444333, 14.489296863610404, 5.181278248532317, 87.22229250506834, 7.619142215228986, 99.62284545095004, 10.999059301947765, 58.73202926130889, 12.689563312142607, 25.167817787438622, 19.98172725968272, 30.665322182659963, 19.848232258810604, 85.26247804640545, 67.19381125555087, 54.442407969869485, 49.38330612628302, 199.27220290143222, 11.903191426519445, 5.651923336327081, 16.901780651892672, 110.85299766489703, 34.38760463319989, 47.38843939303605, 108.5304403143263, 91.84353196348438, 33.838650471354924, 105.63677605100011, 34.54368257607713, 39.83738131273521, 63.837419837200905, 5.2666270157599495, 10.417420289577905, 72.44388880270475, 99.90636102078001, 56.0152071334832, 139.88872966439035, 40.575239658124765, 14.989429412480812, 21.250859876754603, 11.426054177626023, 18.661064347342695, 9.76394884204946, 78.83948516571529, 16.42281093675011, 7.614162876805813, 54.312957638290456, 70.95644696988062, 95.90029369169656, 23.821079199259692, 26.530028741351853, 68.16687486742548, 13.977585216330901, 48.57000961045229, 72.00973782641081, 86.5344173449481, 24.561749799466277, 17.253091383499232, 36.16766018071675, 75.94365983211087, 22.24221172848964, 49.3536042185927, 8.229121605023126, 108.24791674028684, 79.02360709100125, 61.30277698610068, 83.23053014078147, 5.786907722948121, 11.709184253861379, 55.43069444702097, 30.30919982293238, 43.96015524213702, 30.03933226777267, 17.70008849587831, 17.841413106321376, 20.959518051004803, 16.537173434718174, 18.446525178442258, 21.492754199324864, 17.88101039903014, 5.036420989309219, 146.33568588483354, 42.3234271157748, 38.57189725962615, 23.97695034737831, 242.88511463724572, 31.980900260414803, 22.55421436186276, 49.828254504575035, 25.4646558005799, 29.83542905360273, 24.60482925827879, 154.9359625261622, 44.281561597549704, 10.51961838628797, 7.204920888602144, 7.90360600447933, 43.47445648594655, 47.65818886981867, 9.686699258021763, 66.65614668940464, 6.378010846098766, 63.943887149725484, 25.12095733055516, 8.040522197495418, 55.54681714587443, 12.001025892700008, 47.87965538890222, 23.240519300934256, 78.20258493068815, 7.431602466582581, 9.156846094424562, 43.37032847985018, 28.620981370303685, 51.58196183799828, 32.00982489457748, 136.14190354420492, 6.928789545748975, 398.250549255583, 7.280282638318231, 16.391827134438063, 13.679851652332356, 40.38976212404281, 184.91832153655258, 45.84468773527068, 16.915383222263742, 60.96227493707704, 22.33145539147682, 13.068464990399102, 107.24230778690364, 69.12142348847065, 122.95654156425049, 102.63460434147214, 13.762883090478129, 110.0681068349067, 162.42441727714186, 30.668313725430345, 10.90616368515717, 5.733771897598648, 32.38277725521582, 65.7508014075739, 11.911514424016655, 29.639585027647705, 14.232875937675132, 64.5049951637919, 57.328765715811, 45.947373713231876, 13.503688412770982, 47.34462963698348, 7.5772985110116045, 40.759050772792634, 303.6591457709751, 119.94961002992895, 64.3951221168658, 15.92623501075252, 13.21244802545714, 6.128060669153138, 275.57594726173124, 79.87124165332158, 24.798810523906802, 5.786457960031784, 14.223878895363148, 6.626077937419066, 52.746576702358574, 65.35147116281905, 52.99267603326258, 39.546200055222634, 73.81608174815209, 16.558917330244977, 56.2684972861891, 85.18276081204803, 26.48760597184903, 8.785262092423995, 15.56405936819043, 23.611984727701778, 74.73533920393774, 33.35587988889341, 14.12440745399317, 19.57401015637889, 82.01205802991964, 7.775398167549358, 14.671453322608194, 52.46991676530134, 59.1995382966214, 104.2339415733965, 93.27793682697987, 5.255730868824349, 101.24925264907395, 221.24441318140413, 58.80331814005983, 8.70315856945277, 23.255706447452965, 75.02676198197244, 77.15415197771416, 14.658880012894068, 24.21699443090776, 25.94301605914396, 23.8820651581118, 57.35338421615942, 73.43524491294295, 9.787206395239865, 11.602345586987104, 26.209118575990264, 79.16591114173016, 33.210696128994954, 13.568625251047061, 26.25244848933867, 96.93267205456735, 11.800305377195365, 33.79025700923573, 45.59639703965739, 19.324762615987545, 33.05938473639882, 62.914305469205146, 14.69625009607101, 46.702293066379276, 10.451139658643637, 32.026505191980384, 7.983386270114595, 6.402307383594768, 10.73399085054079, 58.19122751956853, 45.612335798114614, 29.674310039409043, 56.94862294234438, 32.27419386593282, 23.119252903600888, 49.05020278178142, 35.00984904720432, 41.59674970118331, 195.3456256851112, 28.991104147878644, 9.194243489098533, 26.831743416418348, 12.481869470626611, 74.52548702022017, 67.4504082523429, 30.073714776506872, 54.450083172725115, 52.711313001398295, 87.19287830238054, 16.39432626080109, 121.50228206175433, 24.12830098925745, 22.00204294433998, 125.22428178802252, 20.163274420167305, 15.909557091275843, 68.00959341583497, 19.297314369770156, 21.12818612801479, 12.826685807077283, 85.5821181775409, 21.98429275450308, 29.010461530490023, 83.40008959053753, 17.53196092409962, 172.23688710587487, 58.73464358132078, 37.86344863941908, 30.349633259981893, 6.393539294641162, 14.694008187695346, 8.805827539701388, 14.319550001285084, 85.25765909670838, 9.630439630426705, 20.639883767704603, 56.27555927626859, 9.545923794535799, 103.63315647724144, 68.91820543986249, 18.28549319603661, 22.566242200840005, 95.72343195013033, 14.18703142488177, 68.38039850663587, 19.22975239455377, 32.022785478261994, 72.58578177759587, 37.54038203286373, 7.041686266751966, 66.76320988823834, 55.68246642077337, 41.84502956204648, 76.38300914427208, 23.446635253770225, 44.72538233309095, 12.506423153042116, 55.963713987266864, 6.149934179150898, 16.02793572256893, 16.4168423313691, 19.91433727434122, 14.027982650428648, 20.670436325622152, 14.404913325924449, 25.397842998647192, 38.74974149119968, 46.40353688123375, 81.48115384307346, 55.74554991938306, 8.438738738943856, 10.448628555455569, 52.985661544623326, 20.465192331739413, 15.291619209640087, 13.61253523256628, 20.650152174425642, 36.832582831714014, 9.48474950039865, 7.44137812109875, 17.805879013904494, 99.77220951696921, 15.955540534852904, 48.05275091090038, 26.028647233878086, 43.532510154249174, 8.420279862757097, 22.950335431479107, 99.07473600944684, 73.83330538765874, 25.56615119932641, 64.40118042606875, 62.599515431494076, 10.4340685029907, 100.86974628988393, 58.237671351184844, 10.820957846150163, 42.0289796451762, 34.59543096748294, 20.798168358714445, 12.03244767030585, 33.35118445034452, 385.78891339773594, 20.06996565530729, 15.58856955557524, 43.47505366040683, 19.19866570093063, 91.81163202148, 57.92676222609266, 7.960066146338566, 33.0299950171588, 115.17929829071072, 59.76653473902072, 73.9367798426295, 164.4604977543325, 42.26746644532951, 99.07667548677114, 50.97106751507399, 32.29702772479747, 26.210090859935033, 16.68909005845907, 52.45217299038161, 33.267606034866525, 26.801986980205683, 32.237058275764085, 25.41121828379393, 71.46740733827977, 16.476007694065803, 8.04410404384218, 10.814597085608114, 16.255433502457617, 192.37871289596734, 12.634979076092726, 32.29932329253262, 22.437170582911556, 23.39792668072335, 10.614459699530869, 50.20362954679977, 49.25151484178522, 38.495180572580296, 100.43468400211711, 65.9059866729274, 34.73245823333675, 20.680814670756575, 48.254530666235894, 38.58249630339675, 47.28091184131104, 42.88366247565334, 18.21003375537636, 12.312527656603331, 215.990194510511, 10.951750210325804, 150.37869782634579, 37.914943347119475, 52.301596553131745, 30.09633791520856, 62.61302070697646, 37.06195556299687, 81.98124681008416, 25.382737923084797, 133.05911032630308, 43.605934009806596, 39.53583311358634, 34.967502932235476, 6.932156109971266, 154.79486392021627, 28.800560855770282, 50.46466422900602, 64.8312617888149, 19.35842769825921, 221.03893888291185, 105.30474417878278, 28.5565971822456, 9.98088504531845, 13.01105163759964, 46.554013907736085, 30.45695874111568, 10.757431796314156, 17.9432087224844, 15.879918235997367, 81.92890427885608, 13.42914129758339, 27.291990139819628, 9.225581594183945, 28.08231314894539, 94.6810380323506, 13.901970280746179, 147.53727239074573, 83.86056654890885, 47.16620247309965, 22.87960908530082, 72.49585650355996, 71.42432977272964, 6.780000935546521, 25.575944968045018, 34.07094466080272, 14.118631351023158, 19.248179395465055, 86.60388671387504, 131.6607265990252, 6.460778359088396, 22.902794447798215, 83.708672484923, 74.90545869335594, 42.99495787252084, 79.10124476171066, 11.23916817644276, 16.86885345615067, 19.507249639539495, 15.984542555233377, 47.197563757518225, 33.97731093623932, 79.14312261816828, 52.14120101406478, 30.701175227352664, 9.005617861319303, 54.12148651372263, 59.893114971459, 26.52158941203741, 93.74967049811605, 19.50360300002907, 105.92459775527054, 17.97186835126736, 11.072032814062755, 22.165981165290567, 9.886309532309772, 21.59314589968829, 49.55879730669783, 7.669709095604673, 17.983426109223267, 15.429389085430277, 19.501894912885607, 5.802246318973592, 17.70909485216927, 15.998337827594685, 20.417225707812797, 49.2115893927547, 21.952528639279876, 44.268383345966285, 50.87605838995763, 90.66753195100341, 101.76179430847806, 9.222356633612108, 47.78955724503105, 18.109184351148123, 13.243326249521528, 42.11675754126967, 149.75352377845132, 139.19394455116935, 124.46927104628492, 5.79843270516804, 84.41786808122646, 5.603720263537073, 30.854584588454735, 11.562856604557982, 59.85483022650307, 76.26534686027613, 72.2715343865074, 10.23096150389822, 6.524867545382922, 55.07012737694203, 47.70162563448742, 21.222473284025533, 114.02505788283788, 18.566336928962087, 41.20202164930955, 67.17980631021763, 264.2907383721609, 26.604168973134, 52.84594934992472, 36.49854951573488, 31.126339833369094, 59.53558724741623, 8.521377322779005, 24.95179439409835, 7.320117866848173, 76.57294005994487, 47.14026957384963, 200.05907139911398, 40.185609811204465, 7.2162988141408, 90.43599283970126, 169.6066018620155, 17.740768549692916, 17.539127829620355, 20.35190478141272, 7.488122057884743, 26.975947915026918, 24.34712363568974, 5.745595345513351, 5.541541013310384, 56.8938342694194, 19.25904998282095, 61.027419819673426, 6.030082782318967, 44.05371397438243, 120.1871793042546, 15.696591234930786, 64.83935643401392, 116.4420947864032, 10.951113187113428, 17.67856487825862, 20.074234172155524, 12.293176089294779, 84.73134997414992, 43.53368165957122, 72.420881154354, 9.280155729526506, 17.71253385126511, 37.709853942782374, 46.249558885964525, 32.87024614770982, 7.303588960252043, 51.298656789447136, 8.331288074222824, 13.847456309724322, 7.110000818902831, 28.512784814536595, 28.121643363032792, 29.614442697211828, 21.56941063338035, 16.211577931353528, 30.303405202282867, 7.379992778300393, 53.87628798873139, 54.420891654420856, 59.82500174877197, 61.46393395976075, 53.67349503585341, 11.19626551105288, 39.13545750179865, 55.37293911442714, 69.17669911644008, 105.17006883175702, 12.231102717866781, 25.22618463470026, 41.92975477523194, 8.330721202056505, 69.36784919654352, 13.015406467005006, 23.4180835523919, 55.35018212278937, 37.37881488904277, 35.13651028624923, 14.367823990013774, 26.531507435673948, 11.914726918318516, 21.946390144449506, 191.0665791967658, 23.498029843993738, 44.71873294191391, 88.92206571003926, 41.523095028368125, 27.29211253049246, 5.838771662350712, 10.125910659726841, 5.079078842627459, 60.56512443151489, 31.744137780382296, 21.81465674952376, 15.805878008421749, 30.052742439708986, 35.28177930225303, 64.16798179128789, 83.16728174551862, 107.02569655049078, 23.101482966651652, 15.322915531450313, 44.16971689975283, 31.109618324652576, 8.14756879230246, 8.006828814066962, 20.36729030870245, 22.109936899082566, 16.17735546795807, 69.74520508782855, 5.93153006060612, 54.283866636859, 280.5538952730501, 14.686898653082547, 14.289344271414603, 9.346320762097122, 26.776503392717252, 38.75860689049818, 78.11076248261583, 22.01200246586516, 29.41443731493082, 85.18185286634721, 11.636932454450333, 13.680958432426541, 32.94855347175745, 42.81595142614617, 13.607838026430315, 34.17935831602934, 21.223604309092078, 11.02221157514283, 6.700646379328673, 66.18530603155384, 6.235073815324578, 5.861745798802483, 9.337165669040477, 25.29147675294147, 6.986581683787036, 7.623174731302335, 28.084798035683658, 25.54395125466195, 5.28018267125853, 18.92637044353348, 107.69705075258669, 20.138471988536992, 68.22765963003738, 62.79101806267249, 62.97377473541624, 79.85819677442439, 10.275186181006692, 6.022889888644036, 32.42759334736687, 82.1955926043735, 95.95536648990095, 145.06662706989835, 48.8193486494543, 98.14950895385005, 272.8019490830565, 33.8032396431344, 62.28883445907999, 92.97997453279777, 33.07386008031309, 33.32611835095619, 63.38579750991, 52.21829392628173, 68.51711147897967, 35.192174689601295, 8.741047605297531, 28.975308887816873, 33.022059702610214, 115.90818360836502, 26.980788533488244, 7.107472588711087, 6.185679072330951, 11.345281368883912, 42.18583598905715, 5.535472493401762, 28.47377250221665, 84.34273459082465, 162.99154698641667, 12.484193771653601, 38.474470794544644, 78.9999688146996, 11.885085369202898, 14.825964474702797, 32.83796961085928, 64.94189596883635, 26.5099147852546, 77.49318711808728, 62.06886267690267, 5.794816260764454, 96.62339526988652, 18.76831612381791, 17.351933203593884, 155.60829470778748, 45.55954558812083, 20.378768703007722, 66.02372206973027, 112.29046245644226, 98.70391562427005, 100.28769536875699, 30.68770305179066, 7.643444676147302, 62.01074102789844, 10.553575610533999, 39.06131390235292, 22.63763218150508, 15.374852506836188, 58.113677589346075, 81.61233965645596, 173.15582797774107, 10.218698058518319, 16.81606025651765, 10.542196941614256, 154.73855384570277, 51.86274238761978, 55.781155878822446, 30.53976109782957, 82.84502975052652, 5.8100532607639455, 28.258537980478422, 70.36350896786197, 21.727064582696045, 40.490380541445276, 101.40389583351536, 19.777333978177435, 17.570644744139244, 30.183146099167992, 28.397130322310687, 53.30900826106353, 24.945528547580178, 17.64329850432135, 62.28307759628349, 56.00010503809433, 8.876780320221712, 7.427601340676716, 26.653347292783277, 40.43948000665788, 49.800352641442096, 70.79298658163611, 113.40024230991061, 116.70733095346478, 9.829118573607024, 36.59155524505213, 11.3959834622468, 7.167162742111555, 25.9667795952961, 70.30351225610703, 10.035782697845356, 148.73931776245269, 46.96923542367731, 77.91741875967196, 5.105077142561082, 38.098889502391124, 12.77108576485467, 94.06611682503063, 195.17561580795558, 11.005442956827935, 48.74309629035505, 108.87024822182019, 45.38909807968764, 90.1602511455681, 25.71774027508658, 31.459474800487236, 14.661658225625434, 17.078139790986164, 29.480703530375997, 23.553100552027285, 80.57000804831712, 24.425060184516457, 85.6972238487623, 37.12063485703951, 48.85212466153758, 6.579502757102437, 60.291405987084694, 14.57705356005223, 5.119849500723421, 5.089958385870509, 22.451320941618825, 59.96158583967283, 63.23142210101965, 62.51729247117533, 107.3071028772346, 8.999481220414113, 93.76547296724584, 15.803237223192905, 68.26267603156711, 5.371654326859391, 21.63168710018386, 206.01644587428106, 18.285714918408164, 38.17659019115914, 7.226950874104598, 10.552375234324543, 8.15803014094312, 65.52522413359301, 60.97602610993381, 29.258391073772188, 25.609545536530106, 66.27808249539252, 10.969671165798935, 13.76632710527222, 5.566273116497292, 311.71910671511205, 76.2484878885833, 111.92629920434251, 355.3280482598712, 21.018176026908403, 200.26094014719595, 23.909202626164074, 6.13902026778798, 22.96610662398505, 321.9993353632031, 48.95350641927197, 71.74779147133503, 15.914385820585979, 58.35938851294114, 41.3441932699258, 7.0087219760886175, 5.640117389973202, 15.183125467603668, 38.21156288956258, 16.853808048609036, 9.423620424052016, 15.803066868283407, 21.450066308551122, 105.89804825661251, 73.12708896553563, 22.822697102183923, 7.198930989578121, 57.76350600745333, 90.00798087469678, 67.31710043511612, 16.74803630085799, 15.152818588114767, 16.13709237308495, 36.31385095315256, 5.6881556133662725, 21.71877558098333, 51.54823679401522, 8.2703245672508, 61.08513136590991, 9.570738180761294, 32.473020591822376, 26.17169195818069, 6.205666925496567, 19.703704282632266, 12.987233942801728, 7.869902669028601, 57.654409172078104, 7.3863484223176155, 75.61549494220422, 66.6920766071668, 33.029342904247606, 82.25047786448351, 110.54777298104241, 9.074094515573902, 92.17655206295001, 6.168061933332082, 27.988473171711032, 6.41296364406607, 44.38776533538448, 92.14065256935432, 56.11962795324408, 16.873989573076866, 195.3935726246577, 26.504911213633875, 55.82111736153089, 398.78824822280933, 158.98096751948538, 85.82556712985135, 82.96775850020447, 76.58292407230532, 11.542376081841418, 40.803572530043766, 13.17567957346691, 36.32713499303033, 75.8463970167997, 31.416826701226526, 185.1098962137006, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3593533.6073298957, 3692667.1875, 3693684.8544791504, 3694460.6885990184, 3695491.776256526, 3695684.4009962506, 3695725.0, 3696198.4375, 3696347.456395998, 3696519.9575768607, 3697194.431753911, 3697389.223102124, 3697704.6875, 3700454.664112146, 3701523.3038751367, 3710019.6607934833, 3726078.125, 3726094.5551123484, 3783364.0625, 3786548.4375, 3793984.9325052374, 3800084.0948935165, 3815321.410450079, 3817820.0398342772, 3892578.476046498, 3896032.8125, 3910659.803495657, 3913071.6588080237, 3914614.0625, 3927037.5, 3927039.9698765054, 3999631.25, 4024112.5, 4026867.1875, 4037517.8997900262, 4037595.642027792, 4043072.6256075418, 4073055.5071998113, 4095503.125, 4177589.4333857344, 4180453.0254467735, 4192080.156573577, 4217282.4165660255, 4217284.377646067, 4219832.430386474, 4577874.86603861, 6138880.731281627, 6144117.1875, 6166015.374894951, 6166942.359600332, 6168306.256622094, 6168367.286614265, 6169353.856853733, 6170132.218901195, 6170625.647519703, 6170994.829098312, 6171151.016563165, 6171254.944005762, 6171591.963194601, 6172060.9375, 6172166.688981818, 6172172.347247702, 6172354.27273588, 6172507.69703886, 6172544.781796686, 6172586.144848916, 6172587.973220219, 6172593.75, 6172603.756444776, 6172661.291479375, 6172669.01965237, 6172671.487222272, 6172914.0625, 6173122.687819055, 6173254.676178244, 6173292.511238123, 6173953.181157549, 6174238.799103912, 6174428.125, 6174437.203913306, 6174452.539167371, 6175246.6838154, 6176855.688885958, 6178386.900749339, 6179803.125, 6262770.086969879, 6263591.1356012495, 6300781.2444203505, 6303010.610917826, 6337047.330903345, 6378398.4375, 6380953.125, 6385891.063422638, 6392758.912666492, 6393390.625, 6393510.9375, 6396699.670693848, 6461590.366596878, 6493134.115206644, 6524652.215973045, 6547626.975067467, 6558341.043940322, 6562525.0, 6562526.881443478, 6564754.6875, 6571652.895896833, 6598445.171191057, 6603148.399246579, 6603156.144393956, 6656179.984765813, 6659044.032848726, 6659739.0625, 6659926.164604305, 6661626.5625, 6662045.3125, 6662113.570774599, 6662853.505001048, 6664515.625, 6665350.363943202, 6665649.023666957, 6665874.917867756, 6667045.3125, 6667442.1875, 6668356.25, 6670981.126072345, 6671053.795556212, 6683868.539342068, 6684457.856260641, 6684515.625, 6685506.166106129, 6690529.6875, 6696019.824833934, 6696041.990891119, 6697383.524037088, 6697787.758964359, 6697810.255124904, 6697975.973716895, 6698326.5625, 6698724.5679938495, 6699334.375, 6699478.110121345, 6699896.533509481, 6699942.852484165, 6700216.12792848, 6700556.25, 6700635.801656938, 6700904.6875, 6701017.1875, 6701037.5, 6701299.905648684, 6701548.561384802, 6701557.678400658, 6701942.1875, 6701981.25, 6702016.374810492, 6702052.617503006, 6702481.25, 6702666.786666368, 6702681.087542613, 6702700.168461383, 6702714.0625, 6702997.254834697, 6703116.662868775, 6703134.55784106, 6703211.659974226, 6703244.220783826, 6703256.25, 6703344.091005854, 6703412.530105868, 6703425.059500919, 6703463.403287743, 6703504.559291433, 6703568.501958248, 6703609.26533296, 6703688.005812635, 6703695.034318656, 6703792.458190314, 6703848.4375, 6703957.203252941, 6704034.988260588, 6704322.228933115, 6704373.22076041, 6704600.668945419, 6704616.548920534, 6704718.5918873325, 6704726.452246769, 6704764.0625, 6704814.786865581, 6705035.797726658, 6705139.0625, 6705269.939783624, 6705898.78017148, 6706407.8125, 6706914.125361228, 6707292.1875, 6707309.075907432, 6716930.133829155, 6721629.7800916275, 6724940.069793978, 6728564.426389747, 6741125.6911541745, 6747138.562465311, 6751284.978841411, 6752435.631276778, 6763485.333800893, 6765954.6875, 6769032.8125, 6770565.3425050955, 6773384.375, 6777020.012784416, 6777380.850175955, 6777637.5, 6777707.635791832, 6779485.9375, 6779672.626317253, 6781362.995417247, 6781387.330384155, 6781482.385204296, 6781525.308291401, 6783300.760546378, 6783962.786529506, 6795054.6875, 6795567.579788549, 6799985.104016683, 6804264.891973366, 6804856.25, 6810207.612697534, 6810302.628798131, 6810590.625, 6810603.62006092, 6810925.851226323, 6811577.783978468, 6811612.5, 6812261.999139557, 6812596.661083963, 6812664.0625, 6814286.56825574, 6814609.375, 6827414.74536172, 6840408.655648822, 6840692.962612083, 6843237.086072537, 6843942.7591205295, 6844130.022231259, 6860766.81179261, 6864173.4375, 6864198.4375, 6865423.651497109, 6865911.374105897, 6866023.4375, 6867090.2051258255, 6867865.028175603, 6868107.8125, 6868217.1875, 6868457.8125, 6868517.1875, 6868909.0271099815, 6869251.11520497, 6869575.457626838, 6869601.272354424, 6869993.603484025, 6870401.978756419, 6870528.125, 6870556.25, 6870914.512069588, 6870977.532198505, 6871121.540786097, 6871235.9375, 6871312.084953645, 6871434.417700087, 6871724.40168503, 6872323.254436084, 6876137.427708006, 6878488.490007061, 6882256.416379738, 6883870.3125, 6883987.5, 6883994.250046992, 6884029.145491327, 6884439.438206387, 6884451.5625, 6884601.5625, 6884609.15632329, 6884658.995974069, 6884807.610556026, 6885010.207808951, 6885404.6875, 6885501.367120378, 6885746.875, 6885773.4375, 6885790.625, 6885825.3681922415, 6886003.125, 6886207.349730911, 6886262.739614607, 6886327.399814922, 6886629.841776807, 6886738.751559027, 6886745.869371078, 6886785.104380131, 6886940.392727647, 6886968.033391209, 6887136.869297514, 6887295.764669439, 6887341.069215675, 6887506.25, 6887556.644418318, 6887743.75, 6887751.5625, 6887792.561364213, 6887896.875, 6888237.5, 6888240.625, 6888246.025110418, 6888418.892331713, 6888450.0, 6888493.75, 6888545.236318609, 6888588.095015193, 6888685.791711604, 6888818.460211766, 6888946.875, 6889122.866161031, 6889258.306480662, 6889623.721323056, 6889635.974191512, 6890000.0, 6890064.94446062, 6890137.086245236, 6890424.873493443, 6890526.060269019, 6890609.766531258, 6890755.564524302, 6890913.335389633, 6891451.006983983, 6891708.733967133, 6891721.875, 6891729.62163, 6891920.231257437, 6892319.831761064, 6892481.25, 6892516.566497283, 6892565.061948163, 6892749.732611344, 6892892.1875, 6893047.779173284, 6893196.6118771555, 6893646.875, 6894535.9375, 6894805.1565456195, 6894811.407196048, 6897166.511294914, 6899847.022660352, 6899863.887060044, 6903625.575356724, 6903676.395707668, 6905374.90816525, 6905710.097322987, 6905712.5, 6907981.833744831, 6908221.875, 6911221.723467895, 6911254.2310235705, 6917423.4375, 6927433.147738558, 6928585.9375, 6929676.2914938945, 6931619.862049252, 6932467.1875, 6934354.042990233, 6935726.7952344045, 6937602.040661393, 6937683.622576715, 6937749.636764655, 6938422.744445702, 6939149.839106963, 6939787.564162874, 6942204.6875, 6943985.268658144, 6944311.483714714, 6944448.772974847, 6945685.9375, 6947256.25, 6947860.748918629, 6948149.376071002, 6948473.371013496, 6948597.742833609, 6948723.264155516, 6949114.0625, 6950061.271180031, 6950250.9724929705, 6956535.9375, 6956681.493256391, 6958513.508597545, 6959504.6875, 6961361.5187934395, 6963118.459552721, 6963182.8125, 6966109.161892826, 6966296.875, 6966733.613629601, 6967583.196778121, 6968351.626193938, 6970633.8443225315, 6971877.812612175, 6972475.0, 6974529.6875, 6975298.4375, 6980957.591664186, 6984896.550813759, 6988412.5, 6993100.73320997, 6995624.636896754, 6998622.449343205, 7002164.321049921, 7002975.339799643, 7003557.21796782, 7003798.175233922, 7003905.663378332, 7004152.976714823, 7004377.943861467, 7004398.4375, 7004421.875, 7004563.648369641, 7004810.9375, 7004940.902066821, 7004974.517278548, 7005143.75, 7005307.202890054, 7005369.382308567, 7005808.976374588, 7006133.786132171, 7006326.537706586, 7006343.925953769, 7006371.404153638, 7006419.650134785, 7006526.5625, 7006555.246412975, 7006617.1875, 7006763.897250615, 7007070.3125, 7007161.182055925, 7007182.447144658, 7007184.782121465, 7007255.710832817, 7007523.267468647, 7007524.97872563, 7007535.298788695, 7007549.5057512075, 7007703.988814262, 7007746.402570398, 7007813.0299190665, 7007823.740682797, 7007983.373831683, 7007997.618950893, 7008008.323279098, 7008167.1875, 7008330.801584261, 7008509.138071635, 7008626.722501497, 7008771.875, 7008806.87139124, 7009104.6875, 7009110.9375, 7009125.889428649, 7009138.045278276, 7009171.875, 7009178.229719912, 7009446.639592686, 7009485.927551011, 7009498.4375, 7009650.021463726, 7009657.126724941, 7009712.188041395, 7009798.308386215, 7009928.518632927, 7010011.9749746835, 7010298.168935775, 7010503.031427841, 7010505.926332713, 7010737.867080746, 7010791.499903956, 7010805.039204138, 7010858.886493763, 7011170.102500222, 7011170.619222013, 7011335.536519206, 7011360.164159362, 7011457.079589143, 7011560.775110043, 7011573.109368158, 7011646.51979631, 7011714.0625, 7011717.1875, 7011835.863514513, 7012001.210974245, 7012003.364594171, 7012259.375, 7012358.052441231, 7012610.9375, 7012990.625, 7012993.75, 7013121.875, 7013180.34300697, 7013314.707912379, 7013605.604694645, 7013617.071934241, 7014170.3125, 7014267.1875, 7014571.875, 7014585.9375, 7014819.781976353, 7014996.788686426, 7015030.462194122, 7015123.735156613, 7015216.430733456, 7015282.8125, 7015342.096656919, 7015496.765762891, 7015561.727374194, 7015649.090540155, 7016059.014467437, 7016171.875, 7016302.047913723, 7016324.255600523, 7016338.117807727, 7016521.05475708, 7016587.5, 7016681.929729433, 7016725.943310323, 7016762.778579077, 7016810.9375, 7016818.499449074, 7016917.783048891, 7016939.288688008, 7017115.420805831, 7017219.849716178, 7017265.559464373, 7017267.059641029, 7017289.13275656, 7017545.537458036, 7017549.697625256, 7017839.048068189, 7017913.389249026, 7017918.75, 7018107.509499343, 7018126.5625, 7018130.49900413, 7018143.832061946, 7018163.159486127, 7018187.5, 7018231.0159475915, 7018488.303577897, 7018501.5625, 7018572.791175242, 7018907.642565091, 7019103.7941045845, 7019127.664638427, 7019175.717415673, 7019299.16361076, 7019517.550226362, 7019967.257658069, 7020018.946832888, 7020373.7267787205, 7020592.436647839, 7020607.8125, 7020840.935973976, 7020857.8125, 7020926.268074804, 7020950.5540402755, 7021046.462826172, 7021076.5625, 7021111.221859785, 7021149.459505099, 7021166.902764768, 7021319.5869019125, 7021355.848391678, 7021367.805857764, 7021406.2140871035, 7021498.002407478, 7021553.715645827, 7021676.924540305, 7021684.67065414, 7021715.805118746, 7021830.307690485, 7021842.309871361, 7021897.05209953, 7021929.527645373, 7022306.408033754, 7022416.960389132, 7022479.072432974, 7022743.75, 7022782.357354397, 7022804.6875, 7022864.076699911, 7023163.414381745, 7023233.014279666, 7023382.680657504, 7023437.843396912, 7023542.707025532, 7023546.344516178, 7023564.0625, 7023607.328170652, 7023875.0, 7024045.3125, 7024195.100139035, 7024221.875, 7024231.061866867, 7024254.442373898, 7024400.261631466, 7024406.25, 7024603.42544469, 7024725.0, 7024907.151511478, 7024945.549324059, 7025293.75, 7025384.592341419, 7025940.798786797, 7026484.375, 7026538.208761636, 7026648.411170435, 7026871.106177491, 7027005.955268841, 7027025.603086989, 7027070.3125, 7027153.004473126, 7027159.375, 7027675.0, 7027814.481598906, 7028705.744063011, 7029202.2679388635, 7029250.0, 7029545.3125, 7029606.25, 7029707.8125, 7030080.036431449, 7030094.85236769, 7030104.6875, 7030174.018548706, 7030211.380303177, 7030479.490687073, 7030512.1700973455, 7030587.41652032, 7030696.620297119, 7030730.280922662, 7030740.798099747, 7030757.8125, 7031072.680019378, 7031083.456104658, 7031107.235492106, 7031192.023020738, 7031321.875, 7031322.059937101, 7031449.731612117, 7031531.5195232695, 7031540.509004683, 7031541.195785702, 7031574.344942053, 7031594.386414976, 7031672.894108364, 7031770.980524875, 7031825.0, 7031842.126263781, 7031866.201402084, 7032052.749852379, 7032054.038329464, 7032129.398132097, 7032178.7753495015, 7032196.787276881, 7032320.396102406, 7032343.429944582, 7032401.518759249, 7032462.1445509335, 7032518.419887711, 7032735.9375, 7032935.847144469, 7032945.610079311, 7033337.5, 7033432.149987072, 7034122.051266445, 7034298.07957008, 7035329.6875, 7035560.470327294, 7035735.880854068, 7035915.668423371, 7036087.5, 7036521.875, 7036539.150874282, 7036682.640841369, 7036802.169756646, 7037202.253525316, 7037389.823189339, 7037515.707554154, 7037754.6875, 7037761.882517111, 7037763.894210046, 7037843.75, 7037899.540423744, 7037983.663635765, 7038049.434541817, 7038067.077921538, 7038114.513720826, 7038120.085862824, 7038211.479411853, 7038336.138745484, 7038339.0625, 7038348.565936016, 7038389.0625, 7038483.4996716175, 7038689.392028726, 7038755.4981801575, 7038808.36477904, 7038926.804478732, 7038932.829511, 7038977.656641484, 7038984.584686759, 7039006.25, 7039025.059323966, 7039042.1875, 7039071.875, 7039127.892235238, 7039160.903987263, 7039248.534092481, 7039307.091990605, 7039343.75, 7039380.977545099, 7039411.930672401, 7039479.427660095, 7039513.622188956, 7039617.477897808, 7039703.039334615, 7039778.034120351, 7039873.4375, 7039873.579314938, 7039931.181556676, 7039959.192685342, 7040057.830089801, 7040070.577165438, 7040109.375, 7040329.6875, 7040334.416483151, 7040418.75, 7040649.62411523, 7040694.053062592, 7040794.937166657, 7040882.8125, 7041015.625, 7041135.537262992, 7041362.5, 7041507.930079261, 7041512.431442469, 7041551.239264339, 7041568.012797459, 7041623.178932975, 7041644.37533981, 7041721.881807179, 7041908.425517328, 7041985.398321721, 7042025.054788634, 7042230.780252905, 7042299.033751468, 7042546.517899724, 7042627.322431793, 7042695.3125, 7042696.227563949, 7043052.592305523, 7043200.0, 7043326.5625, 7043648.4375, 7043690.001288822, 7043999.348688487, 7044096.45707408, 7044920.3125, 7045196.875, 7046717.456796696, 7047415.911549775, 7048163.368637251, 7048335.302258089, 7048430.270079842, 7048481.25, 7049057.132170269, 7049090.625, 7049482.092055266, 7049665.625, 7049813.298352661, 7050384.375, 7050565.625, 7050691.395736582, 7050921.964405893, 7051235.9375, 7051592.705935588, 7051711.587608079, 7051718.696553011, 7051816.513834576, 7051914.197376399, 7051943.626135862, 7052190.6741865855, 7052303.122399154, 7052318.75, 7052425.766199852, 7052763.223356383, 7052928.125, 7052990.625, 7053130.12343157, 7053196.844351508, 7053206.25, 7053258.819623272, 7053313.901869954, 7053407.8125, 7053488.324968222, 7053630.987593685, 7053652.298141321, 7053733.888764877, 7053989.577784661, 7054030.437539759, 7054512.5, 7054847.352720441, 7054939.0625, 7054946.179358031, 7055575.310851649, 7055576.367137317, 7055598.174912291, 7055643.859814858, 7055726.5625, 7056185.536269076, 7056215.415398084, 7057405.8575586295, 7057475.356406076, 7057539.589977187, 7057939.0625, 7057992.1875, 7058418.0785752535, 7059226.980436409, 7059230.84006685, 7059853.125, 7059862.350309902, 7060856.25, 7061000.971657704, 7061981.25, 7061993.696784796, 7062463.57518604, 7062860.9375, 7063324.210727671, 7063396.157413938, 7063453.715937169, 7063700.87139056, 7064164.615251035, 7064642.938083584, 7064750.021318294, 7064882.8125, 7065068.538112941, 7065880.252424472, 7065967.212170966, 7065986.8735505985, 7066549.4085037075, 7066683.861800196, 7067016.375950914, 7067146.875, 7067181.25, 7067215.625, 7067276.5625, 7067384.375, 7067927.0977874445, 7067967.1875, 7068206.4151126575, 7068297.046084644, 7068552.980711952, 7068781.25, 7069000.730083086, 7069009.375, 7069049.955902136, 7069107.37216586, 7069483.146000805, 7069654.6875, 7070178.971536273, 7070181.073283763, 7070188.025877252, 7070504.607845371, 7070597.943630761, 7070944.47574215, 7071018.59776765, 7071111.752039764, 7071215.464822809, 7071244.92732368, 7071245.237087759, 7071256.001634696, 7071291.227561483, 7071449.68436826, 7071598.23449369, 7071602.107626648, 7071777.976361049, 7071990.625, 7072057.303389408, 7072083.3777276715, 7072146.875, 7072163.9634777345, 7072216.68227798, 7072224.563369472, 7072302.858993923, 7072769.2601793185, 7072873.4375, 7073057.8125, 7073226.296830715, 7073254.267009639, 7073451.139344482, 7073475.209094276, 7073515.625, 7073533.6552726505, 7073541.0904407585, 7073546.72293937, 7073705.354546174, 7073745.82883447, 7073920.6991888555, 7073938.660352551, 7074030.998738893, 7074140.108159124, 7074154.6875, 7074177.664087054, 7074201.142854668, 7074267.1875, 7074392.083984888, 7074504.340753222, 7074527.227957772, 7074686.428032611, 7074700.0, 7074781.9481858285, 7074893.8306700755, 7075007.263535689, 7075107.8125, 7075252.431037843, 7075261.413334813, 7075321.510986656, 7075422.6389836725, 7075748.4375, 7075821.875, 7075837.196350567, 7075932.8125, 7075943.75, 7075991.740567139, 7076303.586871062, 7076326.69330811, 7076825.0, 7076967.6125666695, 7076978.232084055, 7077000.209056045, 7077326.606704051, 7077340.9239888275, 7077504.123042664, 7077547.457704855, 7078056.536766674, 7078285.9375, 7078548.344428672, 7078642.1875, 7078819.154977719, 7079057.866856376, 7079468.7341640415, 7079547.383307822, 7079632.516183204, 7080002.647329173, 7080643.75, 7080820.281638824, 7081256.25, 7081564.332608155, 7081681.25, 7081994.1192287635, 7082574.496948883, 7082789.924734407, 7082856.840342152, 7083367.869148234, 7083703.125, 7083996.23268967, 7084023.1904966505, 7084029.6875, 7084058.04887135, 7084143.65171228, 7084235.860780542, 7084259.054165973, 7084343.475192727, 7084458.547869138, 7084474.972315999, 7084679.197742895, 7084928.770365263, 7084932.8125, 7084971.875, 7085239.491361187, 7085364.121875457, 7085900.954502128, 7085985.9375, 7086309.966872955, 7086417.51284305, 7086494.8529867185, 7086512.395899414, 7086589.0625, 7086601.033384879, 7086646.875, 7086663.506663011, 7086879.598067825, 7086887.5, 7087035.9375, 7087036.88641162, ...], [35.24906071978223, 73.53183173462325, 14.105382119387293, 9.129452325366916, 6.424501305711403, 7.128302089345975, 55.790351821815605, 68.66094068516249, 84.61874168394391, 43.04488230536538, 18.38338253753527, 18.541269858024506, 54.82346417846053, 16.694576886539828, 26.13718825749974, 5.43447296081136, 28.952137550991427, 5.660193709553189, 54.06602860413328, 89.89160549294397, 34.966133850977855, 13.971524566577314, 63.317434667745744, 79.84932051152823, 5.047509763377826, 63.53598856450397, 5.846380493421636, 24.88374843400171, 36.902168922332336, 70.50371291869577, 20.073684003386575, 50.94193058720271, 45.62800863457399, 45.616602643984685, 18.590591349956988, 14.919319508521248, 19.528726855828744, 7.929299646543923, 97.97187064005176, 75.82423270088847, 26.342821765496176, 6.563225601499607, 55.82120150528594, 14.951604591588483, 13.66093691917469, 26.131769197102606, 8.030081776226249, 50.71748250924527, 87.57274361737343, 46.82683925017076, 15.825946147061167, 29.110352619788372, 24.212002164020856, 15.80537127047385, 46.09074396061416, 18.89404865314572, 27.519394351064395, 63.728432504381345, 46.37640221004044, 85.09319442062981, 83.66036669670169, 17.109457987725754, 70.5043921128411, 102.05081206091691, 21.192190160252952, 15.795464970243472, 8.553749562411438, 59.10203397365375, 15.730438009048694, 9.64979100600356, 16.079594684331436, 7.023115827495589, 89.08085910582821, 94.10567239249642, 5.613418100477747, 5.104881692043166, 9.379343285850576, 31.825032912057353, 59.34733922017397, 23.800857758928778, 26.75079261150048, 62.6704788571197, 75.68465511911677, 6.972359594301904, 78.5094815568912, 82.0232681830268, 12.032090698196127, 66.57334472854865, 13.827489364271422, 5.48168068066116, 54.63098612115082, 37.135998761528235, 16.9251328855664, 22.270227323390756, 58.235481317310786, 69.09368188528194, 23.383477709065442, 24.29703540784889, 36.63597328188992, 123.5536310749163, 104.37223255998322, 6.321620337256098, 41.01396962402416, 9.616479341360789, 65.42770845074769, 79.9503558515587, 32.90062440533757, 64.69873537113118, 10.966554706233687, 6.305500797543198, 7.197843393101941, 30.272517974266528, 29.425159830943514, 64.92622831918383, 74.9502759167917, 59.011703342567465, 16.61899676512314, 64.05154139391304, 117.28374587792698, 5.647316788996795, 26.999377332587965, 122.92097623843104, 70.28277486837352, 74.45103328444333, 14.489296863610404, 5.181278248532317, 87.22229250506834, 7.619142215228986, 99.62284545095004, 10.999059301947765, 58.73202926130889, 12.689563312142607, 25.167817787438622, 19.98172725968272, 30.665322182659963, 19.848232258810604, 85.26247804640545, 67.19381125555087, 54.442407969869485, 49.38330612628302, 199.27220290143222, 11.903191426519445, 5.651923336327081, 16.901780651892672, 110.85299766489703, 34.38760463319989, 47.38843939303605, 108.5304403143263, 91.84353196348438, 33.838650471354924, 105.63677605100011, 34.54368257607713, 39.83738131273521, 63.837419837200905, 5.2666270157599495, 10.417420289577905, 72.44388880270475, 99.90636102078001, 56.0152071334832, 139.88872966439035, 40.575239658124765, 14.989429412480812, 21.250859876754603, 11.426054177626023, 18.661064347342695, 9.76394884204946, 78.83948516571529, 16.42281093675011, 7.614162876805813, 54.312957638290456, 70.95644696988062, 95.90029369169656, 23.821079199259692, 26.530028741351853, 68.16687486742548, 13.977585216330901, 48.57000961045229, 72.00973782641081, 86.5344173449481, 24.561749799466277, 17.253091383499232, 36.16766018071675, 75.94365983211087, 22.24221172848964, 49.3536042185927, 8.229121605023126, 108.24791674028684, 79.02360709100125, 61.30277698610068, 83.23053014078147, 5.786907722948121, 11.709184253861379, 55.43069444702097, 30.30919982293238, 43.96015524213702, 30.03933226777267, 17.70008849587831, 17.841413106321376, 20.959518051004803, 16.537173434718174, 18.446525178442258, 21.492754199324864, 17.88101039903014, 5.036420989309219, 146.33568588483354, 42.3234271157748, 38.57189725962615, 23.97695034737831, 242.88511463724572, 31.980900260414803, 22.55421436186276, 49.828254504575035, 25.4646558005799, 29.83542905360273, 24.60482925827879, 154.9359625261622, 44.281561597549704, 10.51961838628797, 7.204920888602144, 7.90360600447933, 43.47445648594655, 47.65818886981867, 9.686699258021763, 66.65614668940464, 6.378010846098766, 63.943887149725484, 25.12095733055516, 8.040522197495418, 55.54681714587443, 12.001025892700008, 47.87965538890222, 23.240519300934256, 78.20258493068815, 7.431602466582581, 9.156846094424562, 43.37032847985018, 28.620981370303685, 51.58196183799828, 32.00982489457748, 136.14190354420492, 6.928789545748975, 398.250549255583, 7.280282638318231, 16.391827134438063, 13.679851652332356, 40.38976212404281, 184.91832153655258, 45.84468773527068, 16.915383222263742, 60.96227493707704, 22.33145539147682, 13.068464990399102, 107.24230778690364, 69.12142348847065, 122.95654156425049, 102.63460434147214, 13.762883090478129, 110.0681068349067, 162.42441727714186, 30.668313725430345, 10.90616368515717, 5.733771897598648, 32.38277725521582, 65.7508014075739, 11.911514424016655, 29.639585027647705, 14.232875937675132, 64.5049951637919, 57.328765715811, 45.947373713231876, 13.503688412770982, 47.34462963698348, 7.5772985110116045, 40.759050772792634, 303.6591457709751, 119.94961002992895, 64.3951221168658, 15.92623501075252, 13.21244802545714, 6.128060669153138, 275.57594726173124, 79.87124165332158, 24.798810523906802, 5.786457960031784, 14.223878895363148, 6.626077937419066, 52.746576702358574, 65.35147116281905, 52.99267603326258, 39.546200055222634, 73.81608174815209, 16.558917330244977, 56.2684972861891, 85.18276081204803, 26.48760597184903, 8.785262092423995, 15.56405936819043, 23.611984727701778, 74.73533920393774, 33.35587988889341, 14.12440745399317, 19.57401015637889, 82.01205802991964, 7.775398167549358, 14.671453322608194, 52.46991676530134, 59.1995382966214, 104.2339415733965, 93.27793682697987, 5.255730868824349, 101.24925264907395, 221.24441318140413, 58.80331814005983, 8.70315856945277, 23.255706447452965, 75.02676198197244, 77.15415197771416, 14.658880012894068, 24.21699443090776, 25.94301605914396, 23.8820651581118, 57.35338421615942, 73.43524491294295, 9.787206395239865, 11.602345586987104, 26.209118575990264, 79.16591114173016, 33.210696128994954, 13.568625251047061, 26.25244848933867, 96.93267205456735, 11.800305377195365, 33.79025700923573, 45.59639703965739, 19.324762615987545, 33.05938473639882, 62.914305469205146, 14.69625009607101, 46.702293066379276, 10.451139658643637, 32.026505191980384, 7.983386270114595, 6.402307383594768, 10.73399085054079, 58.19122751956853, 45.612335798114614, 29.674310039409043, 56.94862294234438, 32.27419386593282, 23.119252903600888, 49.05020278178142, 35.00984904720432, 41.59674970118331, 195.3456256851112, 28.991104147878644, 9.194243489098533, 26.831743416418348, 12.481869470626611, 74.52548702022017, 67.4504082523429, 30.073714776506872, 54.450083172725115, 52.711313001398295, 87.19287830238054, 16.39432626080109, 121.50228206175433, 24.12830098925745, 22.00204294433998, 125.22428178802252, 20.163274420167305, 15.909557091275843, 68.00959341583497, 19.297314369770156, 21.12818612801479, 12.826685807077283, 85.5821181775409, 21.98429275450308, 29.010461530490023, 83.40008959053753, 17.53196092409962, 172.23688710587487, 58.73464358132078, 37.86344863941908, 30.349633259981893, 6.393539294641162, 14.694008187695346, 8.805827539701388, 14.319550001285084, 85.25765909670838, 9.630439630426705, 20.639883767704603, 56.27555927626859, 9.545923794535799, 103.63315647724144, 68.91820543986249, 18.28549319603661, 22.566242200840005, 95.72343195013033, 14.18703142488177, 68.38039850663587, 19.22975239455377, 32.022785478261994, 72.58578177759587, 37.54038203286373, 7.041686266751966, 66.76320988823834, 55.68246642077337, 41.84502956204648, 76.38300914427208, 23.446635253770225, 44.72538233309095, 12.506423153042116, 55.963713987266864, 6.149934179150898, 16.02793572256893, 16.4168423313691, 19.91433727434122, 14.027982650428648, 20.670436325622152, 14.404913325924449, 25.397842998647192, 38.74974149119968, 46.40353688123375, 81.48115384307346, 55.74554991938306, 8.438738738943856, 10.448628555455569, 52.985661544623326, 20.465192331739413, 15.291619209640087, 13.61253523256628, 20.650152174425642, 36.832582831714014, 9.48474950039865, 7.44137812109875, 17.805879013904494, 99.77220951696921, 15.955540534852904, 48.05275091090038, 26.028647233878086, 43.532510154249174, 8.420279862757097, 22.950335431479107, 99.07473600944684, 73.83330538765874, 25.56615119932641, 64.40118042606875, 62.599515431494076, 10.4340685029907, 100.86974628988393, 58.237671351184844, 10.820957846150163, 42.0289796451762, 34.59543096748294, 20.798168358714445, 12.03244767030585, 33.35118445034452, 385.78891339773594, 20.06996565530729, 15.58856955557524, 43.47505366040683, 19.19866570093063, 91.81163202148, 57.92676222609266, 7.960066146338566, 33.0299950171588, 115.17929829071072, 59.76653473902072, 73.9367798426295, 164.4604977543325, 42.26746644532951, 99.07667548677114, 50.97106751507399, 32.29702772479747, 26.210090859935033, 16.68909005845907, 52.45217299038161, 33.267606034866525, 26.801986980205683, 32.237058275764085, 25.41121828379393, 71.46740733827977, 16.476007694065803, 8.04410404384218, 10.814597085608114, 16.255433502457617, 192.37871289596734, 12.634979076092726, 32.29932329253262, 22.437170582911556, 23.39792668072335, 10.614459699530869, 50.20362954679977, 49.25151484178522, 38.495180572580296, 100.43468400211711, 65.9059866729274, 34.73245823333675, 20.680814670756575, 48.254530666235894, 38.58249630339675, 47.28091184131104, 42.88366247565334, 18.21003375537636, 12.312527656603331, 215.990194510511, 10.951750210325804, 150.37869782634579, 37.914943347119475, 52.301596553131745, 30.09633791520856, 62.61302070697646, 37.06195556299687, 81.98124681008416, 25.382737923084797, 133.05911032630308, 43.605934009806596, 39.53583311358634, 34.967502932235476, 6.932156109971266, 154.79486392021627, 28.800560855770282, 50.46466422900602, 64.8312617888149, 19.35842769825921, 221.03893888291185, 105.30474417878278, 28.5565971822456, 9.98088504531845, 13.01105163759964, 46.554013907736085, 30.45695874111568, 10.757431796314156, 17.9432087224844, 15.879918235997367, 81.92890427885608, 13.42914129758339, 27.291990139819628, 9.225581594183945, 28.08231314894539, 94.6810380323506, 13.901970280746179, 147.53727239074573, 83.86056654890885, 47.16620247309965, 22.87960908530082, 72.49585650355996, 71.42432977272964, 6.780000935546521, 25.575944968045018, 34.07094466080272, 14.118631351023158, 19.248179395465055, 86.60388671387504, 131.6607265990252, 6.460778359088396, 22.902794447798215, 83.708672484923, 74.90545869335594, 42.99495787252084, 79.10124476171066, 11.23916817644276, 16.86885345615067, 19.507249639539495, 15.984542555233377, 47.197563757518225, 33.97731093623932, 79.14312261816828, 52.14120101406478, 30.701175227352664, 9.005617861319303, 54.12148651372263, 59.893114971459, 26.52158941203741, 93.74967049811605, 19.50360300002907, 105.92459775527054, 17.97186835126736, 11.072032814062755, 22.165981165290567, 9.886309532309772, 21.59314589968829, 49.55879730669783, 7.669709095604673, 17.983426109223267, 15.429389085430277, 19.501894912885607, 5.802246318973592, 17.70909485216927, 15.998337827594685, 20.417225707812797, 49.2115893927547, 21.952528639279876, 44.268383345966285, 50.87605838995763, 90.66753195100341, 101.76179430847806, 9.222356633612108, 47.78955724503105, 18.109184351148123, 13.243326249521528, 42.11675754126967, 149.75352377845132, 139.19394455116935, 124.46927104628492, 5.79843270516804, 84.41786808122646, 5.603720263537073, 30.854584588454735, 11.562856604557982, 59.85483022650307, 76.26534686027613, 72.2715343865074, 10.23096150389822, 6.524867545382922, 55.07012737694203, 47.70162563448742, 21.222473284025533, 114.02505788283788, 18.566336928962087, 41.20202164930955, 67.17980631021763, 264.2907383721609, 26.604168973134, 52.84594934992472, 36.49854951573488, 31.126339833369094, 59.53558724741623, 8.521377322779005, 24.95179439409835, 7.320117866848173, 76.57294005994487, 47.14026957384963, 200.05907139911398, 40.185609811204465, 7.2162988141408, 90.43599283970126, 169.6066018620155, 17.740768549692916, 17.539127829620355, 20.35190478141272, 7.488122057884743, 26.975947915026918, 24.34712363568974, 5.745595345513351, 5.541541013310384, 56.8938342694194, 19.25904998282095, 61.027419819673426, 6.030082782318967, 44.05371397438243, 120.1871793042546, 15.696591234930786, 64.83935643401392, 116.4420947864032, 10.951113187113428, 17.67856487825862, 20.074234172155524, 12.293176089294779, 84.73134997414992, 43.53368165957122, 72.420881154354, 9.280155729526506, 17.71253385126511, 37.709853942782374, 46.249558885964525, 32.87024614770982, 7.303588960252043, 51.298656789447136, 8.331288074222824, 13.847456309724322, 7.110000818902831, 28.512784814536595, 28.121643363032792, 29.614442697211828, 21.56941063338035, 16.211577931353528, 30.303405202282867, 7.379992778300393, 53.87628798873139, 54.420891654420856, 59.82500174877197, 61.46393395976075, 53.67349503585341, 11.19626551105288, 39.13545750179865, 55.37293911442714, 69.17669911644008, 105.17006883175702, 12.231102717866781, 25.22618463470026, 41.92975477523194, 8.330721202056505, 69.36784919654352, 13.015406467005006, 23.4180835523919, 55.35018212278937, 37.37881488904277, 35.13651028624923, 14.367823990013774, 26.531507435673948, 11.914726918318516, 21.946390144449506, 191.0665791967658, 23.498029843993738, 44.71873294191391, 88.92206571003926, 41.523095028368125, 27.29211253049246, 5.838771662350712, 10.125910659726841, 5.079078842627459, 60.56512443151489, 31.744137780382296, 21.81465674952376, 15.805878008421749, 30.052742439708986, 35.28177930225303, 64.16798179128789, 83.16728174551862, 107.02569655049078, 23.101482966651652, 15.322915531450313, 44.16971689975283, 31.109618324652576, 8.14756879230246, 8.006828814066962, 20.36729030870245, 22.109936899082566, 16.17735546795807, 69.74520508782855, 5.93153006060612, 54.283866636859, 280.5538952730501, 14.686898653082547, 14.289344271414603, 9.346320762097122, 26.776503392717252, 38.75860689049818, 78.11076248261583, 22.01200246586516, 29.41443731493082, 85.18185286634721, 11.636932454450333, 13.680958432426541, 32.94855347175745, 42.81595142614617, 13.607838026430315, 34.17935831602934, 21.223604309092078, 11.02221157514283, 6.700646379328673, 66.18530603155384, 6.235073815324578, 5.861745798802483, 9.337165669040477, 25.29147675294147, 6.986581683787036, 7.623174731302335, 28.084798035683658, 25.54395125466195, 5.28018267125853, 18.92637044353348, 107.69705075258669, 20.138471988536992, 68.22765963003738, 62.79101806267249, 62.97377473541624, 79.85819677442439, 10.275186181006692, 6.022889888644036, 32.42759334736687, 82.1955926043735, 95.95536648990095, 145.06662706989835, 48.8193486494543, 98.14950895385005, 272.8019490830565, 33.8032396431344, 62.28883445907999, 92.97997453279777, 33.07386008031309, 33.32611835095619, 63.38579750991, 52.21829392628173, 68.51711147897967, 35.192174689601295, 8.741047605297531, 28.975308887816873, 33.022059702610214, 115.90818360836502, 26.980788533488244, 7.107472588711087, 6.185679072330951, 11.345281368883912, 42.18583598905715, 5.535472493401762, 28.47377250221665, 84.34273459082465, 162.99154698641667, 12.484193771653601, 38.474470794544644, 78.9999688146996, 11.885085369202898, 14.825964474702797, 32.83796961085928, 64.94189596883635, 26.5099147852546, 77.49318711808728, 62.06886267690267, 5.794816260764454, 96.62339526988652, 18.76831612381791, 17.351933203593884, 155.60829470778748, 45.55954558812083, 20.378768703007722, 66.02372206973027, 112.29046245644226, 98.70391562427005, 100.28769536875699, 30.68770305179066, 7.643444676147302, 62.01074102789844, 10.553575610533999, 39.06131390235292, 22.63763218150508, 15.374852506836188, 58.113677589346075, 81.61233965645596, 173.15582797774107, 10.218698058518319, 16.81606025651765, 10.542196941614256, 154.73855384570277, 51.86274238761978, 55.781155878822446, 30.53976109782957, 82.84502975052652, 5.8100532607639455, 28.258537980478422, 70.36350896786197, 21.727064582696045, 40.490380541445276, 101.40389583351536, 19.777333978177435, 17.570644744139244, 30.183146099167992, 28.397130322310687, 53.30900826106353, 24.945528547580178, 17.64329850432135, 62.28307759628349, 56.00010503809433, 8.876780320221712, 7.427601340676716, 26.653347292783277, 40.43948000665788, 49.800352641442096, 70.79298658163611, 113.40024230991061, 116.70733095346478, 9.829118573607024, 36.59155524505213, 11.3959834622468, 7.167162742111555, 25.9667795952961, 70.30351225610703, 10.035782697845356, 148.73931776245269, 46.96923542367731, 77.91741875967196, 5.105077142561082, 38.098889502391124, 12.77108576485467, 94.06611682503063, 195.17561580795558, 11.005442956827935, 48.74309629035505, 108.87024822182019, 45.38909807968764, 90.1602511455681, 25.71774027508658, 31.459474800487236, 14.661658225625434, 17.078139790986164, 29.480703530375997, 23.553100552027285, 80.57000804831712, 24.425060184516457, 85.6972238487623, 37.12063485703951, 48.85212466153758, 6.579502757102437, 60.291405987084694, 14.57705356005223, 5.119849500723421, 5.089958385870509, 22.451320941618825, 59.96158583967283, 63.23142210101965, 62.51729247117533, 107.3071028772346, 8.999481220414113, 93.76547296724584, 15.803237223192905, 68.26267603156711, 5.371654326859391, 21.63168710018386, 206.01644587428106, 18.285714918408164, 38.17659019115914, 7.226950874104598, 10.552375234324543, 8.15803014094312, 65.52522413359301, 60.97602610993381, 29.258391073772188, 25.609545536530106, 66.27808249539252, 10.969671165798935, 13.76632710527222, 5.566273116497292, 311.71910671511205, 76.2484878885833, 111.92629920434251, 355.3280482598712, 21.018176026908403, 200.26094014719595, 23.909202626164074, 6.13902026778798, 22.96610662398505, 321.9993353632031, 48.95350641927197, 71.74779147133503, 15.914385820585979, 58.35938851294114, 41.3441932699258, 7.0087219760886175, 5.640117389973202, 15.183125467603668, 38.21156288956258, 16.853808048609036, 9.423620424052016, 15.803066868283407, 21.450066308551122, 105.89804825661251, 73.12708896553563, 22.822697102183923, 7.198930989578121, 57.76350600745333, 90.00798087469678, 67.31710043511612, 16.74803630085799, 15.152818588114767, 16.13709237308495, 36.31385095315256, 5.6881556133662725, 21.71877558098333, 51.54823679401522, 8.2703245672508, 61.08513136590991, 9.570738180761294, 32.473020591822376, 26.17169195818069, 6.205666925496567, 19.703704282632266, 12.987233942801728, 7.869902669028601, 57.654409172078104, 7.3863484223176155, 75.61549494220422, 66.6920766071668, 33.029342904247606, 82.25047786448351, 110.54777298104241, 9.074094515573902, 92.17655206295001, 6.168061933332082, 27.988473171711032, 6.41296364406607, 44.38776533538448, 92.14065256935432, 56.11962795324408, 16.873989573076866, 195.3935726246577, 26.504911213633875, 55.82111736153089, 398.78824822280933, 158.98096751948538, 85.82556712985135, 82.96775850020447, 76.58292407230532, 11.542376081841418, 40.803572530043766, 13.17567957346691, 36.32713499303033, 75.8463970167997, 31.416826701226526, 185.1098962137006, ...])
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);
([3593533.6073298957, 3692667.1875, 3693684.8544791504, 3694460.6885990184, 3695491.776256526, 3695684.4009962506, 3695725.0, 3696198.4375, 3696347.456395998, 3696519.9575768607, 3697194.431753911, 3697389.223102124, 3697704.6875, 3700454.664112146, 3701523.3038751367, 3710019.6607934833, 3726078.125, 3726094.5551123484, 3783364.0625, 3786548.4375, 3793984.9325052374, 3800084.0948935165, 3815321.410450079, 3817820.0398342772, 3892578.476046498, 3896032.8125, 3910659.803495657, 3913071.6588080237, 3914614.0625, 3927037.5, 3927039.9698765054, 3999631.25, 4024112.5, 4026867.1875, 4037517.8997900262, 4037595.642027792, 4043072.6256075418, 4073055.5071998113, 4095503.125, 4177589.4333857344, 4180453.0254467735, 4192080.156573577, 4217282.4165660255, 4217284.377646067, 4219832.430386474, 4577874.86603861, 6138880.731281627, 6144117.1875, 6166015.374894951, 6166942.359600332, 6168306.256622094, 6168367.286614265, 6169353.856853733, 6170132.218901195, 6170625.647519703, 6170994.829098312, 6171151.016563165, 6171254.944005762, 6171591.963194601, 6172060.9375, 6172166.688981818, 6172172.347247702, 6172354.27273588, 6172507.69703886, 6172544.781796686, 6172586.144848916, 6172587.973220219, 6172593.75, 6172603.756444776, 6172661.291479375, 6172669.01965237, 6172671.487222272, 6172914.0625, 6173122.687819055, 6173254.676178244, 6173292.511238123, 6173953.181157549, 6174238.799103912, 6174428.125, 6174437.203913306, 6174452.539167371, 6175246.6838154, 6176855.688885958, 6178386.900749339, 6179803.125, 6262770.086969879, 6263591.1356012495, 6300781.2444203505, 6303010.610917826, 6337047.330903345, 6378398.4375, 6380953.125, 6385891.063422638, 6392758.912666492, 6393390.625, 6393510.9375, 6396699.670693848, 6461590.366596878, 6493134.115206644, 6524652.215973045, 6547626.975067467, 6558341.043940322, 6562525.0, 6562526.881443478, 6564754.6875, 6571652.895896833, 6598445.171191057, 6603148.399246579, 6603156.144393956, 6656179.984765813, 6659044.032848726, 6659739.0625, 6659926.164604305, 6661626.5625, 6662045.3125, 6662113.570774599, 6662853.505001048, 6664515.625, 6665350.363943202, 6665649.023666957, 6665874.917867756, 6667045.3125, 6667442.1875, 6668356.25, 6670981.126072345, 6671053.795556212, 6683868.539342068, 6684457.856260641, 6684515.625, 6685506.166106129, 6690529.6875, 6696019.824833934, 6696041.990891119, 6697383.524037088, 6697787.758964359, 6697810.255124904, 6697975.973716895, 6698326.5625, 6698724.5679938495, 6699334.375, 6699478.110121345, 6699896.533509481, 6699942.852484165, 6700216.12792848, 6700556.25, 6700635.801656938, 6700904.6875, 6701017.1875, 6701037.5, 6701299.905648684, 6701548.561384802, 6701557.678400658, 6701942.1875, 6701981.25, 6702016.374810492, 6702052.617503006, 6702481.25, 6702666.786666368, 6702681.087542613, 6702700.168461383, 6702714.0625, 6702997.254834697, 6703116.662868775, 6703134.55784106, 6703211.659974226, 6703244.220783826, 6703256.25, 6703344.091005854, 6703412.530105868, 6703425.059500919, 6703463.403287743, 6703504.559291433, 6703568.501958248, 6703609.26533296, 6703688.005812635, 6703695.034318656, 6703792.458190314, 6703848.4375, 6703957.203252941, 6704034.988260588, 6704322.228933115, 6704373.22076041, 6704600.668945419, 6704616.548920534, 6704718.5918873325, 6704726.452246769, 6704764.0625, 6704814.786865581, 6705035.797726658, 6705139.0625, 6705269.939783624, 6705898.78017148, 6706407.8125, 6706914.125361228, 6707292.1875, 6707309.075907432, 6716930.133829155, 6721629.7800916275, 6724940.069793978, 6728564.426389747, 6741125.6911541745, 6747138.562465311, 6751284.978841411, 6752435.631276778, 6763485.333800893, 6765954.6875, 6769032.8125, 6770565.3425050955, 6773384.375, 6777020.012784416, 6777380.850175955, 6777637.5, 6777707.635791832, 6779485.9375, 6779672.626317253, 6781362.995417247, 6781387.330384155, 6781482.385204296, 6781525.308291401, 6783300.760546378, 6783962.786529506, 6795054.6875, 6795567.579788549, 6799985.104016683, 6804264.891973366, 6804856.25, 6810207.612697534, 6810302.628798131, 6810590.625, 6810603.62006092, 6810925.851226323, 6811577.783978468, 6811612.5, 6812261.999139557, 6812596.661083963, 6812664.0625, 6814286.56825574, 6814609.375, 6827414.74536172, 6840408.655648822, 6840692.962612083, 6843237.086072537, 6843942.7591205295, 6844130.022231259, 6860766.81179261, 6864173.4375, 6864198.4375, 6865423.651497109, 6865911.374105897, 6866023.4375, 6867090.2051258255, 6867865.028175603, 6868107.8125, 6868217.1875, 6868457.8125, 6868517.1875, 6868909.0271099815, 6869251.11520497, 6869575.457626838, 6869601.272354424, 6869993.603484025, 6870401.978756419, 6870528.125, 6870556.25, 6870914.512069588, 6870977.532198505, 6871121.540786097, 6871235.9375, 6871312.084953645, 6871434.417700087, 6871724.40168503, 6872323.254436084, 6876137.427708006, 6878488.490007061, 6882256.416379738, 6883870.3125, 6883987.5, 6883994.250046992, 6884029.145491327, 6884439.438206387, 6884451.5625, 6884601.5625, 6884609.15632329, 6884658.995974069, 6884807.610556026, 6885010.207808951, 6885404.6875, 6885501.367120378, 6885746.875, 6885773.4375, 6885790.625, 6885825.3681922415, 6886003.125, 6886207.349730911, 6886262.739614607, 6886327.399814922, 6886629.841776807, 6886738.751559027, 6886745.869371078, 6886785.104380131, 6886940.392727647, 6886968.033391209, 6887136.869297514, 6887295.764669439, 6887341.069215675, 6887506.25, 6887556.644418318, 6887743.75, 6887751.5625, 6887792.561364213, 6887896.875, 6888237.5, 6888240.625, 6888246.025110418, 6888418.892331713, 6888450.0, 6888493.75, 6888545.236318609, 6888588.095015193, 6888685.791711604, 6888818.460211766, 6888946.875, 6889122.866161031, 6889258.306480662, 6889623.721323056, 6889635.974191512, 6890000.0, 6890064.94446062, 6890137.086245236, 6890424.873493443, 6890526.060269019, 6890609.766531258, 6890755.564524302, 6890913.335389633, 6891451.006983983, 6891708.733967133, 6891721.875, 6891729.62163, 6891920.231257437, 6892319.831761064, 6892481.25, 6892516.566497283, 6892565.061948163, 6892749.732611344, 6892892.1875, 6893047.779173284, 6893196.6118771555, 6893646.875, 6894535.9375, 6894805.1565456195, 6894811.407196048, 6897166.511294914, 6899847.022660352, 6899863.887060044, 6903625.575356724, 6903676.395707668, 6905374.90816525, 6905710.097322987, 6905712.5, 6907981.833744831, 6908221.875, 6911221.723467895, 6911254.2310235705, 6917423.4375, 6927433.147738558, 6928585.9375, 6929676.2914938945, 6931619.862049252, 6932467.1875, 6934354.042990233, 6935726.7952344045, 6937602.040661393, 6937683.622576715, 6937749.636764655, 6938422.744445702, 6939149.839106963, 6939787.564162874, 6942204.6875, 6943985.268658144, 6944311.483714714, 6944448.772974847, 6945685.9375, 6947256.25, 6947860.748918629, 6948149.376071002, 6948473.371013496, 6948597.742833609, 6948723.264155516, 6949114.0625, 6950061.271180031, 6950250.9724929705, 6956535.9375, 6956681.493256391, 6958513.508597545, 6959504.6875, 6961361.5187934395, 6963118.459552721, 6963182.8125, 6966109.161892826, 6966296.875, 6966733.613629601, 6967583.196778121, 6968351.626193938, 6970633.8443225315, 6971877.812612175, 6972475.0, 6974529.6875, 6975298.4375, 6980957.591664186, 6984896.550813759, 6988412.5, 6993100.73320997, 6995624.636896754, 6998622.449343205, 7002164.321049921, 7002975.339799643, 7003557.21796782, 7003798.175233922, 7003905.663378332, 7004152.976714823, 7004377.943861467, 7004398.4375, 7004421.875, 7004563.648369641, 7004810.9375, 7004940.902066821, 7004974.517278548, 7005143.75, 7005307.202890054, 7005369.382308567, 7005808.976374588, 7006133.786132171, 7006326.537706586, 7006343.925953769, 7006371.404153638, 7006419.650134785, 7006526.5625, 7006555.246412975, 7006617.1875, 7006763.897250615, 7007070.3125, 7007161.182055925, 7007182.447144658, 7007184.782121465, 7007255.710832817, 7007523.267468647, 7007524.97872563, 7007535.298788695, 7007549.5057512075, 7007703.988814262, 7007746.402570398, 7007813.0299190665, 7007823.740682797, 7007983.373831683, 7007997.618950893, 7008008.323279098, 7008167.1875, 7008330.801584261, 7008509.138071635, 7008626.722501497, 7008771.875, 7008806.87139124, 7009104.6875, 7009110.9375, 7009125.889428649, 7009138.045278276, 7009171.875, 7009178.229719912, 7009446.639592686, 7009485.927551011, 7009498.4375, 7009650.021463726, 7009657.126724941, 7009712.188041395, 7009798.308386215, 7009928.518632927, 7010011.9749746835, 7010298.168935775, 7010503.031427841, 7010505.926332713, 7010737.867080746, 7010791.499903956, 7010805.039204138, 7010858.886493763, 7011170.102500222, 7011170.619222013, 7011335.536519206, 7011360.164159362, 7011457.079589143, 7011560.775110043, 7011573.109368158, 7011646.51979631, 7011714.0625, 7011717.1875, 7011835.863514513, 7012001.210974245, 7012003.364594171, 7012259.375, 7012358.052441231, 7012610.9375, 7012990.625, 7012993.75, 7013121.875, 7013180.34300697, 7013314.707912379, 7013605.604694645, 7013617.071934241, 7014170.3125, 7014267.1875, 7014571.875, 7014585.9375, 7014819.781976353, 7014996.788686426, 7015030.462194122, 7015123.735156613, 7015216.430733456, 7015282.8125, 7015342.096656919, 7015496.765762891, 7015561.727374194, 7015649.090540155, 7016059.014467437, 7016171.875, 7016302.047913723, 7016324.255600523, 7016338.117807727, 7016521.05475708, 7016587.5, 7016681.929729433, 7016725.943310323, 7016762.778579077, 7016810.9375, 7016818.499449074, 7016917.783048891, 7016939.288688008, 7017115.420805831, 7017219.849716178, 7017265.559464373, 7017267.059641029, 7017289.13275656, 7017545.537458036, 7017549.697625256, 7017839.048068189, 7017913.389249026, 7017918.75, 7018107.509499343, 7018126.5625, 7018130.49900413, 7018143.832061946, 7018163.159486127, 7018187.5, 7018231.0159475915, 7018488.303577897, 7018501.5625, 7018572.791175242, 7018907.642565091, 7019103.7941045845, 7019127.664638427, 7019175.717415673, 7019299.16361076, 7019517.550226362, 7019967.257658069, 7020018.946832888, 7020373.7267787205, 7020592.436647839, 7020607.8125, 7020840.935973976, 7020857.8125, 7020926.268074804, 7020950.5540402755, 7021046.462826172, 7021076.5625, 7021111.221859785, 7021149.459505099, 7021166.902764768, 7021319.5869019125, 7021355.848391678, 7021367.805857764, 7021406.2140871035, 7021498.002407478, 7021553.715645827, 7021676.924540305, 7021684.67065414, 7021715.805118746, 7021830.307690485, 7021842.309871361, 7021897.05209953, 7021929.527645373, 7022306.408033754, 7022416.960389132, 7022479.072432974, 7022743.75, 7022782.357354397, 7022804.6875, 7022864.076699911, 7023163.414381745, 7023233.014279666, 7023382.680657504, 7023437.843396912, 7023542.707025532, 7023546.344516178, 7023564.0625, 7023607.328170652, 7023875.0, 7024045.3125, 7024195.100139035, 7024221.875, 7024231.061866867, 7024254.442373898, 7024400.261631466, 7024406.25, 7024603.42544469, 7024725.0, 7024907.151511478, 7024945.549324059, 7025293.75, 7025384.592341419, 7025940.798786797, 7026484.375, 7026538.208761636, 7026648.411170435, 7026871.106177491, 7027005.955268841, 7027025.603086989, 7027070.3125, 7027153.004473126, 7027159.375, 7027675.0, 7027814.481598906, 7028705.744063011, 7029202.2679388635, 7029250.0, 7029545.3125, 7029606.25, 7029707.8125, 7030080.036431449, 7030094.85236769, 7030104.6875, 7030174.018548706, 7030211.380303177, 7030479.490687073, 7030512.1700973455, 7030587.41652032, 7030696.620297119, 7030730.280922662, 7030740.798099747, 7030757.8125, 7031072.680019378, 7031083.456104658, 7031107.235492106, 7031192.023020738, 7031321.875, 7031322.059937101, 7031449.731612117, 7031531.5195232695, 7031540.509004683, 7031541.195785702, 7031574.344942053, 7031594.386414976, 7031672.894108364, 7031770.980524875, 7031825.0, 7031842.126263781, 7031866.201402084, 7032052.749852379, 7032054.038329464, 7032129.398132097, 7032178.7753495015, 7032196.787276881, 7032320.396102406, 7032343.429944582, 7032401.518759249, 7032462.1445509335, 7032518.419887711, 7032735.9375, 7032935.847144469, 7032945.610079311, 7033337.5, 7033432.149987072, 7034122.051266445, 7034298.07957008, 7035329.6875, 7035560.470327294, 7035735.880854068, 7035915.668423371, 7036087.5, 7036521.875, 7036539.150874282, 7036682.640841369, 7036802.169756646, 7037202.253525316, 7037389.823189339, 7037515.707554154, 7037754.6875, 7037761.882517111, 7037763.894210046, 7037843.75, 7037899.540423744, 7037983.663635765, 7038049.434541817, 7038067.077921538, 7038114.513720826, 7038120.085862824, 7038211.479411853, 7038336.138745484, 7038339.0625, 7038348.565936016, 7038389.0625, 7038483.4996716175, 7038689.392028726, 7038755.4981801575, 7038808.36477904, 7038926.804478732, 7038932.829511, 7038977.656641484, 7038984.584686759, 7039006.25, 7039025.059323966, 7039042.1875, 7039071.875, 7039127.892235238, 7039160.903987263, 7039248.534092481, 7039307.091990605, 7039343.75, 7039380.977545099, 7039411.930672401, 7039479.427660095, 7039513.622188956, 7039617.477897808, 7039703.039334615, 7039778.034120351, 7039873.4375, 7039873.579314938, 7039931.181556676, 7039959.192685342, 7040057.830089801, 7040070.577165438, 7040109.375, 7040329.6875, 7040334.416483151, 7040418.75, 7040649.62411523, 7040694.053062592, 7040794.937166657, 7040882.8125, 7041015.625, 7041135.537262992, 7041362.5, 7041507.930079261, 7041512.431442469, 7041551.239264339, 7041568.012797459, 7041623.178932975, 7041644.37533981, 7041721.881807179, 7041908.425517328, 7041985.398321721, 7042025.054788634, 7042230.780252905, 7042299.033751468, 7042546.517899724, 7042627.322431793, 7042695.3125, 7042696.227563949, 7043052.592305523, 7043200.0, 7043326.5625, 7043648.4375, 7043690.001288822, 7043999.348688487, 7044096.45707408, 7044920.3125, 7045196.875, 7046717.456796696, 7047415.911549775, 7048163.368637251, 7048335.302258089, 7048430.270079842, 7048481.25, 7049057.132170269, 7049090.625, 7049482.092055266, 7049665.625, 7049813.298352661, 7050384.375, 7050565.625, 7050691.395736582, 7050921.964405893, 7051235.9375, 7051592.705935588, 7051711.587608079, 7051718.696553011, 7051816.513834576, 7051914.197376399, 7051943.626135862, 7052190.6741865855, 7052303.122399154, 7052318.75, 7052425.766199852, 7052763.223356383, 7052928.125, 7052990.625, 7053130.12343157, 7053196.844351508, 7053206.25, 7053258.819623272, 7053313.901869954, 7053407.8125, 7053488.324968222, 7053630.987593685, 7053652.298141321, 7053733.888764877, 7053989.577784661, 7054030.437539759, 7054512.5, 7054847.352720441, 7054939.0625, 7054946.179358031, 7055575.310851649, 7055576.367137317, 7055598.174912291, 7055643.859814858, 7055726.5625, 7056185.536269076, 7056215.415398084, 7057405.8575586295, 7057475.356406076, 7057539.589977187, 7057939.0625, 7057992.1875, 7058418.0785752535, 7059226.980436409, 7059230.84006685, 7059853.125, 7059862.350309902, 7060856.25, 7061000.971657704, 7061981.25, 7061993.696784796, 7062463.57518604, 7062860.9375, 7063324.210727671, 7063396.157413938, 7063453.715937169, 7063700.87139056, 7064164.615251035, 7064642.938083584, 7064750.021318294, 7064882.8125, 7065068.538112941, 7065880.252424472, 7065967.212170966, 7065986.8735505985, 7066549.4085037075, 7066683.861800196, 7067016.375950914, 7067146.875, 7067181.25, 7067215.625, 7067276.5625, 7067384.375, 7067927.0977874445, 7067967.1875, 7068206.4151126575, 7068297.046084644, 7068552.980711952, 7068781.25, 7069000.730083086, 7069009.375, 7069049.955902136, 7069107.37216586, 7069483.146000805, 7069654.6875, 7070178.971536273, 7070181.073283763, 7070188.025877252, 7070504.607845371, 7070597.943630761, 7070944.47574215, 7071018.59776765, 7071111.752039764, 7071215.464822809, 7071244.92732368, 7071245.237087759, 7071256.001634696, 7071291.227561483, 7071449.68436826, 7071598.23449369, 7071602.107626648, 7071777.976361049, 7071990.625, 7072057.303389408, 7072083.3777276715, 7072146.875, 7072163.9634777345, 7072216.68227798, 7072224.563369472, 7072302.858993923, 7072769.2601793185, 7072873.4375, 7073057.8125, 7073226.296830715, 7073254.267009639, 7073451.139344482, 7073475.209094276, 7073515.625, 7073533.6552726505, 7073541.0904407585, 7073546.72293937, 7073705.354546174, 7073745.82883447, 7073920.6991888555, 7073938.660352551, 7074030.998738893, 7074140.108159124, 7074154.6875, 7074177.664087054, 7074201.142854668, 7074267.1875, 7074392.083984888, 7074504.340753222, 7074527.227957772, 7074686.428032611, 7074700.0, 7074781.9481858285, 7074893.8306700755, 7075007.263535689, 7075107.8125, 7075252.431037843, 7075261.413334813, 7075321.510986656, 7075422.6389836725, 7075748.4375, 7075821.875, 7075837.196350567, 7075932.8125, 7075943.75, 7075991.740567139, 7076303.586871062, 7076326.69330811, 7076825.0, 7076967.6125666695, 7076978.232084055, 7077000.209056045, 7077326.606704051, 7077340.9239888275, 7077504.123042664, 7077547.457704855, 7078056.536766674, 7078285.9375, 7078548.344428672, 7078642.1875, 7078819.154977719, 7079057.866856376, 7079468.7341640415, 7079547.383307822, 7079632.516183204, 7080002.647329173, 7080643.75, 7080820.281638824, 7081256.25, 7081564.332608155, 7081681.25, 7081994.1192287635, 7082574.496948883, 7082789.924734407, 7082856.840342152, 7083367.869148234, 7083703.125, 7083996.23268967, 7084023.1904966505, 7084029.6875, 7084058.04887135, 7084143.65171228, 7084235.860780542, 7084259.054165973, 7084343.475192727, 7084458.547869138, 7084474.972315999, 7084679.197742895, 7084928.770365263, 7084932.8125, 7084971.875, 7085239.491361187, 7085364.121875457, 7085900.954502128, 7085985.9375, 7086309.966872955, 7086417.51284305, 7086494.8529867185, 7086512.395899414, 7086589.0625, 7086601.033384879, 7086646.875, 7086663.506663011, 7086879.598067825, 7086887.5, 7087035.9375, 7087036.88641162, ...], [35.24906071978223, 73.53183173462325, 14.105382119387293, 9.129452325366916, 6.424501305711403, 7.128302089345975, 55.790351821815605, 68.66094068516249, 84.61874168394391, 43.04488230536538, 18.38338253753527, 18.541269858024506, 54.82346417846053, 16.694576886539828, 26.13718825749974, 5.43447296081136, 28.952137550991427, 5.660193709553189, 54.06602860413328, 89.89160549294397, 34.966133850977855, 13.971524566577314, 63.317434667745744, 79.84932051152823, 5.047509763377826, 63.53598856450397, 5.846380493421636, 24.88374843400171, 36.902168922332336, 70.50371291869577, 20.073684003386575, 50.94193058720271, 45.62800863457399, 45.616602643984685, 18.590591349956988, 14.919319508521248, 19.528726855828744, 7.929299646543923, 97.97187064005176, 75.82423270088847, 26.342821765496176, 6.563225601499607, 55.82120150528594, 14.951604591588483, 13.66093691917469, 26.131769197102606, 8.030081776226249, 50.71748250924527, 87.57274361737343, 46.82683925017076, 15.825946147061167, 29.110352619788372, 24.212002164020856, 15.80537127047385, 46.09074396061416, 18.89404865314572, 27.519394351064395, 63.728432504381345, 46.37640221004044, 85.09319442062981, 83.66036669670169, 17.109457987725754, 70.5043921128411, 102.05081206091691, 21.192190160252952, 15.795464970243472, 8.553749562411438, 59.10203397365375, 15.730438009048694, 9.64979100600356, 16.079594684331436, 7.023115827495589, 89.08085910582821, 94.10567239249642, 5.613418100477747, 5.104881692043166, 9.379343285850576, 31.825032912057353, 59.34733922017397, 23.800857758928778, 26.75079261150048, 62.6704788571197, 75.68465511911677, 6.972359594301904, 78.5094815568912, 82.0232681830268, 12.032090698196127, 66.57334472854865, 13.827489364271422, 5.48168068066116, 54.63098612115082, 37.135998761528235, 16.9251328855664, 22.270227323390756, 58.235481317310786, 69.09368188528194, 23.383477709065442, 24.29703540784889, 36.63597328188992, 123.5536310749163, 104.37223255998322, 6.321620337256098, 41.01396962402416, 9.616479341360789, 65.42770845074769, 79.9503558515587, 32.90062440533757, 64.69873537113118, 10.966554706233687, 6.305500797543198, 7.197843393101941, 30.272517974266528, 29.425159830943514, 64.92622831918383, 74.9502759167917, 59.011703342567465, 16.61899676512314, 64.05154139391304, 117.28374587792698, 5.647316788996795, 26.999377332587965, 122.92097623843104, 70.28277486837352, 74.45103328444333, 14.489296863610404, 5.181278248532317, 87.22229250506834, 7.619142215228986, 99.62284545095004, 10.999059301947765, 58.73202926130889, 12.689563312142607, 25.167817787438622, 19.98172725968272, 30.665322182659963, 19.848232258810604, 85.26247804640545, 67.19381125555087, 54.442407969869485, 49.38330612628302, 199.27220290143222, 11.903191426519445, 5.651923336327081, 16.901780651892672, 110.85299766489703, 34.38760463319989, 47.38843939303605, 108.5304403143263, 91.84353196348438, 33.838650471354924, 105.63677605100011, 34.54368257607713, 39.83738131273521, 63.837419837200905, 5.2666270157599495, 10.417420289577905, 72.44388880270475, 99.90636102078001, 56.0152071334832, 139.88872966439035, 40.575239658124765, 14.989429412480812, 21.250859876754603, 11.426054177626023, 18.661064347342695, 9.76394884204946, 78.83948516571529, 16.42281093675011, 7.614162876805813, 54.312957638290456, 70.95644696988062, 95.90029369169656, 23.821079199259692, 26.530028741351853, 68.16687486742548, 13.977585216330901, 48.57000961045229, 72.00973782641081, 86.5344173449481, 24.561749799466277, 17.253091383499232, 36.16766018071675, 75.94365983211087, 22.24221172848964, 49.3536042185927, 8.229121605023126, 108.24791674028684, 79.02360709100125, 61.30277698610068, 83.23053014078147, 5.786907722948121, 11.709184253861379, 55.43069444702097, 30.30919982293238, 43.96015524213702, 30.03933226777267, 17.70008849587831, 17.841413106321376, 20.959518051004803, 16.537173434718174, 18.446525178442258, 21.492754199324864, 17.88101039903014, 5.036420989309219, 146.33568588483354, 42.3234271157748, 38.57189725962615, 23.97695034737831, 242.88511463724572, 31.980900260414803, 22.55421436186276, 49.828254504575035, 25.4646558005799, 29.83542905360273, 24.60482925827879, 154.9359625261622, 44.281561597549704, 10.51961838628797, 7.204920888602144, 7.90360600447933, 43.47445648594655, 47.65818886981867, 9.686699258021763, 66.65614668940464, 6.378010846098766, 63.943887149725484, 25.12095733055516, 8.040522197495418, 55.54681714587443, 12.001025892700008, 47.87965538890222, 23.240519300934256, 78.20258493068815, 7.431602466582581, 9.156846094424562, 43.37032847985018, 28.620981370303685, 51.58196183799828, 32.00982489457748, 136.14190354420492, 6.928789545748975, 398.250549255583, 7.280282638318231, 16.391827134438063, 13.679851652332356, 40.38976212404281, 184.91832153655258, 45.84468773527068, 16.915383222263742, 60.96227493707704, 22.33145539147682, 13.068464990399102, 107.24230778690364, 69.12142348847065, 122.95654156425049, 102.63460434147214, 13.762883090478129, 110.0681068349067, 162.42441727714186, 30.668313725430345, 10.90616368515717, 5.733771897598648, 32.38277725521582, 65.7508014075739, 11.911514424016655, 29.639585027647705, 14.232875937675132, 64.5049951637919, 57.328765715811, 45.947373713231876, 13.503688412770982, 47.34462963698348, 7.5772985110116045, 40.759050772792634, 303.6591457709751, 119.94961002992895, 64.3951221168658, 15.92623501075252, 13.21244802545714, 6.128060669153138, 275.57594726173124, 79.87124165332158, 24.798810523906802, 5.786457960031784, 14.223878895363148, 6.626077937419066, 52.746576702358574, 65.35147116281905, 52.99267603326258, 39.546200055222634, 73.81608174815209, 16.558917330244977, 56.2684972861891, 85.18276081204803, 26.48760597184903, 8.785262092423995, 15.56405936819043, 23.611984727701778, 74.73533920393774, 33.35587988889341, 14.12440745399317, 19.57401015637889, 82.01205802991964, 7.775398167549358, 14.671453322608194, 52.46991676530134, 59.1995382966214, 104.2339415733965, 93.27793682697987, 5.255730868824349, 101.24925264907395, 221.24441318140413, 58.80331814005983, 8.70315856945277, 23.255706447452965, 75.02676198197244, 77.15415197771416, 14.658880012894068, 24.21699443090776, 25.94301605914396, 23.8820651581118, 57.35338421615942, 73.43524491294295, 9.787206395239865, 11.602345586987104, 26.209118575990264, 79.16591114173016, 33.210696128994954, 13.568625251047061, 26.25244848933867, 96.93267205456735, 11.800305377195365, 33.79025700923573, 45.59639703965739, 19.324762615987545, 33.05938473639882, 62.914305469205146, 14.69625009607101, 46.702293066379276, 10.451139658643637, 32.026505191980384, 7.983386270114595, 6.402307383594768, 10.73399085054079, 58.19122751956853, 45.612335798114614, 29.674310039409043, 56.94862294234438, 32.27419386593282, 23.119252903600888, 49.05020278178142, 35.00984904720432, 41.59674970118331, 195.3456256851112, 28.991104147878644, 9.194243489098533, 26.831743416418348, 12.481869470626611, 74.52548702022017, 67.4504082523429, 30.073714776506872, 54.450083172725115, 52.711313001398295, 87.19287830238054, 16.39432626080109, 121.50228206175433, 24.12830098925745, 22.00204294433998, 125.22428178802252, 20.163274420167305, 15.909557091275843, 68.00959341583497, 19.297314369770156, 21.12818612801479, 12.826685807077283, 85.5821181775409, 21.98429275450308, 29.010461530490023, 83.40008959053753, 17.53196092409962, 172.23688710587487, 58.73464358132078, 37.86344863941908, 30.349633259981893, 6.393539294641162, 14.694008187695346, 8.805827539701388, 14.319550001285084, 85.25765909670838, 9.630439630426705, 20.639883767704603, 56.27555927626859, 9.545923794535799, 103.63315647724144, 68.91820543986249, 18.28549319603661, 22.566242200840005, 95.72343195013033, 14.18703142488177, 68.38039850663587, 19.22975239455377, 32.022785478261994, 72.58578177759587, 37.54038203286373, 7.041686266751966, 66.76320988823834, 55.68246642077337, 41.84502956204648, 76.38300914427208, 23.446635253770225, 44.72538233309095, 12.506423153042116, 55.963713987266864, 6.149934179150898, 16.02793572256893, 16.4168423313691, 19.91433727434122, 14.027982650428648, 20.670436325622152, 14.404913325924449, 25.397842998647192, 38.74974149119968, 46.40353688123375, 81.48115384307346, 55.74554991938306, 8.438738738943856, 10.448628555455569, 52.985661544623326, 20.465192331739413, 15.291619209640087, 13.61253523256628, 20.650152174425642, 36.832582831714014, 9.48474950039865, 7.44137812109875, 17.805879013904494, 99.77220951696921, 15.955540534852904, 48.05275091090038, 26.028647233878086, 43.532510154249174, 8.420279862757097, 22.950335431479107, 99.07473600944684, 73.83330538765874, 25.56615119932641, 64.40118042606875, 62.599515431494076, 10.4340685029907, 100.86974628988393, 58.237671351184844, 10.820957846150163, 42.0289796451762, 34.59543096748294, 20.798168358714445, 12.03244767030585, 33.35118445034452, 385.78891339773594, 20.06996565530729, 15.58856955557524, 43.47505366040683, 19.19866570093063, 91.81163202148, 57.92676222609266, 7.960066146338566, 33.0299950171588, 115.17929829071072, 59.76653473902072, 73.9367798426295, 164.4604977543325, 42.26746644532951, 99.07667548677114, 50.97106751507399, 32.29702772479747, 26.210090859935033, 16.68909005845907, 52.45217299038161, 33.267606034866525, 26.801986980205683, 32.237058275764085, 25.41121828379393, 71.46740733827977, 16.476007694065803, 8.04410404384218, 10.814597085608114, 16.255433502457617, 192.37871289596734, 12.634979076092726, 32.29932329253262, 22.437170582911556, 23.39792668072335, 10.614459699530869, 50.20362954679977, 49.25151484178522, 38.495180572580296, 100.43468400211711, 65.9059866729274, 34.73245823333675, 20.680814670756575, 48.254530666235894, 38.58249630339675, 47.28091184131104, 42.88366247565334, 18.21003375537636, 12.312527656603331, 215.990194510511, 10.951750210325804, 150.37869782634579, 37.914943347119475, 52.301596553131745, 30.09633791520856, 62.61302070697646, 37.06195556299687, 81.98124681008416, 25.382737923084797, 133.05911032630308, 43.605934009806596, 39.53583311358634, 34.967502932235476, 6.932156109971266, 154.79486392021627, 28.800560855770282, 50.46466422900602, 64.8312617888149, 19.35842769825921, 221.03893888291185, 105.30474417878278, 28.5565971822456, 9.98088504531845, 13.01105163759964, 46.554013907736085, 30.45695874111568, 10.757431796314156, 17.9432087224844, 15.879918235997367, 81.92890427885608, 13.42914129758339, 27.291990139819628, 9.225581594183945, 28.08231314894539, 94.6810380323506, 13.901970280746179, 147.53727239074573, 83.86056654890885, 47.16620247309965, 22.87960908530082, 72.49585650355996, 71.42432977272964, 6.780000935546521, 25.575944968045018, 34.07094466080272, 14.118631351023158, 19.248179395465055, 86.60388671387504, 131.6607265990252, 6.460778359088396, 22.902794447798215, 83.708672484923, 74.90545869335594, 42.99495787252084, 79.10124476171066, 11.23916817644276, 16.86885345615067, 19.507249639539495, 15.984542555233377, 47.197563757518225, 33.97731093623932, 79.14312261816828, 52.14120101406478, 30.701175227352664, 9.005617861319303, 54.12148651372263, 59.893114971459, 26.52158941203741, 93.74967049811605, 19.50360300002907, 105.92459775527054, 17.97186835126736, 11.072032814062755, 22.165981165290567, 9.886309532309772, 21.59314589968829, 49.55879730669783, 7.669709095604673, 17.983426109223267, 15.429389085430277, 19.501894912885607, 5.802246318973592, 17.70909485216927, 15.998337827594685, 20.417225707812797, 49.2115893927547, 21.952528639279876, 44.268383345966285, 50.87605838995763, 90.66753195100341, 101.76179430847806, 9.222356633612108, 47.78955724503105, 18.109184351148123, 13.243326249521528, 42.11675754126967, 149.75352377845132, 139.19394455116935, 124.46927104628492, 5.79843270516804, 84.41786808122646, 5.603720263537073, 30.854584588454735, 11.562856604557982, 59.85483022650307, 76.26534686027613, 72.2715343865074, 10.23096150389822, 6.524867545382922, 55.07012737694203, 47.70162563448742, 21.222473284025533, 114.02505788283788, 18.566336928962087, 41.20202164930955, 67.17980631021763, 264.2907383721609, 26.604168973134, 52.84594934992472, 36.49854951573488, 31.126339833369094, 59.53558724741623, 8.521377322779005, 24.95179439409835, 7.320117866848173, 76.57294005994487, 47.14026957384963, 200.05907139911398, 40.185609811204465, 7.2162988141408, 90.43599283970126, 169.6066018620155, 17.740768549692916, 17.539127829620355, 20.35190478141272, 7.488122057884743, 26.975947915026918, 24.34712363568974, 5.745595345513351, 5.541541013310384, 56.8938342694194, 19.25904998282095, 61.027419819673426, 6.030082782318967, 44.05371397438243, 120.1871793042546, 15.696591234930786, 64.83935643401392, 116.4420947864032, 10.951113187113428, 17.67856487825862, 20.074234172155524, 12.293176089294779, 84.73134997414992, 43.53368165957122, 72.420881154354, 9.280155729526506, 17.71253385126511, 37.709853942782374, 46.249558885964525, 32.87024614770982, 7.303588960252043, 51.298656789447136, 8.331288074222824, 13.847456309724322, 7.110000818902831, 28.512784814536595, 28.121643363032792, 29.614442697211828, 21.56941063338035, 16.211577931353528, 30.303405202282867, 7.379992778300393, 53.87628798873139, 54.420891654420856, 59.82500174877197, 61.46393395976075, 53.67349503585341, 11.19626551105288, 39.13545750179865, 55.37293911442714, 69.17669911644008, 105.17006883175702, 12.231102717866781, 25.22618463470026, 41.92975477523194, 8.330721202056505, 69.36784919654352, 13.015406467005006, 23.4180835523919, 55.35018212278937, 37.37881488904277, 35.13651028624923, 14.367823990013774, 26.531507435673948, 11.914726918318516, 21.946390144449506, 191.0665791967658, 23.498029843993738, 44.71873294191391, 88.92206571003926, 41.523095028368125, 27.29211253049246, 5.838771662350712, 10.125910659726841, 5.079078842627459, 60.56512443151489, 31.744137780382296, 21.81465674952376, 15.805878008421749, 30.052742439708986, 35.28177930225303, 64.16798179128789, 83.16728174551862, 107.02569655049078, 23.101482966651652, 15.322915531450313, 44.16971689975283, 31.109618324652576, 8.14756879230246, 8.006828814066962, 20.36729030870245, 22.109936899082566, 16.17735546795807, 69.74520508782855, 5.93153006060612, 54.283866636859, 280.5538952730501, 14.686898653082547, 14.289344271414603, 9.346320762097122, 26.776503392717252, 38.75860689049818, 78.11076248261583, 22.01200246586516, 29.41443731493082, 85.18185286634721, 11.636932454450333, 13.680958432426541, 32.94855347175745, 42.81595142614617, 13.607838026430315, 34.17935831602934, 21.223604309092078, 11.02221157514283, 6.700646379328673, 66.18530603155384, 6.235073815324578, 5.861745798802483, 9.337165669040477, 25.29147675294147, 6.986581683787036, 7.623174731302335, 28.084798035683658, 25.54395125466195, 5.28018267125853, 18.92637044353348, 107.69705075258669, 20.138471988536992, 68.22765963003738, 62.79101806267249, 62.97377473541624, 79.85819677442439, 10.275186181006692, 6.022889888644036, 32.42759334736687, 82.1955926043735, 95.95536648990095, 145.06662706989835, 48.8193486494543, 98.14950895385005, 272.8019490830565, 33.8032396431344, 62.28883445907999, 92.97997453279777, 33.07386008031309, 33.32611835095619, 63.38579750991, 52.21829392628173, 68.51711147897967, 35.192174689601295, 8.741047605297531, 28.975308887816873, 33.022059702610214, 115.90818360836502, 26.980788533488244, 7.107472588711087, 6.185679072330951, 11.345281368883912, 42.18583598905715, 5.535472493401762, 28.47377250221665, 84.34273459082465, 162.99154698641667, 12.484193771653601, 38.474470794544644, 78.9999688146996, 11.885085369202898, 14.825964474702797, 32.83796961085928, 64.94189596883635, 26.5099147852546, 77.49318711808728, 62.06886267690267, 5.794816260764454, 96.62339526988652, 18.76831612381791, 17.351933203593884, 155.60829470778748, 45.55954558812083, 20.378768703007722, 66.02372206973027, 112.29046245644226, 98.70391562427005, 100.28769536875699, 30.68770305179066, 7.643444676147302, 62.01074102789844, 10.553575610533999, 39.06131390235292, 22.63763218150508, 15.374852506836188, 58.113677589346075, 81.61233965645596, 173.15582797774107, 10.218698058518319, 16.81606025651765, 10.542196941614256, 154.73855384570277, 51.86274238761978, 55.781155878822446, 30.53976109782957, 82.84502975052652, 5.8100532607639455, 28.258537980478422, 70.36350896786197, 21.727064582696045, 40.490380541445276, 101.40389583351536, 19.777333978177435, 17.570644744139244, 30.183146099167992, 28.397130322310687, 53.30900826106353, 24.945528547580178, 17.64329850432135, 62.28307759628349, 56.00010503809433, 8.876780320221712, 7.427601340676716, 26.653347292783277, 40.43948000665788, 49.800352641442096, 70.79298658163611, 113.40024230991061, 116.70733095346478, 9.829118573607024, 36.59155524505213, 11.3959834622468, 7.167162742111555, 25.9667795952961, 70.30351225610703, 10.035782697845356, 148.73931776245269, 46.96923542367731, 77.91741875967196, 5.105077142561082, 38.098889502391124, 12.77108576485467, 94.06611682503063, 195.17561580795558, 11.005442956827935, 48.74309629035505, 108.87024822182019, 45.38909807968764, 90.1602511455681, 25.71774027508658, 31.459474800487236, 14.661658225625434, 17.078139790986164, 29.480703530375997, 23.553100552027285, 80.57000804831712, 24.425060184516457, 85.6972238487623, 37.12063485703951, 48.85212466153758, 6.579502757102437, 60.291405987084694, 14.57705356005223, 5.119849500723421, 5.089958385870509, 22.451320941618825, 59.96158583967283, 63.23142210101965, 62.51729247117533, 107.3071028772346, 8.999481220414113, 93.76547296724584, 15.803237223192905, 68.26267603156711, 5.371654326859391, 21.63168710018386, 206.01644587428106, 18.285714918408164, 38.17659019115914, 7.226950874104598, 10.552375234324543, 8.15803014094312, 65.52522413359301, 60.97602610993381, 29.258391073772188, 25.609545536530106, 66.27808249539252, 10.969671165798935, 13.76632710527222, 5.566273116497292, 311.71910671511205, 76.2484878885833, 111.92629920434251, 355.3280482598712, 21.018176026908403, 200.26094014719595, 23.909202626164074, 6.13902026778798, 22.96610662398505, 321.9993353632031, 48.95350641927197, 71.74779147133503, 15.914385820585979, 58.35938851294114, 41.3441932699258, 7.0087219760886175, 5.640117389973202, 15.183125467603668, 38.21156288956258, 16.853808048609036, 9.423620424052016, 15.803066868283407, 21.450066308551122, 105.89804825661251, 73.12708896553563, 22.822697102183923, 7.198930989578121, 57.76350600745333, 90.00798087469678, 67.31710043511612, 16.74803630085799, 15.152818588114767, 16.13709237308495, 36.31385095315256, 5.6881556133662725, 21.71877558098333, 51.54823679401522, 8.2703245672508, 61.08513136590991, 9.570738180761294, 32.473020591822376, 26.17169195818069, 6.205666925496567, 19.703704282632266, 12.987233942801728, 7.869902669028601, 57.654409172078104, 7.3863484223176155, 75.61549494220422, 66.6920766071668, 33.029342904247606, 82.25047786448351, 110.54777298104241, 9.074094515573902, 92.17655206295001, 6.168061933332082, 27.988473171711032, 6.41296364406607, 44.38776533538448, 92.14065256935432, 56.11962795324408, 16.873989573076866, 195.3935726246577, 26.504911213633875, 55.82111736153089, 398.78824822280933, 158.98096751948538, 85.82556712985135, 82.96775850020447, 76.58292407230532, 11.542376081841418, 40.803572530043766, 13.17567957346691, 36.32713499303033, 75.8463970167997, 31.416826701226526, 185.1098962137006, ...])
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)