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 = 45100
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);
([3358684.375, 3358692.076958229, 3485359.616941467, 3565926.648831841, 3665985.2689019335, 3976062.5, 3985057.883990885, 4003425.0, 4057381.25, 4061163.409777827, 4075754.2586198063, 4076432.8125, 4191181.7491577175, 4206810.163392888, 4220531.1193360705, 4294165.655498509, 4359951.5625, 4389707.494797483, 4423326.05746983, 4450740.625, 4468769.934657389, 4471117.870405661, 4514933.739761153, 4762505.600572304, 4887243.155771068, 4938625.273882349, 4994119.504267752, 4994411.080709313, 4997407.8125, 5010917.1875, 5041606.25, 5053621.875, 5054508.100907807, 5060374.289446666, 5090820.996414797, 5090846.133227255, 5091597.012291137, 5102258.308118107, 5144985.359602089, 5204587.5, 5205858.69258795, 5205863.782919323, 5395200.44537267, 5407465.625, 5416584.375, 5432834.342997749, 5444096.875, 5445507.085782673, 5450917.706469272, 5460596.624186751, 5463657.8125, 5464336.94998608, 5465769.289032927, 5481400.0, 5486321.814139866, 5495592.1875, 5500257.360547651, 5512754.179080477, 5513129.836247852, 5519236.979881028, 5521027.177629198, 5525910.40282444, 5526675.0, 5546975.808386145, 5553701.109362932, 5558427.934968595, 5564915.625, 5565952.326445933, 5588218.800558885, 5591570.304112596, 5596314.830187627, 5597871.059952485, 5608231.25, 5608861.555881534, 5609323.539588709, 5613892.096314809, 5623795.067712536, 5623830.65440104, 5627450.23110961, 5631635.461253689, 5634319.97660239, 5635314.956008564, 5636399.176625958, 5639980.553721898, 5660217.841679387, 5665006.761350831, 5677804.852972124, 5718733.013296761, 5723174.834576163, 5738962.428444657, 5742993.75, 5743329.572333671, 5746625.0, 5749561.314321365, 5775573.4375, 5776271.870591362, 5777254.6875, 5778080.953677312, 5784407.027905942, 5792045.443590878, 5800384.8896224685, 5807585.9375, 5809178.125, 5809259.825792365, 5814271.875, 5817707.255313247, 5818915.625, 5846014.12840231, 5858421.262179227, 5862820.507910579, 5884239.0625, 5887390.177779705, 5893657.8125, 5897017.1875, 5899078.107876131, 5902225.865018556, 5906385.369968967, 5908889.891740539, 5910215.879601326, 5911672.002815801, 5911736.381786695, 5914754.6875, 5914756.768368733, 5914822.649303699, 5915204.159045478, 5915260.356606642, 5915432.227951596, 5915535.9375, 5915941.6464648275, 5916684.667398691, 5917211.325696072, 5919300.381712808, 5920329.6875, 5920462.367547951, 5920616.048431158, 5922406.062072543, 5922829.6875, 5923189.2139532855, 5924399.777290038, 5925068.3326931875, 5926111.322072914, 5926225.0, 5926360.9375, 5927370.885965352, 5927495.3125, 5927752.4179240065, 5927945.813099222, 5931838.727289259, 5932553.241077061, 5934769.179392716, 5935933.611248303, 5937418.588753367, 5939302.396177499, 5939307.54723037, 5941306.25, 5941896.875, 5945018.75, 5945039.430626081, 5945454.316766625, 5946069.016167295, 5946804.675744995, 5948518.75, 5949103.787239666, 5950437.5, 5950548.723852584, 5950705.876634245, 5951896.875, 5953407.633453881, 5954155.002054097, 5955612.84097412, 5955613.147356517, 5955655.771221695, 5957219.251611247, 5958855.591593751, 5960182.8125, 5960467.6938291425, 5962842.278178587, 5964096.308054291, 5966381.25, 5966706.692396639, 5967899.604217666, 5971095.283238542, 5972362.593635307, 5975235.9375, 5975245.327614571, 5978898.4375, 5981697.607293191, 5983579.639662363, 5984101.5625, 5984198.611496014, 5984751.5625, 5984755.759760256, 5984760.101754102, 5988229.210697433, 5989256.458647381, 5990299.042902281, 5990633.297106525, 5990709.253312308, 5991264.967512584, 5992985.795090869, 5995825.892517372, 5997499.002449302, 5998263.725809414, 5999575.0, 5999691.512428027, 6001099.856685733, 6001793.75, 6001961.157316533, 6002273.5286324145, 6002314.336240273, 6003879.221099362, 6004539.0625, 6006420.862427932, 6007041.890809129, 6008692.1875, 6010156.25, 6011021.608492015, 6011420.3125, 6011644.017455079, 6011685.814227799, 6012008.651103332, 6012884.075641997, 6013827.123073954, 6014472.205627008, 6015667.509106389, 6019507.197947875, 6019638.951128011, 6019645.402248251, 6020054.877245086, 6020060.8730140645, 6021467.1875, 6022212.961179188, 6023642.640539822, 6026339.0625, 6028226.8966451585, 6032604.135778884, 6035625.0, 6038384.375, 6039117.1875, 6041021.498960318, 6047995.3125, 6051483.339626607, 6055529.281296024, 6056199.412402796, 6056923.658980914, 6057932.751762747, 6057964.456099997, 6057977.449495139, 6058025.650561416, 6058316.419251552, 6058461.2310644, 6058512.682803625, 6059346.875, 6060410.30047523, 6060416.859122812, 6060469.12942185, 6061599.13933257, 6062924.047653315, 6063103.859344867, 6071660.8906018175, 6075521.342685275, 6085524.675388442, 6088655.284572102, 6088796.377937842, 6090816.428460392, 6094782.881890251, 6101167.575451085, 6107848.4375, 6108753.125, 6109981.031472794, 6111299.939743856, 6112654.6875, 6113978.125, 6113979.866187776, 6114263.520314705, 6114607.160889936, 6115840.871468554, 6117809.795738374, 6119338.696895386, 6120453.604073232, 6121495.86381892, 6126501.356690259, 6126834.121905142, 6127732.51389804, 6130556.090273146, 6131222.110670159, 6134559.287114809, 6135176.5625, 6136574.944542938, 6136721.018324973, 6136776.9781538835, 6137041.445253387, 6138121.834751078, 6142423.4375, 6142917.790164832, 6143306.933016775, 6144283.4324303735, 6144445.441648306, 6144537.277195532, 6144728.794261497, 6144797.611682102, 6145957.1889658235, 6149196.5092424555, 6151332.8125, 6151899.863031357, 6152315.490931803, 6152352.473713474, 6153306.220016177, 6155386.520374573, 6156466.81767836, 6156824.087065555, 6156933.398325468, 6157657.150105191, 6157671.189594631, 6158861.73054201, 6160358.131827172, 6161754.6875, 6162391.298973642, 6163322.38739819, 6163787.353372921, 6164037.5, 6165671.177281661, 6166174.722592835, 6166818.688130398, 6168801.6221547425, 6169061.873552172, 6169323.378345, 6169510.9375, 6170566.051465832, 6170574.740216835, 6170660.30079769, 6170964.697895961, 6171216.870290548, 6171346.646468098, 6172404.6875, 6172407.264693142, 6172500.0, 6173040.048455319, 6173128.125, 6173288.2420172375, 6174230.662733652, 6174272.08481518, 6174810.701554203, 6175744.301053193, 6176385.968282159, 6176399.151807358, 6178915.190544875, 6179296.2194721745, 6180175.2583534075, 6180446.640194545, 6180671.517039391, 6182015.625, 6182757.809283499, 6182771.357363241, 6183200.0, 6183218.897152267, 6183727.886171992, 6183945.209016685, 6183982.997803509, 6184586.896043076, 6185062.821243007, 6186087.93418817, 6187038.692842394, 6189195.5710877925, 6190234.251582002, 6190583.59656629, 6191364.0625, 6191496.875, 6192034.408228243, 6192120.229638136, 6192301.989701677, 6192560.9375, 6193675.030247109, 6194075.99513543, 6194804.6875, 6195414.125547259, 6196130.354009685, 6196222.46850262, 6196402.281930449, 6196577.374505614, 6196626.012473811, 6196918.75, 6198141.162165682, 6198950.647349841, 6200256.9018680435, 6201649.540830783, 6202232.486879674, 6203604.6875, 6204162.5, 6204947.492461241, 6205496.605178425, 6206110.48390055, 6207760.9375, 6210793.75, 6212500.0, 6213233.232768139, 6214315.625, 6214917.17785741, 6217611.73177863, 6221761.009751392, 6222045.857836667, 6223339.0625, 6223642.89879589, 6225101.83340782, 6226414.2964797765, 6229169.84701184, 6229386.655441258, 6229419.731056564, 6229873.929426649, 6230310.219514095, 6235067.373988125, 6235399.570567848, 6235443.220466423, 6238241.505799953, 6245238.098839412, 6245944.928907671, 6247021.309094792, 6250465.700630231, 6251026.874745376, 6252465.3277860535, 6253357.8125, 6254109.394255791, 6255208.550324001, 6255914.0625, 6256333.815843261, 6256702.213373496, 6256772.196908984, 6257108.4550875155, 6257997.230642644, 6258343.270227858, 6260449.703500437, 6262167.576260851, 6265298.420219164, 6267371.875, 6267433.630287835, 6267843.814800664, 6269384.375, 6269469.49197633, 6269812.985702308, 6271165.132121711, 6272182.908164479, 6274215.222413181, 6274574.778557594, 6274588.487487707, 6274965.203982797, 6276007.95426321, 6276315.921698476, 6277601.882561028, 6277653.674077208, 6278228.795334666, 6278468.7915467685, 6278471.514345427, 6280303.62435679, 6280659.927404039, 6285937.582750674, 6286342.1875, 6288065.289407509, 6288879.198884565, 6288957.56786542, 6289160.363893823, 6292417.1875, 6294240.2441867925, 6294784.375, 6294813.742634684, 6295102.692074082, 6296842.1875, 6298442.2240173705, 6301493.391600663, 6301724.619605099, 6306253.0878957175, 6307728.048037844, 6307792.861820337, 6309019.7189148795, 6309608.891410722, 6309907.987625188, 6309911.952757484, 6310098.640315269, 6312439.991795672, 6313648.4375, 6314695.3125, 6315299.849899211, 6319056.448530205, 6319176.277167865, 6319257.012001646, 6319261.525462178, 6319332.097300642, 6319457.8125, 6320007.8125, 6320032.567345237, 6320248.4375, 6320286.810283255, 6320471.875, 6320560.84067646, 6320624.286780918, 6320710.125528024, 6321238.337813361, 6321243.366151591, 6321514.293249234, 6321591.76294053, 6321644.994093645, 6321712.3237358425, 6321755.328196022, 6321756.709248203, 6322144.8337873705, 6322161.553758824, 6322405.025831308, 6324287.5, 6325275.991378605, 6325436.128660725, 6326170.845957236, 6330682.9195382465, 6335317.124576871, 6338009.933745061, 6338695.346267689, 6338744.713048403, 6341073.4375, 6341918.75, 6341944.947158921, 6343107.756814313, 6345149.384083112, 6345456.25, 6347546.915850365, 6348673.4375, 6349218.873920066, 6349956.92979589, 6349998.908572926, 6350064.0625, 6350351.5625, 6350580.479924122, 6350878.659930959, 6351116.456405743, 6351600.983661102, 6351783.169025165, 6353154.365427935, 6353161.225252696, 6353221.565791541, 6354630.446229631, 6355365.731247283, 6355595.299974078, 6355865.991229336, 6356393.652934911, 6356543.153672556, 6356765.625, 6357162.999781839, 6357283.451854122, 6357392.297413635, 6357664.788072698, 6357871.875, 6357965.535553264, 6358387.5, 6358731.25, 6358859.564250404, 6358903.742461042, 6359320.196467769, 6359404.819500577, 6359470.022521566, 6359535.90136704, 6359877.992685408, 6360391.74004844, 6360567.498635364, 6360596.828703494, 6361644.721101564, 6361937.320201576, 6362584.716979411, 6362694.542653292, 6362783.9515874535, 6363224.853526846, 6363304.607090325, 6364026.992224881, 6364134.35956518, 6364302.345913819, 6364671.854502886, 6366149.824014895, 6367013.728208587, 6367334.03026566, 6369672.374267845, 6370160.2177502075, 6371445.815181824, 6371494.111879483, 6371634.375, 6371784.217779052, 6371840.676004398, 6371893.03645839, 6372361.380626538, 6372457.749998874, 6372627.884969402, 6372682.614709733, 6372765.862083119, 6373241.164407151, 6373255.250553194, 6373468.05813634, 6374400.63209645, 6374819.825124486, 6375159.375, 6375956.336272259, 6376442.695902774, 6377024.360534887, 6378113.699234152, 6379535.239982837, 6381092.690947276, 6382362.3610966215, 6384942.963583202, 6385347.928220431, 6385498.7860715175, 6385499.551022678, 6385504.964679214, 6386120.644095408, 6386509.098104086, 6386717.667052394, 6387382.8125, 6387611.437846138, 6388466.638869202, 6390924.9603513945, 6391676.932520676, 6394339.9801160125, 6394387.708741516, 6395300.0, 6395535.451498916, 6395764.35166544, 6397678.085152453, 6398207.649406709, 6398275.0, 6400121.80226574, 6400461.898057145, 6403535.089940767, 6407453.125, 6407744.917876318, 6408226.087769511, 6410349.98875643, 6410364.185096456, 6410893.75, 6410937.262902451, 6411947.897124073, 6412252.821798127, 6412594.566071855, 6414436.6742815375, 6415064.0625, 6415268.334852936, 6416103.125, 6416387.011631946, 6416390.872262261, 6417257.183903482, 6417474.780313374, 6417604.6875, 6417681.25, 6417732.8125, 6417857.134546255, 6418023.051651299, 6418045.3125, 6418113.887381517, 6418603.125, 6418608.980393009, 6418715.881363906, 6418851.5625, 6418944.920549145, 6420243.0410001045, 6420306.031684321, 6421877.123302321, 6422129.8919205805, 6426240.294509048, 6428209.375, 6429048.4375, 6429685.503567719, 6430156.366576732, 6434548.4375, 6436173.007703348, 6438106.5734759355, 6438189.290342225, 6438657.8125, 6439388.532951661, 6439806.665267692, 6439979.492328293, 6441578.072514856, 6441847.64287602, 6442665.886242387, 6443925.51472239, 6443940.313684147, 6444179.6875, 6444845.3125, 6445154.05726003, 6445206.2388298055, 6445350.274903376, 6445571.875, 6445593.222182127, 6445603.710003449, 6446281.425160729, 6446832.464782128, 6446927.753970192, 6447719.7642121455, 6447741.632007332, 6448049.603820687, 6448934.375, 6449885.9375, 6450433.966789246, 6450553.899227994, 6450658.311787819, 6451125.931504742, 6451761.567156515, 6452570.518031759, 6452636.575555695, 6457487.5, 6458223.4375, 6458632.828754452, 6458667.829193413, 6460213.250894812, 6460361.04442934, 6460768.728486, 6461276.5625, 6461638.215147673, 6462605.476926015, 6462716.585473316, 6462814.049580852, 6462978.275539492, 6464100.232856661, 6465657.993987341, 6470140.463401603, 6470476.094700022, 6471860.9375, 6472103.307990163, 6473583.200560835, 6473870.958851934, 6475494.101588802, 6476212.36251234, 6477746.622419779, 6478443.687108372, 6479131.25, 6481712.014938771, 6482084.252917503, 6482893.5051430855, 6483671.478122611, 6483782.8125, 6485861.672890975, 6486567.101075734, 6486625.936129904, 6486662.319020902, 6487842.1875, 6488623.446484625, 6489131.347143648, 6489262.5, 6489557.8125, 6489975.40015411, 6490241.572750478, 6490255.758757726, 6490434.375, 6490615.143743966, 6490843.249191252, 6491824.546495091, 6491939.804178474, 6492098.4375, 6492289.2844804935, 6493129.6875, 6493150.0, 6493244.974592002, 6494843.521864809, 6500872.906369946, 6501100.742869451, 6502314.0625, 6503726.476622256, 6504816.454892693, 6505746.168502031, 6505878.720345852, 6506456.25, 6506458.977190502, 6506902.8878585175, 6507362.076572742, 6507501.410803496, 6507684.375, 6507686.230039158, 6507873.2269680165, 6507973.8250086615, 6508255.7936864095, 6508375.335029271, 6508484.6936866315, 6508623.0374219855, 6508746.299173006, 6508858.210111274, 6508872.243616869, 6508973.4375, 6509157.116670566, 6509284.375, 6509621.323248014, 6509662.5, 6509968.583158306, 6509971.112392594, 6510057.221673567, 6510180.173951774, 6510253.351930209, 6510287.424026545, 6510668.695192087, 6510681.25, 6511008.539522712, 6511110.964587072, 6511134.375, 6511240.114631891, 6511264.653391027, 6511265.207546391, 6511513.37857711, 6511635.305823178, 6511875.983434881, 6511957.34341661, 6512233.116269714, 6512597.118313099, 6512855.178265419, 6513193.75, 6513474.542935481, 6514174.690351881, 6514254.550864533, 6514315.625, 6514578.307696003, 6514596.013551943, 6514729.218787222, 6514807.430530069, 6514893.75, 6515995.250813502, 6516019.1730149025, 6516904.001950863, 6517044.332797859, 6517214.916303966, 6517378.00213538, 6517426.5625, 6517438.254207442, 6517481.25, 6517789.0625, 6518168.75, 6518340.70034929, 6518446.635036396, 6518647.994671687, 6519248.4375, 6519582.8125, 6519869.930519216, 6521153.05903344, 6522756.716978685, 6523088.771961732, 6523588.7068488905, 6525246.126943825, 6525290.1262436425, 6525327.185193446, 6525503.125, 6525757.721487883, 6525800.0, 6526329.6875, 6526439.0119271595, 6527129.188553524, 6527883.260985544, 6529135.144111718, 6529438.825976848, 6530193.552076219, 6531369.950914909, 6535821.4003252005, 6537899.367286686, 6544634.173050691, 6546237.1279453365, 6547382.8125, 6548386.634902198, 6549834.437308191, 6550047.346384173, 6551677.590371752, 6557672.843869583, 6562929.6875, 6563895.376666422, 6565018.75, 6565059.742983736, 6565704.6875, 6566012.079955669, 6566042.0760544, 6566057.695454068, 6566062.2491276935, 6566076.384035956, 6566305.836188169, 6566444.884198534, 6566656.101684138, 6566674.432186629, 6566703.942318769, 6566946.730385388, 6566973.446267001, 6567004.099298332, 6567156.156662992, 6567566.631840511, 6567566.882790658, 6567752.893226797, 6568280.725692872, 6568408.924785597, 6568695.1571197705, 6568785.632861763, 6568795.180907742, 6568985.9375, 6569257.587510846, 6569530.7208674485, 6569737.4275390515, 6570166.107468906, 6570661.184049512, 6571035.508567419, 6571229.6875, 6571288.965191493, 6571390.625, 6571717.040028001, 6571740.561070908, 6572061.42300458, 6572074.517963259, 6572194.50432969, 6572236.81105641, 6572334.375, 6572613.47036646, 6572983.748819691, 6574225.917760059, 6574264.196822253, 6574343.216886787, 6574425.413626058, 6574485.089045257, 6575626.888949951, 6575782.8125, 6577007.566468865, 6577785.9375, 6577831.25, 6578153.162177301, 6578473.998703504, 6578958.735377395, 6579304.955326148, 6579823.757129953, 6579841.570924442, 6580589.212425225, 6580983.361322637, 6581117.864664982, 6581982.069359509, 6582197.4100177, 6582756.003849472, 6583922.454218853, 6585096.849558486, 6585146.5013117315, 6585298.131013409, 6588971.495053975, 6589886.120544113, 6589913.909637181, 6589934.360405585, 6598030.960268168, 6598962.221942617, 6601373.357572047, 6601443.75, 6604835.013845323, 6607528.2310663145, 6607647.623386976, 6607814.308559978, 6608401.131376532, 6608485.9375, 6608542.015423973, 6608948.264173475, 6608964.497923369, 6609061.211076058, 6609068.485539034, 6609089.854801992, 6609315.625, 6609323.4375, 6609340.520568531, 6609370.491805289, 6609500.436359627, 6609635.156205473, 6610150.0, 6610265.302577531, 6610509.995805885, 6610618.368233135, 6610868.576535366, 6611004.273311565, 6611257.8125, 6611276.805898345, 6611453.290680545, 6611580.973746735, 6612123.4375, 6612366.009506482, 6612519.763953541, 6612637.613678626, 6612664.448974884, 6612758.730029392, 6612974.425182403, 6612989.952119658, 6613080.175919441, 6613245.840611247, 6613560.677481461, 6614090.44837915, 6614226.5625, 6614541.471645482, 6615795.090641481, 6615923.147559925, 6616141.570939554, 6616502.401826074, 6617115.625, 6617791.146552417, 6621048.030027835, 6622010.885816246, 6622184.731061756, 6622438.222977377, 6623091.818938376, 6625743.62263889, 6629915.086122595, 6630127.646050469, 6631298.673794139, 6631435.855432873, 6631905.888522819, 6633084.375, 6639148.4375, 6640131.636265098, ...], [43.78464755522612, 6.469901340714349, 50.79596024311977, 5.247567985187081, 12.886854511710009, 40.800104643663424, 15.221185224781369, 65.24112533381769, 51.298303698033465, 99.56570404006317, 91.02271956535427, 143.15229804081363, 51.00635382737839, 135.35652165458526, 19.7692574702194, 6.769610672010891, 30.136832006602216, 64.9324120447064, 57.73568951200747, 33.38213495995862, 106.62896014866257, 45.4209803599816, 13.978876903401009, 24.347672424935958, 40.527085368798545, 109.98956525786795, 65.40831851711962, 43.93453343314405, 47.84686692446458, 53.23600912322825, 38.74906017260492, 74.98816901633484, 92.5209397056669, 38.630393651556474, 18.397847382952634, 5.317130509216825, 31.750695501011723, 32.119578394827194, 13.117647734459, 54.76675046525226, 59.90969458816172, 6.232509967930325, 8.53703046740385, 59.4142296173045, 63.11815451104379, 27.906887512386152, 34.204113972442165, 19.494882268810954, 12.048922738026151, 24.400047278101912, 90.09390913030155, 5.672625522409161, 23.04775850390777, 43.27867774314732, 14.714504467215715, 35.89219270917229, 10.487835346551021, 46.428154275765344, 15.540488372267024, 10.401643357403652, 93.76357655132333, 21.15402925606076, 44.340005289978876, 27.87962354660842, 12.151152537423313, 114.97205237906886, 57.04008302046445, 7.90507266448185, 36.979633216013646, 5.532673612813415, 13.017458767135334, 44.35066701234588, 56.72976668470067, 21.75832335455151, 88.32238526586363, 26.84288860828661, 6.063008096319983, 20.58966667776049, 32.06087609602153, 5.1914560535486025, 40.745765061716156, 58.18949532766449, 44.87324223788114, 29.681127219804722, 63.010440149919845, 39.958977915997224, 6.5133470995709475, 15.766381383688545, 19.49886266039294, 27.184988058621755, 90.69732674742986, 32.00762305973677, 87.8915418933673, 120.8098276378283, 33.36664433806344, 45.06086316083881, 76.58777215981728, 15.882801686896661, 19.057199102955995, 24.351067881794904, 18.454260832246806, 55.992474294117244, 55.48503838962444, 14.702297777782238, 35.81481856127602, 29.123511976420808, 55.67405122324476, 6.275560709307441, 27.67145287684804, 15.742583631119277, 59.970489541732704, 39.38751626391617, 80.24530495647278, 38.02519342308615, 9.316965826685458, 6.383044371603741, 63.28083734604083, 36.625831404881616, 15.117333322917087, 5.714941120222893, 24.91081629795878, 100.50628494360075, 5.558778866039355, 5.18379561267388, 18.980012406073975, 11.490959130331145, 29.655551882764257, 52.850978047406535, 7.418613400299738, 33.026864361834015, 66.35597981044694, 35.105797378691456, 49.06727037977056, 47.72266056598241, 26.966164323297576, 25.296277507142854, 64.77076369147309, 5.622478208755623, 9.14993089147357, 72.37701252297519, 16.642415866635346, 37.139516867602616, 50.29864149258508, 55.47793158846892, 97.9473746565101, 25.896811006379483, 78.62787268145395, 23.311156991396626, 15.40320198841372, 9.72293868839776, 19.211873290173294, 38.629289637479616, 10.152152602599362, 5.388428937766855, 39.92786555363757, 75.16213021195979, 39.605169721867185, 7.221704144477135, 5.279771298777846, 16.063329767956105, 14.896893340571314, 57.233789474291804, 73.98149648877715, 44.73656274903151, 54.68838949599057, 18.068989956703067, 50.86150457187101, 25.42934524300333, 16.29326073624445, 102.57096818175253, 12.316721473340847, 21.7074427436872, 17.273903789846873, 38.53315449326918, 51.212624144532306, 7.797243709553824, 49.08662303669214, 29.810283192079844, 31.37907386315525, 8.535251556949689, 22.599787758350285, 62.23837254313407, 27.090487411560122, 53.65017274447076, 28.13286855846001, 59.87335971106265, 17.384994873679926, 27.612462246254392, 66.01310764476047, 11.411019356347413, 42.764206631680324, 6.412893114061263, 10.032120356397954, 35.11401319023324, 15.801246156305183, 7.8379319184280964, 8.560624062146653, 26.331170259027452, 220.13137339512068, 8.212677851155961, 19.949948710802516, 25.66516114293708, 52.86665440623965, 40.13961308218711, 12.629944567553334, 25.982231015054225, 70.32245152066545, 11.489603273459817, 15.300625786155047, 6.530876011433592, 21.83495012474365, 78.82972134019285, 17.553909024241886, 6.230427484906989, 83.75506025343702, 201.17642028660129, 14.014498759027392, 64.26924396540444, 16.069334630496062, 67.10292037649202, 28.9872530723762, 16.402821250352183, 12.133714476674264, 28.640182053112593, 16.327527774116493, 22.243319226395002, 45.567929013946284, 11.270947891938322, 35.628566610193644, 5.529958999129824, 60.75123057906299, 64.04180142775041, 178.88371181182777, 36.469643859290386, 22.689148960553702, 26.412875143406062, 55.30610077842158, 79.22154811048264, 47.159949841406885, 10.586751111781133, 66.15047982801339, 6.3361762225800575, 30.391298991807957, 8.879506029984137, 55.64361938014702, 84.07509897769359, 11.278922108383867, 7.958983535772795, 116.27417993044753, 12.646880642002058, 80.12686571671101, 40.08594273247684, 115.32533647564047, 22.325002168196534, 13.822012665276759, 5.478290868155623, 67.90066294096346, 7.291643667222726, 12.508991236916826, 108.66164891304373, 5.15314698743967, 180.7676707506279, 25.0888983274303, 68.2595664471628, 12.72753317575745, 51.99453038905853, 11.793552123586386, 66.83489099620616, 43.42175983068155, 14.169239856091227, 14.71670956367889, 66.8137179381951, 49.002089772229326, 15.669324704103682, 6.2010441755072065, 20.103228330741658, 59.10325538813312, 8.522350656386, 36.77177863752665, 15.391168201331517, 5.560449743404369, 5.0651727711443675, 71.03374554326959, 250.34125854564027, 10.88689616143226, 14.909724598845361, 14.61678896704264, 99.97866094370505, 14.73426379538151, 116.1010898413476, 11.846128516732504, 78.29113110243463, 5.704201238041284, 90.93207165143423, 54.8818956786301, 9.984436754975938, 53.5996043918421, 15.457723103799085, 5.160204890911432, 12.36428060517454, 119.54606687161866, 25.888988108292054, 49.80948761323153, 51.86072282648114, 114.39228092848272, 112.22772931603407, 30.894684858047516, 14.82844356505397, 15.789788366152884, 13.697297661918027, 9.948502738787749, 17.769918562045067, 66.01115322363916, 52.132328995340806, 118.77676802441243, 16.316431609582512, 58.76924403508089, 20.967120417298986, 17.33538284248606, 15.425598103793003, 72.60309579662027, 65.83667863712326, 24.04368844943134, 16.726341834824588, 41.669333653239725, 70.49638411999914, 27.406507082003472, 57.565896621101174, 73.2228519440659, 31.555488335518636, 75.0116502143281, 70.8929789532216, 10.665623637092226, 57.78077940493526, 56.44763050893798, 21.029098997014746, 39.366917080458634, 46.99320342077858, 43.05453828431559, 31.480570800566632, 41.80868313777674, 15.806450556654, 44.22809725089053, 20.62889974057849, 35.640857558611856, 6.915014333824704, 17.01371385871539, 20.07029109791238, 24.80416528266206, 14.116189837014096, 91.91361232073787, 49.53126741080924, 28.140115121145456, 101.59918215285535, 30.783807309349335, 8.365957648757234, 24.564897182905277, 76.91349666554225, 17.944237323939753, 40.07747020809928, 22.455301372055004, 27.826426134397618, 22.89995464853412, 11.557473965137174, 31.879898393300074, 19.102580047473406, 59.17361803276418, 47.152498525725214, 15.069690708725417, 26.986684574247143, 59.2970328409701, 80.33798108884301, 22.70486059354579, 10.34330811206332, 37.33369648460018, 76.25500515949412, 25.948620753145978, 37.89047009363728, 10.024079873369972, 112.3124013559632, 84.13150194867865, 29.340081262151994, 18.736109361932026, 71.69965918944604, 111.30962886266558, 20.689606133015918, 10.654225613525394, 42.782644259175356, 41.815475087804955, 18.486274797475573, 24.144038453015455, 5.678485320665425, 95.94241619781724, 92.65057415196121, 31.800391195962433, 101.0083556663716, 72.28517197216837, 28.33553238423923, 19.178430028370236, 15.224239680026159, 6.33864730247596, 28.600998085738233, 18.583749214408012, 11.579311149463864, 20.895867588818515, 34.39320355964047, 10.022447697783345, 8.88381456808472, 15.564611774715344, 27.096487832881397, 92.15631790499208, 6.421817064661513, 225.34160546134123, 212.032082022746, 6.889254195235533, 10.576767581588804, 20.859923742298093, 94.002878924667, 15.38517582820914, 13.9180003409156, 93.43846971581411, 20.327273515116744, 12.516874011940098, 32.09983853011247, 20.922602950604453, 6.158504746750793, 11.671133315912671, 29.527411472715883, 26.61688681549429, 78.74188081771544, 23.795558110764507, 23.737776872827283, 5.812702737523538, 54.10229762850227, 5.49799691758031, 9.386803503621746, 96.95396546030139, 7.895615614351606, 5.215975299154449, 31.507674609778896, 11.280602963639959, 10.551799954969862, 6.720088161544352, 8.88832605113229, 5.327699018498602, 7.159222276923955, 19.894324237645996, 16.320002079498845, 5.217640136826207, 98.62986420958848, 37.41567619929964, 10.607187182959452, 5.483615604793761, 12.11691712164769, 11.259562697097994, 64.07482516096199, 78.40676019453034, 21.607424098799722, 29.687902103612263, 47.657410887888844, 53.86801518759924, 5.062036242724582, 46.157323908382416, 10.662020093744124, 13.5135782970875, 62.503283665927526, 27.43364390909315, 23.032373350010612, 29.937504130968467, 38.69320361127991, 71.17088664245081, 7.310758563630819, 20.847180247743673, 30.51320285672749, 9.484005318532612, 13.19849570962003, 11.460242594181128, 17.849798614178663, 53.42667890759976, 71.91357820174122, 84.11560306486089, 21.050281866989145, 68.9530447809388, 12.572076857677251, 5.7452279445974614, 14.421588051146554, 40.31600870283495, 103.27752546128463, 71.9861424106065, 68.31169620236761, 37.07469528559283, 32.1873681105646, 191.3491940199938, 30.04473046533421, 7.899290817947366, 37.291072202071504, 14.666247305974412, 26.477267338464127, 83.1185935982634, 34.02126480932782, 237.618699381301, 18.11408964097756, 11.930383122055966, 21.70811439106181, 17.33298300877074, 8.473980579576029, 38.06449588698598, 10.338717597476595, 44.74245362305254, 23.254820569578047, 7.14987592165445, 14.706979779508739, 35.76949965642063, 169.27127559356444, 7.993126490749718, 40.761866177684645, 109.45088644600624, 10.600947947330837, 32.73235329910277, 6.968440886915169, 72.35093023040187, 8.308298466975577, 28.915078804496783, 38.161201717427886, 18.370301335500894, 19.907625969590928, 42.43207276535349, 70.47005514936697, 61.56134956801711, 15.951922856083662, 12.734762295925535, 10.329309452661256, 16.50013340161417, 5.448110588883021, 11.609383234178015, 19.126777705675664, 12.564562581495942, 11.297940948797816, 45.18964127182032, 5.730469103286267, 51.49452826158017, 20.58314746029376, 52.47786091379378, 8.569821096284945, 28.412259882262425, 61.95987663970229, 103.84167263805277, 40.241112408089435, 16.533143319968588, 57.91207216113271, 36.15959835291619, 8.389257516941877, 17.96622045422791, 10.951058450443027, 12.122353468152117, 99.78658705686257, 88.89706784479108, 14.460082181864157, 100.41520410789398, 16.276719524422425, 5.935383861924127, 7.402483422502626, 68.69333010280441, 12.157682818990631, 46.88993835904471, 52.67869892889925, 25.932187722733502, 11.004305077912576, 49.70778064055375, 57.33207669867724, 82.67148619288513, 28.125516100607264, 9.186902612024678, 5.235884505934564, 23.195660040252832, 5.7392869869684136, 7.939412218399415, 101.28073713902117, 20.85442247142518, 55.38720411778921, 81.55228653339813, 35.560621016952844, 10.169721361477412, 17.05706559888489, 27.346310048532875, 10.772165250597734, 14.237659912291107, 185.63494454650404, 49.82351468613673, 21.074580650590327, 37.53069276635811, 12.283921137225976, 22.828931836329364, 69.44515492066284, 24.3423046706355, 104.05981165952385, 82.02693419780283, 7.476930471833574, 127.72933428942207, 9.796755157111553, 62.52658539625105, 6.172702928879499, 136.80755247480866, 11.720069253995947, 22.017639868140332, 11.590477967474063, 119.24607315906539, 8.145383942754524, 44.83420990394705, 49.31435040207866, 16.82168245405615, 89.01498763328709, 8.265721180937293, 5.302655429613269, 33.227344622111815, 72.76960498923127, 66.9353424725214, 15.074119438336954, 5.835690399038169, 27.760095751209054, 21.84519417433892, 33.78876740965059, 107.80739413884798, 40.99200614283716, 6.91515707698916, 46.67495654885703, 7.466483794911746, 21.74893597893852, 40.344502353306915, 9.437262301446946, 72.23336168106539, 46.634355760200464, 26.627699181725834, 23.70992815431289, 56.02909101982114, 49.34155055478885, 55.03474465877626, 7.016436990680748, 99.52719523627451, 5.509838826380919, 5.6278713203176896, 10.269352617890572, 14.16544233474583, 67.19057527293006, 90.96742174281954, 103.22733343668679, 8.817170365814299, 22.712771969844503, 65.03339589077552, 12.567393362525294, 39.10343361776154, 93.03576660244202, 18.52270278981501, 32.90134077627702, 22.643201652184853, 53.46593214400489, 9.15338390425163, 17.618607437546064, 96.83077170297355, 5.517252914552632, 50.43045588329025, 52.13629211422338, 13.510706813548934, 65.37331297619018, 53.19010469085867, 54.19409696179931, 5.548988544928778, 51.41841048791257, 78.85954011259734, 21.203318389357616, 126.39249598527778, 6.242850775050719, 9.287414845614386, 20.7173216872567, 7.700538824256197, 21.150315975070676, 13.874324711746175, 75.07150351078363, 63.948251865851326, 13.586504383438495, 24.851417788178384, 11.586421640058893, 94.54414413134037, 21.22001901748626, 8.622223003616034, 21.457958445232048, 100.4605007654497, 60.83701460223007, 14.60204968908343, 89.30224853073398, 39.48840818174152, 33.1393922442606, 61.74285535796574, 43.51863403625029, 6.009790402705322, 12.009450520288683, 69.68463420439068, 67.42516018645509, 41.30786639727127, 69.79244203968837, 43.30619083684162, 42.66892593167534, 6.766755988067445, 38.59490722556954, 45.28576346742014, 7.149846706466653, 14.860137317719255, 50.564539552619124, 5.868860405271709, 66.32909918543324, 61.203564482060536, 9.320503143237426, 17.945435313856507, 5.103066987974876, 15.681523329917907, 5.6965500646658445, 201.36556347716854, 40.33704303538829, 8.385775648572606, 25.399507566196526, 9.94507465709669, 8.4816866725581, 31.516484286274533, 6.062221126084894, 56.54322055787272, 59.105203648793754, 78.28251301643395, 14.495746847455175, 6.063001079490855, 22.587417659727635, 43.118118991469764, 61.80245184826434, 96.98107203899063, 15.390624367049298, 8.193136427038198, 47.38235716626768, 21.834590235452175, 6.279550281679498, 55.21783629902045, 43.61870465772062, 16.72290477059867, 10.285917131681874, 13.350095550975752, 73.6386934828829, 56.0074003559041, 13.323831609037185, 21.969800647799175, 46.89029432684271, 56.16916984584383, 34.16580053552164, 78.89113971153827, 79.755321597858, 6.697870187669963, 10.788906126776652, 26.217891739884745, 33.747325869051664, 104.1486709094959, 13.664699980493003, 7.933764414592014, 10.17785537224377, 5.218859584439433, 36.211782779225445, 10.55806075956142, 24.588312008659454, 22.292547274028053, 75.36658146256707, 148.6229206126713, 16.187539118494794, 24.965052255641194, 46.81569087103142, 10.48224757248639, 7.729079791050305, 11.98033645497349, 45.65430377462182, 20.768626518950796, 17.032653111553874, 27.52374385513631, 39.8047777155586, 15.515350450347213, 37.70996267659322, 20.99192710961222, 48.08853773180824, 14.3415620648682, 16.714163667341403, 47.55470956172891, 74.06440104442933, 17.599702824105613, 27.10708750842333, 8.257805093177003, 48.65390347451521, 10.032415690613389, 15.045767629973247, 73.80298633714852, 8.03394674201143, 71.0114686647614, 22.358058552608373, 117.27986888824411, 12.9793234351409, 8.885481928515864, 41.929306352964105, 5.966303508855576, 9.545975952230808, 8.564351852036657, 32.69162278506298, 86.19890461918786, 23.628277699794392, 40.801571398292, 195.99993418926158, 5.624231913362326, 10.004002108516739, 5.588629615698039, 22.757269148303283, 35.518561457612016, 11.032636601298176, 16.84292255922554, 17.53516590776428, 108.24309657896862, 18.114103675998443, 45.46633969287332, 49.58568258699577, 44.82589995492207, 65.26592614676849, 38.03193251275875, 70.92746143520733, 7.630719492237722, 72.77766812187335, 7.009715728926558, 37.1900761829537, 94.48852113362216, 6.428834354214488, 67.06332416946992, 21.28534395314473, 7.501429735705647, 6.432748497223632, 34.391492021517934, 10.428393896429041, 5.363721701337567, 136.4951813372683, 45.386523899276575, 54.43843255088581, 122.21666914646612, 60.43136594020537, 61.979532735343824, 11.909406893483126, 12.58845275111368, 24.59691016786339, 25.563665577850966, 23.409142533866216, 16.209715104428334, 12.976700273115416, 25.0895743739128, 5.907646682351594, 119.32928633012301, 18.48880885257178, 33.50624488278035, 5.2156000372323295, 13.232197494743843, 5.889323730490141, 28.826226652471124, 11.22950645319401, 52.617697123226684, 33.74933972742976, 56.720916404508564, 6.215548425080719, 26.500379553238073, 10.949555666069154, 66.17803340853652, 11.282152875015335, 38.06357515945686, 5.443678824033808, 25.903102155884564, 20.842286707039555, 19.352451528963762, 17.705438043532865, 7.123758143700516, 66.16663534519472, 9.253709039348534, 7.413912172693078, 18.24354131274246, 97.90448933810747, 30.670711899401823, 10.490064895271894, 22.3279710200052, 77.89564412945428, 9.222559095020129, 43.165867377938106, 14.148111944581352, 21.207328111532398, 52.460274728983975, 7.254329015791703, 34.85437975962287, 177.68058858775893, 89.58823188389108, 26.73826084693561, 44.10365834485536, 98.73134155977856, 11.029230469436328, 7.788811274571842, 107.73601432230242, 101.44427546935304, 61.91474444478276, 60.60727569424549, 82.51391529925962, 7.981053936779187, 19.69782400377077, 15.479452704399902, 21.16901789971224, 39.30784285913078, 12.463299038888001, 33.30305990847387, 57.176204220642965, 30.326216928975924, 60.727156514229854, 37.97764521882612, 11.18631883345386, 13.804623749591013, 23.184804488385097, 75.78803602849763, 16.3179044927928, 25.802357436723845, 7.161428134350131, 62.655816519806194, 8.680372044479462, 6.938906607193525, 17.466216697186034, 14.079554032609437, 17.729635435336434, 28.031064195469735, 39.30930978637919, 5.158284646038636, 22.780573011449903, 22.752535394117565, 81.1823963708585, 24.847446725131306, 9.09787225638163, 50.61579078999182, 9.264721790925583, 61.79783871254618, 55.91633225423945, 23.896350559872563, 33.38765080493697, 88.76957464548423, 63.577815563991784, 39.3079462998347, 94.03693814882627, 25.515939146000942, 56.35983568425672, 16.09796069208384, 6.234354004131435, 12.642320062160465, 41.3007927890669, 60.30577250271668, 10.968305008454383, 5.46951551362855, 84.16909811776559, 5.496326441696377, 61.33785732140834, 23.468489681207913, 17.987311413879638, 39.883805714976546, 14.319144201558514, 5.591533945444184, 29.349759196068263, 11.530731330245429, 14.726515500509976, 8.145699952257095, 100.90930619670837, 37.682784305086855, 6.984353682899393, 21.208471101469343, 16.65218491630398, 7.38550999378006, 140.79813087840347, 7.376741511170303, 17.199504382300614, 7.267558884204262, 48.03123667525068, 14.308496092836027, 74.98335316012637, 19.579947606486762, 101.97249417158602, 38.61908350998097, 13.017761880442874, 19.522525687707805, 50.252485160246785, 93.72148919611992, 22.46859540011486, 42.214090768065205, 16.49781021162353, 14.70888925871456, 80.27673214764478, 128.85894749400637, 29.889999405954143, 21.705691904262185, 11.518291489101607, 114.43794818152695, 7.029565290775106, 67.69198552862514, 42.327330233122844, 11.790376089035862, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3358684.375, 3358692.076958229, 3485359.616941467, 3565926.648831841, 3665985.2689019335, 3976062.5, 3985057.883990885, 4003425.0, 4057381.25, 4061163.409777827, 4075754.2586198063, 4076432.8125, 4191181.7491577175, 4206810.163392888, 4220531.1193360705, 4294165.655498509, 4359951.5625, 4389707.494797483, 4423326.05746983, 4450740.625, 4468769.934657389, 4471117.870405661, 4514933.739761153, 4762505.600572304, 4887243.155771068, 4938625.273882349, 4994119.504267752, 4994411.080709313, 4997407.8125, 5010917.1875, 5041606.25, 5053621.875, 5054508.100907807, 5060374.289446666, 5090820.996414797, 5090846.133227255, 5091597.012291137, 5102258.308118107, 5144985.359602089, 5204587.5, 5205858.69258795, 5205863.782919323, 5395200.44537267, 5407465.625, 5416584.375, 5432834.342997749, 5444096.875, 5445507.085782673, 5450917.706469272, 5460596.624186751, 5463657.8125, 5464336.94998608, 5465769.289032927, 5481400.0, 5486321.814139866, 5495592.1875, 5500257.360547651, 5512754.179080477, 5513129.836247852, 5519236.979881028, 5521027.177629198, 5525910.40282444, 5526675.0, 5546975.808386145, 5553701.109362932, 5558427.934968595, 5564915.625, 5565952.326445933, 5588218.800558885, 5591570.304112596, 5596314.830187627, 5597871.059952485, 5608231.25, 5608861.555881534, 5609323.539588709, 5613892.096314809, 5623795.067712536, 5623830.65440104, 5627450.23110961, 5631635.461253689, 5634319.97660239, 5635314.956008564, 5636399.176625958, 5639980.553721898, 5660217.841679387, 5665006.761350831, 5677804.852972124, 5718733.013296761, 5723174.834576163, 5738962.428444657, 5742993.75, 5743329.572333671, 5746625.0, 5749561.314321365, 5775573.4375, 5776271.870591362, 5777254.6875, 5778080.953677312, 5784407.027905942, 5792045.443590878, 5800384.8896224685, 5807585.9375, 5809178.125, 5809259.825792365, 5814271.875, 5817707.255313247, 5818915.625, 5846014.12840231, 5858421.262179227, 5862820.507910579, 5884239.0625, 5887390.177779705, 5893657.8125, 5897017.1875, 5899078.107876131, 5902225.865018556, 5906385.369968967, 5908889.891740539, 5910215.879601326, 5911672.002815801, 5911736.381786695, 5914754.6875, 5914756.768368733, 5914822.649303699, 5915204.159045478, 5915260.356606642, 5915432.227951596, 5915535.9375, 5915941.6464648275, 5916684.667398691, 5917211.325696072, 5919300.381712808, 5920329.6875, 5920462.367547951, 5920616.048431158, 5922406.062072543, 5922829.6875, 5923189.2139532855, 5924399.777290038, 5925068.3326931875, 5926111.322072914, 5926225.0, 5926360.9375, 5927370.885965352, 5927495.3125, 5927752.4179240065, 5927945.813099222, 5931838.727289259, 5932553.241077061, 5934769.179392716, 5935933.611248303, 5937418.588753367, 5939302.396177499, 5939307.54723037, 5941306.25, 5941896.875, 5945018.75, 5945039.430626081, 5945454.316766625, 5946069.016167295, 5946804.675744995, 5948518.75, 5949103.787239666, 5950437.5, 5950548.723852584, 5950705.876634245, 5951896.875, 5953407.633453881, 5954155.002054097, 5955612.84097412, 5955613.147356517, 5955655.771221695, 5957219.251611247, 5958855.591593751, 5960182.8125, 5960467.6938291425, 5962842.278178587, 5964096.308054291, 5966381.25, 5966706.692396639, 5967899.604217666, 5971095.283238542, 5972362.593635307, 5975235.9375, 5975245.327614571, 5978898.4375, 5981697.607293191, 5983579.639662363, 5984101.5625, 5984198.611496014, 5984751.5625, 5984755.759760256, 5984760.101754102, 5988229.210697433, 5989256.458647381, 5990299.042902281, 5990633.297106525, 5990709.253312308, 5991264.967512584, 5992985.795090869, 5995825.892517372, 5997499.002449302, 5998263.725809414, 5999575.0, 5999691.512428027, 6001099.856685733, 6001793.75, 6001961.157316533, 6002273.5286324145, 6002314.336240273, 6003879.221099362, 6004539.0625, 6006420.862427932, 6007041.890809129, 6008692.1875, 6010156.25, 6011021.608492015, 6011420.3125, 6011644.017455079, 6011685.814227799, 6012008.651103332, 6012884.075641997, 6013827.123073954, 6014472.205627008, 6015667.509106389, 6019507.197947875, 6019638.951128011, 6019645.402248251, 6020054.877245086, 6020060.8730140645, 6021467.1875, 6022212.961179188, 6023642.640539822, 6026339.0625, 6028226.8966451585, 6032604.135778884, 6035625.0, 6038384.375, 6039117.1875, 6041021.498960318, 6047995.3125, 6051483.339626607, 6055529.281296024, 6056199.412402796, 6056923.658980914, 6057932.751762747, 6057964.456099997, 6057977.449495139, 6058025.650561416, 6058316.419251552, 6058461.2310644, 6058512.682803625, 6059346.875, 6060410.30047523, 6060416.859122812, 6060469.12942185, 6061599.13933257, 6062924.047653315, 6063103.859344867, 6071660.8906018175, 6075521.342685275, 6085524.675388442, 6088655.284572102, 6088796.377937842, 6090816.428460392, 6094782.881890251, 6101167.575451085, 6107848.4375, 6108753.125, 6109981.031472794, 6111299.939743856, 6112654.6875, 6113978.125, 6113979.866187776, 6114263.520314705, 6114607.160889936, 6115840.871468554, 6117809.795738374, 6119338.696895386, 6120453.604073232, 6121495.86381892, 6126501.356690259, 6126834.121905142, 6127732.51389804, 6130556.090273146, 6131222.110670159, 6134559.287114809, 6135176.5625, 6136574.944542938, 6136721.018324973, 6136776.9781538835, 6137041.445253387, 6138121.834751078, 6142423.4375, 6142917.790164832, 6143306.933016775, 6144283.4324303735, 6144445.441648306, 6144537.277195532, 6144728.794261497, 6144797.611682102, 6145957.1889658235, 6149196.5092424555, 6151332.8125, 6151899.863031357, 6152315.490931803, 6152352.473713474, 6153306.220016177, 6155386.520374573, 6156466.81767836, 6156824.087065555, 6156933.398325468, 6157657.150105191, 6157671.189594631, 6158861.73054201, 6160358.131827172, 6161754.6875, 6162391.298973642, 6163322.38739819, 6163787.353372921, 6164037.5, 6165671.177281661, 6166174.722592835, 6166818.688130398, 6168801.6221547425, 6169061.873552172, 6169323.378345, 6169510.9375, 6170566.051465832, 6170574.740216835, 6170660.30079769, 6170964.697895961, 6171216.870290548, 6171346.646468098, 6172404.6875, 6172407.264693142, 6172500.0, 6173040.048455319, 6173128.125, 6173288.2420172375, 6174230.662733652, 6174272.08481518, 6174810.701554203, 6175744.301053193, 6176385.968282159, 6176399.151807358, 6178915.190544875, 6179296.2194721745, 6180175.2583534075, 6180446.640194545, 6180671.517039391, 6182015.625, 6182757.809283499, 6182771.357363241, 6183200.0, 6183218.897152267, 6183727.886171992, 6183945.209016685, 6183982.997803509, 6184586.896043076, 6185062.821243007, 6186087.93418817, 6187038.692842394, 6189195.5710877925, 6190234.251582002, 6190583.59656629, 6191364.0625, 6191496.875, 6192034.408228243, 6192120.229638136, 6192301.989701677, 6192560.9375, 6193675.030247109, 6194075.99513543, 6194804.6875, 6195414.125547259, 6196130.354009685, 6196222.46850262, 6196402.281930449, 6196577.374505614, 6196626.012473811, 6196918.75, 6198141.162165682, 6198950.647349841, 6200256.9018680435, 6201649.540830783, 6202232.486879674, 6203604.6875, 6204162.5, 6204947.492461241, 6205496.605178425, 6206110.48390055, 6207760.9375, 6210793.75, 6212500.0, 6213233.232768139, 6214315.625, 6214917.17785741, 6217611.73177863, 6221761.009751392, 6222045.857836667, 6223339.0625, 6223642.89879589, 6225101.83340782, 6226414.2964797765, 6229169.84701184, 6229386.655441258, 6229419.731056564, 6229873.929426649, 6230310.219514095, 6235067.373988125, 6235399.570567848, 6235443.220466423, 6238241.505799953, 6245238.098839412, 6245944.928907671, 6247021.309094792, 6250465.700630231, 6251026.874745376, 6252465.3277860535, 6253357.8125, 6254109.394255791, 6255208.550324001, 6255914.0625, 6256333.815843261, 6256702.213373496, 6256772.196908984, 6257108.4550875155, 6257997.230642644, 6258343.270227858, 6260449.703500437, 6262167.576260851, 6265298.420219164, 6267371.875, 6267433.630287835, 6267843.814800664, 6269384.375, 6269469.49197633, 6269812.985702308, 6271165.132121711, 6272182.908164479, 6274215.222413181, 6274574.778557594, 6274588.487487707, 6274965.203982797, 6276007.95426321, 6276315.921698476, 6277601.882561028, 6277653.674077208, 6278228.795334666, 6278468.7915467685, 6278471.514345427, 6280303.62435679, 6280659.927404039, 6285937.582750674, 6286342.1875, 6288065.289407509, 6288879.198884565, 6288957.56786542, 6289160.363893823, 6292417.1875, 6294240.2441867925, 6294784.375, 6294813.742634684, 6295102.692074082, 6296842.1875, 6298442.2240173705, 6301493.391600663, 6301724.619605099, 6306253.0878957175, 6307728.048037844, 6307792.861820337, 6309019.7189148795, 6309608.891410722, 6309907.987625188, 6309911.952757484, 6310098.640315269, 6312439.991795672, 6313648.4375, 6314695.3125, 6315299.849899211, 6319056.448530205, 6319176.277167865, 6319257.012001646, 6319261.525462178, 6319332.097300642, 6319457.8125, 6320007.8125, 6320032.567345237, 6320248.4375, 6320286.810283255, 6320471.875, 6320560.84067646, 6320624.286780918, 6320710.125528024, 6321238.337813361, 6321243.366151591, 6321514.293249234, 6321591.76294053, 6321644.994093645, 6321712.3237358425, 6321755.328196022, 6321756.709248203, 6322144.8337873705, 6322161.553758824, 6322405.025831308, 6324287.5, 6325275.991378605, 6325436.128660725, 6326170.845957236, 6330682.9195382465, 6335317.124576871, 6338009.933745061, 6338695.346267689, 6338744.713048403, 6341073.4375, 6341918.75, 6341944.947158921, 6343107.756814313, 6345149.384083112, 6345456.25, 6347546.915850365, 6348673.4375, 6349218.873920066, 6349956.92979589, 6349998.908572926, 6350064.0625, 6350351.5625, 6350580.479924122, 6350878.659930959, 6351116.456405743, 6351600.983661102, 6351783.169025165, 6353154.365427935, 6353161.225252696, 6353221.565791541, 6354630.446229631, 6355365.731247283, 6355595.299974078, 6355865.991229336, 6356393.652934911, 6356543.153672556, 6356765.625, 6357162.999781839, 6357283.451854122, 6357392.297413635, 6357664.788072698, 6357871.875, 6357965.535553264, 6358387.5, 6358731.25, 6358859.564250404, 6358903.742461042, 6359320.196467769, 6359404.819500577, 6359470.022521566, 6359535.90136704, 6359877.992685408, 6360391.74004844, 6360567.498635364, 6360596.828703494, 6361644.721101564, 6361937.320201576, 6362584.716979411, 6362694.542653292, 6362783.9515874535, 6363224.853526846, 6363304.607090325, 6364026.992224881, 6364134.35956518, 6364302.345913819, 6364671.854502886, 6366149.824014895, 6367013.728208587, 6367334.03026566, 6369672.374267845, 6370160.2177502075, 6371445.815181824, 6371494.111879483, 6371634.375, 6371784.217779052, 6371840.676004398, 6371893.03645839, 6372361.380626538, 6372457.749998874, 6372627.884969402, 6372682.614709733, 6372765.862083119, 6373241.164407151, 6373255.250553194, 6373468.05813634, 6374400.63209645, 6374819.825124486, 6375159.375, 6375956.336272259, 6376442.695902774, 6377024.360534887, 6378113.699234152, 6379535.239982837, 6381092.690947276, 6382362.3610966215, 6384942.963583202, 6385347.928220431, 6385498.7860715175, 6385499.551022678, 6385504.964679214, 6386120.644095408, 6386509.098104086, 6386717.667052394, 6387382.8125, 6387611.437846138, 6388466.638869202, 6390924.9603513945, 6391676.932520676, 6394339.9801160125, 6394387.708741516, 6395300.0, 6395535.451498916, 6395764.35166544, 6397678.085152453, 6398207.649406709, 6398275.0, 6400121.80226574, 6400461.898057145, 6403535.089940767, 6407453.125, 6407744.917876318, 6408226.087769511, 6410349.98875643, 6410364.185096456, 6410893.75, 6410937.262902451, 6411947.897124073, 6412252.821798127, 6412594.566071855, 6414436.6742815375, 6415064.0625, 6415268.334852936, 6416103.125, 6416387.011631946, 6416390.872262261, 6417257.183903482, 6417474.780313374, 6417604.6875, 6417681.25, 6417732.8125, 6417857.134546255, 6418023.051651299, 6418045.3125, 6418113.887381517, 6418603.125, 6418608.980393009, 6418715.881363906, 6418851.5625, 6418944.920549145, 6420243.0410001045, 6420306.031684321, 6421877.123302321, 6422129.8919205805, 6426240.294509048, 6428209.375, 6429048.4375, 6429685.503567719, 6430156.366576732, 6434548.4375, 6436173.007703348, 6438106.5734759355, 6438189.290342225, 6438657.8125, 6439388.532951661, 6439806.665267692, 6439979.492328293, 6441578.072514856, 6441847.64287602, 6442665.886242387, 6443925.51472239, 6443940.313684147, 6444179.6875, 6444845.3125, 6445154.05726003, 6445206.2388298055, 6445350.274903376, 6445571.875, 6445593.222182127, 6445603.710003449, 6446281.425160729, 6446832.464782128, 6446927.753970192, 6447719.7642121455, 6447741.632007332, 6448049.603820687, 6448934.375, 6449885.9375, 6450433.966789246, 6450553.899227994, 6450658.311787819, 6451125.931504742, 6451761.567156515, 6452570.518031759, 6452636.575555695, 6457487.5, 6458223.4375, 6458632.828754452, 6458667.829193413, 6460213.250894812, 6460361.04442934, 6460768.728486, 6461276.5625, 6461638.215147673, 6462605.476926015, 6462716.585473316, 6462814.049580852, 6462978.275539492, 6464100.232856661, 6465657.993987341, 6470140.463401603, 6470476.094700022, 6471860.9375, 6472103.307990163, 6473583.200560835, 6473870.958851934, 6475494.101588802, 6476212.36251234, 6477746.622419779, 6478443.687108372, 6479131.25, 6481712.014938771, 6482084.252917503, 6482893.5051430855, 6483671.478122611, 6483782.8125, 6485861.672890975, 6486567.101075734, 6486625.936129904, 6486662.319020902, 6487842.1875, 6488623.446484625, 6489131.347143648, 6489262.5, 6489557.8125, 6489975.40015411, 6490241.572750478, 6490255.758757726, 6490434.375, 6490615.143743966, 6490843.249191252, 6491824.546495091, 6491939.804178474, 6492098.4375, 6492289.2844804935, 6493129.6875, 6493150.0, 6493244.974592002, 6494843.521864809, 6500872.906369946, 6501100.742869451, 6502314.0625, 6503726.476622256, 6504816.454892693, 6505746.168502031, 6505878.720345852, 6506456.25, 6506458.977190502, 6506902.8878585175, 6507362.076572742, 6507501.410803496, 6507684.375, 6507686.230039158, 6507873.2269680165, 6507973.8250086615, 6508255.7936864095, 6508375.335029271, 6508484.6936866315, 6508623.0374219855, 6508746.299173006, 6508858.210111274, 6508872.243616869, 6508973.4375, 6509157.116670566, 6509284.375, 6509621.323248014, 6509662.5, 6509968.583158306, 6509971.112392594, 6510057.221673567, 6510180.173951774, 6510253.351930209, 6510287.424026545, 6510668.695192087, 6510681.25, 6511008.539522712, 6511110.964587072, 6511134.375, 6511240.114631891, 6511264.653391027, 6511265.207546391, 6511513.37857711, 6511635.305823178, 6511875.983434881, 6511957.34341661, 6512233.116269714, 6512597.118313099, 6512855.178265419, 6513193.75, 6513474.542935481, 6514174.690351881, 6514254.550864533, 6514315.625, 6514578.307696003, 6514596.013551943, 6514729.218787222, 6514807.430530069, 6514893.75, 6515995.250813502, 6516019.1730149025, 6516904.001950863, 6517044.332797859, 6517214.916303966, 6517378.00213538, 6517426.5625, 6517438.254207442, 6517481.25, 6517789.0625, 6518168.75, 6518340.70034929, 6518446.635036396, 6518647.994671687, 6519248.4375, 6519582.8125, 6519869.930519216, 6521153.05903344, 6522756.716978685, 6523088.771961732, 6523588.7068488905, 6525246.126943825, 6525290.1262436425, 6525327.185193446, 6525503.125, 6525757.721487883, 6525800.0, 6526329.6875, 6526439.0119271595, 6527129.188553524, 6527883.260985544, 6529135.144111718, 6529438.825976848, 6530193.552076219, 6531369.950914909, 6535821.4003252005, 6537899.367286686, 6544634.173050691, 6546237.1279453365, 6547382.8125, 6548386.634902198, 6549834.437308191, 6550047.346384173, 6551677.590371752, 6557672.843869583, 6562929.6875, 6563895.376666422, 6565018.75, 6565059.742983736, 6565704.6875, 6566012.079955669, 6566042.0760544, 6566057.695454068, 6566062.2491276935, 6566076.384035956, 6566305.836188169, 6566444.884198534, 6566656.101684138, 6566674.432186629, 6566703.942318769, 6566946.730385388, 6566973.446267001, 6567004.099298332, 6567156.156662992, 6567566.631840511, 6567566.882790658, 6567752.893226797, 6568280.725692872, 6568408.924785597, 6568695.1571197705, 6568785.632861763, 6568795.180907742, 6568985.9375, 6569257.587510846, 6569530.7208674485, 6569737.4275390515, 6570166.107468906, 6570661.184049512, 6571035.508567419, 6571229.6875, 6571288.965191493, 6571390.625, 6571717.040028001, 6571740.561070908, 6572061.42300458, 6572074.517963259, 6572194.50432969, 6572236.81105641, 6572334.375, 6572613.47036646, 6572983.748819691, 6574225.917760059, 6574264.196822253, 6574343.216886787, 6574425.413626058, 6574485.089045257, 6575626.888949951, 6575782.8125, 6577007.566468865, 6577785.9375, 6577831.25, 6578153.162177301, 6578473.998703504, 6578958.735377395, 6579304.955326148, 6579823.757129953, 6579841.570924442, 6580589.212425225, 6580983.361322637, 6581117.864664982, 6581982.069359509, 6582197.4100177, 6582756.003849472, 6583922.454218853, 6585096.849558486, 6585146.5013117315, 6585298.131013409, 6588971.495053975, 6589886.120544113, 6589913.909637181, 6589934.360405585, 6598030.960268168, 6598962.221942617, 6601373.357572047, 6601443.75, 6604835.013845323, 6607528.2310663145, 6607647.623386976, 6607814.308559978, 6608401.131376532, 6608485.9375, 6608542.015423973, 6608948.264173475, 6608964.497923369, 6609061.211076058, 6609068.485539034, 6609089.854801992, 6609315.625, 6609323.4375, 6609340.520568531, 6609370.491805289, 6609500.436359627, 6609635.156205473, 6610150.0, 6610265.302577531, 6610509.995805885, 6610618.368233135, 6610868.576535366, 6611004.273311565, 6611257.8125, 6611276.805898345, 6611453.290680545, 6611580.973746735, 6612123.4375, 6612366.009506482, 6612519.763953541, 6612637.613678626, 6612664.448974884, 6612758.730029392, 6612974.425182403, 6612989.952119658, 6613080.175919441, 6613245.840611247, 6613560.677481461, 6614090.44837915, 6614226.5625, 6614541.471645482, 6615795.090641481, 6615923.147559925, 6616141.570939554, 6616502.401826074, 6617115.625, 6617791.146552417, 6621048.030027835, 6622010.885816246, 6622184.731061756, 6622438.222977377, 6623091.818938376, 6625743.62263889, 6629915.086122595, 6630127.646050469, 6631298.673794139, 6631435.855432873, 6631905.888522819, 6633084.375, 6639148.4375, 6640131.636265098, ...], [43.78464755522612, 6.469901340714349, 50.79596024311977, 5.247567985187081, 12.886854511710009, 40.800104643663424, 15.221185224781369, 65.24112533381769, 51.298303698033465, 99.56570404006317, 91.02271956535427, 143.15229804081363, 51.00635382737839, 135.35652165458526, 19.7692574702194, 6.769610672010891, 30.136832006602216, 64.9324120447064, 57.73568951200747, 33.38213495995862, 106.62896014866257, 45.4209803599816, 13.978876903401009, 24.347672424935958, 40.527085368798545, 109.98956525786795, 65.40831851711962, 43.93453343314405, 47.84686692446458, 53.23600912322825, 38.74906017260492, 74.98816901633484, 92.5209397056669, 38.630393651556474, 18.397847382952634, 5.317130509216825, 31.750695501011723, 32.119578394827194, 13.117647734459, 54.76675046525226, 59.90969458816172, 6.232509967930325, 8.53703046740385, 59.4142296173045, 63.11815451104379, 27.906887512386152, 34.204113972442165, 19.494882268810954, 12.048922738026151, 24.400047278101912, 90.09390913030155, 5.672625522409161, 23.04775850390777, 43.27867774314732, 14.714504467215715, 35.89219270917229, 10.487835346551021, 46.428154275765344, 15.540488372267024, 10.401643357403652, 93.76357655132333, 21.15402925606076, 44.340005289978876, 27.87962354660842, 12.151152537423313, 114.97205237906886, 57.04008302046445, 7.90507266448185, 36.979633216013646, 5.532673612813415, 13.017458767135334, 44.35066701234588, 56.72976668470067, 21.75832335455151, 88.32238526586363, 26.84288860828661, 6.063008096319983, 20.58966667776049, 32.06087609602153, 5.1914560535486025, 40.745765061716156, 58.18949532766449, 44.87324223788114, 29.681127219804722, 63.010440149919845, 39.958977915997224, 6.5133470995709475, 15.766381383688545, 19.49886266039294, 27.184988058621755, 90.69732674742986, 32.00762305973677, 87.8915418933673, 120.8098276378283, 33.36664433806344, 45.06086316083881, 76.58777215981728, 15.882801686896661, 19.057199102955995, 24.351067881794904, 18.454260832246806, 55.992474294117244, 55.48503838962444, 14.702297777782238, 35.81481856127602, 29.123511976420808, 55.67405122324476, 6.275560709307441, 27.67145287684804, 15.742583631119277, 59.970489541732704, 39.38751626391617, 80.24530495647278, 38.02519342308615, 9.316965826685458, 6.383044371603741, 63.28083734604083, 36.625831404881616, 15.117333322917087, 5.714941120222893, 24.91081629795878, 100.50628494360075, 5.558778866039355, 5.18379561267388, 18.980012406073975, 11.490959130331145, 29.655551882764257, 52.850978047406535, 7.418613400299738, 33.026864361834015, 66.35597981044694, 35.105797378691456, 49.06727037977056, 47.72266056598241, 26.966164323297576, 25.296277507142854, 64.77076369147309, 5.622478208755623, 9.14993089147357, 72.37701252297519, 16.642415866635346, 37.139516867602616, 50.29864149258508, 55.47793158846892, 97.9473746565101, 25.896811006379483, 78.62787268145395, 23.311156991396626, 15.40320198841372, 9.72293868839776, 19.211873290173294, 38.629289637479616, 10.152152602599362, 5.388428937766855, 39.92786555363757, 75.16213021195979, 39.605169721867185, 7.221704144477135, 5.279771298777846, 16.063329767956105, 14.896893340571314, 57.233789474291804, 73.98149648877715, 44.73656274903151, 54.68838949599057, 18.068989956703067, 50.86150457187101, 25.42934524300333, 16.29326073624445, 102.57096818175253, 12.316721473340847, 21.7074427436872, 17.273903789846873, 38.53315449326918, 51.212624144532306, 7.797243709553824, 49.08662303669214, 29.810283192079844, 31.37907386315525, 8.535251556949689, 22.599787758350285, 62.23837254313407, 27.090487411560122, 53.65017274447076, 28.13286855846001, 59.87335971106265, 17.384994873679926, 27.612462246254392, 66.01310764476047, 11.411019356347413, 42.764206631680324, 6.412893114061263, 10.032120356397954, 35.11401319023324, 15.801246156305183, 7.8379319184280964, 8.560624062146653, 26.331170259027452, 220.13137339512068, 8.212677851155961, 19.949948710802516, 25.66516114293708, 52.86665440623965, 40.13961308218711, 12.629944567553334, 25.982231015054225, 70.32245152066545, 11.489603273459817, 15.300625786155047, 6.530876011433592, 21.83495012474365, 78.82972134019285, 17.553909024241886, 6.230427484906989, 83.75506025343702, 201.17642028660129, 14.014498759027392, 64.26924396540444, 16.069334630496062, 67.10292037649202, 28.9872530723762, 16.402821250352183, 12.133714476674264, 28.640182053112593, 16.327527774116493, 22.243319226395002, 45.567929013946284, 11.270947891938322, 35.628566610193644, 5.529958999129824, 60.75123057906299, 64.04180142775041, 178.88371181182777, 36.469643859290386, 22.689148960553702, 26.412875143406062, 55.30610077842158, 79.22154811048264, 47.159949841406885, 10.586751111781133, 66.15047982801339, 6.3361762225800575, 30.391298991807957, 8.879506029984137, 55.64361938014702, 84.07509897769359, 11.278922108383867, 7.958983535772795, 116.27417993044753, 12.646880642002058, 80.12686571671101, 40.08594273247684, 115.32533647564047, 22.325002168196534, 13.822012665276759, 5.478290868155623, 67.90066294096346, 7.291643667222726, 12.508991236916826, 108.66164891304373, 5.15314698743967, 180.7676707506279, 25.0888983274303, 68.2595664471628, 12.72753317575745, 51.99453038905853, 11.793552123586386, 66.83489099620616, 43.42175983068155, 14.169239856091227, 14.71670956367889, 66.8137179381951, 49.002089772229326, 15.669324704103682, 6.2010441755072065, 20.103228330741658, 59.10325538813312, 8.522350656386, 36.77177863752665, 15.391168201331517, 5.560449743404369, 5.0651727711443675, 71.03374554326959, 250.34125854564027, 10.88689616143226, 14.909724598845361, 14.61678896704264, 99.97866094370505, 14.73426379538151, 116.1010898413476, 11.846128516732504, 78.29113110243463, 5.704201238041284, 90.93207165143423, 54.8818956786301, 9.984436754975938, 53.5996043918421, 15.457723103799085, 5.160204890911432, 12.36428060517454, 119.54606687161866, 25.888988108292054, 49.80948761323153, 51.86072282648114, 114.39228092848272, 112.22772931603407, 30.894684858047516, 14.82844356505397, 15.789788366152884, 13.697297661918027, 9.948502738787749, 17.769918562045067, 66.01115322363916, 52.132328995340806, 118.77676802441243, 16.316431609582512, 58.76924403508089, 20.967120417298986, 17.33538284248606, 15.425598103793003, 72.60309579662027, 65.83667863712326, 24.04368844943134, 16.726341834824588, 41.669333653239725, 70.49638411999914, 27.406507082003472, 57.565896621101174, 73.2228519440659, 31.555488335518636, 75.0116502143281, 70.8929789532216, 10.665623637092226, 57.78077940493526, 56.44763050893798, 21.029098997014746, 39.366917080458634, 46.99320342077858, 43.05453828431559, 31.480570800566632, 41.80868313777674, 15.806450556654, 44.22809725089053, 20.62889974057849, 35.640857558611856, 6.915014333824704, 17.01371385871539, 20.07029109791238, 24.80416528266206, 14.116189837014096, 91.91361232073787, 49.53126741080924, 28.140115121145456, 101.59918215285535, 30.783807309349335, 8.365957648757234, 24.564897182905277, 76.91349666554225, 17.944237323939753, 40.07747020809928, 22.455301372055004, 27.826426134397618, 22.89995464853412, 11.557473965137174, 31.879898393300074, 19.102580047473406, 59.17361803276418, 47.152498525725214, 15.069690708725417, 26.986684574247143, 59.2970328409701, 80.33798108884301, 22.70486059354579, 10.34330811206332, 37.33369648460018, 76.25500515949412, 25.948620753145978, 37.89047009363728, 10.024079873369972, 112.3124013559632, 84.13150194867865, 29.340081262151994, 18.736109361932026, 71.69965918944604, 111.30962886266558, 20.689606133015918, 10.654225613525394, 42.782644259175356, 41.815475087804955, 18.486274797475573, 24.144038453015455, 5.678485320665425, 95.94241619781724, 92.65057415196121, 31.800391195962433, 101.0083556663716, 72.28517197216837, 28.33553238423923, 19.178430028370236, 15.224239680026159, 6.33864730247596, 28.600998085738233, 18.583749214408012, 11.579311149463864, 20.895867588818515, 34.39320355964047, 10.022447697783345, 8.88381456808472, 15.564611774715344, 27.096487832881397, 92.15631790499208, 6.421817064661513, 225.34160546134123, 212.032082022746, 6.889254195235533, 10.576767581588804, 20.859923742298093, 94.002878924667, 15.38517582820914, 13.9180003409156, 93.43846971581411, 20.327273515116744, 12.516874011940098, 32.09983853011247, 20.922602950604453, 6.158504746750793, 11.671133315912671, 29.527411472715883, 26.61688681549429, 78.74188081771544, 23.795558110764507, 23.737776872827283, 5.812702737523538, 54.10229762850227, 5.49799691758031, 9.386803503621746, 96.95396546030139, 7.895615614351606, 5.215975299154449, 31.507674609778896, 11.280602963639959, 10.551799954969862, 6.720088161544352, 8.88832605113229, 5.327699018498602, 7.159222276923955, 19.894324237645996, 16.320002079498845, 5.217640136826207, 98.62986420958848, 37.41567619929964, 10.607187182959452, 5.483615604793761, 12.11691712164769, 11.259562697097994, 64.07482516096199, 78.40676019453034, 21.607424098799722, 29.687902103612263, 47.657410887888844, 53.86801518759924, 5.062036242724582, 46.157323908382416, 10.662020093744124, 13.5135782970875, 62.503283665927526, 27.43364390909315, 23.032373350010612, 29.937504130968467, 38.69320361127991, 71.17088664245081, 7.310758563630819, 20.847180247743673, 30.51320285672749, 9.484005318532612, 13.19849570962003, 11.460242594181128, 17.849798614178663, 53.42667890759976, 71.91357820174122, 84.11560306486089, 21.050281866989145, 68.9530447809388, 12.572076857677251, 5.7452279445974614, 14.421588051146554, 40.31600870283495, 103.27752546128463, 71.9861424106065, 68.31169620236761, 37.07469528559283, 32.1873681105646, 191.3491940199938, 30.04473046533421, 7.899290817947366, 37.291072202071504, 14.666247305974412, 26.477267338464127, 83.1185935982634, 34.02126480932782, 237.618699381301, 18.11408964097756, 11.930383122055966, 21.70811439106181, 17.33298300877074, 8.473980579576029, 38.06449588698598, 10.338717597476595, 44.74245362305254, 23.254820569578047, 7.14987592165445, 14.706979779508739, 35.76949965642063, 169.27127559356444, 7.993126490749718, 40.761866177684645, 109.45088644600624, 10.600947947330837, 32.73235329910277, 6.968440886915169, 72.35093023040187, 8.308298466975577, 28.915078804496783, 38.161201717427886, 18.370301335500894, 19.907625969590928, 42.43207276535349, 70.47005514936697, 61.56134956801711, 15.951922856083662, 12.734762295925535, 10.329309452661256, 16.50013340161417, 5.448110588883021, 11.609383234178015, 19.126777705675664, 12.564562581495942, 11.297940948797816, 45.18964127182032, 5.730469103286267, 51.49452826158017, 20.58314746029376, 52.47786091379378, 8.569821096284945, 28.412259882262425, 61.95987663970229, 103.84167263805277, 40.241112408089435, 16.533143319968588, 57.91207216113271, 36.15959835291619, 8.389257516941877, 17.96622045422791, 10.951058450443027, 12.122353468152117, 99.78658705686257, 88.89706784479108, 14.460082181864157, 100.41520410789398, 16.276719524422425, 5.935383861924127, 7.402483422502626, 68.69333010280441, 12.157682818990631, 46.88993835904471, 52.67869892889925, 25.932187722733502, 11.004305077912576, 49.70778064055375, 57.33207669867724, 82.67148619288513, 28.125516100607264, 9.186902612024678, 5.235884505934564, 23.195660040252832, 5.7392869869684136, 7.939412218399415, 101.28073713902117, 20.85442247142518, 55.38720411778921, 81.55228653339813, 35.560621016952844, 10.169721361477412, 17.05706559888489, 27.346310048532875, 10.772165250597734, 14.237659912291107, 185.63494454650404, 49.82351468613673, 21.074580650590327, 37.53069276635811, 12.283921137225976, 22.828931836329364, 69.44515492066284, 24.3423046706355, 104.05981165952385, 82.02693419780283, 7.476930471833574, 127.72933428942207, 9.796755157111553, 62.52658539625105, 6.172702928879499, 136.80755247480866, 11.720069253995947, 22.017639868140332, 11.590477967474063, 119.24607315906539, 8.145383942754524, 44.83420990394705, 49.31435040207866, 16.82168245405615, 89.01498763328709, 8.265721180937293, 5.302655429613269, 33.227344622111815, 72.76960498923127, 66.9353424725214, 15.074119438336954, 5.835690399038169, 27.760095751209054, 21.84519417433892, 33.78876740965059, 107.80739413884798, 40.99200614283716, 6.91515707698916, 46.67495654885703, 7.466483794911746, 21.74893597893852, 40.344502353306915, 9.437262301446946, 72.23336168106539, 46.634355760200464, 26.627699181725834, 23.70992815431289, 56.02909101982114, 49.34155055478885, 55.03474465877626, 7.016436990680748, 99.52719523627451, 5.509838826380919, 5.6278713203176896, 10.269352617890572, 14.16544233474583, 67.19057527293006, 90.96742174281954, 103.22733343668679, 8.817170365814299, 22.712771969844503, 65.03339589077552, 12.567393362525294, 39.10343361776154, 93.03576660244202, 18.52270278981501, 32.90134077627702, 22.643201652184853, 53.46593214400489, 9.15338390425163, 17.618607437546064, 96.83077170297355, 5.517252914552632, 50.43045588329025, 52.13629211422338, 13.510706813548934, 65.37331297619018, 53.19010469085867, 54.19409696179931, 5.548988544928778, 51.41841048791257, 78.85954011259734, 21.203318389357616, 126.39249598527778, 6.242850775050719, 9.287414845614386, 20.7173216872567, 7.700538824256197, 21.150315975070676, 13.874324711746175, 75.07150351078363, 63.948251865851326, 13.586504383438495, 24.851417788178384, 11.586421640058893, 94.54414413134037, 21.22001901748626, 8.622223003616034, 21.457958445232048, 100.4605007654497, 60.83701460223007, 14.60204968908343, 89.30224853073398, 39.48840818174152, 33.1393922442606, 61.74285535796574, 43.51863403625029, 6.009790402705322, 12.009450520288683, 69.68463420439068, 67.42516018645509, 41.30786639727127, 69.79244203968837, 43.30619083684162, 42.66892593167534, 6.766755988067445, 38.59490722556954, 45.28576346742014, 7.149846706466653, 14.860137317719255, 50.564539552619124, 5.868860405271709, 66.32909918543324, 61.203564482060536, 9.320503143237426, 17.945435313856507, 5.103066987974876, 15.681523329917907, 5.6965500646658445, 201.36556347716854, 40.33704303538829, 8.385775648572606, 25.399507566196526, 9.94507465709669, 8.4816866725581, 31.516484286274533, 6.062221126084894, 56.54322055787272, 59.105203648793754, 78.28251301643395, 14.495746847455175, 6.063001079490855, 22.587417659727635, 43.118118991469764, 61.80245184826434, 96.98107203899063, 15.390624367049298, 8.193136427038198, 47.38235716626768, 21.834590235452175, 6.279550281679498, 55.21783629902045, 43.61870465772062, 16.72290477059867, 10.285917131681874, 13.350095550975752, 73.6386934828829, 56.0074003559041, 13.323831609037185, 21.969800647799175, 46.89029432684271, 56.16916984584383, 34.16580053552164, 78.89113971153827, 79.755321597858, 6.697870187669963, 10.788906126776652, 26.217891739884745, 33.747325869051664, 104.1486709094959, 13.664699980493003, 7.933764414592014, 10.17785537224377, 5.218859584439433, 36.211782779225445, 10.55806075956142, 24.588312008659454, 22.292547274028053, 75.36658146256707, 148.6229206126713, 16.187539118494794, 24.965052255641194, 46.81569087103142, 10.48224757248639, 7.729079791050305, 11.98033645497349, 45.65430377462182, 20.768626518950796, 17.032653111553874, 27.52374385513631, 39.8047777155586, 15.515350450347213, 37.70996267659322, 20.99192710961222, 48.08853773180824, 14.3415620648682, 16.714163667341403, 47.55470956172891, 74.06440104442933, 17.599702824105613, 27.10708750842333, 8.257805093177003, 48.65390347451521, 10.032415690613389, 15.045767629973247, 73.80298633714852, 8.03394674201143, 71.0114686647614, 22.358058552608373, 117.27986888824411, 12.9793234351409, 8.885481928515864, 41.929306352964105, 5.966303508855576, 9.545975952230808, 8.564351852036657, 32.69162278506298, 86.19890461918786, 23.628277699794392, 40.801571398292, 195.99993418926158, 5.624231913362326, 10.004002108516739, 5.588629615698039, 22.757269148303283, 35.518561457612016, 11.032636601298176, 16.84292255922554, 17.53516590776428, 108.24309657896862, 18.114103675998443, 45.46633969287332, 49.58568258699577, 44.82589995492207, 65.26592614676849, 38.03193251275875, 70.92746143520733, 7.630719492237722, 72.77766812187335, 7.009715728926558, 37.1900761829537, 94.48852113362216, 6.428834354214488, 67.06332416946992, 21.28534395314473, 7.501429735705647, 6.432748497223632, 34.391492021517934, 10.428393896429041, 5.363721701337567, 136.4951813372683, 45.386523899276575, 54.43843255088581, 122.21666914646612, 60.43136594020537, 61.979532735343824, 11.909406893483126, 12.58845275111368, 24.59691016786339, 25.563665577850966, 23.409142533866216, 16.209715104428334, 12.976700273115416, 25.0895743739128, 5.907646682351594, 119.32928633012301, 18.48880885257178, 33.50624488278035, 5.2156000372323295, 13.232197494743843, 5.889323730490141, 28.826226652471124, 11.22950645319401, 52.617697123226684, 33.74933972742976, 56.720916404508564, 6.215548425080719, 26.500379553238073, 10.949555666069154, 66.17803340853652, 11.282152875015335, 38.06357515945686, 5.443678824033808, 25.903102155884564, 20.842286707039555, 19.352451528963762, 17.705438043532865, 7.123758143700516, 66.16663534519472, 9.253709039348534, 7.413912172693078, 18.24354131274246, 97.90448933810747, 30.670711899401823, 10.490064895271894, 22.3279710200052, 77.89564412945428, 9.222559095020129, 43.165867377938106, 14.148111944581352, 21.207328111532398, 52.460274728983975, 7.254329015791703, 34.85437975962287, 177.68058858775893, 89.58823188389108, 26.73826084693561, 44.10365834485536, 98.73134155977856, 11.029230469436328, 7.788811274571842, 107.73601432230242, 101.44427546935304, 61.91474444478276, 60.60727569424549, 82.51391529925962, 7.981053936779187, 19.69782400377077, 15.479452704399902, 21.16901789971224, 39.30784285913078, 12.463299038888001, 33.30305990847387, 57.176204220642965, 30.326216928975924, 60.727156514229854, 37.97764521882612, 11.18631883345386, 13.804623749591013, 23.184804488385097, 75.78803602849763, 16.3179044927928, 25.802357436723845, 7.161428134350131, 62.655816519806194, 8.680372044479462, 6.938906607193525, 17.466216697186034, 14.079554032609437, 17.729635435336434, 28.031064195469735, 39.30930978637919, 5.158284646038636, 22.780573011449903, 22.752535394117565, 81.1823963708585, 24.847446725131306, 9.09787225638163, 50.61579078999182, 9.264721790925583, 61.79783871254618, 55.91633225423945, 23.896350559872563, 33.38765080493697, 88.76957464548423, 63.577815563991784, 39.3079462998347, 94.03693814882627, 25.515939146000942, 56.35983568425672, 16.09796069208384, 6.234354004131435, 12.642320062160465, 41.3007927890669, 60.30577250271668, 10.968305008454383, 5.46951551362855, 84.16909811776559, 5.496326441696377, 61.33785732140834, 23.468489681207913, 17.987311413879638, 39.883805714976546, 14.319144201558514, 5.591533945444184, 29.349759196068263, 11.530731330245429, 14.726515500509976, 8.145699952257095, 100.90930619670837, 37.682784305086855, 6.984353682899393, 21.208471101469343, 16.65218491630398, 7.38550999378006, 140.79813087840347, 7.376741511170303, 17.199504382300614, 7.267558884204262, 48.03123667525068, 14.308496092836027, 74.98335316012637, 19.579947606486762, 101.97249417158602, 38.61908350998097, 13.017761880442874, 19.522525687707805, 50.252485160246785, 93.72148919611992, 22.46859540011486, 42.214090768065205, 16.49781021162353, 14.70888925871456, 80.27673214764478, 128.85894749400637, 29.889999405954143, 21.705691904262185, 11.518291489101607, 114.43794818152695, 7.029565290775106, 67.69198552862514, 42.327330233122844, 11.790376089035862, ...])
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);
([3358684.375, 3358692.076958229, 3485359.616941467, 3565926.648831841, 3665985.2689019335, 3976062.5, 3985057.883990885, 4003425.0, 4057381.25, 4061163.409777827, 4075754.2586198063, 4076432.8125, 4191181.7491577175, 4206810.163392888, 4220531.1193360705, 4294165.655498509, 4359951.5625, 4389707.494797483, 4423326.05746983, 4450740.625, 4468769.934657389, 4471117.870405661, 4514933.739761153, 4762505.600572304, 4887243.155771068, 4938625.273882349, 4994119.504267752, 4994411.080709313, 4997407.8125, 5010917.1875, 5041606.25, 5053621.875, 5054508.100907807, 5060374.289446666, 5090820.996414797, 5090846.133227255, 5091597.012291137, 5102258.308118107, 5144985.359602089, 5204587.5, 5205858.69258795, 5205863.782919323, 5395200.44537267, 5407465.625, 5416584.375, 5432834.342997749, 5444096.875, 5445507.085782673, 5450917.706469272, 5460596.624186751, 5463657.8125, 5464336.94998608, 5465769.289032927, 5481400.0, 5486321.814139866, 5495592.1875, 5500257.360547651, 5512754.179080477, 5513129.836247852, 5519236.979881028, 5521027.177629198, 5525910.40282444, 5526675.0, 5546975.808386145, 5553701.109362932, 5558427.934968595, 5564915.625, 5565952.326445933, 5588218.800558885, 5591570.304112596, 5596314.830187627, 5597871.059952485, 5608231.25, 5608861.555881534, 5609323.539588709, 5613892.096314809, 5623795.067712536, 5623830.65440104, 5627450.23110961, 5631635.461253689, 5634319.97660239, 5635314.956008564, 5636399.176625958, 5639980.553721898, 5660217.841679387, 5665006.761350831, 5677804.852972124, 5718733.013296761, 5723174.834576163, 5738962.428444657, 5742993.75, 5743329.572333671, 5746625.0, 5749561.314321365, 5775573.4375, 5776271.870591362, 5777254.6875, 5778080.953677312, 5784407.027905942, 5792045.443590878, 5800384.8896224685, 5807585.9375, 5809178.125, 5809259.825792365, 5814271.875, 5817707.255313247, 5818915.625, 5846014.12840231, 5858421.262179227, 5862820.507910579, 5884239.0625, 5887390.177779705, 5893657.8125, 5897017.1875, 5899078.107876131, 5902225.865018556, 5906385.369968967, 5908889.891740539, 5910215.879601326, 5911672.002815801, 5911736.381786695, 5914754.6875, 5914756.768368733, 5914822.649303699, 5915204.159045478, 5915260.356606642, 5915432.227951596, 5915535.9375, 5915941.6464648275, 5916684.667398691, 5917211.325696072, 5919300.381712808, 5920329.6875, 5920462.367547951, 5920616.048431158, 5922406.062072543, 5922829.6875, 5923189.2139532855, 5924399.777290038, 5925068.3326931875, 5926111.322072914, 5926225.0, 5926360.9375, 5927370.885965352, 5927495.3125, 5927752.4179240065, 5927945.813099222, 5931838.727289259, 5932553.241077061, 5934769.179392716, 5935933.611248303, 5937418.588753367, 5939302.396177499, 5939307.54723037, 5941306.25, 5941896.875, 5945018.75, 5945039.430626081, 5945454.316766625, 5946069.016167295, 5946804.675744995, 5948518.75, 5949103.787239666, 5950437.5, 5950548.723852584, 5950705.876634245, 5951896.875, 5953407.633453881, 5954155.002054097, 5955612.84097412, 5955613.147356517, 5955655.771221695, 5957219.251611247, 5958855.591593751, 5960182.8125, 5960467.6938291425, 5962842.278178587, 5964096.308054291, 5966381.25, 5966706.692396639, 5967899.604217666, 5971095.283238542, 5972362.593635307, 5975235.9375, 5975245.327614571, 5978898.4375, 5981697.607293191, 5983579.639662363, 5984101.5625, 5984198.611496014, 5984751.5625, 5984755.759760256, 5984760.101754102, 5988229.210697433, 5989256.458647381, 5990299.042902281, 5990633.297106525, 5990709.253312308, 5991264.967512584, 5992985.795090869, 5995825.892517372, 5997499.002449302, 5998263.725809414, 5999575.0, 5999691.512428027, 6001099.856685733, 6001793.75, 6001961.157316533, 6002273.5286324145, 6002314.336240273, 6003879.221099362, 6004539.0625, 6006420.862427932, 6007041.890809129, 6008692.1875, 6010156.25, 6011021.608492015, 6011420.3125, 6011644.017455079, 6011685.814227799, 6012008.651103332, 6012884.075641997, 6013827.123073954, 6014472.205627008, 6015667.509106389, 6019507.197947875, 6019638.951128011, 6019645.402248251, 6020054.877245086, 6020060.8730140645, 6021467.1875, 6022212.961179188, 6023642.640539822, 6026339.0625, 6028226.8966451585, 6032604.135778884, 6035625.0, 6038384.375, 6039117.1875, 6041021.498960318, 6047995.3125, 6051483.339626607, 6055529.281296024, 6056199.412402796, 6056923.658980914, 6057932.751762747, 6057964.456099997, 6057977.449495139, 6058025.650561416, 6058316.419251552, 6058461.2310644, 6058512.682803625, 6059346.875, 6060410.30047523, 6060416.859122812, 6060469.12942185, 6061599.13933257, 6062924.047653315, 6063103.859344867, 6071660.8906018175, 6075521.342685275, 6085524.675388442, 6088655.284572102, 6088796.377937842, 6090816.428460392, 6094782.881890251, 6101167.575451085, 6107848.4375, 6108753.125, 6109981.031472794, 6111299.939743856, 6112654.6875, 6113978.125, 6113979.866187776, 6114263.520314705, 6114607.160889936, 6115840.871468554, 6117809.795738374, 6119338.696895386, 6120453.604073232, 6121495.86381892, 6126501.356690259, 6126834.121905142, 6127732.51389804, 6130556.090273146, 6131222.110670159, 6134559.287114809, 6135176.5625, 6136574.944542938, 6136721.018324973, 6136776.9781538835, 6137041.445253387, 6138121.834751078, 6142423.4375, 6142917.790164832, 6143306.933016775, 6144283.4324303735, 6144445.441648306, 6144537.277195532, 6144728.794261497, 6144797.611682102, 6145957.1889658235, 6149196.5092424555, 6151332.8125, 6151899.863031357, 6152315.490931803, 6152352.473713474, 6153306.220016177, 6155386.520374573, 6156466.81767836, 6156824.087065555, 6156933.398325468, 6157657.150105191, 6157671.189594631, 6158861.73054201, 6160358.131827172, 6161754.6875, 6162391.298973642, 6163322.38739819, 6163787.353372921, 6164037.5, 6165671.177281661, 6166174.722592835, 6166818.688130398, 6168801.6221547425, 6169061.873552172, 6169323.378345, 6169510.9375, 6170566.051465832, 6170574.740216835, 6170660.30079769, 6170964.697895961, 6171216.870290548, 6171346.646468098, 6172404.6875, 6172407.264693142, 6172500.0, 6173040.048455319, 6173128.125, 6173288.2420172375, 6174230.662733652, 6174272.08481518, 6174810.701554203, 6175744.301053193, 6176385.968282159, 6176399.151807358, 6178915.190544875, 6179296.2194721745, 6180175.2583534075, 6180446.640194545, 6180671.517039391, 6182015.625, 6182757.809283499, 6182771.357363241, 6183200.0, 6183218.897152267, 6183727.886171992, 6183945.209016685, 6183982.997803509, 6184586.896043076, 6185062.821243007, 6186087.93418817, 6187038.692842394, 6189195.5710877925, 6190234.251582002, 6190583.59656629, 6191364.0625, 6191496.875, 6192034.408228243, 6192120.229638136, 6192301.989701677, 6192560.9375, 6193675.030247109, 6194075.99513543, 6194804.6875, 6195414.125547259, 6196130.354009685, 6196222.46850262, 6196402.281930449, 6196577.374505614, 6196626.012473811, 6196918.75, 6198141.162165682, 6198950.647349841, 6200256.9018680435, 6201649.540830783, 6202232.486879674, 6203604.6875, 6204162.5, 6204947.492461241, 6205496.605178425, 6206110.48390055, 6207760.9375, 6210793.75, 6212500.0, 6213233.232768139, 6214315.625, 6214917.17785741, 6217611.73177863, 6221761.009751392, 6222045.857836667, 6223339.0625, 6223642.89879589, 6225101.83340782, 6226414.2964797765, 6229169.84701184, 6229386.655441258, 6229419.731056564, 6229873.929426649, 6230310.219514095, 6235067.373988125, 6235399.570567848, 6235443.220466423, 6238241.505799953, 6245238.098839412, 6245944.928907671, 6247021.309094792, 6250465.700630231, 6251026.874745376, 6252465.3277860535, 6253357.8125, 6254109.394255791, 6255208.550324001, 6255914.0625, 6256333.815843261, 6256702.213373496, 6256772.196908984, 6257108.4550875155, 6257997.230642644, 6258343.270227858, 6260449.703500437, 6262167.576260851, 6265298.420219164, 6267371.875, 6267433.630287835, 6267843.814800664, 6269384.375, 6269469.49197633, 6269812.985702308, 6271165.132121711, 6272182.908164479, 6274215.222413181, 6274574.778557594, 6274588.487487707, 6274965.203982797, 6276007.95426321, 6276315.921698476, 6277601.882561028, 6277653.674077208, 6278228.795334666, 6278468.7915467685, 6278471.514345427, 6280303.62435679, 6280659.927404039, 6285937.582750674, 6286342.1875, 6288065.289407509, 6288879.198884565, 6288957.56786542, 6289160.363893823, 6292417.1875, 6294240.2441867925, 6294784.375, 6294813.742634684, 6295102.692074082, 6296842.1875, 6298442.2240173705, 6301493.391600663, 6301724.619605099, 6306253.0878957175, 6307728.048037844, 6307792.861820337, 6309019.7189148795, 6309608.891410722, 6309907.987625188, 6309911.952757484, 6310098.640315269, 6312439.991795672, 6313648.4375, 6314695.3125, 6315299.849899211, 6319056.448530205, 6319176.277167865, 6319257.012001646, 6319261.525462178, 6319332.097300642, 6319457.8125, 6320007.8125, 6320032.567345237, 6320248.4375, 6320286.810283255, 6320471.875, 6320560.84067646, 6320624.286780918, 6320710.125528024, 6321238.337813361, 6321243.366151591, 6321514.293249234, 6321591.76294053, 6321644.994093645, 6321712.3237358425, 6321755.328196022, 6321756.709248203, 6322144.8337873705, 6322161.553758824, 6322405.025831308, 6324287.5, 6325275.991378605, 6325436.128660725, 6326170.845957236, 6330682.9195382465, 6335317.124576871, 6338009.933745061, 6338695.346267689, 6338744.713048403, 6341073.4375, 6341918.75, 6341944.947158921, 6343107.756814313, 6345149.384083112, 6345456.25, 6347546.915850365, 6348673.4375, 6349218.873920066, 6349956.92979589, 6349998.908572926, 6350064.0625, 6350351.5625, 6350580.479924122, 6350878.659930959, 6351116.456405743, 6351600.983661102, 6351783.169025165, 6353154.365427935, 6353161.225252696, 6353221.565791541, 6354630.446229631, 6355365.731247283, 6355595.299974078, 6355865.991229336, 6356393.652934911, 6356543.153672556, 6356765.625, 6357162.999781839, 6357283.451854122, 6357392.297413635, 6357664.788072698, 6357871.875, 6357965.535553264, 6358387.5, 6358731.25, 6358859.564250404, 6358903.742461042, 6359320.196467769, 6359404.819500577, 6359470.022521566, 6359535.90136704, 6359877.992685408, 6360391.74004844, 6360567.498635364, 6360596.828703494, 6361644.721101564, 6361937.320201576, 6362584.716979411, 6362694.542653292, 6362783.9515874535, 6363224.853526846, 6363304.607090325, 6364026.992224881, 6364134.35956518, 6364302.345913819, 6364671.854502886, 6366149.824014895, 6367013.728208587, 6367334.03026566, 6369672.374267845, 6370160.2177502075, 6371445.815181824, 6371494.111879483, 6371634.375, 6371784.217779052, 6371840.676004398, 6371893.03645839, 6372361.380626538, 6372457.749998874, 6372627.884969402, 6372682.614709733, 6372765.862083119, 6373241.164407151, 6373255.250553194, 6373468.05813634, 6374400.63209645, 6374819.825124486, 6375159.375, 6375956.336272259, 6376442.695902774, 6377024.360534887, 6378113.699234152, 6379535.239982837, 6381092.690947276, 6382362.3610966215, 6384942.963583202, 6385347.928220431, 6385498.7860715175, 6385499.551022678, 6385504.964679214, 6386120.644095408, 6386509.098104086, 6386717.667052394, 6387382.8125, 6387611.437846138, 6388466.638869202, 6390924.9603513945, 6391676.932520676, 6394339.9801160125, 6394387.708741516, 6395300.0, 6395535.451498916, 6395764.35166544, 6397678.085152453, 6398207.649406709, 6398275.0, 6400121.80226574, 6400461.898057145, 6403535.089940767, 6407453.125, 6407744.917876318, 6408226.087769511, 6410349.98875643, 6410364.185096456, 6410893.75, 6410937.262902451, 6411947.897124073, 6412252.821798127, 6412594.566071855, 6414436.6742815375, 6415064.0625, 6415268.334852936, 6416103.125, 6416387.011631946, 6416390.872262261, 6417257.183903482, 6417474.780313374, 6417604.6875, 6417681.25, 6417732.8125, 6417857.134546255, 6418023.051651299, 6418045.3125, 6418113.887381517, 6418603.125, 6418608.980393009, 6418715.881363906, 6418851.5625, 6418944.920549145, 6420243.0410001045, 6420306.031684321, 6421877.123302321, 6422129.8919205805, 6426240.294509048, 6428209.375, 6429048.4375, 6429685.503567719, 6430156.366576732, 6434548.4375, 6436173.007703348, 6438106.5734759355, 6438189.290342225, 6438657.8125, 6439388.532951661, 6439806.665267692, 6439979.492328293, 6441578.072514856, 6441847.64287602, 6442665.886242387, 6443925.51472239, 6443940.313684147, 6444179.6875, 6444845.3125, 6445154.05726003, 6445206.2388298055, 6445350.274903376, 6445571.875, 6445593.222182127, 6445603.710003449, 6446281.425160729, 6446832.464782128, 6446927.753970192, 6447719.7642121455, 6447741.632007332, 6448049.603820687, 6448934.375, 6449885.9375, 6450433.966789246, 6450553.899227994, 6450658.311787819, 6451125.931504742, 6451761.567156515, 6452570.518031759, 6452636.575555695, 6457487.5, 6458223.4375, 6458632.828754452, 6458667.829193413, 6460213.250894812, 6460361.04442934, 6460768.728486, 6461276.5625, 6461638.215147673, 6462605.476926015, 6462716.585473316, 6462814.049580852, 6462978.275539492, 6464100.232856661, 6465657.993987341, 6470140.463401603, 6470476.094700022, 6471860.9375, 6472103.307990163, 6473583.200560835, 6473870.958851934, 6475494.101588802, 6476212.36251234, 6477746.622419779, 6478443.687108372, 6479131.25, 6481712.014938771, 6482084.252917503, 6482893.5051430855, 6483671.478122611, 6483782.8125, 6485861.672890975, 6486567.101075734, 6486625.936129904, 6486662.319020902, 6487842.1875, 6488623.446484625, 6489131.347143648, 6489262.5, 6489557.8125, 6489975.40015411, 6490241.572750478, 6490255.758757726, 6490434.375, 6490615.143743966, 6490843.249191252, 6491824.546495091, 6491939.804178474, 6492098.4375, 6492289.2844804935, 6493129.6875, 6493150.0, 6493244.974592002, 6494843.521864809, 6500872.906369946, 6501100.742869451, 6502314.0625, 6503726.476622256, 6504816.454892693, 6505746.168502031, 6505878.720345852, 6506456.25, 6506458.977190502, 6506902.8878585175, 6507362.076572742, 6507501.410803496, 6507684.375, 6507686.230039158, 6507873.2269680165, 6507973.8250086615, 6508255.7936864095, 6508375.335029271, 6508484.6936866315, 6508623.0374219855, 6508746.299173006, 6508858.210111274, 6508872.243616869, 6508973.4375, 6509157.116670566, 6509284.375, 6509621.323248014, 6509662.5, 6509968.583158306, 6509971.112392594, 6510057.221673567, 6510180.173951774, 6510253.351930209, 6510287.424026545, 6510668.695192087, 6510681.25, 6511008.539522712, 6511110.964587072, 6511134.375, 6511240.114631891, 6511264.653391027, 6511265.207546391, 6511513.37857711, 6511635.305823178, 6511875.983434881, 6511957.34341661, 6512233.116269714, 6512597.118313099, 6512855.178265419, 6513193.75, 6513474.542935481, 6514174.690351881, 6514254.550864533, 6514315.625, 6514578.307696003, 6514596.013551943, 6514729.218787222, 6514807.430530069, 6514893.75, 6515995.250813502, 6516019.1730149025, 6516904.001950863, 6517044.332797859, 6517214.916303966, 6517378.00213538, 6517426.5625, 6517438.254207442, 6517481.25, 6517789.0625, 6518168.75, 6518340.70034929, 6518446.635036396, 6518647.994671687, 6519248.4375, 6519582.8125, 6519869.930519216, 6521153.05903344, 6522756.716978685, 6523088.771961732, 6523588.7068488905, 6525246.126943825, 6525290.1262436425, 6525327.185193446, 6525503.125, 6525757.721487883, 6525800.0, 6526329.6875, 6526439.0119271595, 6527129.188553524, 6527883.260985544, 6529135.144111718, 6529438.825976848, 6530193.552076219, 6531369.950914909, 6535821.4003252005, 6537899.367286686, 6544634.173050691, 6546237.1279453365, 6547382.8125, 6548386.634902198, 6549834.437308191, 6550047.346384173, 6551677.590371752, 6557672.843869583, 6562929.6875, 6563895.376666422, 6565018.75, 6565059.742983736, 6565704.6875, 6566012.079955669, 6566042.0760544, 6566057.695454068, 6566062.2491276935, 6566076.384035956, 6566305.836188169, 6566444.884198534, 6566656.101684138, 6566674.432186629, 6566703.942318769, 6566946.730385388, 6566973.446267001, 6567004.099298332, 6567156.156662992, 6567566.631840511, 6567566.882790658, 6567752.893226797, 6568280.725692872, 6568408.924785597, 6568695.1571197705, 6568785.632861763, 6568795.180907742, 6568985.9375, 6569257.587510846, 6569530.7208674485, 6569737.4275390515, 6570166.107468906, 6570661.184049512, 6571035.508567419, 6571229.6875, 6571288.965191493, 6571390.625, 6571717.040028001, 6571740.561070908, 6572061.42300458, 6572074.517963259, 6572194.50432969, 6572236.81105641, 6572334.375, 6572613.47036646, 6572983.748819691, 6574225.917760059, 6574264.196822253, 6574343.216886787, 6574425.413626058, 6574485.089045257, 6575626.888949951, 6575782.8125, 6577007.566468865, 6577785.9375, 6577831.25, 6578153.162177301, 6578473.998703504, 6578958.735377395, 6579304.955326148, 6579823.757129953, 6579841.570924442, 6580589.212425225, 6580983.361322637, 6581117.864664982, 6581982.069359509, 6582197.4100177, 6582756.003849472, 6583922.454218853, 6585096.849558486, 6585146.5013117315, 6585298.131013409, 6588971.495053975, 6589886.120544113, 6589913.909637181, 6589934.360405585, 6598030.960268168, 6598962.221942617, 6601373.357572047, 6601443.75, 6604835.013845323, 6607528.2310663145, 6607647.623386976, 6607814.308559978, 6608401.131376532, 6608485.9375, 6608542.015423973, 6608948.264173475, 6608964.497923369, 6609061.211076058, 6609068.485539034, 6609089.854801992, 6609315.625, 6609323.4375, 6609340.520568531, 6609370.491805289, 6609500.436359627, 6609635.156205473, 6610150.0, 6610265.302577531, 6610509.995805885, 6610618.368233135, 6610868.576535366, 6611004.273311565, 6611257.8125, 6611276.805898345, 6611453.290680545, 6611580.973746735, 6612123.4375, 6612366.009506482, 6612519.763953541, 6612637.613678626, 6612664.448974884, 6612758.730029392, 6612974.425182403, 6612989.952119658, 6613080.175919441, 6613245.840611247, 6613560.677481461, 6614090.44837915, 6614226.5625, 6614541.471645482, 6615795.090641481, 6615923.147559925, 6616141.570939554, 6616502.401826074, 6617115.625, 6617791.146552417, 6621048.030027835, 6622010.885816246, 6622184.731061756, 6622438.222977377, 6623091.818938376, 6625743.62263889, 6629915.086122595, 6630127.646050469, 6631298.673794139, 6631435.855432873, 6631905.888522819, 6633084.375, 6639148.4375, 6640131.636265098, ...], [43.78464755522612, 6.469901340714349, 50.79596024311977, 5.247567985187081, 12.886854511710009, 40.800104643663424, 15.221185224781369, 65.24112533381769, 51.298303698033465, 99.56570404006317, 91.02271956535427, 143.15229804081363, 51.00635382737839, 135.35652165458526, 19.7692574702194, 6.769610672010891, 30.136832006602216, 64.9324120447064, 57.73568951200747, 33.38213495995862, 106.62896014866257, 45.4209803599816, 13.978876903401009, 24.347672424935958, 40.527085368798545, 109.98956525786795, 65.40831851711962, 43.93453343314405, 47.84686692446458, 53.23600912322825, 38.74906017260492, 74.98816901633484, 92.5209397056669, 38.630393651556474, 18.397847382952634, 5.317130509216825, 31.750695501011723, 32.119578394827194, 13.117647734459, 54.76675046525226, 59.90969458816172, 6.232509967930325, 8.53703046740385, 59.4142296173045, 63.11815451104379, 27.906887512386152, 34.204113972442165, 19.494882268810954, 12.048922738026151, 24.400047278101912, 90.09390913030155, 5.672625522409161, 23.04775850390777, 43.27867774314732, 14.714504467215715, 35.89219270917229, 10.487835346551021, 46.428154275765344, 15.540488372267024, 10.401643357403652, 93.76357655132333, 21.15402925606076, 44.340005289978876, 27.87962354660842, 12.151152537423313, 114.97205237906886, 57.04008302046445, 7.90507266448185, 36.979633216013646, 5.532673612813415, 13.017458767135334, 44.35066701234588, 56.72976668470067, 21.75832335455151, 88.32238526586363, 26.84288860828661, 6.063008096319983, 20.58966667776049, 32.06087609602153, 5.1914560535486025, 40.745765061716156, 58.18949532766449, 44.87324223788114, 29.681127219804722, 63.010440149919845, 39.958977915997224, 6.5133470995709475, 15.766381383688545, 19.49886266039294, 27.184988058621755, 90.69732674742986, 32.00762305973677, 87.8915418933673, 120.8098276378283, 33.36664433806344, 45.06086316083881, 76.58777215981728, 15.882801686896661, 19.057199102955995, 24.351067881794904, 18.454260832246806, 55.992474294117244, 55.48503838962444, 14.702297777782238, 35.81481856127602, 29.123511976420808, 55.67405122324476, 6.275560709307441, 27.67145287684804, 15.742583631119277, 59.970489541732704, 39.38751626391617, 80.24530495647278, 38.02519342308615, 9.316965826685458, 6.383044371603741, 63.28083734604083, 36.625831404881616, 15.117333322917087, 5.714941120222893, 24.91081629795878, 100.50628494360075, 5.558778866039355, 5.18379561267388, 18.980012406073975, 11.490959130331145, 29.655551882764257, 52.850978047406535, 7.418613400299738, 33.026864361834015, 66.35597981044694, 35.105797378691456, 49.06727037977056, 47.72266056598241, 26.966164323297576, 25.296277507142854, 64.77076369147309, 5.622478208755623, 9.14993089147357, 72.37701252297519, 16.642415866635346, 37.139516867602616, 50.29864149258508, 55.47793158846892, 97.9473746565101, 25.896811006379483, 78.62787268145395, 23.311156991396626, 15.40320198841372, 9.72293868839776, 19.211873290173294, 38.629289637479616, 10.152152602599362, 5.388428937766855, 39.92786555363757, 75.16213021195979, 39.605169721867185, 7.221704144477135, 5.279771298777846, 16.063329767956105, 14.896893340571314, 57.233789474291804, 73.98149648877715, 44.73656274903151, 54.68838949599057, 18.068989956703067, 50.86150457187101, 25.42934524300333, 16.29326073624445, 102.57096818175253, 12.316721473340847, 21.7074427436872, 17.273903789846873, 38.53315449326918, 51.212624144532306, 7.797243709553824, 49.08662303669214, 29.810283192079844, 31.37907386315525, 8.535251556949689, 22.599787758350285, 62.23837254313407, 27.090487411560122, 53.65017274447076, 28.13286855846001, 59.87335971106265, 17.384994873679926, 27.612462246254392, 66.01310764476047, 11.411019356347413, 42.764206631680324, 6.412893114061263, 10.032120356397954, 35.11401319023324, 15.801246156305183, 7.8379319184280964, 8.560624062146653, 26.331170259027452, 220.13137339512068, 8.212677851155961, 19.949948710802516, 25.66516114293708, 52.86665440623965, 40.13961308218711, 12.629944567553334, 25.982231015054225, 70.32245152066545, 11.489603273459817, 15.300625786155047, 6.530876011433592, 21.83495012474365, 78.82972134019285, 17.553909024241886, 6.230427484906989, 83.75506025343702, 201.17642028660129, 14.014498759027392, 64.26924396540444, 16.069334630496062, 67.10292037649202, 28.9872530723762, 16.402821250352183, 12.133714476674264, 28.640182053112593, 16.327527774116493, 22.243319226395002, 45.567929013946284, 11.270947891938322, 35.628566610193644, 5.529958999129824, 60.75123057906299, 64.04180142775041, 178.88371181182777, 36.469643859290386, 22.689148960553702, 26.412875143406062, 55.30610077842158, 79.22154811048264, 47.159949841406885, 10.586751111781133, 66.15047982801339, 6.3361762225800575, 30.391298991807957, 8.879506029984137, 55.64361938014702, 84.07509897769359, 11.278922108383867, 7.958983535772795, 116.27417993044753, 12.646880642002058, 80.12686571671101, 40.08594273247684, 115.32533647564047, 22.325002168196534, 13.822012665276759, 5.478290868155623, 67.90066294096346, 7.291643667222726, 12.508991236916826, 108.66164891304373, 5.15314698743967, 180.7676707506279, 25.0888983274303, 68.2595664471628, 12.72753317575745, 51.99453038905853, 11.793552123586386, 66.83489099620616, 43.42175983068155, 14.169239856091227, 14.71670956367889, 66.8137179381951, 49.002089772229326, 15.669324704103682, 6.2010441755072065, 20.103228330741658, 59.10325538813312, 8.522350656386, 36.77177863752665, 15.391168201331517, 5.560449743404369, 5.0651727711443675, 71.03374554326959, 250.34125854564027, 10.88689616143226, 14.909724598845361, 14.61678896704264, 99.97866094370505, 14.73426379538151, 116.1010898413476, 11.846128516732504, 78.29113110243463, 5.704201238041284, 90.93207165143423, 54.8818956786301, 9.984436754975938, 53.5996043918421, 15.457723103799085, 5.160204890911432, 12.36428060517454, 119.54606687161866, 25.888988108292054, 49.80948761323153, 51.86072282648114, 114.39228092848272, 112.22772931603407, 30.894684858047516, 14.82844356505397, 15.789788366152884, 13.697297661918027, 9.948502738787749, 17.769918562045067, 66.01115322363916, 52.132328995340806, 118.77676802441243, 16.316431609582512, 58.76924403508089, 20.967120417298986, 17.33538284248606, 15.425598103793003, 72.60309579662027, 65.83667863712326, 24.04368844943134, 16.726341834824588, 41.669333653239725, 70.49638411999914, 27.406507082003472, 57.565896621101174, 73.2228519440659, 31.555488335518636, 75.0116502143281, 70.8929789532216, 10.665623637092226, 57.78077940493526, 56.44763050893798, 21.029098997014746, 39.366917080458634, 46.99320342077858, 43.05453828431559, 31.480570800566632, 41.80868313777674, 15.806450556654, 44.22809725089053, 20.62889974057849, 35.640857558611856, 6.915014333824704, 17.01371385871539, 20.07029109791238, 24.80416528266206, 14.116189837014096, 91.91361232073787, 49.53126741080924, 28.140115121145456, 101.59918215285535, 30.783807309349335, 8.365957648757234, 24.564897182905277, 76.91349666554225, 17.944237323939753, 40.07747020809928, 22.455301372055004, 27.826426134397618, 22.89995464853412, 11.557473965137174, 31.879898393300074, 19.102580047473406, 59.17361803276418, 47.152498525725214, 15.069690708725417, 26.986684574247143, 59.2970328409701, 80.33798108884301, 22.70486059354579, 10.34330811206332, 37.33369648460018, 76.25500515949412, 25.948620753145978, 37.89047009363728, 10.024079873369972, 112.3124013559632, 84.13150194867865, 29.340081262151994, 18.736109361932026, 71.69965918944604, 111.30962886266558, 20.689606133015918, 10.654225613525394, 42.782644259175356, 41.815475087804955, 18.486274797475573, 24.144038453015455, 5.678485320665425, 95.94241619781724, 92.65057415196121, 31.800391195962433, 101.0083556663716, 72.28517197216837, 28.33553238423923, 19.178430028370236, 15.224239680026159, 6.33864730247596, 28.600998085738233, 18.583749214408012, 11.579311149463864, 20.895867588818515, 34.39320355964047, 10.022447697783345, 8.88381456808472, 15.564611774715344, 27.096487832881397, 92.15631790499208, 6.421817064661513, 225.34160546134123, 212.032082022746, 6.889254195235533, 10.576767581588804, 20.859923742298093, 94.002878924667, 15.38517582820914, 13.9180003409156, 93.43846971581411, 20.327273515116744, 12.516874011940098, 32.09983853011247, 20.922602950604453, 6.158504746750793, 11.671133315912671, 29.527411472715883, 26.61688681549429, 78.74188081771544, 23.795558110764507, 23.737776872827283, 5.812702737523538, 54.10229762850227, 5.49799691758031, 9.386803503621746, 96.95396546030139, 7.895615614351606, 5.215975299154449, 31.507674609778896, 11.280602963639959, 10.551799954969862, 6.720088161544352, 8.88832605113229, 5.327699018498602, 7.159222276923955, 19.894324237645996, 16.320002079498845, 5.217640136826207, 98.62986420958848, 37.41567619929964, 10.607187182959452, 5.483615604793761, 12.11691712164769, 11.259562697097994, 64.07482516096199, 78.40676019453034, 21.607424098799722, 29.687902103612263, 47.657410887888844, 53.86801518759924, 5.062036242724582, 46.157323908382416, 10.662020093744124, 13.5135782970875, 62.503283665927526, 27.43364390909315, 23.032373350010612, 29.937504130968467, 38.69320361127991, 71.17088664245081, 7.310758563630819, 20.847180247743673, 30.51320285672749, 9.484005318532612, 13.19849570962003, 11.460242594181128, 17.849798614178663, 53.42667890759976, 71.91357820174122, 84.11560306486089, 21.050281866989145, 68.9530447809388, 12.572076857677251, 5.7452279445974614, 14.421588051146554, 40.31600870283495, 103.27752546128463, 71.9861424106065, 68.31169620236761, 37.07469528559283, 32.1873681105646, 191.3491940199938, 30.04473046533421, 7.899290817947366, 37.291072202071504, 14.666247305974412, 26.477267338464127, 83.1185935982634, 34.02126480932782, 237.618699381301, 18.11408964097756, 11.930383122055966, 21.70811439106181, 17.33298300877074, 8.473980579576029, 38.06449588698598, 10.338717597476595, 44.74245362305254, 23.254820569578047, 7.14987592165445, 14.706979779508739, 35.76949965642063, 169.27127559356444, 7.993126490749718, 40.761866177684645, 109.45088644600624, 10.600947947330837, 32.73235329910277, 6.968440886915169, 72.35093023040187, 8.308298466975577, 28.915078804496783, 38.161201717427886, 18.370301335500894, 19.907625969590928, 42.43207276535349, 70.47005514936697, 61.56134956801711, 15.951922856083662, 12.734762295925535, 10.329309452661256, 16.50013340161417, 5.448110588883021, 11.609383234178015, 19.126777705675664, 12.564562581495942, 11.297940948797816, 45.18964127182032, 5.730469103286267, 51.49452826158017, 20.58314746029376, 52.47786091379378, 8.569821096284945, 28.412259882262425, 61.95987663970229, 103.84167263805277, 40.241112408089435, 16.533143319968588, 57.91207216113271, 36.15959835291619, 8.389257516941877, 17.96622045422791, 10.951058450443027, 12.122353468152117, 99.78658705686257, 88.89706784479108, 14.460082181864157, 100.41520410789398, 16.276719524422425, 5.935383861924127, 7.402483422502626, 68.69333010280441, 12.157682818990631, 46.88993835904471, 52.67869892889925, 25.932187722733502, 11.004305077912576, 49.70778064055375, 57.33207669867724, 82.67148619288513, 28.125516100607264, 9.186902612024678, 5.235884505934564, 23.195660040252832, 5.7392869869684136, 7.939412218399415, 101.28073713902117, 20.85442247142518, 55.38720411778921, 81.55228653339813, 35.560621016952844, 10.169721361477412, 17.05706559888489, 27.346310048532875, 10.772165250597734, 14.237659912291107, 185.63494454650404, 49.82351468613673, 21.074580650590327, 37.53069276635811, 12.283921137225976, 22.828931836329364, 69.44515492066284, 24.3423046706355, 104.05981165952385, 82.02693419780283, 7.476930471833574, 127.72933428942207, 9.796755157111553, 62.52658539625105, 6.172702928879499, 136.80755247480866, 11.720069253995947, 22.017639868140332, 11.590477967474063, 119.24607315906539, 8.145383942754524, 44.83420990394705, 49.31435040207866, 16.82168245405615, 89.01498763328709, 8.265721180937293, 5.302655429613269, 33.227344622111815, 72.76960498923127, 66.9353424725214, 15.074119438336954, 5.835690399038169, 27.760095751209054, 21.84519417433892, 33.78876740965059, 107.80739413884798, 40.99200614283716, 6.91515707698916, 46.67495654885703, 7.466483794911746, 21.74893597893852, 40.344502353306915, 9.437262301446946, 72.23336168106539, 46.634355760200464, 26.627699181725834, 23.70992815431289, 56.02909101982114, 49.34155055478885, 55.03474465877626, 7.016436990680748, 99.52719523627451, 5.509838826380919, 5.6278713203176896, 10.269352617890572, 14.16544233474583, 67.19057527293006, 90.96742174281954, 103.22733343668679, 8.817170365814299, 22.712771969844503, 65.03339589077552, 12.567393362525294, 39.10343361776154, 93.03576660244202, 18.52270278981501, 32.90134077627702, 22.643201652184853, 53.46593214400489, 9.15338390425163, 17.618607437546064, 96.83077170297355, 5.517252914552632, 50.43045588329025, 52.13629211422338, 13.510706813548934, 65.37331297619018, 53.19010469085867, 54.19409696179931, 5.548988544928778, 51.41841048791257, 78.85954011259734, 21.203318389357616, 126.39249598527778, 6.242850775050719, 9.287414845614386, 20.7173216872567, 7.700538824256197, 21.150315975070676, 13.874324711746175, 75.07150351078363, 63.948251865851326, 13.586504383438495, 24.851417788178384, 11.586421640058893, 94.54414413134037, 21.22001901748626, 8.622223003616034, 21.457958445232048, 100.4605007654497, 60.83701460223007, 14.60204968908343, 89.30224853073398, 39.48840818174152, 33.1393922442606, 61.74285535796574, 43.51863403625029, 6.009790402705322, 12.009450520288683, 69.68463420439068, 67.42516018645509, 41.30786639727127, 69.79244203968837, 43.30619083684162, 42.66892593167534, 6.766755988067445, 38.59490722556954, 45.28576346742014, 7.149846706466653, 14.860137317719255, 50.564539552619124, 5.868860405271709, 66.32909918543324, 61.203564482060536, 9.320503143237426, 17.945435313856507, 5.103066987974876, 15.681523329917907, 5.6965500646658445, 201.36556347716854, 40.33704303538829, 8.385775648572606, 25.399507566196526, 9.94507465709669, 8.4816866725581, 31.516484286274533, 6.062221126084894, 56.54322055787272, 59.105203648793754, 78.28251301643395, 14.495746847455175, 6.063001079490855, 22.587417659727635, 43.118118991469764, 61.80245184826434, 96.98107203899063, 15.390624367049298, 8.193136427038198, 47.38235716626768, 21.834590235452175, 6.279550281679498, 55.21783629902045, 43.61870465772062, 16.72290477059867, 10.285917131681874, 13.350095550975752, 73.6386934828829, 56.0074003559041, 13.323831609037185, 21.969800647799175, 46.89029432684271, 56.16916984584383, 34.16580053552164, 78.89113971153827, 79.755321597858, 6.697870187669963, 10.788906126776652, 26.217891739884745, 33.747325869051664, 104.1486709094959, 13.664699980493003, 7.933764414592014, 10.17785537224377, 5.218859584439433, 36.211782779225445, 10.55806075956142, 24.588312008659454, 22.292547274028053, 75.36658146256707, 148.6229206126713, 16.187539118494794, 24.965052255641194, 46.81569087103142, 10.48224757248639, 7.729079791050305, 11.98033645497349, 45.65430377462182, 20.768626518950796, 17.032653111553874, 27.52374385513631, 39.8047777155586, 15.515350450347213, 37.70996267659322, 20.99192710961222, 48.08853773180824, 14.3415620648682, 16.714163667341403, 47.55470956172891, 74.06440104442933, 17.599702824105613, 27.10708750842333, 8.257805093177003, 48.65390347451521, 10.032415690613389, 15.045767629973247, 73.80298633714852, 8.03394674201143, 71.0114686647614, 22.358058552608373, 117.27986888824411, 12.9793234351409, 8.885481928515864, 41.929306352964105, 5.966303508855576, 9.545975952230808, 8.564351852036657, 32.69162278506298, 86.19890461918786, 23.628277699794392, 40.801571398292, 195.99993418926158, 5.624231913362326, 10.004002108516739, 5.588629615698039, 22.757269148303283, 35.518561457612016, 11.032636601298176, 16.84292255922554, 17.53516590776428, 108.24309657896862, 18.114103675998443, 45.46633969287332, 49.58568258699577, 44.82589995492207, 65.26592614676849, 38.03193251275875, 70.92746143520733, 7.630719492237722, 72.77766812187335, 7.009715728926558, 37.1900761829537, 94.48852113362216, 6.428834354214488, 67.06332416946992, 21.28534395314473, 7.501429735705647, 6.432748497223632, 34.391492021517934, 10.428393896429041, 5.363721701337567, 136.4951813372683, 45.386523899276575, 54.43843255088581, 122.21666914646612, 60.43136594020537, 61.979532735343824, 11.909406893483126, 12.58845275111368, 24.59691016786339, 25.563665577850966, 23.409142533866216, 16.209715104428334, 12.976700273115416, 25.0895743739128, 5.907646682351594, 119.32928633012301, 18.48880885257178, 33.50624488278035, 5.2156000372323295, 13.232197494743843, 5.889323730490141, 28.826226652471124, 11.22950645319401, 52.617697123226684, 33.74933972742976, 56.720916404508564, 6.215548425080719, 26.500379553238073, 10.949555666069154, 66.17803340853652, 11.282152875015335, 38.06357515945686, 5.443678824033808, 25.903102155884564, 20.842286707039555, 19.352451528963762, 17.705438043532865, 7.123758143700516, 66.16663534519472, 9.253709039348534, 7.413912172693078, 18.24354131274246, 97.90448933810747, 30.670711899401823, 10.490064895271894, 22.3279710200052, 77.89564412945428, 9.222559095020129, 43.165867377938106, 14.148111944581352, 21.207328111532398, 52.460274728983975, 7.254329015791703, 34.85437975962287, 177.68058858775893, 89.58823188389108, 26.73826084693561, 44.10365834485536, 98.73134155977856, 11.029230469436328, 7.788811274571842, 107.73601432230242, 101.44427546935304, 61.91474444478276, 60.60727569424549, 82.51391529925962, 7.981053936779187, 19.69782400377077, 15.479452704399902, 21.16901789971224, 39.30784285913078, 12.463299038888001, 33.30305990847387, 57.176204220642965, 30.326216928975924, 60.727156514229854, 37.97764521882612, 11.18631883345386, 13.804623749591013, 23.184804488385097, 75.78803602849763, 16.3179044927928, 25.802357436723845, 7.161428134350131, 62.655816519806194, 8.680372044479462, 6.938906607193525, 17.466216697186034, 14.079554032609437, 17.729635435336434, 28.031064195469735, 39.30930978637919, 5.158284646038636, 22.780573011449903, 22.752535394117565, 81.1823963708585, 24.847446725131306, 9.09787225638163, 50.61579078999182, 9.264721790925583, 61.79783871254618, 55.91633225423945, 23.896350559872563, 33.38765080493697, 88.76957464548423, 63.577815563991784, 39.3079462998347, 94.03693814882627, 25.515939146000942, 56.35983568425672, 16.09796069208384, 6.234354004131435, 12.642320062160465, 41.3007927890669, 60.30577250271668, 10.968305008454383, 5.46951551362855, 84.16909811776559, 5.496326441696377, 61.33785732140834, 23.468489681207913, 17.987311413879638, 39.883805714976546, 14.319144201558514, 5.591533945444184, 29.349759196068263, 11.530731330245429, 14.726515500509976, 8.145699952257095, 100.90930619670837, 37.682784305086855, 6.984353682899393, 21.208471101469343, 16.65218491630398, 7.38550999378006, 140.79813087840347, 7.376741511170303, 17.199504382300614, 7.267558884204262, 48.03123667525068, 14.308496092836027, 74.98335316012637, 19.579947606486762, 101.97249417158602, 38.61908350998097, 13.017761880442874, 19.522525687707805, 50.252485160246785, 93.72148919611992, 22.46859540011486, 42.214090768065205, 16.49781021162353, 14.70888925871456, 80.27673214764478, 128.85894749400637, 29.889999405954143, 21.705691904262185, 11.518291489101607, 114.43794818152695, 7.029565290775106, 67.69198552862514, 42.327330233122844, 11.790376089035862, ...])
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)