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 = 45103
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);
([3872705.919153826, 4893721.875, 5029132.8125, 5053960.041122983, 5054000.274274836, 5054823.4375, 5054931.096924562, 5054964.736561483, 5058312.5, 5126035.9375, 5154031.932493738, 5154090.58402302, 5155316.806298826, 5155959.722128809, 5160394.213188728, 5161547.936883758, 5161721.875, 5162400.991049645, 5162734.856736076, 5163779.740019488, 5163829.714464772, 5163832.393586638, 5163850.1135248225, 5164745.3125, 5165107.434160491, 5165355.5797531195, 5165547.553966358, 5166029.926753195, 5166076.882986505, 5166109.571310311, 5166336.962203098, 5166819.137146693, 5166880.777136036, 5166938.246655442, 5167148.236121265, 5167190.112655412, 5167286.898005804, 5167617.1875, 5167824.471034394, 5167960.0425233375, 5168056.25, 5168787.202012546, 5168796.875, 5169064.0625, 5169787.302302814, 5169982.411930331, 5170790.229384445, 5175833.934819785, 5176410.791066973, 5180919.091796547, 5181773.668136084, 5201930.578673431, 5207262.018726069, 5216882.8125, 5218925.0, 5235627.250958226, 5249074.31496998, 5251013.007930021, 5251916.1314247, 5256441.109803426, 5256645.577426059, 5256871.549864826, 5257652.113672069, 5265964.0625, 5269081.941457092, 5286498.04744631, 5289097.728278934, 5298752.171378144, 5300954.457734683, 5304708.192275653, 5306329.6875, 5320104.6875, 5328553.036704968, 5329559.259925437, 5330226.763365185, 5337713.832089702, 5338214.553702403, 5338226.829999976, 5338775.0, 5338779.089362883, 5339600.57776286, 5339832.8125, 5340163.345421732, 5341855.652473683, 5344098.4375, 5344221.720906187, 5344345.3125, 5344493.263539245, 5345118.759498893, 5345322.813796286, 5345488.736493791, 5345586.926566596, 5345657.713791464, 5346635.729936654, 5348689.338832738, 5349017.1875, 5349054.865578986, 5349403.080857065, 5351043.75, 5351375.688194359, 5351421.328884915, 5351558.099216787, 5351677.605168164, 5352872.881508079, 5353386.718681466, 5353509.174824368, 5353649.811995512, 5353957.161921078, 5354656.650733276, 5355087.307095753, 5355392.1875, 5355541.478232716, 5355722.16467311, 5355793.75, 5355800.555702155, 5355857.47473269, 5356099.566100048, 5356105.595464361, 5356191.363139544, 5356899.659687193, 5357369.253290826, 5360133.537546318, 5360694.067861411, 5361341.91705189, 5362223.9014230855, 5362326.5625, 5363046.694688258, 5364710.633265107, 5373196.385439838, 5374928.125, 5376292.646558682, 5377010.397777588, 5380720.309343237, 5388650.6683704015, 5393476.5625, 5393716.672173154, 5407272.608921292, 5411046.875, 5418395.3125, 5427561.288685391, 5431118.612822833, 5432477.347947931, 5432973.996692994, 5433100.772788135, 5433729.465709576, 5434367.1875, 5434591.527240471, 5435718.727792201, 5435784.375, 5435831.188622944, 5436216.059001173, 5436658.513576752, 5438177.832130467, 5439017.181026706, 5439234.375, 5439340.212989844, 5440131.419675552, 5446354.6875, 5449450.805840545, 5452667.8312873375, 5457057.8125, 5457243.552877965, 5460046.224380529, 5462157.135961286, 5463466.632353219, 5464017.1875, 5464067.661192576, 5464445.546709061, 5464936.14761031, 5465018.712215339, 5465028.685607879, 5465401.412708017, 5465420.070469204, 5465635.371156307, 5465640.1665715175, 5466753.808505463, 5467650.26786975, 5468323.103973915, 5468523.4375, 5469692.400116031, 5470108.77821679, 5470122.611131591, 5470511.591322897, 5470537.634708077, 5471541.526778926, 5473104.399840112, 5473296.875, 5473878.12173991, 5474941.185652941, 5476704.272081839, 5477027.48767692, 5477415.004867776, 5477652.701757249, 5477845.756423516, 5478069.916617849, 5478619.032554002, 5478877.774191621, 5484094.681305316, 5484102.943447505, 5484450.0, 5485197.530729555, 5486084.839759632, 5489241.7274324205, 5490041.020746881, 5491060.25725193, 5491855.219780608, 5492376.5625, 5493481.972532143, 5493553.00295203, 5494357.157593128, 5494801.5625, 5495478.399772712, 5495492.1875, 5495496.804762751, 5495562.051265003, 5495703.808862932, 5495767.4538238365, 5495957.8125, 5495958.295105932, 5496175.575368182, 5496281.049910968, 5496293.185831501, 5496617.1875, 5496785.620916539, 5496846.655495919, 5496986.651650988, 5497367.852109296, 5497820.3125, 5497978.968014742, 5497984.3301836, 5498887.299048351, 5499005.6901660925, 5499033.8006649325, 5499313.386764424, 5499779.421899058, 5499964.0625, 5500146.620639685, 5500226.649438755, 5500286.59806391, 5500314.0625, 5500472.801225952, 5500544.188358244, 5500618.686067693, 5500648.340038469, 5500804.6875, 5501154.441440951, 5501306.25, 5501497.254213684, 5501529.6875, 5501877.305607969, 5502133.768126049, 5502220.3125, 5502401.402818752, 5502546.62745074, 5502677.270415961, 5503050.730077406, 5503165.926483753, 5503755.212576172, 5504398.4375, 5504431.25, 5505214.012657563, 5505422.591655617, 5505581.114240218, 5505981.25, 5506042.506052263, 5506054.5757524725, 5506155.675832264, 5506435.9375, 5506489.338846193, 5506575.550513404, 5506638.765759322, 5506648.439336094, 5506679.808644633, 5506883.182630576, 5506981.306434546, 5506994.636574481, 5507145.3125, 5507326.5625, 5507351.5625, 5507451.205238447, 5507520.71515928, 5507602.772823506, 5507627.920195037, 5507693.033788675, 5507787.39357552, 5507845.736963812, 5507871.820825361, 5507898.791094338, 5507903.31948526, 5507983.280437521, 5507991.809165342, 5508026.5625, 5508060.883829919, 5508101.05974393, 5508107.8125, 5508180.485698647, 5508210.693980995, 5508279.6875, 5508323.277316961, 5508449.767258348, 5508455.872670628, 5508465.625, 5508484.679186108, 5508513.718702345, 5508550.216519713, 5508557.8125, 5508602.642099237, 5508678.285490653, 5508725.0, 5508756.112185205, 5508770.80025513, 5508772.992363588, 5508781.25, 5508783.379434827, 5508797.602845696, 5508799.107914273, 5508830.577455965, 5508927.84367832, 5508950.0, 5509013.374865101, 5509030.218632217, 5509053.693751039, 5509058.210418963, 5509118.457879803, 5509129.608540906, 5509219.821245024, 5509238.58423067, 5509270.3125, 5509291.494166717, 5509320.3125, 5509326.569048462, 5509362.339104328, 5509411.752494894, 5509434.915914164, 5509435.09574237, 5509445.72187854, 5509494.404997736, 5509515.667063988, 5509518.75, 5509531.1520572975, 5509553.033237735, 5509569.990357683, 5509594.161019368, 5509594.491274567, 5509641.171926069, 5509666.108017429, 5509775.0, 5509779.749822949, 5509803.125, 5509816.012487525, 5509820.16790037, 5509846.84842261, 5509856.0311484365, 5509857.8125, 5509930.255628282, 5509938.18017806, 5510010.635963158, 5510069.104635937, 5510076.0705097625, 5510151.3821746195, 5510152.646013991, 5510153.466915257, 5510221.875, 5510251.5625, 5510294.065169762, 5510296.875, 5510328.125, 5510331.25, 5510350.96180529, 5510398.158557175, 5510417.321569553, 5510445.710610296, 5510640.625, 5510826.5625, 5510911.759314173, 5510946.244706114, 5511039.155380068, 5511060.9375, 5511190.625, 5511211.460426208, 5511260.9375, 5511357.188611054, 5511372.776556575, 5511515.072436836, 5511530.202329305, 5511570.651356027, 5511575.786481651, 5511597.4576408295, 5511607.225783667, 5511657.8125, 5511690.625, 5511745.913051754, 5511792.4943059515, 5511860.695936896, 5511905.280754676, 5511999.522877439, 5512052.214956335, 5512056.895041931, 5512085.752395389, 5512105.925534822, 5512211.984224233, 5512245.3125, 5512344.305228512, 5512425.661915391, 5512627.317949275, 5512657.8125, 5512675.0, 5512813.7261140505, 5512970.3125, 5513019.276649449, 5513020.3125, 5513059.386712382, 5513185.9375, 5513269.931307345, 5513398.4375, 5513597.088375901, 5513916.402193181, 5513954.272813518, 5514106.25, 5514136.59424796, 5514160.9375, 5514276.9890734, 5514430.4115787335, 5514728.532224951, 5514735.822798347, 5515020.253996084, 5515043.390906701, 5515139.194979557, 5515158.682299759, 5515210.4041874865, 5515721.875, 5515831.485323428, 5515897.273515852, 5515947.438298158, 5515973.4375, 5516092.598119889, 5516166.710938748, 5516171.734132114, 5516249.171934988, 5516503.416125195, 5516571.693038317, 5516834.995103789, 5516883.810431711, 5516905.56900139, 5517135.757918903, 5517172.85192358, 5517203.125, 5517297.890012361, 5517435.834384244, 5517495.211602495, 5517621.45815106, 5518056.936537544, 5518077.019269634, 5518153.532804193, 5518443.456812975, 5518453.125, 5518543.75, 5518590.348693026, 5518604.573349619, 5518971.534149502, 5519346.852101844, 5519639.0625, 5519689.215068017, 5524131.25, 5527495.290994882, 5527500.7908134, 5528457.576602526, 5528685.305102935, 5529560.62204796, 5529864.177193987, 5531473.602260446, 5533112.5, 5534656.25, 5534793.4632701175, 5535318.75, 5535580.4894057065, 5535601.58661334, 5535928.125, 5535938.79143785, 5536025.665141612, 5536347.848839983, 5536777.135055923, 5536816.025637395, 5536900.366772194, 5536998.387261214, 5537036.924326515, 5537054.040412662, 5537135.789632356, 5537137.242489335, 5537245.487244578, 5537430.3006951315, 5537469.308977866, 5537535.242025201, 5537612.5, 5537854.615934619, 5537895.240936764, 5537981.25, 5537992.288791018, 5538123.104471108, 5538416.665395262, 5538630.938866856, 5538841.7767963605, 5539119.509491644, 5539409.375, 5539521.6651149215, 5539749.127365798, 5540163.681028958, 5540447.14100216, 5540491.13939173, 5542943.462561059, 5543355.589746642, 5544079.6875, 5545007.35603186, 5545025.760278738, 5545115.617372537, 5545238.745453481, 5545593.584606252, 5545689.0625, 5545827.637867523, 5546242.1875, 5546768.435634361, 5546813.669597282, 5546843.933228704, 5546979.92225865, 5547005.864560409, 5547060.643781761, 5547374.765658337, 5547924.796808168, 5548114.936751276, 5548312.5, 5548322.6167425085, 5548604.6875, 5548687.6384366285, 5548709.678853315, 5548719.385318723, 5548973.4375, 5549043.199849418, 5549047.642881783, 5549244.160608061, 5549268.75, 5549692.1875, 5549712.5, 5549831.25, 5549904.032871733, 5550135.492257623, 5550599.345629275, 5551459.10786998, 5551658.575276675, 5552693.467997109, 5554846.875, 5555641.799066852, 5557275.9969833465, 5557774.924958399, 5562395.564813203, 5563535.664798871, 5564143.810428225, 5564787.997041257, 5566723.587762113, 5566824.493850901, 5567385.023577553, 5567388.741058043, 5569053.142089055, 5570146.149123144, 5572112.499867696, 5592592.307294455, 5593680.403298682, 5594828.439119864, 5597648.071433579, 5599448.828404683, 5600182.2782538235, 5603170.3125, 5607787.5, 5607909.353650385, 5609712.069696953, 5612114.4855798725, 5614421.56540268, 5615178.766666619, 5616618.240093553, 5616890.625, 5620731.25, 5621142.109435142, 5621436.142632631, 5622884.076935695, 5622896.875, 5622971.263997123, 5623691.947763742, 5625048.173628486, 5625216.54668721, 5625525.707036946, 5625770.487129494, 5627161.637461271, 5628160.938162958, 5631103.7805812815, 5631279.233852215, 5631703.911426679, 5631939.797785237, 5633539.006600592, 5634380.996838528, 5634612.832401609, 5634659.375, 5634728.789225149, 5635032.012916356, 5636240.041886736, 5636289.0625, 5636344.891568217, 5636823.888528161, 5636876.681710149, 5637454.809937432, 5637640.123621049, 5638782.701341728, 5640045.3125, 5640345.2430680925, 5640819.528038165, 5641561.3138005175, 5641645.8188075265, 5641649.838735958, 5642112.654597454, 5642115.959905633, 5642281.167467316, 5642591.0747187985, 5642976.314729725, 5644037.654114205, 5645400.0, 5645973.727738915, 5646393.75, 5646557.8125, 5647164.823581424, 5647519.080581968, 5647785.242028051, 5648029.503491405, 5648922.734979753, 5649088.588273876, 5649600.686168932, 5649732.181241814, 5649984.620077774, 5650588.751859591, 5650989.0625, 5651085.95570863, 5652637.774553082, 5652856.322060336, 5653559.4047504775, 5653976.094164798, 5654476.689186809, 5654868.75, 5655051.949704421, 5655216.728253099, 5655671.78190947, 5656637.898115882, 5659071.907458738, 5668283.4193854015, 5669739.340794169, 5670599.963607482, 5672039.368005132, 5676878.303625588, 5677638.447907994, 5678518.75, 5678886.795658914, 5679644.962859755, 5680061.240099814, 5680085.9375, 5680222.879592621, 5680225.0, 5680679.6875, 5681212.953289221, 5681356.525271134, 5681774.32252118, 5681801.5625, 5681917.1875, 5681984.375, 5682813.822639823, 5682948.851356869, 5683085.213706756, 5683220.82601563, 5683421.875, 5683461.975316066, 5683475.072871161, 5683623.553363861, 5683859.6539086355, 5683967.441165117, 5684043.008707702, 5684068.264030384, 5684506.899683226, 5684551.83639134, 5684644.497360339, 5684667.87038093, 5684879.344782099, 5685028.689355456, 5685028.931183801, 5685046.431467484, 5685322.883046022, 5685390.236396808, 5687720.3125, 5689335.464162816, 5689478.106034234, 5690458.306650842, 5690555.371086284, 5692020.3125, 5692401.268168112, 5693178.125, 5693981.756487197, 5694614.0625, 5694887.818463581, 5700495.3125, 5701718.28145286, 5701984.375, 5702497.919852534, 5704068.508153641, 5704099.605674512, 5704633.755229913, 5704687.5, 5705046.564366361, 5706254.544067712, 5706508.332317058, 5706563.476887664, 5706619.878382991, 5706873.379512424, 5707050.900984641, 5707140.129838438, 5707220.3125, 5707464.0625, 5707846.72317269, 5708160.00050148, 5708800.020356374, 5708945.861757818, 5709264.0261465795, 5709264.919548236, 5709488.93731836, 5709638.594775944, 5709690.978003301, 5709843.107000308, 5710235.327232225, 5710342.1875, 5710392.1875, 5710764.038110126, 5710906.25, 5710953.970986412, 5710993.159146221, 5711178.527394005, 5711186.539358439, 5711276.218814451, 5711288.923966338, 5711347.289092041, 5711402.736426525, 5711568.067619201, 5711632.8125, 5711670.512735582, 5711687.714852274, 5711849.865979941, 5712001.5625, 5712020.464124122, 5712185.400119165, 5712215.437139482, 5712245.3125, 5712543.795526426, 5712629.307067986, 5712656.931998002, 5712681.25, 5712796.062068493, 5712813.653130519, 5712958.4608834125, 5713093.740990343, 5713110.740210299, 5713196.772419849, 5713206.703231903, 5713224.890291594, 5713341.402352765, 5713448.4375, 5713636.384647861, 5713667.362390311, 5713754.058730379, 5713793.005982122, 5713847.616759485, 5713852.749092729, 5713918.75, 5713920.3125, 5713953.125, 5713992.630223328, 5714018.859615603, 5714034.375, 5714042.1875, 5714059.817674789, 5714089.079911703, 5714175.330472575, 5714405.182653951, 5714454.669467388, 5714472.195365216, 5714483.910744921, 5714502.346009557, 5714515.19811317, 5714523.276132752, 5714550.453114578, 5714589.0625, 5714600.0, 5714645.239572294, 5714685.750804397, 5714731.25, 5714786.684473337, 5714830.344264366, 5715040.625, 5715044.258631192, 5715079.453080134, 5715134.375, 5715142.1875, 5715169.19575016, 5715299.6848706165, 5715412.994739161, 5715447.544705919, 5715515.747086716, 5715550.67516992, 5715554.6875, 5715584.176984096, 5715624.690438736, 5715630.2044036705, 5715718.862308946, 5715982.07281615, 5715995.3125, 5715998.534788186, 5716006.23553969, 5716015.330653545, 5716132.8125, 5716162.550647796, 5716435.9375, 5716496.875, 5716516.753284124, 5716534.375, 5716537.9056645045, 5716574.8211271735, 5716587.5, 5716591.499374402, 5716595.83572544, 5716607.565259586, 5716616.348376967, 5716720.300041387, 5716795.3125, 5716810.080713647, 5716882.662086617, 5716901.0520208115, 5716968.856142849, 5716990.0658728415, 5716998.725508856, 5717082.732134705, 5717090.345077576, 5717090.474822602, 5717171.875, 5717189.0504186945, 5717296.716709975, 5717300.0, 5717327.124199437, 5717392.54624519, 5717459.657432212, 5717461.17499928, 5717521.545647137, 5717558.726589647, 5717690.2464028625, 5717731.4474780895, 5717800.0, 5717803.090870205, 5717885.694755635, 5717901.5625, 5718070.001473633, 5718141.161014156, 5718154.643455925, 5718179.6875, 5718180.759878447, 5718207.729672016, 5718212.5, 5718241.997349407, 5718299.431732995, 5718306.7861772375, 5718335.626554364, 5718376.511434531, 5718406.004075347, 5718449.145257293, 5718473.4375, 5718512.298106912, 5718537.259456554, 5718546.875, 5718607.653869109, 5718616.987709608, 5718629.6875, 5718683.048091838, 5718715.625, 5718772.459669667, 5718943.75, 5719066.683559657, 5719077.933217558, 5719171.875, 5719241.364642568, 5719485.556066343, 5719491.378360459, 5719503.176986957, 5719522.277189103, 5719659.572747129, 5719678.613057472, 5719891.847575779, 5719915.328216534, 5719979.337617946, 5720014.229510535, 5720043.75, 5720351.3783682585, 5720632.15659952, 5720643.023756477, 5720806.975035369, 5721160.429205501, 5721435.813818367, 5721713.463085025, 5722043.250609587, 5722551.426797458, 5722756.915014492, 5723134.375, 5723317.428717354, 5723802.005310889, 5724025.0, 5724062.701520431, 5724228.991975063, 5724249.439878066, 5724250.29674172, 5726382.040928043, 5730649.543497024, 5730877.236049447, 5737393.438482402, 5738343.063835233, 5740103.125, 5741062.804343843, 5741171.663420413, 5741978.677085644, 5742196.875, 5742805.116541922, 5744256.372428046, 5745260.98989022, 5745271.875, 5746433.949213748, 5747157.466576418, 5747635.572129113, 5748080.5409551775, 5748689.707829004, 5749179.453116207, 5749229.413209322, 5749871.646413598, 5750841.730815845, 5753091.8738978775, 5753798.4375, 5754587.264720504, 5754684.375, 5755117.5640183855, 5755822.758368184, 5757040.299541236, 5757218.75, 5757367.771090423, 5757761.331549904, 5758698.4375, 5758736.860534556, 5759922.809229609, 5759975.610916071, 5760275.214070788, 5760370.269116616, 5760518.75, 5760842.1875, 5760854.134907547, 5761020.76948065, 5761051.534969029, 5761339.422099097, 5761785.9375, 5761825.287492614, 5761930.191056205, 5762085.9375, 5762194.790562732, 5762229.844654332, 5763012.6228592815, 5763187.5, 5763328.311705797, 5764152.479760161, 5764233.841996103, 5764456.755194239, 5764640.24139384, 5764642.808711957, 5764884.021141263, 5765545.3125, 5765870.3125, 5765911.530283647, 5765946.788393138, 5766014.293164979, 5766030.398262833, 5766211.327944531, 5766387.247636033, 5766526.158275754, 5766778.779671134, 5766881.900536308, 5766954.184713775, 5767262.273919248, 5767267.563389808, 5767464.801008072, 5767582.64904405, 5767606.25, 5767635.9375, 5767654.312893017, 5767660.510696475, 5767914.0625, 5767926.772695468, 5768067.304664298, ...], [37.14634287091108, 52.893737298825265, 57.04608074027193, 12.35743163836328, 44.75817357693549, 63.50646294163696, 8.207253999099544, 8.678388239998773, 45.93244775121037, 51.762564012171715, 5.081521029068689, 17.052108313985435, 61.15896699703893, 16.453199862451257, 40.69319487488225, 13.324358609659011, 61.87457278601862, 42.52955170357508, 17.162137038056134, 95.18465654435595, 7.613019582985501, 10.530498375998288, 5.82242815619493, 79.1363717694869, 20.5007133647306, 25.320611525989943, 80.40431994910602, 56.28064546965686, 11.668540742959811, 75.06505775723737, 8.91460965161545, 93.42495918830656, 54.12603544762707, 18.83121913766647, 9.166739370963365, 59.49890067491435, 20.532613561319465, 52.121197928053164, 8.02534981549428, 18.288862229126917, 51.46470346782561, 19.606822527893513, 74.81128024767321, 29.551484262546246, 25.15182503734604, 203.76478442635442, 39.85558508830242, 19.737544142713674, 61.268537103849916, 7.214294739940848, 15.53805193370372, 10.218813188096844, 38.36840680898287, 51.73713124930363, 45.69468531120482, 15.251870557283628, 52.13753433857579, 7.7978936543923405, 13.588288758002644, 66.49881735036283, 10.5183369979698, 49.376328693187446, 53.44720547428873, 52.4521289351559, 18.44856934862156, 32.01762437871322, 25.677330011295815, 17.91239785165759, 6.451666756647847, 7.746624917835027, 37.37979676801804, 93.49493239639418, 19.654699744843462, 16.297623239572296, 28.50628654782856, 43.82298018015471, 11.99335162100265, 16.069544093360264, 46.004883123421884, 13.065074154855711, 25.216374393123274, 61.944365460794565, 7.362958420078185, 30.252001714329175, 33.52792663704064, 22.254400759609666, 38.53890129315313, 27.244202555426607, 43.31660311430086, 35.8220137050709, 29.10656854321389, 20.79055914220991, 9.249311240214084, 5.452927658920625, 9.576524262028867, 53.09926295508663, 12.356552511183077, 6.083520738312291, 46.60322246732104, 7.314924093307446, 21.045090149972502, 7.198917135836217, 13.272057497440075, 66.9083435674678, 100.40324948431986, 51.10444457439381, 25.29513070516852, 20.111920249059306, 9.694904249078485, 74.27307836832549, 59.00802412557243, 8.795964852109078, 28.341434746958964, 48.95282417892573, 8.604060216424916, 23.280013648511954, 22.178838401053984, 7.968333522658626, 24.639843353859078, 13.043956325772529, 12.017446003968194, 18.67897316337673, 37.06354707318569, 14.00200771765145, 11.939530626809747, 55.88229146276699, 90.4670806967084, 5.2817812585106925, 108.1517814041841, 50.312924885751116, 17.036947836908137, 13.218556506953, 28.46280114578209, 28.318340626830665, 76.4411654616668, 21.34155725873462, 18.741112632655046, 100.37611570580042, 57.924112496992976, 140.69446167711095, 29.104649351079082, 28.84808220299312, 27.69056063943701, 10.08318535048282, 24.80395671849593, 47.55433056301567, 60.78046007990402, 7.115626113220634, 39.36013734040601, 86.15023337561776, 29.67218839704832, 18.51379504890131, 23.842252821077892, 5.706346153593482, 51.91874419838396, 22.081391443535797, 152.31255673422478, 91.64548419163732, 52.84501881801775, 48.965120127254345, 61.23065812718172, 16.835261572194963, 45.805047398317896, 8.818133387448894, 20.960072845655212, 31.129464483823902, 8.554034304293426, 15.916254624629397, 22.517743393998227, 6.4811844218278525, 13.312865476454716, 21.160261115289114, 29.965417133151245, 8.894421306611141, 21.918070319048642, 45.333727527772666, 84.07624368334704, 120.4818587616241, 50.26294065976847, 15.818952078312694, 20.579071457189045, 18.7095984164965, 96.85011247887948, 23.647307144272858, 20.02684216492197, 13.947818638529684, 33.87256417613412, 28.460762999275502, 135.50445405540654, 6.4238846046413896, 20.22451863716734, 28.687690837645427, 10.524874202443744, 35.53452915690427, 13.620541782071584, 29.171910930235484, 23.122728960955126, 5.886259677995574, 10.855310755378339, 31.76460404782504, 12.334833963724572, 70.59623750665575, 16.69992960532552, 16.10849004118772, 135.71118093630787, 8.58965239778252, 46.766918606386014, 5.869448359310955, 34.286943552595126, 41.23298845334054, 79.6043593024291, 9.575072934154209, 164.03837087396968, 27.20833216207746, 94.27425403732664, 65.88442631677903, 7.702488937723783, 40.23751185589677, 11.97630908819737, 34.139944617949965, 44.903082182418835, 10.347218964988251, 43.09880126244072, 23.541197257782983, 6.0655663486147535, 5.568774343476558, 12.354132599186405, 75.84491485856519, 53.52138329550102, 14.773398101880986, 90.50218877993586, 13.16510874562412, 46.97234729168308, 71.3471232189793, 37.43376129479621, 79.51060773835766, 14.053213490469714, 15.283567236128627, 16.15463040303993, 71.61520566158087, 12.967700860245477, 7.2416561080018935, 27.32065880061493, 22.282110343549448, 74.35367208396582, 35.20102880644046, 54.34226919610834, 16.61497254146352, 34.59458172017839, 16.05161958456619, 20.48934903363297, 62.83941228447927, 113.33922054791124, 14.075056207764346, 7.881052649404547, 49.61787776505652, 109.5515991543109, 16.99693878227439, 37.0572951463564, 55.741597497729174, 6.479306274326522, 5.146119666242441, 32.80889444769069, 62.494208931476535, 6.828814272677728, 65.49476288851889, 123.29237517967744, 37.064972025714916, 43.148467975160806, 5.742713410148127, 6.705676136077308, 47.070437654398916, 37.08197678853502, 16.309816094247235, 15.161064680567614, 16.59603788525643, 64.65099205532252, 81.9553527621038, 85.05871816576051, 10.611712136640165, 16.735944268024358, 8.108725548956933, 29.037878927651608, 10.166644286247232, 34.20998181158172, 16.850607668831778, 27.496689675607463, 8.48285491681208, 6.292086910011101, 61.40553812974635, 13.67208511388877, 73.71673364899311, 27.50586539128788, 6.037332215077244, 58.870388480864335, 90.64150044819915, 11.885935672707063, 40.686239959191745, 51.92208849261038, 10.782412949858108, 13.67505534106414, 62.617064166971964, 7.203776534052865, 134.7374503332242, 52.61744843220418, 69.98168444565144, 31.69232065500409, 34.02570004958207, 123.85205320683013, 14.44101413438493, 18.005199642135366, 38.83325384347613, 101.04026169537931, 9.861668443782127, 7.88955937387916, 18.30796089109192, 8.820854264806346, 8.14320908483325, 47.15634656626668, 6.951710027333259, 7.807341058048594, 8.612129687931729, 47.43384247213881, 23.85191978360047, 27.054744526587122, 25.125564325158898, 12.752525891183907, 70.68002391173546, 6.632556044848563, 170.34328251164268, 14.966527975907123, 32.62236848713452, 36.29500545862158, 12.093416018499095, 18.907870195895967, 21.84331282334991, 100.98763983668641, 6.493705407305184, 107.61727688331554, 67.92533372929468, 26.832986565452092, 19.19693846370167, 118.72377828380587, 52.64884527089033, 30.092414268516663, 71.83440370014002, 80.88275399953918, 6.7760129736727635, 57.66473668350753, 16.657392452498996, 14.41759125957876, 14.841167331209997, 6.45332298481143, 70.74210412460155, 28.842959826029578, 18.458213192996045, 23.731130454452945, 19.357334255887025, 16.092272155500595, 18.349151755999188, 82.62960636016949, 114.58537515754851, 36.42954980968091, 66.51989637272173, 22.495147798461595, 71.97843424914676, 61.01254406157491, 41.88242119855138, 18.604541721968456, 14.504820823897322, 5.5396229334338125, 7.7538664825122305, 80.28803454662733, 63.146986271122444, 19.386882048579317, 43.261549146730026, 11.276055559048116, 69.7830676671197, 68.03581865806818, 17.395952230823763, 148.6982369642827, 8.854261630877218, 43.93027906853265, 10.361462682542392, 88.34460689075526, 26.34716755645717, 5.8745589744671785, 103.60824256957233, 16.328442168128248, 78.35875167108733, 40.57030315258273, 21.801682651188415, 8.4557706134732, 45.847786307180996, 23.365608738729023, 7.439328846159497, 65.53116250610177, 6.157848824229647, 15.063877796676046, 5.092123241829531, 41.775529701564594, 41.50301541984504, 8.603767886247486, 18.25196240372099, 18.8941049519922, 32.361377991514686, 29.058268320225288, 13.797654258245894, 52.02493961368507, 12.064436126616638, 85.15273262411216, 42.77483825235403, 48.574175654007995, 49.48023945040034, 114.43828141719214, 11.478452062347221, 10.088119857425362, 36.960593529362114, 54.313655354975396, 12.33704257743563, 59.45490795523777, 13.423564489786848, 31.60422833029354, 25.31052107789943, 14.363177353910535, 73.90600977361952, 87.28210928846954, 15.471703997850362, 19.764490871802348, 10.385239269200255, 30.493799404446992, 13.68412111874203, 22.989968147648476, 17.633546172175038, 44.14087054279589, 61.04510450450613, 10.456437977623006, 6.465233380983114, 158.36998864345287, 51.82274271828395, 11.303338856496502, 8.644184968823781, 13.310321897452354, 10.207492752012255, 10.858151182462802, 7.404339420022516, 49.069052817304865, 21.032114008930726, 16.829582163756918, 26.67738739845647, 54.739277332281524, 7.871972740554734, 17.024446938872554, 62.25193460610143, 23.55806003280399, 56.762105277839616, 31.714218443120735, 9.1082095127909, 14.523568160720847, 23.230177147093627, 14.854944774902, 86.60888249620317, 12.702286186577892, 36.109753275603445, 28.10619934069754, 7.91670658511566, 59.0497081013704, 46.976940865137884, 23.555349725131908, 15.397464347199756, 20.623126302032915, 44.62761673287052, 55.66360583736761, 13.950731108499658, 50.20232469537044, 80.79855555539146, 136.08215550777314, 51.45533248942717, 24.127557016351282, 6.596670411351589, 22.690066960306012, 17.689252884366734, 71.66354962580772, 16.551732147271622, 45.59407369519275, 37.19344578342209, 15.109313799765587, 25.910169665354342, 28.576821750724477, 6.798901720947303, 17.939416065236394, 25.022186209369433, 10.190630578859613, 50.83685157228666, 7.102765515146854, 7.102766071259521, 57.73806440663074, 8.340878021310974, 23.33781669545444, 133.18368531675517, 15.244203722239472, 33.2848893881835, 41.06881085983092, 88.17109300990357, 37.436033901314765, 18.383443556049354, 22.763008032145983, 21.313013999159267, 9.80783636542086, 23.91252888333569, 12.907580278353466, 103.4958770684922, 21.938630574647696, 11.43343214106119, 28.374930395332257, 23.535411074766856, 104.44660712767671, 104.25074015317253, 21.62242823066858, 40.54412792573663, 9.079020042005627, 13.629253302647895, 15.68912427654137, 178.90775233062305, 61.027435526118296, 5.792562641019876, 38.50095305037036, 14.219746289212491, 8.810176394188009, 77.28738057764461, 6.610011329571159, 82.21522313290876, 69.82738064849968, 16.241638144753708, 7.850406994164127, 31.293952576484703, 10.364432227145752, 60.573176032953505, 24.035291691358573, 56.97722950344897, 99.98406370705366, 72.8040757721244, 86.22453068928247, 59.97577071979002, 5.678995661220822, 26.30086568271107, 75.36465760652331, 28.43129254660296, 23.98338455367327, 46.37096833343554, 36.58960716918589, 20.863519751983212, 105.29713546286195, 24.148349470384932, 81.76901076401637, 11.22349217996687, 56.297473576014454, 124.30766155314306, 96.76149326583226, 60.91368913982329, 34.99361716515476, 42.85251179826308, 53.00884559448542, 13.109142833551054, 22.695140901532525, 6.165839435227959, 16.291157201046733, 28.31406796423029, 65.40992727811741, 28.606807681345888, 29.69809507190875, 46.59390521577545, 5.460850934969805, 10.51572426923241, 16.84326696022151, 13.879625939570898, 15.570385860348365, 45.23897355374859, 112.90287371913163, 29.30870661990725, 27.07039664374865, 11.464230414580504, 23.775499003072046, 76.2467853423988, 13.031979956017087, 50.28499336894776, 20.504051394236686, 20.194720590355946, 12.447642514752673, 15.651687934321526, 12.431896579789704, 37.33477195971196, 6.353738724111828, 10.485661888894931, 42.74928915022419, 33.83546862273448, 9.284580139729112, 84.19300929267163, 9.629225627885381, 57.49068914867937, 72.38908743304391, 12.574179969943902, 15.734888765657153, 29.796073562671996, 10.52787503679091, 15.637552019472253, 79.89424135587292, 22.953785014823257, 10.425097152437692, 104.96083001312645, 30.873254718744253, 14.6833106397124, 7.342183749819809, 16.600106202711387, 24.27630319781383, 189.56511861525664, 39.63821754208637, 27.78441141702619, 26.992409343812366, 43.230353810425484, 6.236393810436187, 5.952940035436955, 76.1128403489893, 18.585980084742044, 172.5024282106464, 109.7134301553065, 18.934668615912102, 30.210545992518544, 19.898409026952294, 14.283660693645157, 149.34772988162584, 13.397193277027752, 58.65267153658178, 16.786340161562386, 152.21514085761882, 111.24488708022903, 53.912518813359995, 151.22769380827899, 6.302520745161442, 15.223472173688872, 9.356686211350995, 162.08780686370955, 5.714868411297624, 32.8056039127792, 38.217024462956815, 18.29892288106101, 6.745062991248751, 7.753868693282706, 97.14027283846852, 5.860292009034519, 72.68153589760223, 11.071295455848691, 16.249577710188692, 69.64747676143192, 115.18154654017202, 86.42924132143166, 14.848696529180597, 8.109949103496009, 25.143929966517987, 54.1236970528717, 13.170200760563871, 48.492953647956604, 31.069158871432435, 17.005486872947262, 91.39732343981723, 7.958105844004958, 52.47539507367168, 79.9722547841172, 75.54805257544572, 24.550593778003957, 18.362951792341384, 25.536198533047617, 12.037944546382386, 32.875216186316706, 13.25894714370434, 59.84678176383022, 88.71156738422918, 11.59356342650408, 46.31890612496569, 5.224861133247168, 6.670215644454189, 22.990302140061722, 33.08101976617903, 61.20644339422917, 37.03239646336956, 23.21999681710199, 27.56565261485367, 14.71770076666693, 6.4197409107916625, 22.172996061473942, 13.641853481015048, 95.70666065346039, 13.399667236736407, 28.15492207475984, 18.849253660905035, 7.870722924375674, 45.97734583892469, 21.209049373310858, 55.031138309908464, 12.023842308868403, 75.0999867969133, 7.722630060171919, 29.64106055881442, 21.812704143449896, 63.832647510681554, 30.656508433334736, 13.383372571875825, 13.625091248769357, 20.376115060343828, 66.30039483334936, 23.61585536663995, 97.69503041093799, 6.8719194549600084, 34.022445559220834, 6.421126802004063, 25.632122297789948, 86.95369496242303, 5.440907572273257, 47.99279829863238, 155.4144516034238, 9.206241433536606, 12.269829054568229, 15.474165696512145, 108.45478902194031, 42.31354959780557, 69.06018100284575, 26.274036334923128, 314.13590441104554, 16.482499623456825, 20.176103911707774, 75.81850113866659, 61.725832360236105, 67.51816785349769, 9.310864955484483, 28.896268570534282, 10.166296106551968, 19.46419929773923, 13.453109502046674, 17.868692876954942, 29.15716812755061, 84.27693122366179, 78.80444485131255, 85.64481963768905, 19.84818574902814, 37.63118503862776, 11.455808599044273, 5.135120687673072, 26.13082472511173, 49.113860038357906, 15.552738097689854, 72.53525210979845, 62.99000343000726, 121.34448945564917, 49.31383599210443, 34.65272146224101, 15.837299932137597, 86.52716556602493, 33.71171079512246, 9.007690788633113, 89.22887776609633, 14.90727966820981, 5.390985015576865, 199.75504476165858, 9.746482452985155, 8.229401417333657, 17.61844097296113, 68.65109502966399, 49.74497756865584, 9.48379440540844, 68.18902206541415, 127.96723229825875, 18.796442408228664, 22.8272531428102, 42.73280938331375, 79.41415150332837, 28.882843513477198, 13.962829473273427, 15.376447743921348, 52.4479600686345, 44.70982416808063, 9.73603082413329, 27.208275234129424, 22.386127894146505, 12.001211113918208, 80.60651008124114, 6.53851197831961, 13.425020787340095, 19.09846731379288, 6.044803943578237, 9.198586118369025, 12.88784377784022, 44.48311954542655, 70.7512568736137, 6.749033933972858, 19.94060091460028, 33.84812536617918, 8.725478566655259, 9.956197190265524, 84.43107855880825, 12.028138661789669, 14.11743983295677, 50.506192928039624, 43.72687190239261, 6.855884151272999, 26.504193860621342, 91.529978245057, 12.36525138047085, 15.428202157963888, 18.339492584878517, 55.237194618362516, 16.160459640104065, 33.43567106998103, 17.361234689984954, 11.307910926495001, 19.394577773787596, 48.54235589089339, 24.39908209399102, 16.518975931635726, 30.364935702622127, 202.7137159729924, 9.37459909097821, 28.53500524774724, 73.49879037876914, 6.213853991945801, 31.548174285909035, 22.520587951650242, 25.43195846404506, 35.58241145028325, 6.633486935558907, 17.397682007860034, 24.448907718857775, 33.75826789943942, 28.60554394324837, 105.28764378038365, 38.35783939259052, 25.870089763130352, 13.297437340496634, 15.36212186476915, 18.530415755058804, 36.42762483768621, 86.28639208479018, 20.437567663891784, 22.87657034941141, 52.47113150079892, 84.6262757206659, 14.370657817775976, 104.2106760537495, 15.918179352301019, 5.72997634116034, 31.23862006691138, 6.811866180894897, 26.17769547926389, 20.130231291970052, 42.20182738806142, 25.425628809925414, 29.373175658673453, 9.302710279653578, 51.656873453856974, 38.62707700192672, 39.40377452598263, 31.10315291351141, 22.63920330125982, 58.24797301695003, 13.353182443939396, 32.17126239555565, 44.328198461209645, 8.188518662054864, 5.152334983022609, 97.69339924402601, 42.268642840594794, 27.553347772969733, 30.836258052458504, 96.37177038033154, 48.63888836657647, 42.50561074931903, 30.848189724440232, 79.19472801171857, 62.550242399565136, 66.83927440689557, 37.33607318624043, 54.64919317299071, 50.65915735386749, 103.44848894242836, 69.98455671888297, 13.315267301955675, 25.2390399607398, 68.3245253942479, 18.781457248456885, 45.714722816992, 62.32934162462447, 6.495271637982815, 11.820481789523095, 11.451536643884864, 25.442052378459607, 23.253818234299704, 23.79191557037755, 81.44566462255699, 14.902116115177868, 45.70897113162914, 8.191547851315256, 12.918431455254769, 6.179605306491011, 18.678896833417863, 28.162976357566116, 42.774568506025915, 52.41023696287106, 71.29723245549903, 5.927674216186719, 26.465008211526012, 68.99802442154183, 7.186337643974786, 5.257710013005243, 98.13019019294548, 6.109309310213806, 19.74173864576209, 15.300364550403799, 16.20757631873847, 18.607460214986318, 13.446773989449003, 42.75051124429586, 58.2808068627909, 109.51687669663156, 62.627122467578715, 35.93013003776248, 18.685805394114823, 12.116263966487649, 52.462235012628184, 11.871803939974804, 22.275829950031067, 15.14502852190209, 86.19820401095825, 27.978467067014247, 22.740225973007025, 22.95015290039308, 7.944128040488031, 15.085287188477082, 24.6267153265612, 30.194315953105004, 76.7888516204009, 17.01664557047151, 13.86728128747639, 46.74620224069137, 5.333923640824952, 102.89072293231878, 65.48714826371418, 12.422231772113847, 31.766358425589825, 44.26450651835018, 9.878954433569547, 11.805063613852592, 45.055452540803785, 28.521339941248115, 79.50306831880108, 7.8402244917573185, 8.403121439621763, 14.778690974148578, 80.22779558112244, 83.91611891093197, 15.540947851842333, 17.025598305079377, 89.90894774133056, 5.302325778295557, 31.383869715420385, 17.94866368769125, 17.284945864350327, 43.86454707278878, 8.028594049912089, 89.02907514620432, 15.431424230260262, 37.65287675225591, 23.053533485673345, 10.249564642903994, 13.782930206542538, 17.29426007942266, 19.907839880473855, 17.98987635742316, 28.970324355793355, 48.83214153487718, 30.557723239714516, 78.13645044689119, 10.994980356132606, 6.810447666360613, 87.00930590981079, 8.504438332899626, 86.913274047359, 58.23079084137602, 40.91906406631027, 39.736118180043086, 28.75565396232597, 65.81158736635443, 16.598013187048956, 39.28241270099137, 18.358944310452756, 33.526624070763226, 85.80889976575035, 66.732166721774, 29.56274915045375, 115.08300883008563, 11.472958322437098, 87.14108298876482, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3872705.919153826, 4893721.875, 5029132.8125, 5053960.041122983, 5054000.274274836, 5054823.4375, 5054931.096924562, 5054964.736561483, 5058312.5, 5126035.9375, 5154031.932493738, 5154090.58402302, 5155316.806298826, 5155959.722128809, 5160394.213188728, 5161547.936883758, 5161721.875, 5162400.991049645, 5162734.856736076, 5163779.740019488, 5163829.714464772, 5163832.393586638, 5163850.1135248225, 5164745.3125, 5165107.434160491, 5165355.5797531195, 5165547.553966358, 5166029.926753195, 5166076.882986505, 5166109.571310311, 5166336.962203098, 5166819.137146693, 5166880.777136036, 5166938.246655442, 5167148.236121265, 5167190.112655412, 5167286.898005804, 5167617.1875, 5167824.471034394, 5167960.0425233375, 5168056.25, 5168787.202012546, 5168796.875, 5169064.0625, 5169787.302302814, 5169982.411930331, 5170790.229384445, 5175833.934819785, 5176410.791066973, 5180919.091796547, 5181773.668136084, 5201930.578673431, 5207262.018726069, 5216882.8125, 5218925.0, 5235627.250958226, 5249074.31496998, 5251013.007930021, 5251916.1314247, 5256441.109803426, 5256645.577426059, 5256871.549864826, 5257652.113672069, 5265964.0625, 5269081.941457092, 5286498.04744631, 5289097.728278934, 5298752.171378144, 5300954.457734683, 5304708.192275653, 5306329.6875, 5320104.6875, 5328553.036704968, 5329559.259925437, 5330226.763365185, 5337713.832089702, 5338214.553702403, 5338226.829999976, 5338775.0, 5338779.089362883, 5339600.57776286, 5339832.8125, 5340163.345421732, 5341855.652473683, 5344098.4375, 5344221.720906187, 5344345.3125, 5344493.263539245, 5345118.759498893, 5345322.813796286, 5345488.736493791, 5345586.926566596, 5345657.713791464, 5346635.729936654, 5348689.338832738, 5349017.1875, 5349054.865578986, 5349403.080857065, 5351043.75, 5351375.688194359, 5351421.328884915, 5351558.099216787, 5351677.605168164, 5352872.881508079, 5353386.718681466, 5353509.174824368, 5353649.811995512, 5353957.161921078, 5354656.650733276, 5355087.307095753, 5355392.1875, 5355541.478232716, 5355722.16467311, 5355793.75, 5355800.555702155, 5355857.47473269, 5356099.566100048, 5356105.595464361, 5356191.363139544, 5356899.659687193, 5357369.253290826, 5360133.537546318, 5360694.067861411, 5361341.91705189, 5362223.9014230855, 5362326.5625, 5363046.694688258, 5364710.633265107, 5373196.385439838, 5374928.125, 5376292.646558682, 5377010.397777588, 5380720.309343237, 5388650.6683704015, 5393476.5625, 5393716.672173154, 5407272.608921292, 5411046.875, 5418395.3125, 5427561.288685391, 5431118.612822833, 5432477.347947931, 5432973.996692994, 5433100.772788135, 5433729.465709576, 5434367.1875, 5434591.527240471, 5435718.727792201, 5435784.375, 5435831.188622944, 5436216.059001173, 5436658.513576752, 5438177.832130467, 5439017.181026706, 5439234.375, 5439340.212989844, 5440131.419675552, 5446354.6875, 5449450.805840545, 5452667.8312873375, 5457057.8125, 5457243.552877965, 5460046.224380529, 5462157.135961286, 5463466.632353219, 5464017.1875, 5464067.661192576, 5464445.546709061, 5464936.14761031, 5465018.712215339, 5465028.685607879, 5465401.412708017, 5465420.070469204, 5465635.371156307, 5465640.1665715175, 5466753.808505463, 5467650.26786975, 5468323.103973915, 5468523.4375, 5469692.400116031, 5470108.77821679, 5470122.611131591, 5470511.591322897, 5470537.634708077, 5471541.526778926, 5473104.399840112, 5473296.875, 5473878.12173991, 5474941.185652941, 5476704.272081839, 5477027.48767692, 5477415.004867776, 5477652.701757249, 5477845.756423516, 5478069.916617849, 5478619.032554002, 5478877.774191621, 5484094.681305316, 5484102.943447505, 5484450.0, 5485197.530729555, 5486084.839759632, 5489241.7274324205, 5490041.020746881, 5491060.25725193, 5491855.219780608, 5492376.5625, 5493481.972532143, 5493553.00295203, 5494357.157593128, 5494801.5625, 5495478.399772712, 5495492.1875, 5495496.804762751, 5495562.051265003, 5495703.808862932, 5495767.4538238365, 5495957.8125, 5495958.295105932, 5496175.575368182, 5496281.049910968, 5496293.185831501, 5496617.1875, 5496785.620916539, 5496846.655495919, 5496986.651650988, 5497367.852109296, 5497820.3125, 5497978.968014742, 5497984.3301836, 5498887.299048351, 5499005.6901660925, 5499033.8006649325, 5499313.386764424, 5499779.421899058, 5499964.0625, 5500146.620639685, 5500226.649438755, 5500286.59806391, 5500314.0625, 5500472.801225952, 5500544.188358244, 5500618.686067693, 5500648.340038469, 5500804.6875, 5501154.441440951, 5501306.25, 5501497.254213684, 5501529.6875, 5501877.305607969, 5502133.768126049, 5502220.3125, 5502401.402818752, 5502546.62745074, 5502677.270415961, 5503050.730077406, 5503165.926483753, 5503755.212576172, 5504398.4375, 5504431.25, 5505214.012657563, 5505422.591655617, 5505581.114240218, 5505981.25, 5506042.506052263, 5506054.5757524725, 5506155.675832264, 5506435.9375, 5506489.338846193, 5506575.550513404, 5506638.765759322, 5506648.439336094, 5506679.808644633, 5506883.182630576, 5506981.306434546, 5506994.636574481, 5507145.3125, 5507326.5625, 5507351.5625, 5507451.205238447, 5507520.71515928, 5507602.772823506, 5507627.920195037, 5507693.033788675, 5507787.39357552, 5507845.736963812, 5507871.820825361, 5507898.791094338, 5507903.31948526, 5507983.280437521, 5507991.809165342, 5508026.5625, 5508060.883829919, 5508101.05974393, 5508107.8125, 5508180.485698647, 5508210.693980995, 5508279.6875, 5508323.277316961, 5508449.767258348, 5508455.872670628, 5508465.625, 5508484.679186108, 5508513.718702345, 5508550.216519713, 5508557.8125, 5508602.642099237, 5508678.285490653, 5508725.0, 5508756.112185205, 5508770.80025513, 5508772.992363588, 5508781.25, 5508783.379434827, 5508797.602845696, 5508799.107914273, 5508830.577455965, 5508927.84367832, 5508950.0, 5509013.374865101, 5509030.218632217, 5509053.693751039, 5509058.210418963, 5509118.457879803, 5509129.608540906, 5509219.821245024, 5509238.58423067, 5509270.3125, 5509291.494166717, 5509320.3125, 5509326.569048462, 5509362.339104328, 5509411.752494894, 5509434.915914164, 5509435.09574237, 5509445.72187854, 5509494.404997736, 5509515.667063988, 5509518.75, 5509531.1520572975, 5509553.033237735, 5509569.990357683, 5509594.161019368, 5509594.491274567, 5509641.171926069, 5509666.108017429, 5509775.0, 5509779.749822949, 5509803.125, 5509816.012487525, 5509820.16790037, 5509846.84842261, 5509856.0311484365, 5509857.8125, 5509930.255628282, 5509938.18017806, 5510010.635963158, 5510069.104635937, 5510076.0705097625, 5510151.3821746195, 5510152.646013991, 5510153.466915257, 5510221.875, 5510251.5625, 5510294.065169762, 5510296.875, 5510328.125, 5510331.25, 5510350.96180529, 5510398.158557175, 5510417.321569553, 5510445.710610296, 5510640.625, 5510826.5625, 5510911.759314173, 5510946.244706114, 5511039.155380068, 5511060.9375, 5511190.625, 5511211.460426208, 5511260.9375, 5511357.188611054, 5511372.776556575, 5511515.072436836, 5511530.202329305, 5511570.651356027, 5511575.786481651, 5511597.4576408295, 5511607.225783667, 5511657.8125, 5511690.625, 5511745.913051754, 5511792.4943059515, 5511860.695936896, 5511905.280754676, 5511999.522877439, 5512052.214956335, 5512056.895041931, 5512085.752395389, 5512105.925534822, 5512211.984224233, 5512245.3125, 5512344.305228512, 5512425.661915391, 5512627.317949275, 5512657.8125, 5512675.0, 5512813.7261140505, 5512970.3125, 5513019.276649449, 5513020.3125, 5513059.386712382, 5513185.9375, 5513269.931307345, 5513398.4375, 5513597.088375901, 5513916.402193181, 5513954.272813518, 5514106.25, 5514136.59424796, 5514160.9375, 5514276.9890734, 5514430.4115787335, 5514728.532224951, 5514735.822798347, 5515020.253996084, 5515043.390906701, 5515139.194979557, 5515158.682299759, 5515210.4041874865, 5515721.875, 5515831.485323428, 5515897.273515852, 5515947.438298158, 5515973.4375, 5516092.598119889, 5516166.710938748, 5516171.734132114, 5516249.171934988, 5516503.416125195, 5516571.693038317, 5516834.995103789, 5516883.810431711, 5516905.56900139, 5517135.757918903, 5517172.85192358, 5517203.125, 5517297.890012361, 5517435.834384244, 5517495.211602495, 5517621.45815106, 5518056.936537544, 5518077.019269634, 5518153.532804193, 5518443.456812975, 5518453.125, 5518543.75, 5518590.348693026, 5518604.573349619, 5518971.534149502, 5519346.852101844, 5519639.0625, 5519689.215068017, 5524131.25, 5527495.290994882, 5527500.7908134, 5528457.576602526, 5528685.305102935, 5529560.62204796, 5529864.177193987, 5531473.602260446, 5533112.5, 5534656.25, 5534793.4632701175, 5535318.75, 5535580.4894057065, 5535601.58661334, 5535928.125, 5535938.79143785, 5536025.665141612, 5536347.848839983, 5536777.135055923, 5536816.025637395, 5536900.366772194, 5536998.387261214, 5537036.924326515, 5537054.040412662, 5537135.789632356, 5537137.242489335, 5537245.487244578, 5537430.3006951315, 5537469.308977866, 5537535.242025201, 5537612.5, 5537854.615934619, 5537895.240936764, 5537981.25, 5537992.288791018, 5538123.104471108, 5538416.665395262, 5538630.938866856, 5538841.7767963605, 5539119.509491644, 5539409.375, 5539521.6651149215, 5539749.127365798, 5540163.681028958, 5540447.14100216, 5540491.13939173, 5542943.462561059, 5543355.589746642, 5544079.6875, 5545007.35603186, 5545025.760278738, 5545115.617372537, 5545238.745453481, 5545593.584606252, 5545689.0625, 5545827.637867523, 5546242.1875, 5546768.435634361, 5546813.669597282, 5546843.933228704, 5546979.92225865, 5547005.864560409, 5547060.643781761, 5547374.765658337, 5547924.796808168, 5548114.936751276, 5548312.5, 5548322.6167425085, 5548604.6875, 5548687.6384366285, 5548709.678853315, 5548719.385318723, 5548973.4375, 5549043.199849418, 5549047.642881783, 5549244.160608061, 5549268.75, 5549692.1875, 5549712.5, 5549831.25, 5549904.032871733, 5550135.492257623, 5550599.345629275, 5551459.10786998, 5551658.575276675, 5552693.467997109, 5554846.875, 5555641.799066852, 5557275.9969833465, 5557774.924958399, 5562395.564813203, 5563535.664798871, 5564143.810428225, 5564787.997041257, 5566723.587762113, 5566824.493850901, 5567385.023577553, 5567388.741058043, 5569053.142089055, 5570146.149123144, 5572112.499867696, 5592592.307294455, 5593680.403298682, 5594828.439119864, 5597648.071433579, 5599448.828404683, 5600182.2782538235, 5603170.3125, 5607787.5, 5607909.353650385, 5609712.069696953, 5612114.4855798725, 5614421.56540268, 5615178.766666619, 5616618.240093553, 5616890.625, 5620731.25, 5621142.109435142, 5621436.142632631, 5622884.076935695, 5622896.875, 5622971.263997123, 5623691.947763742, 5625048.173628486, 5625216.54668721, 5625525.707036946, 5625770.487129494, 5627161.637461271, 5628160.938162958, 5631103.7805812815, 5631279.233852215, 5631703.911426679, 5631939.797785237, 5633539.006600592, 5634380.996838528, 5634612.832401609, 5634659.375, 5634728.789225149, 5635032.012916356, 5636240.041886736, 5636289.0625, 5636344.891568217, 5636823.888528161, 5636876.681710149, 5637454.809937432, 5637640.123621049, 5638782.701341728, 5640045.3125, 5640345.2430680925, 5640819.528038165, 5641561.3138005175, 5641645.8188075265, 5641649.838735958, 5642112.654597454, 5642115.959905633, 5642281.167467316, 5642591.0747187985, 5642976.314729725, 5644037.654114205, 5645400.0, 5645973.727738915, 5646393.75, 5646557.8125, 5647164.823581424, 5647519.080581968, 5647785.242028051, 5648029.503491405, 5648922.734979753, 5649088.588273876, 5649600.686168932, 5649732.181241814, 5649984.620077774, 5650588.751859591, 5650989.0625, 5651085.95570863, 5652637.774553082, 5652856.322060336, 5653559.4047504775, 5653976.094164798, 5654476.689186809, 5654868.75, 5655051.949704421, 5655216.728253099, 5655671.78190947, 5656637.898115882, 5659071.907458738, 5668283.4193854015, 5669739.340794169, 5670599.963607482, 5672039.368005132, 5676878.303625588, 5677638.447907994, 5678518.75, 5678886.795658914, 5679644.962859755, 5680061.240099814, 5680085.9375, 5680222.879592621, 5680225.0, 5680679.6875, 5681212.953289221, 5681356.525271134, 5681774.32252118, 5681801.5625, 5681917.1875, 5681984.375, 5682813.822639823, 5682948.851356869, 5683085.213706756, 5683220.82601563, 5683421.875, 5683461.975316066, 5683475.072871161, 5683623.553363861, 5683859.6539086355, 5683967.441165117, 5684043.008707702, 5684068.264030384, 5684506.899683226, 5684551.83639134, 5684644.497360339, 5684667.87038093, 5684879.344782099, 5685028.689355456, 5685028.931183801, 5685046.431467484, 5685322.883046022, 5685390.236396808, 5687720.3125, 5689335.464162816, 5689478.106034234, 5690458.306650842, 5690555.371086284, 5692020.3125, 5692401.268168112, 5693178.125, 5693981.756487197, 5694614.0625, 5694887.818463581, 5700495.3125, 5701718.28145286, 5701984.375, 5702497.919852534, 5704068.508153641, 5704099.605674512, 5704633.755229913, 5704687.5, 5705046.564366361, 5706254.544067712, 5706508.332317058, 5706563.476887664, 5706619.878382991, 5706873.379512424, 5707050.900984641, 5707140.129838438, 5707220.3125, 5707464.0625, 5707846.72317269, 5708160.00050148, 5708800.020356374, 5708945.861757818, 5709264.0261465795, 5709264.919548236, 5709488.93731836, 5709638.594775944, 5709690.978003301, 5709843.107000308, 5710235.327232225, 5710342.1875, 5710392.1875, 5710764.038110126, 5710906.25, 5710953.970986412, 5710993.159146221, 5711178.527394005, 5711186.539358439, 5711276.218814451, 5711288.923966338, 5711347.289092041, 5711402.736426525, 5711568.067619201, 5711632.8125, 5711670.512735582, 5711687.714852274, 5711849.865979941, 5712001.5625, 5712020.464124122, 5712185.400119165, 5712215.437139482, 5712245.3125, 5712543.795526426, 5712629.307067986, 5712656.931998002, 5712681.25, 5712796.062068493, 5712813.653130519, 5712958.4608834125, 5713093.740990343, 5713110.740210299, 5713196.772419849, 5713206.703231903, 5713224.890291594, 5713341.402352765, 5713448.4375, 5713636.384647861, 5713667.362390311, 5713754.058730379, 5713793.005982122, 5713847.616759485, 5713852.749092729, 5713918.75, 5713920.3125, 5713953.125, 5713992.630223328, 5714018.859615603, 5714034.375, 5714042.1875, 5714059.817674789, 5714089.079911703, 5714175.330472575, 5714405.182653951, 5714454.669467388, 5714472.195365216, 5714483.910744921, 5714502.346009557, 5714515.19811317, 5714523.276132752, 5714550.453114578, 5714589.0625, 5714600.0, 5714645.239572294, 5714685.750804397, 5714731.25, 5714786.684473337, 5714830.344264366, 5715040.625, 5715044.258631192, 5715079.453080134, 5715134.375, 5715142.1875, 5715169.19575016, 5715299.6848706165, 5715412.994739161, 5715447.544705919, 5715515.747086716, 5715550.67516992, 5715554.6875, 5715584.176984096, 5715624.690438736, 5715630.2044036705, 5715718.862308946, 5715982.07281615, 5715995.3125, 5715998.534788186, 5716006.23553969, 5716015.330653545, 5716132.8125, 5716162.550647796, 5716435.9375, 5716496.875, 5716516.753284124, 5716534.375, 5716537.9056645045, 5716574.8211271735, 5716587.5, 5716591.499374402, 5716595.83572544, 5716607.565259586, 5716616.348376967, 5716720.300041387, 5716795.3125, 5716810.080713647, 5716882.662086617, 5716901.0520208115, 5716968.856142849, 5716990.0658728415, 5716998.725508856, 5717082.732134705, 5717090.345077576, 5717090.474822602, 5717171.875, 5717189.0504186945, 5717296.716709975, 5717300.0, 5717327.124199437, 5717392.54624519, 5717459.657432212, 5717461.17499928, 5717521.545647137, 5717558.726589647, 5717690.2464028625, 5717731.4474780895, 5717800.0, 5717803.090870205, 5717885.694755635, 5717901.5625, 5718070.001473633, 5718141.161014156, 5718154.643455925, 5718179.6875, 5718180.759878447, 5718207.729672016, 5718212.5, 5718241.997349407, 5718299.431732995, 5718306.7861772375, 5718335.626554364, 5718376.511434531, 5718406.004075347, 5718449.145257293, 5718473.4375, 5718512.298106912, 5718537.259456554, 5718546.875, 5718607.653869109, 5718616.987709608, 5718629.6875, 5718683.048091838, 5718715.625, 5718772.459669667, 5718943.75, 5719066.683559657, 5719077.933217558, 5719171.875, 5719241.364642568, 5719485.556066343, 5719491.378360459, 5719503.176986957, 5719522.277189103, 5719659.572747129, 5719678.613057472, 5719891.847575779, 5719915.328216534, 5719979.337617946, 5720014.229510535, 5720043.75, 5720351.3783682585, 5720632.15659952, 5720643.023756477, 5720806.975035369, 5721160.429205501, 5721435.813818367, 5721713.463085025, 5722043.250609587, 5722551.426797458, 5722756.915014492, 5723134.375, 5723317.428717354, 5723802.005310889, 5724025.0, 5724062.701520431, 5724228.991975063, 5724249.439878066, 5724250.29674172, 5726382.040928043, 5730649.543497024, 5730877.236049447, 5737393.438482402, 5738343.063835233, 5740103.125, 5741062.804343843, 5741171.663420413, 5741978.677085644, 5742196.875, 5742805.116541922, 5744256.372428046, 5745260.98989022, 5745271.875, 5746433.949213748, 5747157.466576418, 5747635.572129113, 5748080.5409551775, 5748689.707829004, 5749179.453116207, 5749229.413209322, 5749871.646413598, 5750841.730815845, 5753091.8738978775, 5753798.4375, 5754587.264720504, 5754684.375, 5755117.5640183855, 5755822.758368184, 5757040.299541236, 5757218.75, 5757367.771090423, 5757761.331549904, 5758698.4375, 5758736.860534556, 5759922.809229609, 5759975.610916071, 5760275.214070788, 5760370.269116616, 5760518.75, 5760842.1875, 5760854.134907547, 5761020.76948065, 5761051.534969029, 5761339.422099097, 5761785.9375, 5761825.287492614, 5761930.191056205, 5762085.9375, 5762194.790562732, 5762229.844654332, 5763012.6228592815, 5763187.5, 5763328.311705797, 5764152.479760161, 5764233.841996103, 5764456.755194239, 5764640.24139384, 5764642.808711957, 5764884.021141263, 5765545.3125, 5765870.3125, 5765911.530283647, 5765946.788393138, 5766014.293164979, 5766030.398262833, 5766211.327944531, 5766387.247636033, 5766526.158275754, 5766778.779671134, 5766881.900536308, 5766954.184713775, 5767262.273919248, 5767267.563389808, 5767464.801008072, 5767582.64904405, 5767606.25, 5767635.9375, 5767654.312893017, 5767660.510696475, 5767914.0625, 5767926.772695468, 5768067.304664298, ...], [37.14634287091108, 52.893737298825265, 57.04608074027193, 12.35743163836328, 44.75817357693549, 63.50646294163696, 8.207253999099544, 8.678388239998773, 45.93244775121037, 51.762564012171715, 5.081521029068689, 17.052108313985435, 61.15896699703893, 16.453199862451257, 40.69319487488225, 13.324358609659011, 61.87457278601862, 42.52955170357508, 17.162137038056134, 95.18465654435595, 7.613019582985501, 10.530498375998288, 5.82242815619493, 79.1363717694869, 20.5007133647306, 25.320611525989943, 80.40431994910602, 56.28064546965686, 11.668540742959811, 75.06505775723737, 8.91460965161545, 93.42495918830656, 54.12603544762707, 18.83121913766647, 9.166739370963365, 59.49890067491435, 20.532613561319465, 52.121197928053164, 8.02534981549428, 18.288862229126917, 51.46470346782561, 19.606822527893513, 74.81128024767321, 29.551484262546246, 25.15182503734604, 203.76478442635442, 39.85558508830242, 19.737544142713674, 61.268537103849916, 7.214294739940848, 15.53805193370372, 10.218813188096844, 38.36840680898287, 51.73713124930363, 45.69468531120482, 15.251870557283628, 52.13753433857579, 7.7978936543923405, 13.588288758002644, 66.49881735036283, 10.5183369979698, 49.376328693187446, 53.44720547428873, 52.4521289351559, 18.44856934862156, 32.01762437871322, 25.677330011295815, 17.91239785165759, 6.451666756647847, 7.746624917835027, 37.37979676801804, 93.49493239639418, 19.654699744843462, 16.297623239572296, 28.50628654782856, 43.82298018015471, 11.99335162100265, 16.069544093360264, 46.004883123421884, 13.065074154855711, 25.216374393123274, 61.944365460794565, 7.362958420078185, 30.252001714329175, 33.52792663704064, 22.254400759609666, 38.53890129315313, 27.244202555426607, 43.31660311430086, 35.8220137050709, 29.10656854321389, 20.79055914220991, 9.249311240214084, 5.452927658920625, 9.576524262028867, 53.09926295508663, 12.356552511183077, 6.083520738312291, 46.60322246732104, 7.314924093307446, 21.045090149972502, 7.198917135836217, 13.272057497440075, 66.9083435674678, 100.40324948431986, 51.10444457439381, 25.29513070516852, 20.111920249059306, 9.694904249078485, 74.27307836832549, 59.00802412557243, 8.795964852109078, 28.341434746958964, 48.95282417892573, 8.604060216424916, 23.280013648511954, 22.178838401053984, 7.968333522658626, 24.639843353859078, 13.043956325772529, 12.017446003968194, 18.67897316337673, 37.06354707318569, 14.00200771765145, 11.939530626809747, 55.88229146276699, 90.4670806967084, 5.2817812585106925, 108.1517814041841, 50.312924885751116, 17.036947836908137, 13.218556506953, 28.46280114578209, 28.318340626830665, 76.4411654616668, 21.34155725873462, 18.741112632655046, 100.37611570580042, 57.924112496992976, 140.69446167711095, 29.104649351079082, 28.84808220299312, 27.69056063943701, 10.08318535048282, 24.80395671849593, 47.55433056301567, 60.78046007990402, 7.115626113220634, 39.36013734040601, 86.15023337561776, 29.67218839704832, 18.51379504890131, 23.842252821077892, 5.706346153593482, 51.91874419838396, 22.081391443535797, 152.31255673422478, 91.64548419163732, 52.84501881801775, 48.965120127254345, 61.23065812718172, 16.835261572194963, 45.805047398317896, 8.818133387448894, 20.960072845655212, 31.129464483823902, 8.554034304293426, 15.916254624629397, 22.517743393998227, 6.4811844218278525, 13.312865476454716, 21.160261115289114, 29.965417133151245, 8.894421306611141, 21.918070319048642, 45.333727527772666, 84.07624368334704, 120.4818587616241, 50.26294065976847, 15.818952078312694, 20.579071457189045, 18.7095984164965, 96.85011247887948, 23.647307144272858, 20.02684216492197, 13.947818638529684, 33.87256417613412, 28.460762999275502, 135.50445405540654, 6.4238846046413896, 20.22451863716734, 28.687690837645427, 10.524874202443744, 35.53452915690427, 13.620541782071584, 29.171910930235484, 23.122728960955126, 5.886259677995574, 10.855310755378339, 31.76460404782504, 12.334833963724572, 70.59623750665575, 16.69992960532552, 16.10849004118772, 135.71118093630787, 8.58965239778252, 46.766918606386014, 5.869448359310955, 34.286943552595126, 41.23298845334054, 79.6043593024291, 9.575072934154209, 164.03837087396968, 27.20833216207746, 94.27425403732664, 65.88442631677903, 7.702488937723783, 40.23751185589677, 11.97630908819737, 34.139944617949965, 44.903082182418835, 10.347218964988251, 43.09880126244072, 23.541197257782983, 6.0655663486147535, 5.568774343476558, 12.354132599186405, 75.84491485856519, 53.52138329550102, 14.773398101880986, 90.50218877993586, 13.16510874562412, 46.97234729168308, 71.3471232189793, 37.43376129479621, 79.51060773835766, 14.053213490469714, 15.283567236128627, 16.15463040303993, 71.61520566158087, 12.967700860245477, 7.2416561080018935, 27.32065880061493, 22.282110343549448, 74.35367208396582, 35.20102880644046, 54.34226919610834, 16.61497254146352, 34.59458172017839, 16.05161958456619, 20.48934903363297, 62.83941228447927, 113.33922054791124, 14.075056207764346, 7.881052649404547, 49.61787776505652, 109.5515991543109, 16.99693878227439, 37.0572951463564, 55.741597497729174, 6.479306274326522, 5.146119666242441, 32.80889444769069, 62.494208931476535, 6.828814272677728, 65.49476288851889, 123.29237517967744, 37.064972025714916, 43.148467975160806, 5.742713410148127, 6.705676136077308, 47.070437654398916, 37.08197678853502, 16.309816094247235, 15.161064680567614, 16.59603788525643, 64.65099205532252, 81.9553527621038, 85.05871816576051, 10.611712136640165, 16.735944268024358, 8.108725548956933, 29.037878927651608, 10.166644286247232, 34.20998181158172, 16.850607668831778, 27.496689675607463, 8.48285491681208, 6.292086910011101, 61.40553812974635, 13.67208511388877, 73.71673364899311, 27.50586539128788, 6.037332215077244, 58.870388480864335, 90.64150044819915, 11.885935672707063, 40.686239959191745, 51.92208849261038, 10.782412949858108, 13.67505534106414, 62.617064166971964, 7.203776534052865, 134.7374503332242, 52.61744843220418, 69.98168444565144, 31.69232065500409, 34.02570004958207, 123.85205320683013, 14.44101413438493, 18.005199642135366, 38.83325384347613, 101.04026169537931, 9.861668443782127, 7.88955937387916, 18.30796089109192, 8.820854264806346, 8.14320908483325, 47.15634656626668, 6.951710027333259, 7.807341058048594, 8.612129687931729, 47.43384247213881, 23.85191978360047, 27.054744526587122, 25.125564325158898, 12.752525891183907, 70.68002391173546, 6.632556044848563, 170.34328251164268, 14.966527975907123, 32.62236848713452, 36.29500545862158, 12.093416018499095, 18.907870195895967, 21.84331282334991, 100.98763983668641, 6.493705407305184, 107.61727688331554, 67.92533372929468, 26.832986565452092, 19.19693846370167, 118.72377828380587, 52.64884527089033, 30.092414268516663, 71.83440370014002, 80.88275399953918, 6.7760129736727635, 57.66473668350753, 16.657392452498996, 14.41759125957876, 14.841167331209997, 6.45332298481143, 70.74210412460155, 28.842959826029578, 18.458213192996045, 23.731130454452945, 19.357334255887025, 16.092272155500595, 18.349151755999188, 82.62960636016949, 114.58537515754851, 36.42954980968091, 66.51989637272173, 22.495147798461595, 71.97843424914676, 61.01254406157491, 41.88242119855138, 18.604541721968456, 14.504820823897322, 5.5396229334338125, 7.7538664825122305, 80.28803454662733, 63.146986271122444, 19.386882048579317, 43.261549146730026, 11.276055559048116, 69.7830676671197, 68.03581865806818, 17.395952230823763, 148.6982369642827, 8.854261630877218, 43.93027906853265, 10.361462682542392, 88.34460689075526, 26.34716755645717, 5.8745589744671785, 103.60824256957233, 16.328442168128248, 78.35875167108733, 40.57030315258273, 21.801682651188415, 8.4557706134732, 45.847786307180996, 23.365608738729023, 7.439328846159497, 65.53116250610177, 6.157848824229647, 15.063877796676046, 5.092123241829531, 41.775529701564594, 41.50301541984504, 8.603767886247486, 18.25196240372099, 18.8941049519922, 32.361377991514686, 29.058268320225288, 13.797654258245894, 52.02493961368507, 12.064436126616638, 85.15273262411216, 42.77483825235403, 48.574175654007995, 49.48023945040034, 114.43828141719214, 11.478452062347221, 10.088119857425362, 36.960593529362114, 54.313655354975396, 12.33704257743563, 59.45490795523777, 13.423564489786848, 31.60422833029354, 25.31052107789943, 14.363177353910535, 73.90600977361952, 87.28210928846954, 15.471703997850362, 19.764490871802348, 10.385239269200255, 30.493799404446992, 13.68412111874203, 22.989968147648476, 17.633546172175038, 44.14087054279589, 61.04510450450613, 10.456437977623006, 6.465233380983114, 158.36998864345287, 51.82274271828395, 11.303338856496502, 8.644184968823781, 13.310321897452354, 10.207492752012255, 10.858151182462802, 7.404339420022516, 49.069052817304865, 21.032114008930726, 16.829582163756918, 26.67738739845647, 54.739277332281524, 7.871972740554734, 17.024446938872554, 62.25193460610143, 23.55806003280399, 56.762105277839616, 31.714218443120735, 9.1082095127909, 14.523568160720847, 23.230177147093627, 14.854944774902, 86.60888249620317, 12.702286186577892, 36.109753275603445, 28.10619934069754, 7.91670658511566, 59.0497081013704, 46.976940865137884, 23.555349725131908, 15.397464347199756, 20.623126302032915, 44.62761673287052, 55.66360583736761, 13.950731108499658, 50.20232469537044, 80.79855555539146, 136.08215550777314, 51.45533248942717, 24.127557016351282, 6.596670411351589, 22.690066960306012, 17.689252884366734, 71.66354962580772, 16.551732147271622, 45.59407369519275, 37.19344578342209, 15.109313799765587, 25.910169665354342, 28.576821750724477, 6.798901720947303, 17.939416065236394, 25.022186209369433, 10.190630578859613, 50.83685157228666, 7.102765515146854, 7.102766071259521, 57.73806440663074, 8.340878021310974, 23.33781669545444, 133.18368531675517, 15.244203722239472, 33.2848893881835, 41.06881085983092, 88.17109300990357, 37.436033901314765, 18.383443556049354, 22.763008032145983, 21.313013999159267, 9.80783636542086, 23.91252888333569, 12.907580278353466, 103.4958770684922, 21.938630574647696, 11.43343214106119, 28.374930395332257, 23.535411074766856, 104.44660712767671, 104.25074015317253, 21.62242823066858, 40.54412792573663, 9.079020042005627, 13.629253302647895, 15.68912427654137, 178.90775233062305, 61.027435526118296, 5.792562641019876, 38.50095305037036, 14.219746289212491, 8.810176394188009, 77.28738057764461, 6.610011329571159, 82.21522313290876, 69.82738064849968, 16.241638144753708, 7.850406994164127, 31.293952576484703, 10.364432227145752, 60.573176032953505, 24.035291691358573, 56.97722950344897, 99.98406370705366, 72.8040757721244, 86.22453068928247, 59.97577071979002, 5.678995661220822, 26.30086568271107, 75.36465760652331, 28.43129254660296, 23.98338455367327, 46.37096833343554, 36.58960716918589, 20.863519751983212, 105.29713546286195, 24.148349470384932, 81.76901076401637, 11.22349217996687, 56.297473576014454, 124.30766155314306, 96.76149326583226, 60.91368913982329, 34.99361716515476, 42.85251179826308, 53.00884559448542, 13.109142833551054, 22.695140901532525, 6.165839435227959, 16.291157201046733, 28.31406796423029, 65.40992727811741, 28.606807681345888, 29.69809507190875, 46.59390521577545, 5.460850934969805, 10.51572426923241, 16.84326696022151, 13.879625939570898, 15.570385860348365, 45.23897355374859, 112.90287371913163, 29.30870661990725, 27.07039664374865, 11.464230414580504, 23.775499003072046, 76.2467853423988, 13.031979956017087, 50.28499336894776, 20.504051394236686, 20.194720590355946, 12.447642514752673, 15.651687934321526, 12.431896579789704, 37.33477195971196, 6.353738724111828, 10.485661888894931, 42.74928915022419, 33.83546862273448, 9.284580139729112, 84.19300929267163, 9.629225627885381, 57.49068914867937, 72.38908743304391, 12.574179969943902, 15.734888765657153, 29.796073562671996, 10.52787503679091, 15.637552019472253, 79.89424135587292, 22.953785014823257, 10.425097152437692, 104.96083001312645, 30.873254718744253, 14.6833106397124, 7.342183749819809, 16.600106202711387, 24.27630319781383, 189.56511861525664, 39.63821754208637, 27.78441141702619, 26.992409343812366, 43.230353810425484, 6.236393810436187, 5.952940035436955, 76.1128403489893, 18.585980084742044, 172.5024282106464, 109.7134301553065, 18.934668615912102, 30.210545992518544, 19.898409026952294, 14.283660693645157, 149.34772988162584, 13.397193277027752, 58.65267153658178, 16.786340161562386, 152.21514085761882, 111.24488708022903, 53.912518813359995, 151.22769380827899, 6.302520745161442, 15.223472173688872, 9.356686211350995, 162.08780686370955, 5.714868411297624, 32.8056039127792, 38.217024462956815, 18.29892288106101, 6.745062991248751, 7.753868693282706, 97.14027283846852, 5.860292009034519, 72.68153589760223, 11.071295455848691, 16.249577710188692, 69.64747676143192, 115.18154654017202, 86.42924132143166, 14.848696529180597, 8.109949103496009, 25.143929966517987, 54.1236970528717, 13.170200760563871, 48.492953647956604, 31.069158871432435, 17.005486872947262, 91.39732343981723, 7.958105844004958, 52.47539507367168, 79.9722547841172, 75.54805257544572, 24.550593778003957, 18.362951792341384, 25.536198533047617, 12.037944546382386, 32.875216186316706, 13.25894714370434, 59.84678176383022, 88.71156738422918, 11.59356342650408, 46.31890612496569, 5.224861133247168, 6.670215644454189, 22.990302140061722, 33.08101976617903, 61.20644339422917, 37.03239646336956, 23.21999681710199, 27.56565261485367, 14.71770076666693, 6.4197409107916625, 22.172996061473942, 13.641853481015048, 95.70666065346039, 13.399667236736407, 28.15492207475984, 18.849253660905035, 7.870722924375674, 45.97734583892469, 21.209049373310858, 55.031138309908464, 12.023842308868403, 75.0999867969133, 7.722630060171919, 29.64106055881442, 21.812704143449896, 63.832647510681554, 30.656508433334736, 13.383372571875825, 13.625091248769357, 20.376115060343828, 66.30039483334936, 23.61585536663995, 97.69503041093799, 6.8719194549600084, 34.022445559220834, 6.421126802004063, 25.632122297789948, 86.95369496242303, 5.440907572273257, 47.99279829863238, 155.4144516034238, 9.206241433536606, 12.269829054568229, 15.474165696512145, 108.45478902194031, 42.31354959780557, 69.06018100284575, 26.274036334923128, 314.13590441104554, 16.482499623456825, 20.176103911707774, 75.81850113866659, 61.725832360236105, 67.51816785349769, 9.310864955484483, 28.896268570534282, 10.166296106551968, 19.46419929773923, 13.453109502046674, 17.868692876954942, 29.15716812755061, 84.27693122366179, 78.80444485131255, 85.64481963768905, 19.84818574902814, 37.63118503862776, 11.455808599044273, 5.135120687673072, 26.13082472511173, 49.113860038357906, 15.552738097689854, 72.53525210979845, 62.99000343000726, 121.34448945564917, 49.31383599210443, 34.65272146224101, 15.837299932137597, 86.52716556602493, 33.71171079512246, 9.007690788633113, 89.22887776609633, 14.90727966820981, 5.390985015576865, 199.75504476165858, 9.746482452985155, 8.229401417333657, 17.61844097296113, 68.65109502966399, 49.74497756865584, 9.48379440540844, 68.18902206541415, 127.96723229825875, 18.796442408228664, 22.8272531428102, 42.73280938331375, 79.41415150332837, 28.882843513477198, 13.962829473273427, 15.376447743921348, 52.4479600686345, 44.70982416808063, 9.73603082413329, 27.208275234129424, 22.386127894146505, 12.001211113918208, 80.60651008124114, 6.53851197831961, 13.425020787340095, 19.09846731379288, 6.044803943578237, 9.198586118369025, 12.88784377784022, 44.48311954542655, 70.7512568736137, 6.749033933972858, 19.94060091460028, 33.84812536617918, 8.725478566655259, 9.956197190265524, 84.43107855880825, 12.028138661789669, 14.11743983295677, 50.506192928039624, 43.72687190239261, 6.855884151272999, 26.504193860621342, 91.529978245057, 12.36525138047085, 15.428202157963888, 18.339492584878517, 55.237194618362516, 16.160459640104065, 33.43567106998103, 17.361234689984954, 11.307910926495001, 19.394577773787596, 48.54235589089339, 24.39908209399102, 16.518975931635726, 30.364935702622127, 202.7137159729924, 9.37459909097821, 28.53500524774724, 73.49879037876914, 6.213853991945801, 31.548174285909035, 22.520587951650242, 25.43195846404506, 35.58241145028325, 6.633486935558907, 17.397682007860034, 24.448907718857775, 33.75826789943942, 28.60554394324837, 105.28764378038365, 38.35783939259052, 25.870089763130352, 13.297437340496634, 15.36212186476915, 18.530415755058804, 36.42762483768621, 86.28639208479018, 20.437567663891784, 22.87657034941141, 52.47113150079892, 84.6262757206659, 14.370657817775976, 104.2106760537495, 15.918179352301019, 5.72997634116034, 31.23862006691138, 6.811866180894897, 26.17769547926389, 20.130231291970052, 42.20182738806142, 25.425628809925414, 29.373175658673453, 9.302710279653578, 51.656873453856974, 38.62707700192672, 39.40377452598263, 31.10315291351141, 22.63920330125982, 58.24797301695003, 13.353182443939396, 32.17126239555565, 44.328198461209645, 8.188518662054864, 5.152334983022609, 97.69339924402601, 42.268642840594794, 27.553347772969733, 30.836258052458504, 96.37177038033154, 48.63888836657647, 42.50561074931903, 30.848189724440232, 79.19472801171857, 62.550242399565136, 66.83927440689557, 37.33607318624043, 54.64919317299071, 50.65915735386749, 103.44848894242836, 69.98455671888297, 13.315267301955675, 25.2390399607398, 68.3245253942479, 18.781457248456885, 45.714722816992, 62.32934162462447, 6.495271637982815, 11.820481789523095, 11.451536643884864, 25.442052378459607, 23.253818234299704, 23.79191557037755, 81.44566462255699, 14.902116115177868, 45.70897113162914, 8.191547851315256, 12.918431455254769, 6.179605306491011, 18.678896833417863, 28.162976357566116, 42.774568506025915, 52.41023696287106, 71.29723245549903, 5.927674216186719, 26.465008211526012, 68.99802442154183, 7.186337643974786, 5.257710013005243, 98.13019019294548, 6.109309310213806, 19.74173864576209, 15.300364550403799, 16.20757631873847, 18.607460214986318, 13.446773989449003, 42.75051124429586, 58.2808068627909, 109.51687669663156, 62.627122467578715, 35.93013003776248, 18.685805394114823, 12.116263966487649, 52.462235012628184, 11.871803939974804, 22.275829950031067, 15.14502852190209, 86.19820401095825, 27.978467067014247, 22.740225973007025, 22.95015290039308, 7.944128040488031, 15.085287188477082, 24.6267153265612, 30.194315953105004, 76.7888516204009, 17.01664557047151, 13.86728128747639, 46.74620224069137, 5.333923640824952, 102.89072293231878, 65.48714826371418, 12.422231772113847, 31.766358425589825, 44.26450651835018, 9.878954433569547, 11.805063613852592, 45.055452540803785, 28.521339941248115, 79.50306831880108, 7.8402244917573185, 8.403121439621763, 14.778690974148578, 80.22779558112244, 83.91611891093197, 15.540947851842333, 17.025598305079377, 89.90894774133056, 5.302325778295557, 31.383869715420385, 17.94866368769125, 17.284945864350327, 43.86454707278878, 8.028594049912089, 89.02907514620432, 15.431424230260262, 37.65287675225591, 23.053533485673345, 10.249564642903994, 13.782930206542538, 17.29426007942266, 19.907839880473855, 17.98987635742316, 28.970324355793355, 48.83214153487718, 30.557723239714516, 78.13645044689119, 10.994980356132606, 6.810447666360613, 87.00930590981079, 8.504438332899626, 86.913274047359, 58.23079084137602, 40.91906406631027, 39.736118180043086, 28.75565396232597, 65.81158736635443, 16.598013187048956, 39.28241270099137, 18.358944310452756, 33.526624070763226, 85.80889976575035, 66.732166721774, 29.56274915045375, 115.08300883008563, 11.472958322437098, 87.14108298876482, ...])
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);
([3872705.919153826, 4893721.875, 5029132.8125, 5053960.041122983, 5054000.274274836, 5054823.4375, 5054931.096924562, 5054964.736561483, 5058312.5, 5126035.9375, 5154031.932493738, 5154090.58402302, 5155316.806298826, 5155959.722128809, 5160394.213188728, 5161547.936883758, 5161721.875, 5162400.991049645, 5162734.856736076, 5163779.740019488, 5163829.714464772, 5163832.393586638, 5163850.1135248225, 5164745.3125, 5165107.434160491, 5165355.5797531195, 5165547.553966358, 5166029.926753195, 5166076.882986505, 5166109.571310311, 5166336.962203098, 5166819.137146693, 5166880.777136036, 5166938.246655442, 5167148.236121265, 5167190.112655412, 5167286.898005804, 5167617.1875, 5167824.471034394, 5167960.0425233375, 5168056.25, 5168787.202012546, 5168796.875, 5169064.0625, 5169787.302302814, 5169982.411930331, 5170790.229384445, 5175833.934819785, 5176410.791066973, 5180919.091796547, 5181773.668136084, 5201930.578673431, 5207262.018726069, 5216882.8125, 5218925.0, 5235627.250958226, 5249074.31496998, 5251013.007930021, 5251916.1314247, 5256441.109803426, 5256645.577426059, 5256871.549864826, 5257652.113672069, 5265964.0625, 5269081.941457092, 5286498.04744631, 5289097.728278934, 5298752.171378144, 5300954.457734683, 5304708.192275653, 5306329.6875, 5320104.6875, 5328553.036704968, 5329559.259925437, 5330226.763365185, 5337713.832089702, 5338214.553702403, 5338226.829999976, 5338775.0, 5338779.089362883, 5339600.57776286, 5339832.8125, 5340163.345421732, 5341855.652473683, 5344098.4375, 5344221.720906187, 5344345.3125, 5344493.263539245, 5345118.759498893, 5345322.813796286, 5345488.736493791, 5345586.926566596, 5345657.713791464, 5346635.729936654, 5348689.338832738, 5349017.1875, 5349054.865578986, 5349403.080857065, 5351043.75, 5351375.688194359, 5351421.328884915, 5351558.099216787, 5351677.605168164, 5352872.881508079, 5353386.718681466, 5353509.174824368, 5353649.811995512, 5353957.161921078, 5354656.650733276, 5355087.307095753, 5355392.1875, 5355541.478232716, 5355722.16467311, 5355793.75, 5355800.555702155, 5355857.47473269, 5356099.566100048, 5356105.595464361, 5356191.363139544, 5356899.659687193, 5357369.253290826, 5360133.537546318, 5360694.067861411, 5361341.91705189, 5362223.9014230855, 5362326.5625, 5363046.694688258, 5364710.633265107, 5373196.385439838, 5374928.125, 5376292.646558682, 5377010.397777588, 5380720.309343237, 5388650.6683704015, 5393476.5625, 5393716.672173154, 5407272.608921292, 5411046.875, 5418395.3125, 5427561.288685391, 5431118.612822833, 5432477.347947931, 5432973.996692994, 5433100.772788135, 5433729.465709576, 5434367.1875, 5434591.527240471, 5435718.727792201, 5435784.375, 5435831.188622944, 5436216.059001173, 5436658.513576752, 5438177.832130467, 5439017.181026706, 5439234.375, 5439340.212989844, 5440131.419675552, 5446354.6875, 5449450.805840545, 5452667.8312873375, 5457057.8125, 5457243.552877965, 5460046.224380529, 5462157.135961286, 5463466.632353219, 5464017.1875, 5464067.661192576, 5464445.546709061, 5464936.14761031, 5465018.712215339, 5465028.685607879, 5465401.412708017, 5465420.070469204, 5465635.371156307, 5465640.1665715175, 5466753.808505463, 5467650.26786975, 5468323.103973915, 5468523.4375, 5469692.400116031, 5470108.77821679, 5470122.611131591, 5470511.591322897, 5470537.634708077, 5471541.526778926, 5473104.399840112, 5473296.875, 5473878.12173991, 5474941.185652941, 5476704.272081839, 5477027.48767692, 5477415.004867776, 5477652.701757249, 5477845.756423516, 5478069.916617849, 5478619.032554002, 5478877.774191621, 5484094.681305316, 5484102.943447505, 5484450.0, 5485197.530729555, 5486084.839759632, 5489241.7274324205, 5490041.020746881, 5491060.25725193, 5491855.219780608, 5492376.5625, 5493481.972532143, 5493553.00295203, 5494357.157593128, 5494801.5625, 5495478.399772712, 5495492.1875, 5495496.804762751, 5495562.051265003, 5495703.808862932, 5495767.4538238365, 5495957.8125, 5495958.295105932, 5496175.575368182, 5496281.049910968, 5496293.185831501, 5496617.1875, 5496785.620916539, 5496846.655495919, 5496986.651650988, 5497367.852109296, 5497820.3125, 5497978.968014742, 5497984.3301836, 5498887.299048351, 5499005.6901660925, 5499033.8006649325, 5499313.386764424, 5499779.421899058, 5499964.0625, 5500146.620639685, 5500226.649438755, 5500286.59806391, 5500314.0625, 5500472.801225952, 5500544.188358244, 5500618.686067693, 5500648.340038469, 5500804.6875, 5501154.441440951, 5501306.25, 5501497.254213684, 5501529.6875, 5501877.305607969, 5502133.768126049, 5502220.3125, 5502401.402818752, 5502546.62745074, 5502677.270415961, 5503050.730077406, 5503165.926483753, 5503755.212576172, 5504398.4375, 5504431.25, 5505214.012657563, 5505422.591655617, 5505581.114240218, 5505981.25, 5506042.506052263, 5506054.5757524725, 5506155.675832264, 5506435.9375, 5506489.338846193, 5506575.550513404, 5506638.765759322, 5506648.439336094, 5506679.808644633, 5506883.182630576, 5506981.306434546, 5506994.636574481, 5507145.3125, 5507326.5625, 5507351.5625, 5507451.205238447, 5507520.71515928, 5507602.772823506, 5507627.920195037, 5507693.033788675, 5507787.39357552, 5507845.736963812, 5507871.820825361, 5507898.791094338, 5507903.31948526, 5507983.280437521, 5507991.809165342, 5508026.5625, 5508060.883829919, 5508101.05974393, 5508107.8125, 5508180.485698647, 5508210.693980995, 5508279.6875, 5508323.277316961, 5508449.767258348, 5508455.872670628, 5508465.625, 5508484.679186108, 5508513.718702345, 5508550.216519713, 5508557.8125, 5508602.642099237, 5508678.285490653, 5508725.0, 5508756.112185205, 5508770.80025513, 5508772.992363588, 5508781.25, 5508783.379434827, 5508797.602845696, 5508799.107914273, 5508830.577455965, 5508927.84367832, 5508950.0, 5509013.374865101, 5509030.218632217, 5509053.693751039, 5509058.210418963, 5509118.457879803, 5509129.608540906, 5509219.821245024, 5509238.58423067, 5509270.3125, 5509291.494166717, 5509320.3125, 5509326.569048462, 5509362.339104328, 5509411.752494894, 5509434.915914164, 5509435.09574237, 5509445.72187854, 5509494.404997736, 5509515.667063988, 5509518.75, 5509531.1520572975, 5509553.033237735, 5509569.990357683, 5509594.161019368, 5509594.491274567, 5509641.171926069, 5509666.108017429, 5509775.0, 5509779.749822949, 5509803.125, 5509816.012487525, 5509820.16790037, 5509846.84842261, 5509856.0311484365, 5509857.8125, 5509930.255628282, 5509938.18017806, 5510010.635963158, 5510069.104635937, 5510076.0705097625, 5510151.3821746195, 5510152.646013991, 5510153.466915257, 5510221.875, 5510251.5625, 5510294.065169762, 5510296.875, 5510328.125, 5510331.25, 5510350.96180529, 5510398.158557175, 5510417.321569553, 5510445.710610296, 5510640.625, 5510826.5625, 5510911.759314173, 5510946.244706114, 5511039.155380068, 5511060.9375, 5511190.625, 5511211.460426208, 5511260.9375, 5511357.188611054, 5511372.776556575, 5511515.072436836, 5511530.202329305, 5511570.651356027, 5511575.786481651, 5511597.4576408295, 5511607.225783667, 5511657.8125, 5511690.625, 5511745.913051754, 5511792.4943059515, 5511860.695936896, 5511905.280754676, 5511999.522877439, 5512052.214956335, 5512056.895041931, 5512085.752395389, 5512105.925534822, 5512211.984224233, 5512245.3125, 5512344.305228512, 5512425.661915391, 5512627.317949275, 5512657.8125, 5512675.0, 5512813.7261140505, 5512970.3125, 5513019.276649449, 5513020.3125, 5513059.386712382, 5513185.9375, 5513269.931307345, 5513398.4375, 5513597.088375901, 5513916.402193181, 5513954.272813518, 5514106.25, 5514136.59424796, 5514160.9375, 5514276.9890734, 5514430.4115787335, 5514728.532224951, 5514735.822798347, 5515020.253996084, 5515043.390906701, 5515139.194979557, 5515158.682299759, 5515210.4041874865, 5515721.875, 5515831.485323428, 5515897.273515852, 5515947.438298158, 5515973.4375, 5516092.598119889, 5516166.710938748, 5516171.734132114, 5516249.171934988, 5516503.416125195, 5516571.693038317, 5516834.995103789, 5516883.810431711, 5516905.56900139, 5517135.757918903, 5517172.85192358, 5517203.125, 5517297.890012361, 5517435.834384244, 5517495.211602495, 5517621.45815106, 5518056.936537544, 5518077.019269634, 5518153.532804193, 5518443.456812975, 5518453.125, 5518543.75, 5518590.348693026, 5518604.573349619, 5518971.534149502, 5519346.852101844, 5519639.0625, 5519689.215068017, 5524131.25, 5527495.290994882, 5527500.7908134, 5528457.576602526, 5528685.305102935, 5529560.62204796, 5529864.177193987, 5531473.602260446, 5533112.5, 5534656.25, 5534793.4632701175, 5535318.75, 5535580.4894057065, 5535601.58661334, 5535928.125, 5535938.79143785, 5536025.665141612, 5536347.848839983, 5536777.135055923, 5536816.025637395, 5536900.366772194, 5536998.387261214, 5537036.924326515, 5537054.040412662, 5537135.789632356, 5537137.242489335, 5537245.487244578, 5537430.3006951315, 5537469.308977866, 5537535.242025201, 5537612.5, 5537854.615934619, 5537895.240936764, 5537981.25, 5537992.288791018, 5538123.104471108, 5538416.665395262, 5538630.938866856, 5538841.7767963605, 5539119.509491644, 5539409.375, 5539521.6651149215, 5539749.127365798, 5540163.681028958, 5540447.14100216, 5540491.13939173, 5542943.462561059, 5543355.589746642, 5544079.6875, 5545007.35603186, 5545025.760278738, 5545115.617372537, 5545238.745453481, 5545593.584606252, 5545689.0625, 5545827.637867523, 5546242.1875, 5546768.435634361, 5546813.669597282, 5546843.933228704, 5546979.92225865, 5547005.864560409, 5547060.643781761, 5547374.765658337, 5547924.796808168, 5548114.936751276, 5548312.5, 5548322.6167425085, 5548604.6875, 5548687.6384366285, 5548709.678853315, 5548719.385318723, 5548973.4375, 5549043.199849418, 5549047.642881783, 5549244.160608061, 5549268.75, 5549692.1875, 5549712.5, 5549831.25, 5549904.032871733, 5550135.492257623, 5550599.345629275, 5551459.10786998, 5551658.575276675, 5552693.467997109, 5554846.875, 5555641.799066852, 5557275.9969833465, 5557774.924958399, 5562395.564813203, 5563535.664798871, 5564143.810428225, 5564787.997041257, 5566723.587762113, 5566824.493850901, 5567385.023577553, 5567388.741058043, 5569053.142089055, 5570146.149123144, 5572112.499867696, 5592592.307294455, 5593680.403298682, 5594828.439119864, 5597648.071433579, 5599448.828404683, 5600182.2782538235, 5603170.3125, 5607787.5, 5607909.353650385, 5609712.069696953, 5612114.4855798725, 5614421.56540268, 5615178.766666619, 5616618.240093553, 5616890.625, 5620731.25, 5621142.109435142, 5621436.142632631, 5622884.076935695, 5622896.875, 5622971.263997123, 5623691.947763742, 5625048.173628486, 5625216.54668721, 5625525.707036946, 5625770.487129494, 5627161.637461271, 5628160.938162958, 5631103.7805812815, 5631279.233852215, 5631703.911426679, 5631939.797785237, 5633539.006600592, 5634380.996838528, 5634612.832401609, 5634659.375, 5634728.789225149, 5635032.012916356, 5636240.041886736, 5636289.0625, 5636344.891568217, 5636823.888528161, 5636876.681710149, 5637454.809937432, 5637640.123621049, 5638782.701341728, 5640045.3125, 5640345.2430680925, 5640819.528038165, 5641561.3138005175, 5641645.8188075265, 5641649.838735958, 5642112.654597454, 5642115.959905633, 5642281.167467316, 5642591.0747187985, 5642976.314729725, 5644037.654114205, 5645400.0, 5645973.727738915, 5646393.75, 5646557.8125, 5647164.823581424, 5647519.080581968, 5647785.242028051, 5648029.503491405, 5648922.734979753, 5649088.588273876, 5649600.686168932, 5649732.181241814, 5649984.620077774, 5650588.751859591, 5650989.0625, 5651085.95570863, 5652637.774553082, 5652856.322060336, 5653559.4047504775, 5653976.094164798, 5654476.689186809, 5654868.75, 5655051.949704421, 5655216.728253099, 5655671.78190947, 5656637.898115882, 5659071.907458738, 5668283.4193854015, 5669739.340794169, 5670599.963607482, 5672039.368005132, 5676878.303625588, 5677638.447907994, 5678518.75, 5678886.795658914, 5679644.962859755, 5680061.240099814, 5680085.9375, 5680222.879592621, 5680225.0, 5680679.6875, 5681212.953289221, 5681356.525271134, 5681774.32252118, 5681801.5625, 5681917.1875, 5681984.375, 5682813.822639823, 5682948.851356869, 5683085.213706756, 5683220.82601563, 5683421.875, 5683461.975316066, 5683475.072871161, 5683623.553363861, 5683859.6539086355, 5683967.441165117, 5684043.008707702, 5684068.264030384, 5684506.899683226, 5684551.83639134, 5684644.497360339, 5684667.87038093, 5684879.344782099, 5685028.689355456, 5685028.931183801, 5685046.431467484, 5685322.883046022, 5685390.236396808, 5687720.3125, 5689335.464162816, 5689478.106034234, 5690458.306650842, 5690555.371086284, 5692020.3125, 5692401.268168112, 5693178.125, 5693981.756487197, 5694614.0625, 5694887.818463581, 5700495.3125, 5701718.28145286, 5701984.375, 5702497.919852534, 5704068.508153641, 5704099.605674512, 5704633.755229913, 5704687.5, 5705046.564366361, 5706254.544067712, 5706508.332317058, 5706563.476887664, 5706619.878382991, 5706873.379512424, 5707050.900984641, 5707140.129838438, 5707220.3125, 5707464.0625, 5707846.72317269, 5708160.00050148, 5708800.020356374, 5708945.861757818, 5709264.0261465795, 5709264.919548236, 5709488.93731836, 5709638.594775944, 5709690.978003301, 5709843.107000308, 5710235.327232225, 5710342.1875, 5710392.1875, 5710764.038110126, 5710906.25, 5710953.970986412, 5710993.159146221, 5711178.527394005, 5711186.539358439, 5711276.218814451, 5711288.923966338, 5711347.289092041, 5711402.736426525, 5711568.067619201, 5711632.8125, 5711670.512735582, 5711687.714852274, 5711849.865979941, 5712001.5625, 5712020.464124122, 5712185.400119165, 5712215.437139482, 5712245.3125, 5712543.795526426, 5712629.307067986, 5712656.931998002, 5712681.25, 5712796.062068493, 5712813.653130519, 5712958.4608834125, 5713093.740990343, 5713110.740210299, 5713196.772419849, 5713206.703231903, 5713224.890291594, 5713341.402352765, 5713448.4375, 5713636.384647861, 5713667.362390311, 5713754.058730379, 5713793.005982122, 5713847.616759485, 5713852.749092729, 5713918.75, 5713920.3125, 5713953.125, 5713992.630223328, 5714018.859615603, 5714034.375, 5714042.1875, 5714059.817674789, 5714089.079911703, 5714175.330472575, 5714405.182653951, 5714454.669467388, 5714472.195365216, 5714483.910744921, 5714502.346009557, 5714515.19811317, 5714523.276132752, 5714550.453114578, 5714589.0625, 5714600.0, 5714645.239572294, 5714685.750804397, 5714731.25, 5714786.684473337, 5714830.344264366, 5715040.625, 5715044.258631192, 5715079.453080134, 5715134.375, 5715142.1875, 5715169.19575016, 5715299.6848706165, 5715412.994739161, 5715447.544705919, 5715515.747086716, 5715550.67516992, 5715554.6875, 5715584.176984096, 5715624.690438736, 5715630.2044036705, 5715718.862308946, 5715982.07281615, 5715995.3125, 5715998.534788186, 5716006.23553969, 5716015.330653545, 5716132.8125, 5716162.550647796, 5716435.9375, 5716496.875, 5716516.753284124, 5716534.375, 5716537.9056645045, 5716574.8211271735, 5716587.5, 5716591.499374402, 5716595.83572544, 5716607.565259586, 5716616.348376967, 5716720.300041387, 5716795.3125, 5716810.080713647, 5716882.662086617, 5716901.0520208115, 5716968.856142849, 5716990.0658728415, 5716998.725508856, 5717082.732134705, 5717090.345077576, 5717090.474822602, 5717171.875, 5717189.0504186945, 5717296.716709975, 5717300.0, 5717327.124199437, 5717392.54624519, 5717459.657432212, 5717461.17499928, 5717521.545647137, 5717558.726589647, 5717690.2464028625, 5717731.4474780895, 5717800.0, 5717803.090870205, 5717885.694755635, 5717901.5625, 5718070.001473633, 5718141.161014156, 5718154.643455925, 5718179.6875, 5718180.759878447, 5718207.729672016, 5718212.5, 5718241.997349407, 5718299.431732995, 5718306.7861772375, 5718335.626554364, 5718376.511434531, 5718406.004075347, 5718449.145257293, 5718473.4375, 5718512.298106912, 5718537.259456554, 5718546.875, 5718607.653869109, 5718616.987709608, 5718629.6875, 5718683.048091838, 5718715.625, 5718772.459669667, 5718943.75, 5719066.683559657, 5719077.933217558, 5719171.875, 5719241.364642568, 5719485.556066343, 5719491.378360459, 5719503.176986957, 5719522.277189103, 5719659.572747129, 5719678.613057472, 5719891.847575779, 5719915.328216534, 5719979.337617946, 5720014.229510535, 5720043.75, 5720351.3783682585, 5720632.15659952, 5720643.023756477, 5720806.975035369, 5721160.429205501, 5721435.813818367, 5721713.463085025, 5722043.250609587, 5722551.426797458, 5722756.915014492, 5723134.375, 5723317.428717354, 5723802.005310889, 5724025.0, 5724062.701520431, 5724228.991975063, 5724249.439878066, 5724250.29674172, 5726382.040928043, 5730649.543497024, 5730877.236049447, 5737393.438482402, 5738343.063835233, 5740103.125, 5741062.804343843, 5741171.663420413, 5741978.677085644, 5742196.875, 5742805.116541922, 5744256.372428046, 5745260.98989022, 5745271.875, 5746433.949213748, 5747157.466576418, 5747635.572129113, 5748080.5409551775, 5748689.707829004, 5749179.453116207, 5749229.413209322, 5749871.646413598, 5750841.730815845, 5753091.8738978775, 5753798.4375, 5754587.264720504, 5754684.375, 5755117.5640183855, 5755822.758368184, 5757040.299541236, 5757218.75, 5757367.771090423, 5757761.331549904, 5758698.4375, 5758736.860534556, 5759922.809229609, 5759975.610916071, 5760275.214070788, 5760370.269116616, 5760518.75, 5760842.1875, 5760854.134907547, 5761020.76948065, 5761051.534969029, 5761339.422099097, 5761785.9375, 5761825.287492614, 5761930.191056205, 5762085.9375, 5762194.790562732, 5762229.844654332, 5763012.6228592815, 5763187.5, 5763328.311705797, 5764152.479760161, 5764233.841996103, 5764456.755194239, 5764640.24139384, 5764642.808711957, 5764884.021141263, 5765545.3125, 5765870.3125, 5765911.530283647, 5765946.788393138, 5766014.293164979, 5766030.398262833, 5766211.327944531, 5766387.247636033, 5766526.158275754, 5766778.779671134, 5766881.900536308, 5766954.184713775, 5767262.273919248, 5767267.563389808, 5767464.801008072, 5767582.64904405, 5767606.25, 5767635.9375, 5767654.312893017, 5767660.510696475, 5767914.0625, 5767926.772695468, 5768067.304664298, ...], [37.14634287091108, 52.893737298825265, 57.04608074027193, 12.35743163836328, 44.75817357693549, 63.50646294163696, 8.207253999099544, 8.678388239998773, 45.93244775121037, 51.762564012171715, 5.081521029068689, 17.052108313985435, 61.15896699703893, 16.453199862451257, 40.69319487488225, 13.324358609659011, 61.87457278601862, 42.52955170357508, 17.162137038056134, 95.18465654435595, 7.613019582985501, 10.530498375998288, 5.82242815619493, 79.1363717694869, 20.5007133647306, 25.320611525989943, 80.40431994910602, 56.28064546965686, 11.668540742959811, 75.06505775723737, 8.91460965161545, 93.42495918830656, 54.12603544762707, 18.83121913766647, 9.166739370963365, 59.49890067491435, 20.532613561319465, 52.121197928053164, 8.02534981549428, 18.288862229126917, 51.46470346782561, 19.606822527893513, 74.81128024767321, 29.551484262546246, 25.15182503734604, 203.76478442635442, 39.85558508830242, 19.737544142713674, 61.268537103849916, 7.214294739940848, 15.53805193370372, 10.218813188096844, 38.36840680898287, 51.73713124930363, 45.69468531120482, 15.251870557283628, 52.13753433857579, 7.7978936543923405, 13.588288758002644, 66.49881735036283, 10.5183369979698, 49.376328693187446, 53.44720547428873, 52.4521289351559, 18.44856934862156, 32.01762437871322, 25.677330011295815, 17.91239785165759, 6.451666756647847, 7.746624917835027, 37.37979676801804, 93.49493239639418, 19.654699744843462, 16.297623239572296, 28.50628654782856, 43.82298018015471, 11.99335162100265, 16.069544093360264, 46.004883123421884, 13.065074154855711, 25.216374393123274, 61.944365460794565, 7.362958420078185, 30.252001714329175, 33.52792663704064, 22.254400759609666, 38.53890129315313, 27.244202555426607, 43.31660311430086, 35.8220137050709, 29.10656854321389, 20.79055914220991, 9.249311240214084, 5.452927658920625, 9.576524262028867, 53.09926295508663, 12.356552511183077, 6.083520738312291, 46.60322246732104, 7.314924093307446, 21.045090149972502, 7.198917135836217, 13.272057497440075, 66.9083435674678, 100.40324948431986, 51.10444457439381, 25.29513070516852, 20.111920249059306, 9.694904249078485, 74.27307836832549, 59.00802412557243, 8.795964852109078, 28.341434746958964, 48.95282417892573, 8.604060216424916, 23.280013648511954, 22.178838401053984, 7.968333522658626, 24.639843353859078, 13.043956325772529, 12.017446003968194, 18.67897316337673, 37.06354707318569, 14.00200771765145, 11.939530626809747, 55.88229146276699, 90.4670806967084, 5.2817812585106925, 108.1517814041841, 50.312924885751116, 17.036947836908137, 13.218556506953, 28.46280114578209, 28.318340626830665, 76.4411654616668, 21.34155725873462, 18.741112632655046, 100.37611570580042, 57.924112496992976, 140.69446167711095, 29.104649351079082, 28.84808220299312, 27.69056063943701, 10.08318535048282, 24.80395671849593, 47.55433056301567, 60.78046007990402, 7.115626113220634, 39.36013734040601, 86.15023337561776, 29.67218839704832, 18.51379504890131, 23.842252821077892, 5.706346153593482, 51.91874419838396, 22.081391443535797, 152.31255673422478, 91.64548419163732, 52.84501881801775, 48.965120127254345, 61.23065812718172, 16.835261572194963, 45.805047398317896, 8.818133387448894, 20.960072845655212, 31.129464483823902, 8.554034304293426, 15.916254624629397, 22.517743393998227, 6.4811844218278525, 13.312865476454716, 21.160261115289114, 29.965417133151245, 8.894421306611141, 21.918070319048642, 45.333727527772666, 84.07624368334704, 120.4818587616241, 50.26294065976847, 15.818952078312694, 20.579071457189045, 18.7095984164965, 96.85011247887948, 23.647307144272858, 20.02684216492197, 13.947818638529684, 33.87256417613412, 28.460762999275502, 135.50445405540654, 6.4238846046413896, 20.22451863716734, 28.687690837645427, 10.524874202443744, 35.53452915690427, 13.620541782071584, 29.171910930235484, 23.122728960955126, 5.886259677995574, 10.855310755378339, 31.76460404782504, 12.334833963724572, 70.59623750665575, 16.69992960532552, 16.10849004118772, 135.71118093630787, 8.58965239778252, 46.766918606386014, 5.869448359310955, 34.286943552595126, 41.23298845334054, 79.6043593024291, 9.575072934154209, 164.03837087396968, 27.20833216207746, 94.27425403732664, 65.88442631677903, 7.702488937723783, 40.23751185589677, 11.97630908819737, 34.139944617949965, 44.903082182418835, 10.347218964988251, 43.09880126244072, 23.541197257782983, 6.0655663486147535, 5.568774343476558, 12.354132599186405, 75.84491485856519, 53.52138329550102, 14.773398101880986, 90.50218877993586, 13.16510874562412, 46.97234729168308, 71.3471232189793, 37.43376129479621, 79.51060773835766, 14.053213490469714, 15.283567236128627, 16.15463040303993, 71.61520566158087, 12.967700860245477, 7.2416561080018935, 27.32065880061493, 22.282110343549448, 74.35367208396582, 35.20102880644046, 54.34226919610834, 16.61497254146352, 34.59458172017839, 16.05161958456619, 20.48934903363297, 62.83941228447927, 113.33922054791124, 14.075056207764346, 7.881052649404547, 49.61787776505652, 109.5515991543109, 16.99693878227439, 37.0572951463564, 55.741597497729174, 6.479306274326522, 5.146119666242441, 32.80889444769069, 62.494208931476535, 6.828814272677728, 65.49476288851889, 123.29237517967744, 37.064972025714916, 43.148467975160806, 5.742713410148127, 6.705676136077308, 47.070437654398916, 37.08197678853502, 16.309816094247235, 15.161064680567614, 16.59603788525643, 64.65099205532252, 81.9553527621038, 85.05871816576051, 10.611712136640165, 16.735944268024358, 8.108725548956933, 29.037878927651608, 10.166644286247232, 34.20998181158172, 16.850607668831778, 27.496689675607463, 8.48285491681208, 6.292086910011101, 61.40553812974635, 13.67208511388877, 73.71673364899311, 27.50586539128788, 6.037332215077244, 58.870388480864335, 90.64150044819915, 11.885935672707063, 40.686239959191745, 51.92208849261038, 10.782412949858108, 13.67505534106414, 62.617064166971964, 7.203776534052865, 134.7374503332242, 52.61744843220418, 69.98168444565144, 31.69232065500409, 34.02570004958207, 123.85205320683013, 14.44101413438493, 18.005199642135366, 38.83325384347613, 101.04026169537931, 9.861668443782127, 7.88955937387916, 18.30796089109192, 8.820854264806346, 8.14320908483325, 47.15634656626668, 6.951710027333259, 7.807341058048594, 8.612129687931729, 47.43384247213881, 23.85191978360047, 27.054744526587122, 25.125564325158898, 12.752525891183907, 70.68002391173546, 6.632556044848563, 170.34328251164268, 14.966527975907123, 32.62236848713452, 36.29500545862158, 12.093416018499095, 18.907870195895967, 21.84331282334991, 100.98763983668641, 6.493705407305184, 107.61727688331554, 67.92533372929468, 26.832986565452092, 19.19693846370167, 118.72377828380587, 52.64884527089033, 30.092414268516663, 71.83440370014002, 80.88275399953918, 6.7760129736727635, 57.66473668350753, 16.657392452498996, 14.41759125957876, 14.841167331209997, 6.45332298481143, 70.74210412460155, 28.842959826029578, 18.458213192996045, 23.731130454452945, 19.357334255887025, 16.092272155500595, 18.349151755999188, 82.62960636016949, 114.58537515754851, 36.42954980968091, 66.51989637272173, 22.495147798461595, 71.97843424914676, 61.01254406157491, 41.88242119855138, 18.604541721968456, 14.504820823897322, 5.5396229334338125, 7.7538664825122305, 80.28803454662733, 63.146986271122444, 19.386882048579317, 43.261549146730026, 11.276055559048116, 69.7830676671197, 68.03581865806818, 17.395952230823763, 148.6982369642827, 8.854261630877218, 43.93027906853265, 10.361462682542392, 88.34460689075526, 26.34716755645717, 5.8745589744671785, 103.60824256957233, 16.328442168128248, 78.35875167108733, 40.57030315258273, 21.801682651188415, 8.4557706134732, 45.847786307180996, 23.365608738729023, 7.439328846159497, 65.53116250610177, 6.157848824229647, 15.063877796676046, 5.092123241829531, 41.775529701564594, 41.50301541984504, 8.603767886247486, 18.25196240372099, 18.8941049519922, 32.361377991514686, 29.058268320225288, 13.797654258245894, 52.02493961368507, 12.064436126616638, 85.15273262411216, 42.77483825235403, 48.574175654007995, 49.48023945040034, 114.43828141719214, 11.478452062347221, 10.088119857425362, 36.960593529362114, 54.313655354975396, 12.33704257743563, 59.45490795523777, 13.423564489786848, 31.60422833029354, 25.31052107789943, 14.363177353910535, 73.90600977361952, 87.28210928846954, 15.471703997850362, 19.764490871802348, 10.385239269200255, 30.493799404446992, 13.68412111874203, 22.989968147648476, 17.633546172175038, 44.14087054279589, 61.04510450450613, 10.456437977623006, 6.465233380983114, 158.36998864345287, 51.82274271828395, 11.303338856496502, 8.644184968823781, 13.310321897452354, 10.207492752012255, 10.858151182462802, 7.404339420022516, 49.069052817304865, 21.032114008930726, 16.829582163756918, 26.67738739845647, 54.739277332281524, 7.871972740554734, 17.024446938872554, 62.25193460610143, 23.55806003280399, 56.762105277839616, 31.714218443120735, 9.1082095127909, 14.523568160720847, 23.230177147093627, 14.854944774902, 86.60888249620317, 12.702286186577892, 36.109753275603445, 28.10619934069754, 7.91670658511566, 59.0497081013704, 46.976940865137884, 23.555349725131908, 15.397464347199756, 20.623126302032915, 44.62761673287052, 55.66360583736761, 13.950731108499658, 50.20232469537044, 80.79855555539146, 136.08215550777314, 51.45533248942717, 24.127557016351282, 6.596670411351589, 22.690066960306012, 17.689252884366734, 71.66354962580772, 16.551732147271622, 45.59407369519275, 37.19344578342209, 15.109313799765587, 25.910169665354342, 28.576821750724477, 6.798901720947303, 17.939416065236394, 25.022186209369433, 10.190630578859613, 50.83685157228666, 7.102765515146854, 7.102766071259521, 57.73806440663074, 8.340878021310974, 23.33781669545444, 133.18368531675517, 15.244203722239472, 33.2848893881835, 41.06881085983092, 88.17109300990357, 37.436033901314765, 18.383443556049354, 22.763008032145983, 21.313013999159267, 9.80783636542086, 23.91252888333569, 12.907580278353466, 103.4958770684922, 21.938630574647696, 11.43343214106119, 28.374930395332257, 23.535411074766856, 104.44660712767671, 104.25074015317253, 21.62242823066858, 40.54412792573663, 9.079020042005627, 13.629253302647895, 15.68912427654137, 178.90775233062305, 61.027435526118296, 5.792562641019876, 38.50095305037036, 14.219746289212491, 8.810176394188009, 77.28738057764461, 6.610011329571159, 82.21522313290876, 69.82738064849968, 16.241638144753708, 7.850406994164127, 31.293952576484703, 10.364432227145752, 60.573176032953505, 24.035291691358573, 56.97722950344897, 99.98406370705366, 72.8040757721244, 86.22453068928247, 59.97577071979002, 5.678995661220822, 26.30086568271107, 75.36465760652331, 28.43129254660296, 23.98338455367327, 46.37096833343554, 36.58960716918589, 20.863519751983212, 105.29713546286195, 24.148349470384932, 81.76901076401637, 11.22349217996687, 56.297473576014454, 124.30766155314306, 96.76149326583226, 60.91368913982329, 34.99361716515476, 42.85251179826308, 53.00884559448542, 13.109142833551054, 22.695140901532525, 6.165839435227959, 16.291157201046733, 28.31406796423029, 65.40992727811741, 28.606807681345888, 29.69809507190875, 46.59390521577545, 5.460850934969805, 10.51572426923241, 16.84326696022151, 13.879625939570898, 15.570385860348365, 45.23897355374859, 112.90287371913163, 29.30870661990725, 27.07039664374865, 11.464230414580504, 23.775499003072046, 76.2467853423988, 13.031979956017087, 50.28499336894776, 20.504051394236686, 20.194720590355946, 12.447642514752673, 15.651687934321526, 12.431896579789704, 37.33477195971196, 6.353738724111828, 10.485661888894931, 42.74928915022419, 33.83546862273448, 9.284580139729112, 84.19300929267163, 9.629225627885381, 57.49068914867937, 72.38908743304391, 12.574179969943902, 15.734888765657153, 29.796073562671996, 10.52787503679091, 15.637552019472253, 79.89424135587292, 22.953785014823257, 10.425097152437692, 104.96083001312645, 30.873254718744253, 14.6833106397124, 7.342183749819809, 16.600106202711387, 24.27630319781383, 189.56511861525664, 39.63821754208637, 27.78441141702619, 26.992409343812366, 43.230353810425484, 6.236393810436187, 5.952940035436955, 76.1128403489893, 18.585980084742044, 172.5024282106464, 109.7134301553065, 18.934668615912102, 30.210545992518544, 19.898409026952294, 14.283660693645157, 149.34772988162584, 13.397193277027752, 58.65267153658178, 16.786340161562386, 152.21514085761882, 111.24488708022903, 53.912518813359995, 151.22769380827899, 6.302520745161442, 15.223472173688872, 9.356686211350995, 162.08780686370955, 5.714868411297624, 32.8056039127792, 38.217024462956815, 18.29892288106101, 6.745062991248751, 7.753868693282706, 97.14027283846852, 5.860292009034519, 72.68153589760223, 11.071295455848691, 16.249577710188692, 69.64747676143192, 115.18154654017202, 86.42924132143166, 14.848696529180597, 8.109949103496009, 25.143929966517987, 54.1236970528717, 13.170200760563871, 48.492953647956604, 31.069158871432435, 17.005486872947262, 91.39732343981723, 7.958105844004958, 52.47539507367168, 79.9722547841172, 75.54805257544572, 24.550593778003957, 18.362951792341384, 25.536198533047617, 12.037944546382386, 32.875216186316706, 13.25894714370434, 59.84678176383022, 88.71156738422918, 11.59356342650408, 46.31890612496569, 5.224861133247168, 6.670215644454189, 22.990302140061722, 33.08101976617903, 61.20644339422917, 37.03239646336956, 23.21999681710199, 27.56565261485367, 14.71770076666693, 6.4197409107916625, 22.172996061473942, 13.641853481015048, 95.70666065346039, 13.399667236736407, 28.15492207475984, 18.849253660905035, 7.870722924375674, 45.97734583892469, 21.209049373310858, 55.031138309908464, 12.023842308868403, 75.0999867969133, 7.722630060171919, 29.64106055881442, 21.812704143449896, 63.832647510681554, 30.656508433334736, 13.383372571875825, 13.625091248769357, 20.376115060343828, 66.30039483334936, 23.61585536663995, 97.69503041093799, 6.8719194549600084, 34.022445559220834, 6.421126802004063, 25.632122297789948, 86.95369496242303, 5.440907572273257, 47.99279829863238, 155.4144516034238, 9.206241433536606, 12.269829054568229, 15.474165696512145, 108.45478902194031, 42.31354959780557, 69.06018100284575, 26.274036334923128, 314.13590441104554, 16.482499623456825, 20.176103911707774, 75.81850113866659, 61.725832360236105, 67.51816785349769, 9.310864955484483, 28.896268570534282, 10.166296106551968, 19.46419929773923, 13.453109502046674, 17.868692876954942, 29.15716812755061, 84.27693122366179, 78.80444485131255, 85.64481963768905, 19.84818574902814, 37.63118503862776, 11.455808599044273, 5.135120687673072, 26.13082472511173, 49.113860038357906, 15.552738097689854, 72.53525210979845, 62.99000343000726, 121.34448945564917, 49.31383599210443, 34.65272146224101, 15.837299932137597, 86.52716556602493, 33.71171079512246, 9.007690788633113, 89.22887776609633, 14.90727966820981, 5.390985015576865, 199.75504476165858, 9.746482452985155, 8.229401417333657, 17.61844097296113, 68.65109502966399, 49.74497756865584, 9.48379440540844, 68.18902206541415, 127.96723229825875, 18.796442408228664, 22.8272531428102, 42.73280938331375, 79.41415150332837, 28.882843513477198, 13.962829473273427, 15.376447743921348, 52.4479600686345, 44.70982416808063, 9.73603082413329, 27.208275234129424, 22.386127894146505, 12.001211113918208, 80.60651008124114, 6.53851197831961, 13.425020787340095, 19.09846731379288, 6.044803943578237, 9.198586118369025, 12.88784377784022, 44.48311954542655, 70.7512568736137, 6.749033933972858, 19.94060091460028, 33.84812536617918, 8.725478566655259, 9.956197190265524, 84.43107855880825, 12.028138661789669, 14.11743983295677, 50.506192928039624, 43.72687190239261, 6.855884151272999, 26.504193860621342, 91.529978245057, 12.36525138047085, 15.428202157963888, 18.339492584878517, 55.237194618362516, 16.160459640104065, 33.43567106998103, 17.361234689984954, 11.307910926495001, 19.394577773787596, 48.54235589089339, 24.39908209399102, 16.518975931635726, 30.364935702622127, 202.7137159729924, 9.37459909097821, 28.53500524774724, 73.49879037876914, 6.213853991945801, 31.548174285909035, 22.520587951650242, 25.43195846404506, 35.58241145028325, 6.633486935558907, 17.397682007860034, 24.448907718857775, 33.75826789943942, 28.60554394324837, 105.28764378038365, 38.35783939259052, 25.870089763130352, 13.297437340496634, 15.36212186476915, 18.530415755058804, 36.42762483768621, 86.28639208479018, 20.437567663891784, 22.87657034941141, 52.47113150079892, 84.6262757206659, 14.370657817775976, 104.2106760537495, 15.918179352301019, 5.72997634116034, 31.23862006691138, 6.811866180894897, 26.17769547926389, 20.130231291970052, 42.20182738806142, 25.425628809925414, 29.373175658673453, 9.302710279653578, 51.656873453856974, 38.62707700192672, 39.40377452598263, 31.10315291351141, 22.63920330125982, 58.24797301695003, 13.353182443939396, 32.17126239555565, 44.328198461209645, 8.188518662054864, 5.152334983022609, 97.69339924402601, 42.268642840594794, 27.553347772969733, 30.836258052458504, 96.37177038033154, 48.63888836657647, 42.50561074931903, 30.848189724440232, 79.19472801171857, 62.550242399565136, 66.83927440689557, 37.33607318624043, 54.64919317299071, 50.65915735386749, 103.44848894242836, 69.98455671888297, 13.315267301955675, 25.2390399607398, 68.3245253942479, 18.781457248456885, 45.714722816992, 62.32934162462447, 6.495271637982815, 11.820481789523095, 11.451536643884864, 25.442052378459607, 23.253818234299704, 23.79191557037755, 81.44566462255699, 14.902116115177868, 45.70897113162914, 8.191547851315256, 12.918431455254769, 6.179605306491011, 18.678896833417863, 28.162976357566116, 42.774568506025915, 52.41023696287106, 71.29723245549903, 5.927674216186719, 26.465008211526012, 68.99802442154183, 7.186337643974786, 5.257710013005243, 98.13019019294548, 6.109309310213806, 19.74173864576209, 15.300364550403799, 16.20757631873847, 18.607460214986318, 13.446773989449003, 42.75051124429586, 58.2808068627909, 109.51687669663156, 62.627122467578715, 35.93013003776248, 18.685805394114823, 12.116263966487649, 52.462235012628184, 11.871803939974804, 22.275829950031067, 15.14502852190209, 86.19820401095825, 27.978467067014247, 22.740225973007025, 22.95015290039308, 7.944128040488031, 15.085287188477082, 24.6267153265612, 30.194315953105004, 76.7888516204009, 17.01664557047151, 13.86728128747639, 46.74620224069137, 5.333923640824952, 102.89072293231878, 65.48714826371418, 12.422231772113847, 31.766358425589825, 44.26450651835018, 9.878954433569547, 11.805063613852592, 45.055452540803785, 28.521339941248115, 79.50306831880108, 7.8402244917573185, 8.403121439621763, 14.778690974148578, 80.22779558112244, 83.91611891093197, 15.540947851842333, 17.025598305079377, 89.90894774133056, 5.302325778295557, 31.383869715420385, 17.94866368769125, 17.284945864350327, 43.86454707278878, 8.028594049912089, 89.02907514620432, 15.431424230260262, 37.65287675225591, 23.053533485673345, 10.249564642903994, 13.782930206542538, 17.29426007942266, 19.907839880473855, 17.98987635742316, 28.970324355793355, 48.83214153487718, 30.557723239714516, 78.13645044689119, 10.994980356132606, 6.810447666360613, 87.00930590981079, 8.504438332899626, 86.913274047359, 58.23079084137602, 40.91906406631027, 39.736118180043086, 28.75565396232597, 65.81158736635443, 16.598013187048956, 39.28241270099137, 18.358944310452756, 33.526624070763226, 85.80889976575035, 66.732166721774, 29.56274915045375, 115.08300883008563, 11.472958322437098, 87.14108298876482, ...])
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)