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 = 46368
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);
([2574865.625, 2745467.0512905447, 2847195.847749556, 2958557.2293914817, 2979714.0625, 3004133.865418259, 3017336.4954456165, 3029717.66258932, 3083879.6875, 3085687.2575013083, 3103044.73988999, 3103455.9380390076, 3108178.025635497, 3115098.025596548, 3189273.027896999, 3202623.1880073557, 3206657.8125, 3210475.0, 3324731.8049375867, 3335957.13112341, 3398207.2540807207, 3418636.1910804426, 3425793.021768938, 3470237.5, 3494128.125, 3518971.875, 3519006.2497088206, 3539375.980777125, 3542344.546728784, 3563934.089223398, 3577167.252330995, 3577632.1991735897, 3611160.5537949465, 3634457.178521356, 3669428.125, 3669462.867490445, 3670130.615665582, 3672303.4257467785, 3674354.8803985817, 3697252.413118136, 3697370.5848848, 3697408.419589834, 3697420.3125, 3697457.8125, 3698629.6591646518, 3699614.052558448, 3702934.375, 3705009.4657485075, 3705734.1311215954, 3706685.9375, 3744512.5635758457, 3755373.4375, 3755928.4685343686, 3756823.3362213066, 3781391.901202892, 3796829.363825386, 3798560.288533093, 3798860.9375, 3809833.873600537, 3817028.161279795, 3837354.150330473, 3874334.984956241, 3881950.628833915, 3888333.27379442, 3909723.820496391, 3939874.3029938787, 3956936.548172949, 3962104.027055469, 3972628.125, 3974831.3404473676, 3976228.125, 3976737.81918733, 3977209.7221147316, 3977489.0568038453, 3977959.0583043876, 3979263.3939760043, 3986909.398814734, 4014300.0, 4035257.678214298, 4056219.3691478865, 4075850.0, 4084715.625, 4107138.514743471, 4171386.4865781204, 4172770.3125, 4178718.093215373, 4192053.9115689714, 4203108.549865517, 4203960.622836029, 4244877.499040132, 4245293.176643972, 4246077.11882987, 4255892.449978712, 4257632.8125, 4257952.847439486, 4259876.155272354, 4280855.530416103, 4284025.151298793, 4288835.439708619, 4315540.9732638225, 4317487.401629857, 4331906.25, 4332885.114524227, 4333046.554514923, 4346963.474355225, 4361546.875, 4421730.716711812, 4435700.765424928, 4451740.290784571, 4462031.25, 4463121.394021009, 4519290.069345938, 4548576.762391053, 4559876.5625, 4576896.935390449, 4579027.837067724, 4596672.945010393, 4608009.059146209, 4609150.101809154, 4619138.535452549, 4630245.676138869, 4635660.59593724, 4637055.593383098, 4637690.769713187, 4638458.43977293, 4642095.3125, 4658443.532642003, 4672280.4591788, 4677385.784012855, 4684827.827885663, 4691068.492530078, 4691108.075706436, 4709354.391074644, 4716227.554812556, 4720896.147781521, 4731890.205368052, 4734282.599185233, 4742269.794051365, 4756034.375, 4757089.0625, 4757426.5625, 4759611.769503076, 4787375.0, 4788029.6875, 4798493.75, 4869724.801506432, 4871296.61417522, 4871852.582809412, 4905696.186905715, 4961917.741287101, 5000049.410257524, 5003117.1875, 5011828.125, 5011834.242554915, 5015401.5625, 5032085.9375, 5047029.6875, 5053889.718823505, 5066009.462484807, 5066958.472514489, 5069050.654786994, 5069060.9375, 5069629.884258256, 5070409.375, 5070576.380836265, 5070612.5, 5071084.375, 5071128.868994461, 5071381.987703249, 5071808.2714221375, 5071893.75, 5072012.0092049735, 5072017.741315048, 5072146.169957239, 5073803.125, 5074120.371213219, 5074214.64178007, 5075896.493417761, 5084262.797890089, 5085927.682114184, 5104513.216120858, 5108226.5625, 5110136.2630157005, 5123935.9375, 5139821.365818941, 5171417.656462528, 5179309.375, 5180937.793653287, 5218528.4088505125, 5221110.9375, 5237838.063743446, 5241846.8096895125, 5254831.25, 5255366.7750466615, 5255990.4533922365, 5256440.625, 5257404.8660364, 5260666.045421998, 5261038.693484743, 5263257.356184768, 5267535.9375, 5281729.275671634, 5348403.085169231, 5360962.06760466, 5454238.067827198, 5541069.013883517, 5547475.0, 5555682.706807391, 5555701.633151335, 5559267.301714251, 5562421.313905973, 5562432.8125, 5605743.740065755, 5613723.976142882, 5713763.937978246, 5833304.943039466, 5898518.75, 5898533.268950855, 5907471.875, 5910726.426898263, 5922381.501342001, 5960437.339145383, 5976683.467995763, 5993294.143100373, 5995078.1992379725, 6000111.136721348, 6009261.819396054, 6010641.744320097, 6011876.388323915, 6012390.3555129245, 6013770.016474297, 6014039.0625, 6014321.607340529, 6014343.45827621, 6015126.544288334, 6015843.258238684, 6017792.1875, 6018828.705672276, 6021783.741598095, 6023856.25, 6023930.3869639505, 6024599.748161312, 6031510.034586213, 6054252.421147756, 6056719.314386809, 6058165.625, 6058509.375, 6065363.368779175, 6106371.44851413, 6130898.493076357, 6131616.53450232, 6131690.029212201, 6132090.268688497, 6132456.25, 6132465.25745417, 6132832.417068404, 6132894.945377535, 6133350.930631657, 6133547.117080796, 6133584.375, 6133695.088484318, 6133724.053455429, 6134364.0625, 6134452.569947699, 6134684.250901632, 6135021.182196464, 6135793.466661464, 6135838.717811068, 6136037.5, 6137063.214650244, 6137398.242060473, 6137834.375, 6138201.5625, 6138381.974593231, 6138545.3125, 6138624.963708135, 6138681.093173415, 6139018.75, 6139281.410257543, 6139759.375, 6140471.420378486, 6142210.869091521, 6142659.375, 6142682.8125, 6142840.625, 6145426.5625, 6146288.684768937, 6147263.19431609, 6148790.901666419, 6151284.690240479, 6152314.0625, 6155164.606083044, 6170180.943425971, 6197759.30621041, 6245077.141044834, 6247429.537935702, 6304071.875, 6308627.917160442, 6312532.503899088, 6314243.75, 6315501.444217781, 6317642.082010405, 6317642.588034725, 6317683.848239759, 6317720.627251424, 6317806.25, 6317824.929944174, 6317963.761445119, 6318099.834612802, 6318382.605318823, 6318701.479539636, 6318914.768070791, 6318919.857724253, 6319062.417534131, 6319632.655406248, 6319668.469796473, 6319692.1875, 6319699.407957206, 6319738.217410043, 6319767.1875, 6319778.125, 6319778.17101137, 6319797.255049065, 6319881.970726733, 6319975.948471689, 6320068.83780377, 6320183.809307216, 6320204.583641062, 6321762.316901584, 6321779.257352809, 6322201.5625, 6323686.642221096, 6323789.043683414, 6323800.0, 6324240.275831598, 6325740.834144157, 6325790.995029903, 6325816.264666321, 6325916.274968817, 6326266.653126474, 6326412.066489445, 6327160.843783112, 6327363.493574063, 6327807.902186938, 6328306.25, 6328947.161625833, 6333085.841167674, 6335227.650616082, 6335763.716244206, 6335813.880061874, 6340120.3125, 6340164.363947675, 6343090.228854202, 6371619.503149825, 6371769.173978605, 6372767.1875, 6373468.147549183, 6373484.375, 6374921.237913098, 6374971.5274122, 6375132.92470193, 6375873.7337645525, 6376271.875, 6380550.338948217, 6381745.215325019, 6385120.118238646, 6388298.35048034, 6389682.845921252, 6390369.331351297, 6390424.791448577, 6391662.778032314, 6391770.192896721, 6393018.245588185, 6393265.625, 6395527.47757011, 6395541.858591219, 6395891.017398792, 6395928.411379177, 6396507.8125, 6397542.383866809, 6398087.5, 6398092.723645138, 6399044.1911085695, 6401534.30370691, 6401683.275912926, 6402217.1875, 6403438.905142425, 6408740.631104086, 6411901.25713896, 6411992.755530298, 6413001.4263744885, 6415456.612284501, 6418421.57176605, 6419870.3125, 6420327.133472233, 6420996.910605784, 6421042.1875, 6421737.396454045, 6423353.720684448, 6423629.876980979, 6423873.651163863, 6424031.933349526, 6424276.5625, 6424310.048209105, 6424540.625, 6425425.0, 6425545.368400081, 6425561.207958143, 6425648.4375, 6425698.471847008, 6425759.375, 6425785.421240104, 6426040.390240484, 6426146.786836528, 6426306.078083623, 6426846.875, 6427183.343046696, 6429050.206278315, 6429443.15104515, 6429668.171663146, 6430475.488533237, 6430820.195826817, 6430901.439655873, 6431816.300986892, 6431876.5625, 6433097.986793568, 6433156.055062369, 6433624.081863325, 6434126.5625, 6434582.752050692, 6435471.263156989, 6437668.75, 6437708.792484568, 6438619.046141189, 6440201.5625, 6444614.0625, 6452721.687254612, 6461981.849207482, 6462628.125, 6466230.972593063, 6468354.6875, 6468409.375, 6468457.8125, 6469300.705151002, 6470143.75, 6471878.690734935, 6473689.0625, 6474282.8125, 6474409.375, 6476094.005922803, 6477192.1875, 6477204.0577050615, 6478023.4375, 6478389.303190794, 6480331.768333701, 6480730.883417196, 6481705.702927288, 6486690.813022942, 6492989.007913382, 6493017.664453561, 6503280.031473174, 6510978.125, 6514111.806153762, 6514670.643496179, 6515584.866644191, 6537784.310706902, 6548020.3125, 6629111.760543469, 6632757.8125, 6634112.553282835, 6634699.436802468, 6636475.0, 6638892.1875, 6638904.472390883, 6639084.234824013, 6639139.0353327785, 6639650.2583723655, 6639714.814162247, 6640037.5, 6640777.322506074, 6641030.219617884, 6641082.8125, 6641126.42092975, 6641208.076098562, 6641362.521779436, 6641435.259299697, 6641480.702617058, 6641564.693936142, 6641750.291380253, 6641775.0, 6641857.241495562, 6642092.1875, 6642125.757400483, 6642126.5625, 6642129.797808822, 6642857.179276977, 6642860.556488722, 6643030.513491043, 6643128.269940086, 6643146.875, 6643159.172095848, 6644221.875, 6644917.1875, 6644978.125, 6646464.6511938395, 6649036.553113891, 6649048.398908289, 6649131.61418353, 6650804.6875, 6652505.167459739, 6653254.174375529, 6654031.654662467, 6654455.176129522, 6654940.238006178, 6655071.875, 6655306.25, 6655720.062966577, 6656270.3125, 6656515.085832041, 6658256.25, 6659659.299819753, 6661284.913263732, 6661580.404454768, 6661614.5333805755, 6661823.798177294, 6662887.5, 6663061.115001564, 6663107.8125, 6663603.2761391, 6664845.3125, 6664852.679514976, 6664936.268947553, 6665023.4375, 6665044.673916441, 6665485.9375, 6665818.75, 6666183.098243194, 6666269.854584537, 6666712.793838894, 6667358.421247176, 6668061.926811396, 6669094.013795535, 6670928.125, 6671234.375, 6671439.491193532, 6671703.33510381, 6672307.347442146, 6673103.563335092, 6673627.847592638, 6674846.177655005, 6675575.344682352, 6675853.446708413, 6676197.143225649, 6676859.375, 6676906.167234496, 6677197.340912733, 6677426.306899995, 6677472.813146242, 6677518.75, 6677631.146363738, 6678304.393160217, 6678354.6875, 6678444.454245917, 6678450.0, 6678679.451508411, 6678862.249026956, 6678909.51511213, 6678989.040877292, 6679275.143888748, 6680486.019499523, 6680517.258135733, 6680521.3119245395, 6680606.874392826, 6680646.875, 6680663.212564607, 6681873.4375, 6682020.3125, 6682069.90995927, 6682261.654692946, 6682450.284887935, 6682495.3125, 6683403.125, 6683612.5, 6684753.125, 6684977.196046292, 6685185.630791905, 6685238.068063877, 6685345.977361411, 6685719.735335011, 6686353.373844471, 6686462.850013424, 6687980.801983523, 6691860.080421842, 6692411.736497123, 6692540.304831698, 6692898.4375, 6693014.820858013, 6693283.175173742, 6693289.687172432, 6693349.332730667, 6700364.530995159, 6710846.861358023, 6713459.375, 6715448.071642916, 6720803.125, 6720811.113537734, 6724234.523924861, 6730215.522029052, 6730886.442691335, 6730917.1875, 6732864.304016233, 6732918.440706169, 6732942.094280145, 6733458.291012946, 6734201.688359984, 6734324.417040554, 6734324.819475957, 6734360.62256389, 6734540.26781889, 6735068.83436391, 6735242.2081692405, 6735901.5625, 6735955.929551811, 6735959.891552653, 6736045.3125, 6736187.129073268, 6737281.25, 6739016.289060876, 6739062.884031042, 6742353.675343671, 6742429.043221773, 6742445.436257308, 6742952.794860666, 6743671.127919166, 6743700.365789158, 6744401.5625, 6744564.91454307, 6744742.313795652, 6744809.249839311, 6747181.906692894, 6747584.375, 6747708.461367584, 6747715.412770637, 6759080.035444213, 6762858.410029164, 6783006.586059302, 6785112.356803925, 6786338.197610735, 6786837.5, 6787268.856266806, 6787311.975478376, 6788109.375, 6789924.942402752, 6790082.8125, 6790360.871573036, 6790748.4375, 6791523.4375, 6791715.625, 6791803.921389434, 6791984.375, 6792219.544405518, 6792523.447702178, 6792556.773775032, 6792688.1798710115, 6792844.45004941, 6792987.01047293, 6792991.388412957, 6793104.301507835, 6794204.004485628, 6794635.134454439, 6795657.389466019, 6795956.25, 6796126.5625, 6796243.72777019, 6796759.190506166, 6796951.06022468, 6797158.981295238, 6797375.770429116, 6797454.6875, 6797916.136631205, 6797977.50920019, 6798079.6875, 6798154.6875, 6798201.470641127, 6798227.551971198, 6798484.158334468, 6798686.082785918, 6798704.81289054, 6798748.4375, 6798920.926879441, 6799219.156389651, 6799411.917247664, 6799615.777353265, 6799903.4407646125, 6799948.2261758605, 6799996.347460136, 6800020.607050089, 6800213.520700486, 6800955.934332647, 6800956.25, 6801032.586728344, 6802131.25, 6802687.433542428, 6802923.4375, 6803509.93858895, 6803581.25, 6803807.1567473775, 6804105.333024626, 6804575.337803822, 6804914.0625, 6805162.5, 6805405.781038971, 6805525.7596593425, 6805532.6011261195, 6805641.289303714, 6805650.0, 6805669.89572884, 6805735.426951934, 6805897.572435021, 6805916.3006789, 6806000.355841366, 6806004.664539911, 6806239.602990499, 6806357.171407196, 6806372.255763644, 6806382.8125, 6806457.8125, 6806588.288847752, 6806644.201080806, 6806832.57716779, 6806850.0, 6806983.281178987, 6807140.757303209, 6807165.625, 6807482.8125, 6807585.9375, 6808921.71257854, 6809276.277426732, 6809301.347804814, 6809622.369295151, 6809821.67700982, 6809901.588589555, 6809954.6875, 6810015.625, 6810024.277176605, 6810106.974944865, 6810154.6875, 6810195.3125, 6810352.957338562, 6810521.148015001, 6810640.939854705, 6810674.590049123, 6810843.932917241, 6810903.187593988, 6811122.4881537575, 6811140.625, 6811406.25, 6811462.186874625, 6811649.720778206, 6812004.6875, 6812015.625, 6812121.19737253, 6812239.094547062, 6812350.947815896, 6812474.762583553, 6812667.1875, 6812970.945376196, 6813268.874795685, 6813892.002055272, 6814281.312626443, 6814339.904879159, 6815312.5, 6815355.393903497, 6815635.722515959, 6815865.625, 6815904.680151547, 6816044.418874537, 6816142.553614039, 6816406.008740767, 6816537.369823763, 6816579.6875, 6817201.87892688, 6817516.376446321, 6818397.256920988, 6818539.0625, 6818578.125, 6819446.44463344, 6820906.25, 6821267.15317813, 6821721.044599677, 6822885.560707419, 6823945.724419981, 6825510.253022533, 6825540.625, 6825881.023097125, 6826225.8717743065, 6826638.436015944, 6827224.235838456, 6827226.0197462905, 6827330.676617269, 6827470.680116687, 6827615.916682976, 6828077.128852561, 6828133.460763748, 6828186.914749446, 6828215.625, 6828422.645943817, 6828611.2980201775, 6828645.762329224, 6828703.3503191685, 6828704.520466023, 6828897.859679519, 6828971.177860984, 6829033.159830302, 6829096.875, 6829100.0, 6829120.153392496, 6829131.25, 6829256.25, 6829320.677675958, 6829339.0625, 6829351.982215961, 6829385.9375, 6829420.3125, 6829467.140316718, 6829476.693236242, 6829488.950932421, 6829513.046002867, 6829519.85662693, 6829582.820632978, 6829586.911100137, 6829598.4375, 6829663.495903673, 6829677.678105098, 6829762.919308194, 6829784.484382247, 6829796.875, 6829804.090673076, 6829846.17354558, 6829886.4325005915, 6829907.108875622, 6829930.336412042, 6829933.342394109, 6830032.403184797, 6830032.8125, 6830142.514184722, 6830146.464448304, 6830219.07517431, 6830225.3157029785, 6830343.954165335, 6830371.875, 6830373.219472903, 6830405.372516033, 6830518.714147193, 6830578.28221747, 6830583.605634999, 6830644.308378174, 6830644.371081062, 6830690.625, 6830712.5, 6830725.748577251, 6830742.51471447, 6830769.826912452, 6830810.827771205, 6830830.955327099, 6830854.003036293, 6830854.5691178655, 6830876.430313324, 6830880.356429671, 6830910.220525707, 6830941.152418761, 6830997.922196195, 6831029.6875, 6831075.937172073, 6831082.8125, 6831105.905929562, 6831146.875, 6831150.232798458, 6831160.589656212, 6831166.461775569, 6831209.970884856, 6831244.321003906, 6831264.370174868, 6831268.874071241, 6831314.0625, 6831337.146848315, 6831353.0049951365, 6831357.315904526, 6831378.125, 6831389.0625, 6831459.920439449, 6831482.678917947, 6831484.41369832, 6831516.053897195, 6831524.866516688, 6831583.429374034, 6831586.992004489, 6831611.789977361, 6831633.813530175, 6831655.514047603, 6831758.964954069, 6831803.105745647, 6831818.75, 6831867.040728981, 6831867.27372822, 6831936.644967581, 6831976.5625, 6832111.484827539, 6832140.625, 6832189.04191271, 6832278.125, 6832282.950765639, 6832317.1875, 6832401.455828984, 6832485.9375, 6832501.830886689, 6832508.8736453485, 6832512.490612425, 6832550.0, 6832556.25, 6832560.1182880765, 6832671.875, 6832681.853704636, 6832687.5, 6832781.457984952, 6832783.231877588, 6832793.313954467, 6832802.811507403, 6832806.124170608, 6832848.4375, 6832851.645937551, 6832859.0275316555, 6832876.868055951, 6832930.256964497, 6833091.079027033, 6833096.875, 6833116.905055194, 6833180.4283237485, 6833228.40258216, 6833278.861633464, 6833292.201023546, 6833358.808597408, 6833429.182517134, 6833431.602904239, 6833563.250747361, 6833610.345945247, 6833686.486578453, 6833711.652225154, 6833779.269524927, 6833853.9070619615, 6833945.840940745, 6833969.821024409, 6833996.131614555, 6834071.875, 6834100.336796857, 6834101.239876275, 6834141.6701335, 6834159.1024650615, 6834274.761282047, 6834301.172487742, 6834335.212326234, 6834352.961303993, 6834356.078633364, 6834360.483169621, 6834385.707920347, 6834406.26657614, 6834520.3125, 6834581.343432886, 6834587.307418033, 6834942.387386004, 6835187.5, 6835202.425229573, 6835320.3125, 6835396.541935264, 6835554.887501084, 6835624.885910476, 6835892.183853868, 6836004.024196394, 6836911.161865955, 6837978.125, 6838034.138143068, 6838573.11483483, 6838924.932172294, 6842857.736021721, 6852088.624154273, 6854308.506850072, 6854851.297850277, 6855092.1875, 6856103.125, 6856762.38047178, 6857030.565387025, 6857838.820698754, 6858528.125, 6858546.948686297, 6859398.803860997, 6859648.4375, 6860354.154155213, 6861300.0, 6861306.613700884, 6862171.558151472, ...], [56.07063203706073, 26.09563775824291, 9.829079834201693, 6.19623448641939, 63.03211906230305, 14.506022556368269, 17.601549887516875, 65.34336139988646, 41.835121670877804, 63.49110378417562, 5.189074943465609, 5.386680486059707, 26.703348321099096, 7.017226782176878, 22.444884339674925, 38.13817340221402, 60.73043818185384, 55.66090769387404, 49.00898969771233, 19.856378802304707, 20.92948125347978, 16.004960023145404, 93.42291811265869, 105.36506803140237, 55.22946033658549, 53.820169574260795, 11.127251701685852, 73.0819886251234, 28.446816278368054, 30.500233763355716, 12.236715442762328, 27.81910113574672, 45.836063594560656, 12.973500125551663, 72.14331043551313, 5.477763853011532, 7.388864921327915, 6.8250713046081355, 15.731518730824376, 12.780938864884204, 16.09237857726248, 23.968600465935417, 119.83700276667219, 28.588202893349067, 5.340951670142343, 28.329698348722346, 37.39590843763768, 16.709153459516926, 7.517350032701232, 52.771387002552885, 35.94091018271184, 50.80206529712721, 73.26061254223909, 12.292900017774574, 74.70098052734099, 9.071934705764697, 19.052527756395296, 71.24320210688082, 54.07341455501968, 265.7259241217547, 84.20613472635836, 17.91913515160188, 24.28905446721271, 17.049181395109976, 22.137634159920758, 122.80086053383766, 9.907294100877618, 20.029149789941627, 71.7315036062534, 9.409070688694175, 37.39883486939237, 37.761578944659334, 7.733800699061319, 30.797937101031497, 128.99838552194763, 224.04519221280862, 5.708275318689917, 29.732838182156218, 27.115790452608366, 5.995201394494593, 77.38470730346917, 59.35302234938895, 30.722271144544266, 154.4296477858248, 56.09930282664572, 7.967328409210181, 7.914863656516175, 18.76537316616238, 5.331253691562925, 7.981153177666256, 8.889489380302331, 18.339322534751318, 11.564356358815303, 122.83818142187648, 9.107242376423814, 123.45916927860912, 175.29302292775122, 137.32886053387756, 28.235741648146675, 9.64432807299074, 77.8851749142331, 69.01249812203545, 43.83944598037677, 24.931145774706074, 77.25549479733786, 66.64129185982561, 73.8735382864464, 174.0852408410499, 9.063937294958487, 34.846333470381865, 7.000507452607215, 21.833500660058398, 15.762372754931299, 117.10008996904233, 15.176796337404655, 93.57360806375947, 84.61883709511372, 7.492858609666375, 73.20729629968665, 31.814269795906945, 25.03682089653273, 23.23396674673427, 29.404296946264893, 57.60497299031576, 27.25719336247592, 31.13899983845341, 24.86707850717826, 140.21241656872883, 59.45036199895632, 13.918310268167634, 10.747778633285058, 36.760945278239106, 62.86178263570446, 13.137843503598335, 106.45422902874913, 59.734362832945706, 20.624542918069487, 137.31312562316904, 49.43303087837355, 116.0842121599388, 55.436868773881464, 156.81127696489625, 94.62413334714437, 59.71501605366211, 41.63934743084855, 118.31233469985045, 9.1201868047878, 23.67984879160359, 5.5005917905589605, 5.8561244796545155, 40.85914510388619, 33.4888675608728, 82.73804426084737, 14.459628958423707, 29.196908137681753, 75.41204820446082, 47.74970735324905, 23.400522752174332, 147.49735721318135, 25.528649776395035, 5.749737372746509, 50.23061717627709, 9.503505634029786, 106.66751610896904, 25.389950615011333, 42.99044360811129, 67.80492748702451, 14.569323564043213, 18.76775649215487, 7.247550350194846, 28.741825867670162, 18.49715994878787, 5.361263937060797, 7.945894225745194, 139.71506471022812, 5.400723336460811, 5.487191606612264, 6.0492969989580265, 99.42768519148936, 22.082414773731553, 18.61701856846863, 59.79844406467576, 78.88788929084645, 71.83431455726443, 6.036702472076214, 11.949416193744206, 29.538990385458646, 7.20084467232208, 105.87551552378092, 141.09080034434817, 5.218026312422773, 9.276783334453729, 46.23363177767121, 7.017092856794906, 124.82401179172793, 31.390705819633013, 17.219170388477938, 74.8813264594954, 81.20833382968752, 22.42221863361179, 40.81123129235505, 30.59388549593067, 176.20990802105874, 22.195086281907248, 17.660740550966622, 17.277410818285748, 28.988459989514816, 10.966425747440166, 15.217815291246973, 11.311050594998765, 340.94990732590986, 75.43329020602646, 134.38800444479716, 40.00191257804434, 17.47616524779702, 16.014006505082232, 65.09535450869313, 9.749677296389148, 91.52349394968557, 22.54461769071616, 11.544692225226594, 25.707249999086677, 18.20996065327645, 16.68633672933071, 15.232226561613583, 24.523904481227646, 77.46049830448467, 33.98772940001531, 8.19656884101864, 14.005051430590814, 30.937106276219012, 53.12387261929945, 14.010844962635957, 10.700413102503228, 65.77592256046744, 21.575681088452836, 144.0833032851957, 17.73847678022874, 20.25813476230444, 54.90187710011353, 48.54632843527331, 16.82960473963261, 12.31019072362033, 8.799617549429193, 13.72368176740732, 52.582741415228135, 46.90471675340255, 30.84862651264708, 22.259188376148632, 12.402221284448112, 10.240386037678242, 56.80426480961775, 118.76432185204735, 58.001719219476314, 22.924650040674265, 46.80629612065768, 17.087931984591375, 78.34280623168664, 15.952137683613252, 33.19853918044565, 24.772413131082065, 17.956748046832637, 56.289468041552105, 10.358401976896287, 26.291718493699427, 6.950512466227142, 5.5985591500192, 29.138137459282245, 42.68766148408197, 52.272410629502005, 10.835371938490038, 34.91248962084255, 112.6834711885268, 18.67581518627141, 29.913453755664687, 14.804962870038501, 32.588070371109914, 63.54009935829295, 14.559022477153572, 41.80922103585018, 8.059958062964112, 57.54954087371252, 29.35793210913901, 85.47705576200413, 77.40309677608442, 42.17914585847131, 87.07878856357398, 12.419377784717184, 67.41766670437927, 36.26416677406268, 87.46393222308969, 17.516449735647974, 23.1769169822273, 56.99606589633142, 17.725539248263814, 25.88344112651053, 85.4597886351529, 7.529756500978428, 34.06547913508063, 38.14811064339878, 43.44494509826955, 62.90365675009846, 55.30088311846258, 134.94625738230874, 172.58084577136555, 63.948357575024254, 58.22251163220751, 13.906064827238005, 77.00278563719789, 10.81860834758158, 26.98497210956544, 12.44437476160724, 21.956419252585118, 16.606698464257583, 14.374741450855941, 24.589769099716456, 92.46660727171464, 92.32626685302043, 18.625934137678264, 34.55724094625096, 31.490779348265878, 11.200395288647874, 16.61924226885571, 10.025501381924924, 33.81464702245183, 71.75930143433943, 98.26056097221189, 18.97125204845889, 5.800555636516856, 22.219418638095384, 93.50630982811523, 18.538663128570942, 20.02488309180787, 142.37139518737894, 5.330097650098789, 173.25304027152734, 5.354763180628302, 12.30015822053657, 22.741141612547047, 56.44373199710927, 121.63144656875784, 14.595943967006951, 33.48890656016408, 15.29474002136893, 93.78675213770042, 113.850147983507, 35.11378249282296, 21.7524978171193, 93.07261011338488, 17.149282818153086, 68.41074351798711, 20.472360792436824, 212.18215477486746, 12.551779977629973, 9.717620197079212, 93.52947119111504, 20.52855527794273, 35.654257666243566, 55.57599412641051, 11.556913875073818, 8.346816406534195, 11.62467408091534, 78.95157098950095, 11.702331693108254, 24.808425384908034, 35.80160810316947, 23.723795908509423, 62.14857402983691, 6.885397522123484, 5.239345617247031, 9.578106332632858, 7.560544544400103, 21.449202641575216, 55.691530696935985, 6.390174358631539, 23.388364606983114, 16.68271138651635, 5.630086247055411, 30.45055058112872, 7.174045295043531, 66.89211902974978, 6.574554561938732, 8.53448208551002, 14.676562310468672, 11.938531308185954, 33.52767863490694, 11.737102497529825, 11.137261303757148, 34.10037214036605, 17.661962659591403, 153.97696814505628, 9.657749127642079, 86.59949330962375, 50.7291378628419, 6.883114121020221, 17.735181455048583, 142.50816983935124, 14.561001302013429, 37.82140430936188, 11.43738278045919, 5.4710125757040675, 97.68531528889027, 31.11099677195107, 18.32647443342463, 70.86146766321312, 63.897184926145044, 11.216221023925463, 16.083361665830513, 104.50468891474267, 5.099132835950129, 58.72754958502614, 21.33241820690608, 60.74785516019497, 14.61579234553104, 25.537397973885597, 35.758375128197045, 22.73080561114132, 55.98099455889685, 20.55967811962021, 13.116500812420192, 29.672511525975626, 26.41369078400911, 70.97836457715634, 28.940464397367176, 70.8960224871883, 21.999339214961257, 8.186112821026441, 7.854196087505473, 78.14234852180418, 27.104576013853887, 100.98421233959708, 69.0181161911009, 117.65582572167533, 47.846755968443816, 30.590949693976757, 53.15793228587101, 22.948376388102076, 59.611037239638875, 64.44190095103382, 60.57003368865237, 29.162183897180803, 36.25054005645149, 53.750490698246175, 38.37564430901354, 139.70684080055102, 138.76059888873516, 40.73190737192321, 65.78297280372354, 34.102624489201396, 88.57184129338837, 130.43904760145, 10.267923340278292, 69.54835873759262, 9.543565170488087, 137.743141610397, 31.642893456047407, 5.18970466783386, 9.495613757190249, 55.45606230930154, 9.770115330281309, 223.91019869254856, 63.10292343327987, 19.755252050966227, 28.517314439491507, 11.994229521428041, 27.3142013250333, 56.367598066866336, 40.25771651685764, 53.761299966514585, 54.50819288723056, 65.50029002895326, 38.90864809920544, 89.50854139971581, 14.180452435649947, 296.25025113902933, 87.79181922051009, 20.006211966224274, 136.48246567197063, 79.43611395471578, 28.701030934071902, 7.268725976032982, 31.641580348852813, 64.49822403717509, 16.051370257442283, 8.2981283337975, 19.88235029161833, 8.016875477384211, 48.72827708358897, 39.97519690615355, 55.47713902948909, 10.338860401734522, 42.79104607053069, 18.908132331350114, 50.29639430235877, 16.577952143834615, 10.263838685195562, 13.664185953462098, 19.419014714258143, 73.9975147124032, 84.66404508926912, 9.165533484120251, 28.95007573962213, 68.78489125597275, 52.684307897911246, 12.192087554740123, 54.14816547249086, 11.067916541450716, 16.5386556931265, 92.26418514886745, 22.81545043508075, 21.363168162222916, 80.1187547257521, 44.88236840016036, 12.363784708679177, 75.74971375865866, 109.04405598247186, 37.89343784742657, 46.93415998272457, 60.331697346810245, 43.57066110924283, 27.121034280034504, 97.22911450091443, 18.622784341231707, 28.508227499404388, 41.111084160389076, 38.91446504003876, 7.668723883879745, 28.860529066664547, 57.93035257894341, 101.4635185835003, 13.477871291152047, 97.23602631475298, 49.8648184966766, 17.222553860664608, 47.459996170265605, 70.3761353771829, 79.58607310479618, 21.518185542301552, 16.193728842616927, 17.911579855242255, 20.79280556134626, 46.30851793261446, 37.67211050987942, 63.09018176500076, 151.14671620838982, 7.177798963598442, 21.84889533381404, 8.532826212675579, 54.973259070322484, 164.25763010093078, 26.546885004602494, 6.829478915661418, 5.408828007083277, 28.692284482299332, 37.776119686047444, 17.074526757378923, 24.33495666652971, 12.997902178897382, 151.98897361148389, 26.631157064368676, 13.926951154998841, 39.98852288115778, 37.60772506866381, 31.681079423627303, 14.112346655005053, 90.29524588346307, 11.354008775477029, 28.10394796605674, 15.519854640135318, 34.83954296502619, 76.15280302739563, 7.411533662235133, 78.07946530755548, 48.90508570136984, 12.459986241698942, 35.194719294878865, 36.803653580104644, 83.49898352914173, 8.706121965629004, 113.83985164634001, 48.16817819048694, 53.370934953317814, 34.7372519225488, 90.29687650210957, 18.06824761015601, 23.665431563886678, 20.334677050865245, 6.596621898487595, 6.653502443313717, 22.440697646357208, 27.425638611599652, 96.1085337620974, 79.5599897945616, 46.94205547546184, 63.73566984321253, 132.23934463077367, 8.73292374334342, 16.53104201833564, 9.92205734828081, 19.972397501943238, 45.11246401276121, 92.45701928627557, 39.87620066215849, 100.9525275041147, 30.14176558905084, 6.515045361141266, 8.366933314463623, 109.69299384832982, 17.294243552030046, 35.9884307517006, 15.9495567440953, 5.123946575392357, 39.60240510695492, 25.08769589768605, 20.676442419892805, 5.031854961378506, 161.8023613940314, 33.142148249104906, 47.090503493674234, 133.92748297954762, 22.22449505401862, 79.51509287495439, 99.30117842369403, 17.359216909687298, 74.40844823127654, 44.62767548971123, 47.88748447042259, 12.352938000191108, 5.048075508937244, 6.878587947314604, 100.48517790190802, 16.668074800219685, 47.879387911378906, 26.867691465681872, 8.489972719917128, 42.28429464743306, 137.9518092744992, 6.507073118526431, 32.95500654430641, 9.956120694173771, 34.47953779197832, 101.0607884141965, 39.98790648070091, 21.207697856328018, 9.893504090205914, 9.632700495650962, 25.984107911904193, 107.00538492809946, 77.53289338123625, 5.821885165212902, 8.924058998281009, 93.49223256402429, 6.478100103685473, 33.66562277490978, 27.285003560387263, 78.03814863611586, 134.30073970575737, 30.171329350101878, 8.757979117317637, 68.75088508092279, 5.267936684870443, 14.980538451774198, 103.53001780323812, 12.387519873070673, 32.28600094289877, 21.598213368689553, 12.57532221259069, 13.649522037746507, 25.9848749029687, 83.87330759101631, 8.997607542300447, 48.20327550052492, 47.32134544518891, 6.759076659365678, 83.88705545373546, 20.06505406722159, 13.626906610603458, 19.00249348848086, 86.77596784117044, 80.02126126739898, 100.97871892491442, 128.72458860352725, 43.291382271428375, 26.831329726703355, 73.34806431564121, 10.805130512479407, 25.519793612115656, 11.32952461605805, 46.58341685796373, 8.640587949036808, 73.72066032308645, 20.705497213632373, 11.374498506125546, 99.11560178532125, 14.192898421586644, 21.222705154388656, 5.136847573197004, 147.66274534242154, 23.55265486256575, 68.60411550341128, 10.792242800417283, 63.13554623591707, 77.37694878363162, 94.5426441896806, 5.486487782243106, 74.4256749279491, 12.918800527801396, 18.145222825818756, 11.700228024629922, 34.945449244079654, 85.71347275197823, 6.416007218259982, 12.566696294399993, 51.436171563055765, 18.26765348623769, 80.47480273458078, 10.533285023869338, 33.13300557267504, 18.489031651237006, 28.12987349562775, 8.484164615474795, 31.455802761729906, 14.739699047800144, 12.955551727190112, 140.76460436697548, 29.977158346194496, 33.63562441756007, 123.02375426552646, 11.914454402372584, 14.114482730543951, 92.09458802782385, 96.30715028265412, 11.34100008586672, 48.65147200673398, 84.49720842014675, 78.04085543075271, 25.6830260506496, 23.943301107689834, 63.010750863133325, 8.566491258031904, 24.349360991360697, 112.49092906802159, 86.13242355558509, 121.17053671821505, 5.185389561660235, 105.24908512082634, 71.17061577692567, 34.61837063228712, 35.36740714253317, 29.10278749632703, 5.837650008906686, 60.269364161744306, 5.955494944019535, 15.185579116448796, 44.78506523119576, 95.65169076601745, 52.90903938678113, 27.39613837391703, 24.019833206876623, 55.66343997453663, 47.85056619189923, 52.791163860215725, 11.178170633590552, 10.28599560800463, 14.107733969612163, 46.07944056199955, 18.0639667778515, 133.62423218808604, 8.190886640704322, 133.44880228844588, 16.468632222286164, 139.31183597062702, 18.55017285920477, 62.52847577132998, 68.24341470455286, 5.341669940670556, 12.363435534930577, 6.83886786669102, 24.531238460515887, 31.959750140441994, 58.21502550084928, 24.706546664241795, 10.059397757262609, 126.90738852840985, 88.6369750011083, 77.42281994182619, 7.454660703621332, 59.8331360395511, 11.074479973000892, 257.48637958110555, 5.786617127596288, 37.69408974041433, 8.812735890310833, 44.471062716101635, 14.141872279873418, 10.196151752683624, 100.9234083176051, 19.20880043384391, 140.80152415723586, 24.321880897835726, 27.426292675083307, 61.48693641602203, 130.01511886556247, 19.582681565601042, 13.09847534495329, 79.58180132485175, 19.00624635926688, 16.52019828927271, 126.9991110803022, 15.875995965947657, 34.31854958005314, 13.117850084642884, 7.3691609577123005, 5.411920242327684, 130.28749804018983, 81.8300764243366, 25.734325884884626, 133.0383962244394, 28.984439552032534, 215.9221333175869, 36.84203568279081, 7.236333247651748, 32.31258020614505, 105.92508820881062, 27.624482837849804, 15.46438311718951, 14.53266005967652, 12.103806785246892, 6.675784421319827, 11.140443011530964, 5.505166061167518, 41.19714170041837, 129.3359523816285, 252.44863843903616, 11.853119333873341, 15.375483929170615, 60.37456938789183, 29.739747879094914, 127.91410017638054, 34.40069918983241, 6.630718694888631, 107.53247901337592, 17.436351066177405, 8.08136908039732, 71.92153711992869, 6.309374197271136, 25.19174071482221, 129.9793350782896, 98.21805728812097, 15.781315288624471, 61.06708211247323, 14.170878801478896, 7.8713282922252, 33.14860589487955, 9.467974080736711, 64.17747844245649, 15.462641360103913, 7.844458861248137, 49.35749972032261, 76.87557169222234, 18.844915803751235, 16.354917912938607, 6.413573158093457, 81.98501754314076, 23.819027316221888, 40.82325054129801, 14.50870666338682, 210.16818229692578, 6.160538667683367, 12.76864993654433, 81.51270812810617, 5.674729200806293, 32.07912916727667, 12.995426090036023, 45.90581124774818, 23.20366586931112, 82.7305988203404, 48.621273947035505, 13.763022309907834, 28.329586037887275, 6.345538734586306, 17.67988140056329, 6.536428367108575, 137.55563274785024, 45.01148448391551, 159.82503862505254, 8.224120134289043, 155.92541934978553, 31.298979296875977, 35.93891524097332, 15.861576226194693, 10.92513740269342, 9.364340555778117, 165.1339447840456, 54.870673950238455, 9.913823856773435, 21.413709823974646, 58.194554135386994, 25.122438837743623, 12.723165748289086, 6.68431506345744, 71.70738208472044, 150.075245462811, 42.1651054302422, 15.280682251903746, 33.54436434572267, 112.82091913451744, 54.58331359932231, 161.79061702805265, 46.21588623149067, 99.03130173758929, 6.284826722934251, 98.3841759902905, 86.54580367845107, 101.53408966052288, 128.28678233639465, 8.940643025997389, 14.905848700608415, 36.66970988094741, 49.74297153071836, 124.82221407685097, 90.79585183184547, 17.880160080584226, 47.66552062472098, 15.79829608108597, 6.1328242888453035, 6.043898497370176, 94.05958973114791, 69.41640487951807, 92.47984687016236, 23.879910554706193, 82.36106267760375, 11.641438876350097, 68.09362829575946, 27.249015194246702, 70.58932162291003, 20.021562661057764, 17.444073907676273, 7.706817620671019, 61.75956127427244, 21.244775958247313, 20.855322820389645, 12.102959130055567, 9.648762530068161, 70.44682189104996, 30.237525879125617, 5.988692787028911, 5.367024093938492, 10.53171862559851, 25.651206957917672, 5.986785517794395, 43.983308430111535, 10.135507485952955, 44.36922617563751, 7.212892072380481, 31.743926414653494, 90.12996699013314, 38.44382086292669, 24.56642347932826, 111.33958907569695, 45.41140544842794, 47.74511610241744, 6.729770088385621, 21.961106477173978, 9.144542619433627, 6.766820384398225, 58.20292955505158, 9.411675564534722, 24.056780285143205, 109.893911583396, 40.09531201711927, 79.43713542013876, 47.573824382610695, 25.49726051840802, 45.03619183506421, 130.66630368734, 20.45169151945513, 12.418626940233654, 11.497501083287606, 117.4908172420656, 5.919040642427776, 13.83946236579385, 24.985328212466396, 36.86252043232728, 93.32023612634322, 9.996715814010066, 8.151414793249879, 49.463031798732246, 61.82207671331752, 46.253251985615904, 32.46803917067512, 29.60234158075259, 38.575333654407544, 66.7704928309852, 91.10274444905292, 59.15202827222607, 43.268970054024024, 68.0456958618784, 11.748128917772425, 23.53788466791833, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2574865.625, 2745467.0512905447, 2847195.847749556, 2958557.2293914817, 2979714.0625, 3004133.865418259, 3017336.4954456165, 3029717.66258932, 3083879.6875, 3085687.2575013083, 3103044.73988999, 3103455.9380390076, 3108178.025635497, 3115098.025596548, 3189273.027896999, 3202623.1880073557, 3206657.8125, 3210475.0, 3324731.8049375867, 3335957.13112341, 3398207.2540807207, 3418636.1910804426, 3425793.021768938, 3470237.5, 3494128.125, 3518971.875, 3519006.2497088206, 3539375.980777125, 3542344.546728784, 3563934.089223398, 3577167.252330995, 3577632.1991735897, 3611160.5537949465, 3634457.178521356, 3669428.125, 3669462.867490445, 3670130.615665582, 3672303.4257467785, 3674354.8803985817, 3697252.413118136, 3697370.5848848, 3697408.419589834, 3697420.3125, 3697457.8125, 3698629.6591646518, 3699614.052558448, 3702934.375, 3705009.4657485075, 3705734.1311215954, 3706685.9375, 3744512.5635758457, 3755373.4375, 3755928.4685343686, 3756823.3362213066, 3781391.901202892, 3796829.363825386, 3798560.288533093, 3798860.9375, 3809833.873600537, 3817028.161279795, 3837354.150330473, 3874334.984956241, 3881950.628833915, 3888333.27379442, 3909723.820496391, 3939874.3029938787, 3956936.548172949, 3962104.027055469, 3972628.125, 3974831.3404473676, 3976228.125, 3976737.81918733, 3977209.7221147316, 3977489.0568038453, 3977959.0583043876, 3979263.3939760043, 3986909.398814734, 4014300.0, 4035257.678214298, 4056219.3691478865, 4075850.0, 4084715.625, 4107138.514743471, 4171386.4865781204, 4172770.3125, 4178718.093215373, 4192053.9115689714, 4203108.549865517, 4203960.622836029, 4244877.499040132, 4245293.176643972, 4246077.11882987, 4255892.449978712, 4257632.8125, 4257952.847439486, 4259876.155272354, 4280855.530416103, 4284025.151298793, 4288835.439708619, 4315540.9732638225, 4317487.401629857, 4331906.25, 4332885.114524227, 4333046.554514923, 4346963.474355225, 4361546.875, 4421730.716711812, 4435700.765424928, 4451740.290784571, 4462031.25, 4463121.394021009, 4519290.069345938, 4548576.762391053, 4559876.5625, 4576896.935390449, 4579027.837067724, 4596672.945010393, 4608009.059146209, 4609150.101809154, 4619138.535452549, 4630245.676138869, 4635660.59593724, 4637055.593383098, 4637690.769713187, 4638458.43977293, 4642095.3125, 4658443.532642003, 4672280.4591788, 4677385.784012855, 4684827.827885663, 4691068.492530078, 4691108.075706436, 4709354.391074644, 4716227.554812556, 4720896.147781521, 4731890.205368052, 4734282.599185233, 4742269.794051365, 4756034.375, 4757089.0625, 4757426.5625, 4759611.769503076, 4787375.0, 4788029.6875, 4798493.75, 4869724.801506432, 4871296.61417522, 4871852.582809412, 4905696.186905715, 4961917.741287101, 5000049.410257524, 5003117.1875, 5011828.125, 5011834.242554915, 5015401.5625, 5032085.9375, 5047029.6875, 5053889.718823505, 5066009.462484807, 5066958.472514489, 5069050.654786994, 5069060.9375, 5069629.884258256, 5070409.375, 5070576.380836265, 5070612.5, 5071084.375, 5071128.868994461, 5071381.987703249, 5071808.2714221375, 5071893.75, 5072012.0092049735, 5072017.741315048, 5072146.169957239, 5073803.125, 5074120.371213219, 5074214.64178007, 5075896.493417761, 5084262.797890089, 5085927.682114184, 5104513.216120858, 5108226.5625, 5110136.2630157005, 5123935.9375, 5139821.365818941, 5171417.656462528, 5179309.375, 5180937.793653287, 5218528.4088505125, 5221110.9375, 5237838.063743446, 5241846.8096895125, 5254831.25, 5255366.7750466615, 5255990.4533922365, 5256440.625, 5257404.8660364, 5260666.045421998, 5261038.693484743, 5263257.356184768, 5267535.9375, 5281729.275671634, 5348403.085169231, 5360962.06760466, 5454238.067827198, 5541069.013883517, 5547475.0, 5555682.706807391, 5555701.633151335, 5559267.301714251, 5562421.313905973, 5562432.8125, 5605743.740065755, 5613723.976142882, 5713763.937978246, 5833304.943039466, 5898518.75, 5898533.268950855, 5907471.875, 5910726.426898263, 5922381.501342001, 5960437.339145383, 5976683.467995763, 5993294.143100373, 5995078.1992379725, 6000111.136721348, 6009261.819396054, 6010641.744320097, 6011876.388323915, 6012390.3555129245, 6013770.016474297, 6014039.0625, 6014321.607340529, 6014343.45827621, 6015126.544288334, 6015843.258238684, 6017792.1875, 6018828.705672276, 6021783.741598095, 6023856.25, 6023930.3869639505, 6024599.748161312, 6031510.034586213, 6054252.421147756, 6056719.314386809, 6058165.625, 6058509.375, 6065363.368779175, 6106371.44851413, 6130898.493076357, 6131616.53450232, 6131690.029212201, 6132090.268688497, 6132456.25, 6132465.25745417, 6132832.417068404, 6132894.945377535, 6133350.930631657, 6133547.117080796, 6133584.375, 6133695.088484318, 6133724.053455429, 6134364.0625, 6134452.569947699, 6134684.250901632, 6135021.182196464, 6135793.466661464, 6135838.717811068, 6136037.5, 6137063.214650244, 6137398.242060473, 6137834.375, 6138201.5625, 6138381.974593231, 6138545.3125, 6138624.963708135, 6138681.093173415, 6139018.75, 6139281.410257543, 6139759.375, 6140471.420378486, 6142210.869091521, 6142659.375, 6142682.8125, 6142840.625, 6145426.5625, 6146288.684768937, 6147263.19431609, 6148790.901666419, 6151284.690240479, 6152314.0625, 6155164.606083044, 6170180.943425971, 6197759.30621041, 6245077.141044834, 6247429.537935702, 6304071.875, 6308627.917160442, 6312532.503899088, 6314243.75, 6315501.444217781, 6317642.082010405, 6317642.588034725, 6317683.848239759, 6317720.627251424, 6317806.25, 6317824.929944174, 6317963.761445119, 6318099.834612802, 6318382.605318823, 6318701.479539636, 6318914.768070791, 6318919.857724253, 6319062.417534131, 6319632.655406248, 6319668.469796473, 6319692.1875, 6319699.407957206, 6319738.217410043, 6319767.1875, 6319778.125, 6319778.17101137, 6319797.255049065, 6319881.970726733, 6319975.948471689, 6320068.83780377, 6320183.809307216, 6320204.583641062, 6321762.316901584, 6321779.257352809, 6322201.5625, 6323686.642221096, 6323789.043683414, 6323800.0, 6324240.275831598, 6325740.834144157, 6325790.995029903, 6325816.264666321, 6325916.274968817, 6326266.653126474, 6326412.066489445, 6327160.843783112, 6327363.493574063, 6327807.902186938, 6328306.25, 6328947.161625833, 6333085.841167674, 6335227.650616082, 6335763.716244206, 6335813.880061874, 6340120.3125, 6340164.363947675, 6343090.228854202, 6371619.503149825, 6371769.173978605, 6372767.1875, 6373468.147549183, 6373484.375, 6374921.237913098, 6374971.5274122, 6375132.92470193, 6375873.7337645525, 6376271.875, 6380550.338948217, 6381745.215325019, 6385120.118238646, 6388298.35048034, 6389682.845921252, 6390369.331351297, 6390424.791448577, 6391662.778032314, 6391770.192896721, 6393018.245588185, 6393265.625, 6395527.47757011, 6395541.858591219, 6395891.017398792, 6395928.411379177, 6396507.8125, 6397542.383866809, 6398087.5, 6398092.723645138, 6399044.1911085695, 6401534.30370691, 6401683.275912926, 6402217.1875, 6403438.905142425, 6408740.631104086, 6411901.25713896, 6411992.755530298, 6413001.4263744885, 6415456.612284501, 6418421.57176605, 6419870.3125, 6420327.133472233, 6420996.910605784, 6421042.1875, 6421737.396454045, 6423353.720684448, 6423629.876980979, 6423873.651163863, 6424031.933349526, 6424276.5625, 6424310.048209105, 6424540.625, 6425425.0, 6425545.368400081, 6425561.207958143, 6425648.4375, 6425698.471847008, 6425759.375, 6425785.421240104, 6426040.390240484, 6426146.786836528, 6426306.078083623, 6426846.875, 6427183.343046696, 6429050.206278315, 6429443.15104515, 6429668.171663146, 6430475.488533237, 6430820.195826817, 6430901.439655873, 6431816.300986892, 6431876.5625, 6433097.986793568, 6433156.055062369, 6433624.081863325, 6434126.5625, 6434582.752050692, 6435471.263156989, 6437668.75, 6437708.792484568, 6438619.046141189, 6440201.5625, 6444614.0625, 6452721.687254612, 6461981.849207482, 6462628.125, 6466230.972593063, 6468354.6875, 6468409.375, 6468457.8125, 6469300.705151002, 6470143.75, 6471878.690734935, 6473689.0625, 6474282.8125, 6474409.375, 6476094.005922803, 6477192.1875, 6477204.0577050615, 6478023.4375, 6478389.303190794, 6480331.768333701, 6480730.883417196, 6481705.702927288, 6486690.813022942, 6492989.007913382, 6493017.664453561, 6503280.031473174, 6510978.125, 6514111.806153762, 6514670.643496179, 6515584.866644191, 6537784.310706902, 6548020.3125, 6629111.760543469, 6632757.8125, 6634112.553282835, 6634699.436802468, 6636475.0, 6638892.1875, 6638904.472390883, 6639084.234824013, 6639139.0353327785, 6639650.2583723655, 6639714.814162247, 6640037.5, 6640777.322506074, 6641030.219617884, 6641082.8125, 6641126.42092975, 6641208.076098562, 6641362.521779436, 6641435.259299697, 6641480.702617058, 6641564.693936142, 6641750.291380253, 6641775.0, 6641857.241495562, 6642092.1875, 6642125.757400483, 6642126.5625, 6642129.797808822, 6642857.179276977, 6642860.556488722, 6643030.513491043, 6643128.269940086, 6643146.875, 6643159.172095848, 6644221.875, 6644917.1875, 6644978.125, 6646464.6511938395, 6649036.553113891, 6649048.398908289, 6649131.61418353, 6650804.6875, 6652505.167459739, 6653254.174375529, 6654031.654662467, 6654455.176129522, 6654940.238006178, 6655071.875, 6655306.25, 6655720.062966577, 6656270.3125, 6656515.085832041, 6658256.25, 6659659.299819753, 6661284.913263732, 6661580.404454768, 6661614.5333805755, 6661823.798177294, 6662887.5, 6663061.115001564, 6663107.8125, 6663603.2761391, 6664845.3125, 6664852.679514976, 6664936.268947553, 6665023.4375, 6665044.673916441, 6665485.9375, 6665818.75, 6666183.098243194, 6666269.854584537, 6666712.793838894, 6667358.421247176, 6668061.926811396, 6669094.013795535, 6670928.125, 6671234.375, 6671439.491193532, 6671703.33510381, 6672307.347442146, 6673103.563335092, 6673627.847592638, 6674846.177655005, 6675575.344682352, 6675853.446708413, 6676197.143225649, 6676859.375, 6676906.167234496, 6677197.340912733, 6677426.306899995, 6677472.813146242, 6677518.75, 6677631.146363738, 6678304.393160217, 6678354.6875, 6678444.454245917, 6678450.0, 6678679.451508411, 6678862.249026956, 6678909.51511213, 6678989.040877292, 6679275.143888748, 6680486.019499523, 6680517.258135733, 6680521.3119245395, 6680606.874392826, 6680646.875, 6680663.212564607, 6681873.4375, 6682020.3125, 6682069.90995927, 6682261.654692946, 6682450.284887935, 6682495.3125, 6683403.125, 6683612.5, 6684753.125, 6684977.196046292, 6685185.630791905, 6685238.068063877, 6685345.977361411, 6685719.735335011, 6686353.373844471, 6686462.850013424, 6687980.801983523, 6691860.080421842, 6692411.736497123, 6692540.304831698, 6692898.4375, 6693014.820858013, 6693283.175173742, 6693289.687172432, 6693349.332730667, 6700364.530995159, 6710846.861358023, 6713459.375, 6715448.071642916, 6720803.125, 6720811.113537734, 6724234.523924861, 6730215.522029052, 6730886.442691335, 6730917.1875, 6732864.304016233, 6732918.440706169, 6732942.094280145, 6733458.291012946, 6734201.688359984, 6734324.417040554, 6734324.819475957, 6734360.62256389, 6734540.26781889, 6735068.83436391, 6735242.2081692405, 6735901.5625, 6735955.929551811, 6735959.891552653, 6736045.3125, 6736187.129073268, 6737281.25, 6739016.289060876, 6739062.884031042, 6742353.675343671, 6742429.043221773, 6742445.436257308, 6742952.794860666, 6743671.127919166, 6743700.365789158, 6744401.5625, 6744564.91454307, 6744742.313795652, 6744809.249839311, 6747181.906692894, 6747584.375, 6747708.461367584, 6747715.412770637, 6759080.035444213, 6762858.410029164, 6783006.586059302, 6785112.356803925, 6786338.197610735, 6786837.5, 6787268.856266806, 6787311.975478376, 6788109.375, 6789924.942402752, 6790082.8125, 6790360.871573036, 6790748.4375, 6791523.4375, 6791715.625, 6791803.921389434, 6791984.375, 6792219.544405518, 6792523.447702178, 6792556.773775032, 6792688.1798710115, 6792844.45004941, 6792987.01047293, 6792991.388412957, 6793104.301507835, 6794204.004485628, 6794635.134454439, 6795657.389466019, 6795956.25, 6796126.5625, 6796243.72777019, 6796759.190506166, 6796951.06022468, 6797158.981295238, 6797375.770429116, 6797454.6875, 6797916.136631205, 6797977.50920019, 6798079.6875, 6798154.6875, 6798201.470641127, 6798227.551971198, 6798484.158334468, 6798686.082785918, 6798704.81289054, 6798748.4375, 6798920.926879441, 6799219.156389651, 6799411.917247664, 6799615.777353265, 6799903.4407646125, 6799948.2261758605, 6799996.347460136, 6800020.607050089, 6800213.520700486, 6800955.934332647, 6800956.25, 6801032.586728344, 6802131.25, 6802687.433542428, 6802923.4375, 6803509.93858895, 6803581.25, 6803807.1567473775, 6804105.333024626, 6804575.337803822, 6804914.0625, 6805162.5, 6805405.781038971, 6805525.7596593425, 6805532.6011261195, 6805641.289303714, 6805650.0, 6805669.89572884, 6805735.426951934, 6805897.572435021, 6805916.3006789, 6806000.355841366, 6806004.664539911, 6806239.602990499, 6806357.171407196, 6806372.255763644, 6806382.8125, 6806457.8125, 6806588.288847752, 6806644.201080806, 6806832.57716779, 6806850.0, 6806983.281178987, 6807140.757303209, 6807165.625, 6807482.8125, 6807585.9375, 6808921.71257854, 6809276.277426732, 6809301.347804814, 6809622.369295151, 6809821.67700982, 6809901.588589555, 6809954.6875, 6810015.625, 6810024.277176605, 6810106.974944865, 6810154.6875, 6810195.3125, 6810352.957338562, 6810521.148015001, 6810640.939854705, 6810674.590049123, 6810843.932917241, 6810903.187593988, 6811122.4881537575, 6811140.625, 6811406.25, 6811462.186874625, 6811649.720778206, 6812004.6875, 6812015.625, 6812121.19737253, 6812239.094547062, 6812350.947815896, 6812474.762583553, 6812667.1875, 6812970.945376196, 6813268.874795685, 6813892.002055272, 6814281.312626443, 6814339.904879159, 6815312.5, 6815355.393903497, 6815635.722515959, 6815865.625, 6815904.680151547, 6816044.418874537, 6816142.553614039, 6816406.008740767, 6816537.369823763, 6816579.6875, 6817201.87892688, 6817516.376446321, 6818397.256920988, 6818539.0625, 6818578.125, 6819446.44463344, 6820906.25, 6821267.15317813, 6821721.044599677, 6822885.560707419, 6823945.724419981, 6825510.253022533, 6825540.625, 6825881.023097125, 6826225.8717743065, 6826638.436015944, 6827224.235838456, 6827226.0197462905, 6827330.676617269, 6827470.680116687, 6827615.916682976, 6828077.128852561, 6828133.460763748, 6828186.914749446, 6828215.625, 6828422.645943817, 6828611.2980201775, 6828645.762329224, 6828703.3503191685, 6828704.520466023, 6828897.859679519, 6828971.177860984, 6829033.159830302, 6829096.875, 6829100.0, 6829120.153392496, 6829131.25, 6829256.25, 6829320.677675958, 6829339.0625, 6829351.982215961, 6829385.9375, 6829420.3125, 6829467.140316718, 6829476.693236242, 6829488.950932421, 6829513.046002867, 6829519.85662693, 6829582.820632978, 6829586.911100137, 6829598.4375, 6829663.495903673, 6829677.678105098, 6829762.919308194, 6829784.484382247, 6829796.875, 6829804.090673076, 6829846.17354558, 6829886.4325005915, 6829907.108875622, 6829930.336412042, 6829933.342394109, 6830032.403184797, 6830032.8125, 6830142.514184722, 6830146.464448304, 6830219.07517431, 6830225.3157029785, 6830343.954165335, 6830371.875, 6830373.219472903, 6830405.372516033, 6830518.714147193, 6830578.28221747, 6830583.605634999, 6830644.308378174, 6830644.371081062, 6830690.625, 6830712.5, 6830725.748577251, 6830742.51471447, 6830769.826912452, 6830810.827771205, 6830830.955327099, 6830854.003036293, 6830854.5691178655, 6830876.430313324, 6830880.356429671, 6830910.220525707, 6830941.152418761, 6830997.922196195, 6831029.6875, 6831075.937172073, 6831082.8125, 6831105.905929562, 6831146.875, 6831150.232798458, 6831160.589656212, 6831166.461775569, 6831209.970884856, 6831244.321003906, 6831264.370174868, 6831268.874071241, 6831314.0625, 6831337.146848315, 6831353.0049951365, 6831357.315904526, 6831378.125, 6831389.0625, 6831459.920439449, 6831482.678917947, 6831484.41369832, 6831516.053897195, 6831524.866516688, 6831583.429374034, 6831586.992004489, 6831611.789977361, 6831633.813530175, 6831655.514047603, 6831758.964954069, 6831803.105745647, 6831818.75, 6831867.040728981, 6831867.27372822, 6831936.644967581, 6831976.5625, 6832111.484827539, 6832140.625, 6832189.04191271, 6832278.125, 6832282.950765639, 6832317.1875, 6832401.455828984, 6832485.9375, 6832501.830886689, 6832508.8736453485, 6832512.490612425, 6832550.0, 6832556.25, 6832560.1182880765, 6832671.875, 6832681.853704636, 6832687.5, 6832781.457984952, 6832783.231877588, 6832793.313954467, 6832802.811507403, 6832806.124170608, 6832848.4375, 6832851.645937551, 6832859.0275316555, 6832876.868055951, 6832930.256964497, 6833091.079027033, 6833096.875, 6833116.905055194, 6833180.4283237485, 6833228.40258216, 6833278.861633464, 6833292.201023546, 6833358.808597408, 6833429.182517134, 6833431.602904239, 6833563.250747361, 6833610.345945247, 6833686.486578453, 6833711.652225154, 6833779.269524927, 6833853.9070619615, 6833945.840940745, 6833969.821024409, 6833996.131614555, 6834071.875, 6834100.336796857, 6834101.239876275, 6834141.6701335, 6834159.1024650615, 6834274.761282047, 6834301.172487742, 6834335.212326234, 6834352.961303993, 6834356.078633364, 6834360.483169621, 6834385.707920347, 6834406.26657614, 6834520.3125, 6834581.343432886, 6834587.307418033, 6834942.387386004, 6835187.5, 6835202.425229573, 6835320.3125, 6835396.541935264, 6835554.887501084, 6835624.885910476, 6835892.183853868, 6836004.024196394, 6836911.161865955, 6837978.125, 6838034.138143068, 6838573.11483483, 6838924.932172294, 6842857.736021721, 6852088.624154273, 6854308.506850072, 6854851.297850277, 6855092.1875, 6856103.125, 6856762.38047178, 6857030.565387025, 6857838.820698754, 6858528.125, 6858546.948686297, 6859398.803860997, 6859648.4375, 6860354.154155213, 6861300.0, 6861306.613700884, 6862171.558151472, ...], [56.07063203706073, 26.09563775824291, 9.829079834201693, 6.19623448641939, 63.03211906230305, 14.506022556368269, 17.601549887516875, 65.34336139988646, 41.835121670877804, 63.49110378417562, 5.189074943465609, 5.386680486059707, 26.703348321099096, 7.017226782176878, 22.444884339674925, 38.13817340221402, 60.73043818185384, 55.66090769387404, 49.00898969771233, 19.856378802304707, 20.92948125347978, 16.004960023145404, 93.42291811265869, 105.36506803140237, 55.22946033658549, 53.820169574260795, 11.127251701685852, 73.0819886251234, 28.446816278368054, 30.500233763355716, 12.236715442762328, 27.81910113574672, 45.836063594560656, 12.973500125551663, 72.14331043551313, 5.477763853011532, 7.388864921327915, 6.8250713046081355, 15.731518730824376, 12.780938864884204, 16.09237857726248, 23.968600465935417, 119.83700276667219, 28.588202893349067, 5.340951670142343, 28.329698348722346, 37.39590843763768, 16.709153459516926, 7.517350032701232, 52.771387002552885, 35.94091018271184, 50.80206529712721, 73.26061254223909, 12.292900017774574, 74.70098052734099, 9.071934705764697, 19.052527756395296, 71.24320210688082, 54.07341455501968, 265.7259241217547, 84.20613472635836, 17.91913515160188, 24.28905446721271, 17.049181395109976, 22.137634159920758, 122.80086053383766, 9.907294100877618, 20.029149789941627, 71.7315036062534, 9.409070688694175, 37.39883486939237, 37.761578944659334, 7.733800699061319, 30.797937101031497, 128.99838552194763, 224.04519221280862, 5.708275318689917, 29.732838182156218, 27.115790452608366, 5.995201394494593, 77.38470730346917, 59.35302234938895, 30.722271144544266, 154.4296477858248, 56.09930282664572, 7.967328409210181, 7.914863656516175, 18.76537316616238, 5.331253691562925, 7.981153177666256, 8.889489380302331, 18.339322534751318, 11.564356358815303, 122.83818142187648, 9.107242376423814, 123.45916927860912, 175.29302292775122, 137.32886053387756, 28.235741648146675, 9.64432807299074, 77.8851749142331, 69.01249812203545, 43.83944598037677, 24.931145774706074, 77.25549479733786, 66.64129185982561, 73.8735382864464, 174.0852408410499, 9.063937294958487, 34.846333470381865, 7.000507452607215, 21.833500660058398, 15.762372754931299, 117.10008996904233, 15.176796337404655, 93.57360806375947, 84.61883709511372, 7.492858609666375, 73.20729629968665, 31.814269795906945, 25.03682089653273, 23.23396674673427, 29.404296946264893, 57.60497299031576, 27.25719336247592, 31.13899983845341, 24.86707850717826, 140.21241656872883, 59.45036199895632, 13.918310268167634, 10.747778633285058, 36.760945278239106, 62.86178263570446, 13.137843503598335, 106.45422902874913, 59.734362832945706, 20.624542918069487, 137.31312562316904, 49.43303087837355, 116.0842121599388, 55.436868773881464, 156.81127696489625, 94.62413334714437, 59.71501605366211, 41.63934743084855, 118.31233469985045, 9.1201868047878, 23.67984879160359, 5.5005917905589605, 5.8561244796545155, 40.85914510388619, 33.4888675608728, 82.73804426084737, 14.459628958423707, 29.196908137681753, 75.41204820446082, 47.74970735324905, 23.400522752174332, 147.49735721318135, 25.528649776395035, 5.749737372746509, 50.23061717627709, 9.503505634029786, 106.66751610896904, 25.389950615011333, 42.99044360811129, 67.80492748702451, 14.569323564043213, 18.76775649215487, 7.247550350194846, 28.741825867670162, 18.49715994878787, 5.361263937060797, 7.945894225745194, 139.71506471022812, 5.400723336460811, 5.487191606612264, 6.0492969989580265, 99.42768519148936, 22.082414773731553, 18.61701856846863, 59.79844406467576, 78.88788929084645, 71.83431455726443, 6.036702472076214, 11.949416193744206, 29.538990385458646, 7.20084467232208, 105.87551552378092, 141.09080034434817, 5.218026312422773, 9.276783334453729, 46.23363177767121, 7.017092856794906, 124.82401179172793, 31.390705819633013, 17.219170388477938, 74.8813264594954, 81.20833382968752, 22.42221863361179, 40.81123129235505, 30.59388549593067, 176.20990802105874, 22.195086281907248, 17.660740550966622, 17.277410818285748, 28.988459989514816, 10.966425747440166, 15.217815291246973, 11.311050594998765, 340.94990732590986, 75.43329020602646, 134.38800444479716, 40.00191257804434, 17.47616524779702, 16.014006505082232, 65.09535450869313, 9.749677296389148, 91.52349394968557, 22.54461769071616, 11.544692225226594, 25.707249999086677, 18.20996065327645, 16.68633672933071, 15.232226561613583, 24.523904481227646, 77.46049830448467, 33.98772940001531, 8.19656884101864, 14.005051430590814, 30.937106276219012, 53.12387261929945, 14.010844962635957, 10.700413102503228, 65.77592256046744, 21.575681088452836, 144.0833032851957, 17.73847678022874, 20.25813476230444, 54.90187710011353, 48.54632843527331, 16.82960473963261, 12.31019072362033, 8.799617549429193, 13.72368176740732, 52.582741415228135, 46.90471675340255, 30.84862651264708, 22.259188376148632, 12.402221284448112, 10.240386037678242, 56.80426480961775, 118.76432185204735, 58.001719219476314, 22.924650040674265, 46.80629612065768, 17.087931984591375, 78.34280623168664, 15.952137683613252, 33.19853918044565, 24.772413131082065, 17.956748046832637, 56.289468041552105, 10.358401976896287, 26.291718493699427, 6.950512466227142, 5.5985591500192, 29.138137459282245, 42.68766148408197, 52.272410629502005, 10.835371938490038, 34.91248962084255, 112.6834711885268, 18.67581518627141, 29.913453755664687, 14.804962870038501, 32.588070371109914, 63.54009935829295, 14.559022477153572, 41.80922103585018, 8.059958062964112, 57.54954087371252, 29.35793210913901, 85.47705576200413, 77.40309677608442, 42.17914585847131, 87.07878856357398, 12.419377784717184, 67.41766670437927, 36.26416677406268, 87.46393222308969, 17.516449735647974, 23.1769169822273, 56.99606589633142, 17.725539248263814, 25.88344112651053, 85.4597886351529, 7.529756500978428, 34.06547913508063, 38.14811064339878, 43.44494509826955, 62.90365675009846, 55.30088311846258, 134.94625738230874, 172.58084577136555, 63.948357575024254, 58.22251163220751, 13.906064827238005, 77.00278563719789, 10.81860834758158, 26.98497210956544, 12.44437476160724, 21.956419252585118, 16.606698464257583, 14.374741450855941, 24.589769099716456, 92.46660727171464, 92.32626685302043, 18.625934137678264, 34.55724094625096, 31.490779348265878, 11.200395288647874, 16.61924226885571, 10.025501381924924, 33.81464702245183, 71.75930143433943, 98.26056097221189, 18.97125204845889, 5.800555636516856, 22.219418638095384, 93.50630982811523, 18.538663128570942, 20.02488309180787, 142.37139518737894, 5.330097650098789, 173.25304027152734, 5.354763180628302, 12.30015822053657, 22.741141612547047, 56.44373199710927, 121.63144656875784, 14.595943967006951, 33.48890656016408, 15.29474002136893, 93.78675213770042, 113.850147983507, 35.11378249282296, 21.7524978171193, 93.07261011338488, 17.149282818153086, 68.41074351798711, 20.472360792436824, 212.18215477486746, 12.551779977629973, 9.717620197079212, 93.52947119111504, 20.52855527794273, 35.654257666243566, 55.57599412641051, 11.556913875073818, 8.346816406534195, 11.62467408091534, 78.95157098950095, 11.702331693108254, 24.808425384908034, 35.80160810316947, 23.723795908509423, 62.14857402983691, 6.885397522123484, 5.239345617247031, 9.578106332632858, 7.560544544400103, 21.449202641575216, 55.691530696935985, 6.390174358631539, 23.388364606983114, 16.68271138651635, 5.630086247055411, 30.45055058112872, 7.174045295043531, 66.89211902974978, 6.574554561938732, 8.53448208551002, 14.676562310468672, 11.938531308185954, 33.52767863490694, 11.737102497529825, 11.137261303757148, 34.10037214036605, 17.661962659591403, 153.97696814505628, 9.657749127642079, 86.59949330962375, 50.7291378628419, 6.883114121020221, 17.735181455048583, 142.50816983935124, 14.561001302013429, 37.82140430936188, 11.43738278045919, 5.4710125757040675, 97.68531528889027, 31.11099677195107, 18.32647443342463, 70.86146766321312, 63.897184926145044, 11.216221023925463, 16.083361665830513, 104.50468891474267, 5.099132835950129, 58.72754958502614, 21.33241820690608, 60.74785516019497, 14.61579234553104, 25.537397973885597, 35.758375128197045, 22.73080561114132, 55.98099455889685, 20.55967811962021, 13.116500812420192, 29.672511525975626, 26.41369078400911, 70.97836457715634, 28.940464397367176, 70.8960224871883, 21.999339214961257, 8.186112821026441, 7.854196087505473, 78.14234852180418, 27.104576013853887, 100.98421233959708, 69.0181161911009, 117.65582572167533, 47.846755968443816, 30.590949693976757, 53.15793228587101, 22.948376388102076, 59.611037239638875, 64.44190095103382, 60.57003368865237, 29.162183897180803, 36.25054005645149, 53.750490698246175, 38.37564430901354, 139.70684080055102, 138.76059888873516, 40.73190737192321, 65.78297280372354, 34.102624489201396, 88.57184129338837, 130.43904760145, 10.267923340278292, 69.54835873759262, 9.543565170488087, 137.743141610397, 31.642893456047407, 5.18970466783386, 9.495613757190249, 55.45606230930154, 9.770115330281309, 223.91019869254856, 63.10292343327987, 19.755252050966227, 28.517314439491507, 11.994229521428041, 27.3142013250333, 56.367598066866336, 40.25771651685764, 53.761299966514585, 54.50819288723056, 65.50029002895326, 38.90864809920544, 89.50854139971581, 14.180452435649947, 296.25025113902933, 87.79181922051009, 20.006211966224274, 136.48246567197063, 79.43611395471578, 28.701030934071902, 7.268725976032982, 31.641580348852813, 64.49822403717509, 16.051370257442283, 8.2981283337975, 19.88235029161833, 8.016875477384211, 48.72827708358897, 39.97519690615355, 55.47713902948909, 10.338860401734522, 42.79104607053069, 18.908132331350114, 50.29639430235877, 16.577952143834615, 10.263838685195562, 13.664185953462098, 19.419014714258143, 73.9975147124032, 84.66404508926912, 9.165533484120251, 28.95007573962213, 68.78489125597275, 52.684307897911246, 12.192087554740123, 54.14816547249086, 11.067916541450716, 16.5386556931265, 92.26418514886745, 22.81545043508075, 21.363168162222916, 80.1187547257521, 44.88236840016036, 12.363784708679177, 75.74971375865866, 109.04405598247186, 37.89343784742657, 46.93415998272457, 60.331697346810245, 43.57066110924283, 27.121034280034504, 97.22911450091443, 18.622784341231707, 28.508227499404388, 41.111084160389076, 38.91446504003876, 7.668723883879745, 28.860529066664547, 57.93035257894341, 101.4635185835003, 13.477871291152047, 97.23602631475298, 49.8648184966766, 17.222553860664608, 47.459996170265605, 70.3761353771829, 79.58607310479618, 21.518185542301552, 16.193728842616927, 17.911579855242255, 20.79280556134626, 46.30851793261446, 37.67211050987942, 63.09018176500076, 151.14671620838982, 7.177798963598442, 21.84889533381404, 8.532826212675579, 54.973259070322484, 164.25763010093078, 26.546885004602494, 6.829478915661418, 5.408828007083277, 28.692284482299332, 37.776119686047444, 17.074526757378923, 24.33495666652971, 12.997902178897382, 151.98897361148389, 26.631157064368676, 13.926951154998841, 39.98852288115778, 37.60772506866381, 31.681079423627303, 14.112346655005053, 90.29524588346307, 11.354008775477029, 28.10394796605674, 15.519854640135318, 34.83954296502619, 76.15280302739563, 7.411533662235133, 78.07946530755548, 48.90508570136984, 12.459986241698942, 35.194719294878865, 36.803653580104644, 83.49898352914173, 8.706121965629004, 113.83985164634001, 48.16817819048694, 53.370934953317814, 34.7372519225488, 90.29687650210957, 18.06824761015601, 23.665431563886678, 20.334677050865245, 6.596621898487595, 6.653502443313717, 22.440697646357208, 27.425638611599652, 96.1085337620974, 79.5599897945616, 46.94205547546184, 63.73566984321253, 132.23934463077367, 8.73292374334342, 16.53104201833564, 9.92205734828081, 19.972397501943238, 45.11246401276121, 92.45701928627557, 39.87620066215849, 100.9525275041147, 30.14176558905084, 6.515045361141266, 8.366933314463623, 109.69299384832982, 17.294243552030046, 35.9884307517006, 15.9495567440953, 5.123946575392357, 39.60240510695492, 25.08769589768605, 20.676442419892805, 5.031854961378506, 161.8023613940314, 33.142148249104906, 47.090503493674234, 133.92748297954762, 22.22449505401862, 79.51509287495439, 99.30117842369403, 17.359216909687298, 74.40844823127654, 44.62767548971123, 47.88748447042259, 12.352938000191108, 5.048075508937244, 6.878587947314604, 100.48517790190802, 16.668074800219685, 47.879387911378906, 26.867691465681872, 8.489972719917128, 42.28429464743306, 137.9518092744992, 6.507073118526431, 32.95500654430641, 9.956120694173771, 34.47953779197832, 101.0607884141965, 39.98790648070091, 21.207697856328018, 9.893504090205914, 9.632700495650962, 25.984107911904193, 107.00538492809946, 77.53289338123625, 5.821885165212902, 8.924058998281009, 93.49223256402429, 6.478100103685473, 33.66562277490978, 27.285003560387263, 78.03814863611586, 134.30073970575737, 30.171329350101878, 8.757979117317637, 68.75088508092279, 5.267936684870443, 14.980538451774198, 103.53001780323812, 12.387519873070673, 32.28600094289877, 21.598213368689553, 12.57532221259069, 13.649522037746507, 25.9848749029687, 83.87330759101631, 8.997607542300447, 48.20327550052492, 47.32134544518891, 6.759076659365678, 83.88705545373546, 20.06505406722159, 13.626906610603458, 19.00249348848086, 86.77596784117044, 80.02126126739898, 100.97871892491442, 128.72458860352725, 43.291382271428375, 26.831329726703355, 73.34806431564121, 10.805130512479407, 25.519793612115656, 11.32952461605805, 46.58341685796373, 8.640587949036808, 73.72066032308645, 20.705497213632373, 11.374498506125546, 99.11560178532125, 14.192898421586644, 21.222705154388656, 5.136847573197004, 147.66274534242154, 23.55265486256575, 68.60411550341128, 10.792242800417283, 63.13554623591707, 77.37694878363162, 94.5426441896806, 5.486487782243106, 74.4256749279491, 12.918800527801396, 18.145222825818756, 11.700228024629922, 34.945449244079654, 85.71347275197823, 6.416007218259982, 12.566696294399993, 51.436171563055765, 18.26765348623769, 80.47480273458078, 10.533285023869338, 33.13300557267504, 18.489031651237006, 28.12987349562775, 8.484164615474795, 31.455802761729906, 14.739699047800144, 12.955551727190112, 140.76460436697548, 29.977158346194496, 33.63562441756007, 123.02375426552646, 11.914454402372584, 14.114482730543951, 92.09458802782385, 96.30715028265412, 11.34100008586672, 48.65147200673398, 84.49720842014675, 78.04085543075271, 25.6830260506496, 23.943301107689834, 63.010750863133325, 8.566491258031904, 24.349360991360697, 112.49092906802159, 86.13242355558509, 121.17053671821505, 5.185389561660235, 105.24908512082634, 71.17061577692567, 34.61837063228712, 35.36740714253317, 29.10278749632703, 5.837650008906686, 60.269364161744306, 5.955494944019535, 15.185579116448796, 44.78506523119576, 95.65169076601745, 52.90903938678113, 27.39613837391703, 24.019833206876623, 55.66343997453663, 47.85056619189923, 52.791163860215725, 11.178170633590552, 10.28599560800463, 14.107733969612163, 46.07944056199955, 18.0639667778515, 133.62423218808604, 8.190886640704322, 133.44880228844588, 16.468632222286164, 139.31183597062702, 18.55017285920477, 62.52847577132998, 68.24341470455286, 5.341669940670556, 12.363435534930577, 6.83886786669102, 24.531238460515887, 31.959750140441994, 58.21502550084928, 24.706546664241795, 10.059397757262609, 126.90738852840985, 88.6369750011083, 77.42281994182619, 7.454660703621332, 59.8331360395511, 11.074479973000892, 257.48637958110555, 5.786617127596288, 37.69408974041433, 8.812735890310833, 44.471062716101635, 14.141872279873418, 10.196151752683624, 100.9234083176051, 19.20880043384391, 140.80152415723586, 24.321880897835726, 27.426292675083307, 61.48693641602203, 130.01511886556247, 19.582681565601042, 13.09847534495329, 79.58180132485175, 19.00624635926688, 16.52019828927271, 126.9991110803022, 15.875995965947657, 34.31854958005314, 13.117850084642884, 7.3691609577123005, 5.411920242327684, 130.28749804018983, 81.8300764243366, 25.734325884884626, 133.0383962244394, 28.984439552032534, 215.9221333175869, 36.84203568279081, 7.236333247651748, 32.31258020614505, 105.92508820881062, 27.624482837849804, 15.46438311718951, 14.53266005967652, 12.103806785246892, 6.675784421319827, 11.140443011530964, 5.505166061167518, 41.19714170041837, 129.3359523816285, 252.44863843903616, 11.853119333873341, 15.375483929170615, 60.37456938789183, 29.739747879094914, 127.91410017638054, 34.40069918983241, 6.630718694888631, 107.53247901337592, 17.436351066177405, 8.08136908039732, 71.92153711992869, 6.309374197271136, 25.19174071482221, 129.9793350782896, 98.21805728812097, 15.781315288624471, 61.06708211247323, 14.170878801478896, 7.8713282922252, 33.14860589487955, 9.467974080736711, 64.17747844245649, 15.462641360103913, 7.844458861248137, 49.35749972032261, 76.87557169222234, 18.844915803751235, 16.354917912938607, 6.413573158093457, 81.98501754314076, 23.819027316221888, 40.82325054129801, 14.50870666338682, 210.16818229692578, 6.160538667683367, 12.76864993654433, 81.51270812810617, 5.674729200806293, 32.07912916727667, 12.995426090036023, 45.90581124774818, 23.20366586931112, 82.7305988203404, 48.621273947035505, 13.763022309907834, 28.329586037887275, 6.345538734586306, 17.67988140056329, 6.536428367108575, 137.55563274785024, 45.01148448391551, 159.82503862505254, 8.224120134289043, 155.92541934978553, 31.298979296875977, 35.93891524097332, 15.861576226194693, 10.92513740269342, 9.364340555778117, 165.1339447840456, 54.870673950238455, 9.913823856773435, 21.413709823974646, 58.194554135386994, 25.122438837743623, 12.723165748289086, 6.68431506345744, 71.70738208472044, 150.075245462811, 42.1651054302422, 15.280682251903746, 33.54436434572267, 112.82091913451744, 54.58331359932231, 161.79061702805265, 46.21588623149067, 99.03130173758929, 6.284826722934251, 98.3841759902905, 86.54580367845107, 101.53408966052288, 128.28678233639465, 8.940643025997389, 14.905848700608415, 36.66970988094741, 49.74297153071836, 124.82221407685097, 90.79585183184547, 17.880160080584226, 47.66552062472098, 15.79829608108597, 6.1328242888453035, 6.043898497370176, 94.05958973114791, 69.41640487951807, 92.47984687016236, 23.879910554706193, 82.36106267760375, 11.641438876350097, 68.09362829575946, 27.249015194246702, 70.58932162291003, 20.021562661057764, 17.444073907676273, 7.706817620671019, 61.75956127427244, 21.244775958247313, 20.855322820389645, 12.102959130055567, 9.648762530068161, 70.44682189104996, 30.237525879125617, 5.988692787028911, 5.367024093938492, 10.53171862559851, 25.651206957917672, 5.986785517794395, 43.983308430111535, 10.135507485952955, 44.36922617563751, 7.212892072380481, 31.743926414653494, 90.12996699013314, 38.44382086292669, 24.56642347932826, 111.33958907569695, 45.41140544842794, 47.74511610241744, 6.729770088385621, 21.961106477173978, 9.144542619433627, 6.766820384398225, 58.20292955505158, 9.411675564534722, 24.056780285143205, 109.893911583396, 40.09531201711927, 79.43713542013876, 47.573824382610695, 25.49726051840802, 45.03619183506421, 130.66630368734, 20.45169151945513, 12.418626940233654, 11.497501083287606, 117.4908172420656, 5.919040642427776, 13.83946236579385, 24.985328212466396, 36.86252043232728, 93.32023612634322, 9.996715814010066, 8.151414793249879, 49.463031798732246, 61.82207671331752, 46.253251985615904, 32.46803917067512, 29.60234158075259, 38.575333654407544, 66.7704928309852, 91.10274444905292, 59.15202827222607, 43.268970054024024, 68.0456958618784, 11.748128917772425, 23.53788466791833, ...])
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);
([2574865.625, 2745467.0512905447, 2847195.847749556, 2958557.2293914817, 2979714.0625, 3004133.865418259, 3017336.4954456165, 3029717.66258932, 3083879.6875, 3085687.2575013083, 3103044.73988999, 3103455.9380390076, 3108178.025635497, 3115098.025596548, 3189273.027896999, 3202623.1880073557, 3206657.8125, 3210475.0, 3324731.8049375867, 3335957.13112341, 3398207.2540807207, 3418636.1910804426, 3425793.021768938, 3470237.5, 3494128.125, 3518971.875, 3519006.2497088206, 3539375.980777125, 3542344.546728784, 3563934.089223398, 3577167.252330995, 3577632.1991735897, 3611160.5537949465, 3634457.178521356, 3669428.125, 3669462.867490445, 3670130.615665582, 3672303.4257467785, 3674354.8803985817, 3697252.413118136, 3697370.5848848, 3697408.419589834, 3697420.3125, 3697457.8125, 3698629.6591646518, 3699614.052558448, 3702934.375, 3705009.4657485075, 3705734.1311215954, 3706685.9375, 3744512.5635758457, 3755373.4375, 3755928.4685343686, 3756823.3362213066, 3781391.901202892, 3796829.363825386, 3798560.288533093, 3798860.9375, 3809833.873600537, 3817028.161279795, 3837354.150330473, 3874334.984956241, 3881950.628833915, 3888333.27379442, 3909723.820496391, 3939874.3029938787, 3956936.548172949, 3962104.027055469, 3972628.125, 3974831.3404473676, 3976228.125, 3976737.81918733, 3977209.7221147316, 3977489.0568038453, 3977959.0583043876, 3979263.3939760043, 3986909.398814734, 4014300.0, 4035257.678214298, 4056219.3691478865, 4075850.0, 4084715.625, 4107138.514743471, 4171386.4865781204, 4172770.3125, 4178718.093215373, 4192053.9115689714, 4203108.549865517, 4203960.622836029, 4244877.499040132, 4245293.176643972, 4246077.11882987, 4255892.449978712, 4257632.8125, 4257952.847439486, 4259876.155272354, 4280855.530416103, 4284025.151298793, 4288835.439708619, 4315540.9732638225, 4317487.401629857, 4331906.25, 4332885.114524227, 4333046.554514923, 4346963.474355225, 4361546.875, 4421730.716711812, 4435700.765424928, 4451740.290784571, 4462031.25, 4463121.394021009, 4519290.069345938, 4548576.762391053, 4559876.5625, 4576896.935390449, 4579027.837067724, 4596672.945010393, 4608009.059146209, 4609150.101809154, 4619138.535452549, 4630245.676138869, 4635660.59593724, 4637055.593383098, 4637690.769713187, 4638458.43977293, 4642095.3125, 4658443.532642003, 4672280.4591788, 4677385.784012855, 4684827.827885663, 4691068.492530078, 4691108.075706436, 4709354.391074644, 4716227.554812556, 4720896.147781521, 4731890.205368052, 4734282.599185233, 4742269.794051365, 4756034.375, 4757089.0625, 4757426.5625, 4759611.769503076, 4787375.0, 4788029.6875, 4798493.75, 4869724.801506432, 4871296.61417522, 4871852.582809412, 4905696.186905715, 4961917.741287101, 5000049.410257524, 5003117.1875, 5011828.125, 5011834.242554915, 5015401.5625, 5032085.9375, 5047029.6875, 5053889.718823505, 5066009.462484807, 5066958.472514489, 5069050.654786994, 5069060.9375, 5069629.884258256, 5070409.375, 5070576.380836265, 5070612.5, 5071084.375, 5071128.868994461, 5071381.987703249, 5071808.2714221375, 5071893.75, 5072012.0092049735, 5072017.741315048, 5072146.169957239, 5073803.125, 5074120.371213219, 5074214.64178007, 5075896.493417761, 5084262.797890089, 5085927.682114184, 5104513.216120858, 5108226.5625, 5110136.2630157005, 5123935.9375, 5139821.365818941, 5171417.656462528, 5179309.375, 5180937.793653287, 5218528.4088505125, 5221110.9375, 5237838.063743446, 5241846.8096895125, 5254831.25, 5255366.7750466615, 5255990.4533922365, 5256440.625, 5257404.8660364, 5260666.045421998, 5261038.693484743, 5263257.356184768, 5267535.9375, 5281729.275671634, 5348403.085169231, 5360962.06760466, 5454238.067827198, 5541069.013883517, 5547475.0, 5555682.706807391, 5555701.633151335, 5559267.301714251, 5562421.313905973, 5562432.8125, 5605743.740065755, 5613723.976142882, 5713763.937978246, 5833304.943039466, 5898518.75, 5898533.268950855, 5907471.875, 5910726.426898263, 5922381.501342001, 5960437.339145383, 5976683.467995763, 5993294.143100373, 5995078.1992379725, 6000111.136721348, 6009261.819396054, 6010641.744320097, 6011876.388323915, 6012390.3555129245, 6013770.016474297, 6014039.0625, 6014321.607340529, 6014343.45827621, 6015126.544288334, 6015843.258238684, 6017792.1875, 6018828.705672276, 6021783.741598095, 6023856.25, 6023930.3869639505, 6024599.748161312, 6031510.034586213, 6054252.421147756, 6056719.314386809, 6058165.625, 6058509.375, 6065363.368779175, 6106371.44851413, 6130898.493076357, 6131616.53450232, 6131690.029212201, 6132090.268688497, 6132456.25, 6132465.25745417, 6132832.417068404, 6132894.945377535, 6133350.930631657, 6133547.117080796, 6133584.375, 6133695.088484318, 6133724.053455429, 6134364.0625, 6134452.569947699, 6134684.250901632, 6135021.182196464, 6135793.466661464, 6135838.717811068, 6136037.5, 6137063.214650244, 6137398.242060473, 6137834.375, 6138201.5625, 6138381.974593231, 6138545.3125, 6138624.963708135, 6138681.093173415, 6139018.75, 6139281.410257543, 6139759.375, 6140471.420378486, 6142210.869091521, 6142659.375, 6142682.8125, 6142840.625, 6145426.5625, 6146288.684768937, 6147263.19431609, 6148790.901666419, 6151284.690240479, 6152314.0625, 6155164.606083044, 6170180.943425971, 6197759.30621041, 6245077.141044834, 6247429.537935702, 6304071.875, 6308627.917160442, 6312532.503899088, 6314243.75, 6315501.444217781, 6317642.082010405, 6317642.588034725, 6317683.848239759, 6317720.627251424, 6317806.25, 6317824.929944174, 6317963.761445119, 6318099.834612802, 6318382.605318823, 6318701.479539636, 6318914.768070791, 6318919.857724253, 6319062.417534131, 6319632.655406248, 6319668.469796473, 6319692.1875, 6319699.407957206, 6319738.217410043, 6319767.1875, 6319778.125, 6319778.17101137, 6319797.255049065, 6319881.970726733, 6319975.948471689, 6320068.83780377, 6320183.809307216, 6320204.583641062, 6321762.316901584, 6321779.257352809, 6322201.5625, 6323686.642221096, 6323789.043683414, 6323800.0, 6324240.275831598, 6325740.834144157, 6325790.995029903, 6325816.264666321, 6325916.274968817, 6326266.653126474, 6326412.066489445, 6327160.843783112, 6327363.493574063, 6327807.902186938, 6328306.25, 6328947.161625833, 6333085.841167674, 6335227.650616082, 6335763.716244206, 6335813.880061874, 6340120.3125, 6340164.363947675, 6343090.228854202, 6371619.503149825, 6371769.173978605, 6372767.1875, 6373468.147549183, 6373484.375, 6374921.237913098, 6374971.5274122, 6375132.92470193, 6375873.7337645525, 6376271.875, 6380550.338948217, 6381745.215325019, 6385120.118238646, 6388298.35048034, 6389682.845921252, 6390369.331351297, 6390424.791448577, 6391662.778032314, 6391770.192896721, 6393018.245588185, 6393265.625, 6395527.47757011, 6395541.858591219, 6395891.017398792, 6395928.411379177, 6396507.8125, 6397542.383866809, 6398087.5, 6398092.723645138, 6399044.1911085695, 6401534.30370691, 6401683.275912926, 6402217.1875, 6403438.905142425, 6408740.631104086, 6411901.25713896, 6411992.755530298, 6413001.4263744885, 6415456.612284501, 6418421.57176605, 6419870.3125, 6420327.133472233, 6420996.910605784, 6421042.1875, 6421737.396454045, 6423353.720684448, 6423629.876980979, 6423873.651163863, 6424031.933349526, 6424276.5625, 6424310.048209105, 6424540.625, 6425425.0, 6425545.368400081, 6425561.207958143, 6425648.4375, 6425698.471847008, 6425759.375, 6425785.421240104, 6426040.390240484, 6426146.786836528, 6426306.078083623, 6426846.875, 6427183.343046696, 6429050.206278315, 6429443.15104515, 6429668.171663146, 6430475.488533237, 6430820.195826817, 6430901.439655873, 6431816.300986892, 6431876.5625, 6433097.986793568, 6433156.055062369, 6433624.081863325, 6434126.5625, 6434582.752050692, 6435471.263156989, 6437668.75, 6437708.792484568, 6438619.046141189, 6440201.5625, 6444614.0625, 6452721.687254612, 6461981.849207482, 6462628.125, 6466230.972593063, 6468354.6875, 6468409.375, 6468457.8125, 6469300.705151002, 6470143.75, 6471878.690734935, 6473689.0625, 6474282.8125, 6474409.375, 6476094.005922803, 6477192.1875, 6477204.0577050615, 6478023.4375, 6478389.303190794, 6480331.768333701, 6480730.883417196, 6481705.702927288, 6486690.813022942, 6492989.007913382, 6493017.664453561, 6503280.031473174, 6510978.125, 6514111.806153762, 6514670.643496179, 6515584.866644191, 6537784.310706902, 6548020.3125, 6629111.760543469, 6632757.8125, 6634112.553282835, 6634699.436802468, 6636475.0, 6638892.1875, 6638904.472390883, 6639084.234824013, 6639139.0353327785, 6639650.2583723655, 6639714.814162247, 6640037.5, 6640777.322506074, 6641030.219617884, 6641082.8125, 6641126.42092975, 6641208.076098562, 6641362.521779436, 6641435.259299697, 6641480.702617058, 6641564.693936142, 6641750.291380253, 6641775.0, 6641857.241495562, 6642092.1875, 6642125.757400483, 6642126.5625, 6642129.797808822, 6642857.179276977, 6642860.556488722, 6643030.513491043, 6643128.269940086, 6643146.875, 6643159.172095848, 6644221.875, 6644917.1875, 6644978.125, 6646464.6511938395, 6649036.553113891, 6649048.398908289, 6649131.61418353, 6650804.6875, 6652505.167459739, 6653254.174375529, 6654031.654662467, 6654455.176129522, 6654940.238006178, 6655071.875, 6655306.25, 6655720.062966577, 6656270.3125, 6656515.085832041, 6658256.25, 6659659.299819753, 6661284.913263732, 6661580.404454768, 6661614.5333805755, 6661823.798177294, 6662887.5, 6663061.115001564, 6663107.8125, 6663603.2761391, 6664845.3125, 6664852.679514976, 6664936.268947553, 6665023.4375, 6665044.673916441, 6665485.9375, 6665818.75, 6666183.098243194, 6666269.854584537, 6666712.793838894, 6667358.421247176, 6668061.926811396, 6669094.013795535, 6670928.125, 6671234.375, 6671439.491193532, 6671703.33510381, 6672307.347442146, 6673103.563335092, 6673627.847592638, 6674846.177655005, 6675575.344682352, 6675853.446708413, 6676197.143225649, 6676859.375, 6676906.167234496, 6677197.340912733, 6677426.306899995, 6677472.813146242, 6677518.75, 6677631.146363738, 6678304.393160217, 6678354.6875, 6678444.454245917, 6678450.0, 6678679.451508411, 6678862.249026956, 6678909.51511213, 6678989.040877292, 6679275.143888748, 6680486.019499523, 6680517.258135733, 6680521.3119245395, 6680606.874392826, 6680646.875, 6680663.212564607, 6681873.4375, 6682020.3125, 6682069.90995927, 6682261.654692946, 6682450.284887935, 6682495.3125, 6683403.125, 6683612.5, 6684753.125, 6684977.196046292, 6685185.630791905, 6685238.068063877, 6685345.977361411, 6685719.735335011, 6686353.373844471, 6686462.850013424, 6687980.801983523, 6691860.080421842, 6692411.736497123, 6692540.304831698, 6692898.4375, 6693014.820858013, 6693283.175173742, 6693289.687172432, 6693349.332730667, 6700364.530995159, 6710846.861358023, 6713459.375, 6715448.071642916, 6720803.125, 6720811.113537734, 6724234.523924861, 6730215.522029052, 6730886.442691335, 6730917.1875, 6732864.304016233, 6732918.440706169, 6732942.094280145, 6733458.291012946, 6734201.688359984, 6734324.417040554, 6734324.819475957, 6734360.62256389, 6734540.26781889, 6735068.83436391, 6735242.2081692405, 6735901.5625, 6735955.929551811, 6735959.891552653, 6736045.3125, 6736187.129073268, 6737281.25, 6739016.289060876, 6739062.884031042, 6742353.675343671, 6742429.043221773, 6742445.436257308, 6742952.794860666, 6743671.127919166, 6743700.365789158, 6744401.5625, 6744564.91454307, 6744742.313795652, 6744809.249839311, 6747181.906692894, 6747584.375, 6747708.461367584, 6747715.412770637, 6759080.035444213, 6762858.410029164, 6783006.586059302, 6785112.356803925, 6786338.197610735, 6786837.5, 6787268.856266806, 6787311.975478376, 6788109.375, 6789924.942402752, 6790082.8125, 6790360.871573036, 6790748.4375, 6791523.4375, 6791715.625, 6791803.921389434, 6791984.375, 6792219.544405518, 6792523.447702178, 6792556.773775032, 6792688.1798710115, 6792844.45004941, 6792987.01047293, 6792991.388412957, 6793104.301507835, 6794204.004485628, 6794635.134454439, 6795657.389466019, 6795956.25, 6796126.5625, 6796243.72777019, 6796759.190506166, 6796951.06022468, 6797158.981295238, 6797375.770429116, 6797454.6875, 6797916.136631205, 6797977.50920019, 6798079.6875, 6798154.6875, 6798201.470641127, 6798227.551971198, 6798484.158334468, 6798686.082785918, 6798704.81289054, 6798748.4375, 6798920.926879441, 6799219.156389651, 6799411.917247664, 6799615.777353265, 6799903.4407646125, 6799948.2261758605, 6799996.347460136, 6800020.607050089, 6800213.520700486, 6800955.934332647, 6800956.25, 6801032.586728344, 6802131.25, 6802687.433542428, 6802923.4375, 6803509.93858895, 6803581.25, 6803807.1567473775, 6804105.333024626, 6804575.337803822, 6804914.0625, 6805162.5, 6805405.781038971, 6805525.7596593425, 6805532.6011261195, 6805641.289303714, 6805650.0, 6805669.89572884, 6805735.426951934, 6805897.572435021, 6805916.3006789, 6806000.355841366, 6806004.664539911, 6806239.602990499, 6806357.171407196, 6806372.255763644, 6806382.8125, 6806457.8125, 6806588.288847752, 6806644.201080806, 6806832.57716779, 6806850.0, 6806983.281178987, 6807140.757303209, 6807165.625, 6807482.8125, 6807585.9375, 6808921.71257854, 6809276.277426732, 6809301.347804814, 6809622.369295151, 6809821.67700982, 6809901.588589555, 6809954.6875, 6810015.625, 6810024.277176605, 6810106.974944865, 6810154.6875, 6810195.3125, 6810352.957338562, 6810521.148015001, 6810640.939854705, 6810674.590049123, 6810843.932917241, 6810903.187593988, 6811122.4881537575, 6811140.625, 6811406.25, 6811462.186874625, 6811649.720778206, 6812004.6875, 6812015.625, 6812121.19737253, 6812239.094547062, 6812350.947815896, 6812474.762583553, 6812667.1875, 6812970.945376196, 6813268.874795685, 6813892.002055272, 6814281.312626443, 6814339.904879159, 6815312.5, 6815355.393903497, 6815635.722515959, 6815865.625, 6815904.680151547, 6816044.418874537, 6816142.553614039, 6816406.008740767, 6816537.369823763, 6816579.6875, 6817201.87892688, 6817516.376446321, 6818397.256920988, 6818539.0625, 6818578.125, 6819446.44463344, 6820906.25, 6821267.15317813, 6821721.044599677, 6822885.560707419, 6823945.724419981, 6825510.253022533, 6825540.625, 6825881.023097125, 6826225.8717743065, 6826638.436015944, 6827224.235838456, 6827226.0197462905, 6827330.676617269, 6827470.680116687, 6827615.916682976, 6828077.128852561, 6828133.460763748, 6828186.914749446, 6828215.625, 6828422.645943817, 6828611.2980201775, 6828645.762329224, 6828703.3503191685, 6828704.520466023, 6828897.859679519, 6828971.177860984, 6829033.159830302, 6829096.875, 6829100.0, 6829120.153392496, 6829131.25, 6829256.25, 6829320.677675958, 6829339.0625, 6829351.982215961, 6829385.9375, 6829420.3125, 6829467.140316718, 6829476.693236242, 6829488.950932421, 6829513.046002867, 6829519.85662693, 6829582.820632978, 6829586.911100137, 6829598.4375, 6829663.495903673, 6829677.678105098, 6829762.919308194, 6829784.484382247, 6829796.875, 6829804.090673076, 6829846.17354558, 6829886.4325005915, 6829907.108875622, 6829930.336412042, 6829933.342394109, 6830032.403184797, 6830032.8125, 6830142.514184722, 6830146.464448304, 6830219.07517431, 6830225.3157029785, 6830343.954165335, 6830371.875, 6830373.219472903, 6830405.372516033, 6830518.714147193, 6830578.28221747, 6830583.605634999, 6830644.308378174, 6830644.371081062, 6830690.625, 6830712.5, 6830725.748577251, 6830742.51471447, 6830769.826912452, 6830810.827771205, 6830830.955327099, 6830854.003036293, 6830854.5691178655, 6830876.430313324, 6830880.356429671, 6830910.220525707, 6830941.152418761, 6830997.922196195, 6831029.6875, 6831075.937172073, 6831082.8125, 6831105.905929562, 6831146.875, 6831150.232798458, 6831160.589656212, 6831166.461775569, 6831209.970884856, 6831244.321003906, 6831264.370174868, 6831268.874071241, 6831314.0625, 6831337.146848315, 6831353.0049951365, 6831357.315904526, 6831378.125, 6831389.0625, 6831459.920439449, 6831482.678917947, 6831484.41369832, 6831516.053897195, 6831524.866516688, 6831583.429374034, 6831586.992004489, 6831611.789977361, 6831633.813530175, 6831655.514047603, 6831758.964954069, 6831803.105745647, 6831818.75, 6831867.040728981, 6831867.27372822, 6831936.644967581, 6831976.5625, 6832111.484827539, 6832140.625, 6832189.04191271, 6832278.125, 6832282.950765639, 6832317.1875, 6832401.455828984, 6832485.9375, 6832501.830886689, 6832508.8736453485, 6832512.490612425, 6832550.0, 6832556.25, 6832560.1182880765, 6832671.875, 6832681.853704636, 6832687.5, 6832781.457984952, 6832783.231877588, 6832793.313954467, 6832802.811507403, 6832806.124170608, 6832848.4375, 6832851.645937551, 6832859.0275316555, 6832876.868055951, 6832930.256964497, 6833091.079027033, 6833096.875, 6833116.905055194, 6833180.4283237485, 6833228.40258216, 6833278.861633464, 6833292.201023546, 6833358.808597408, 6833429.182517134, 6833431.602904239, 6833563.250747361, 6833610.345945247, 6833686.486578453, 6833711.652225154, 6833779.269524927, 6833853.9070619615, 6833945.840940745, 6833969.821024409, 6833996.131614555, 6834071.875, 6834100.336796857, 6834101.239876275, 6834141.6701335, 6834159.1024650615, 6834274.761282047, 6834301.172487742, 6834335.212326234, 6834352.961303993, 6834356.078633364, 6834360.483169621, 6834385.707920347, 6834406.26657614, 6834520.3125, 6834581.343432886, 6834587.307418033, 6834942.387386004, 6835187.5, 6835202.425229573, 6835320.3125, 6835396.541935264, 6835554.887501084, 6835624.885910476, 6835892.183853868, 6836004.024196394, 6836911.161865955, 6837978.125, 6838034.138143068, 6838573.11483483, 6838924.932172294, 6842857.736021721, 6852088.624154273, 6854308.506850072, 6854851.297850277, 6855092.1875, 6856103.125, 6856762.38047178, 6857030.565387025, 6857838.820698754, 6858528.125, 6858546.948686297, 6859398.803860997, 6859648.4375, 6860354.154155213, 6861300.0, 6861306.613700884, 6862171.558151472, ...], [56.07063203706073, 26.09563775824291, 9.829079834201693, 6.19623448641939, 63.03211906230305, 14.506022556368269, 17.601549887516875, 65.34336139988646, 41.835121670877804, 63.49110378417562, 5.189074943465609, 5.386680486059707, 26.703348321099096, 7.017226782176878, 22.444884339674925, 38.13817340221402, 60.73043818185384, 55.66090769387404, 49.00898969771233, 19.856378802304707, 20.92948125347978, 16.004960023145404, 93.42291811265869, 105.36506803140237, 55.22946033658549, 53.820169574260795, 11.127251701685852, 73.0819886251234, 28.446816278368054, 30.500233763355716, 12.236715442762328, 27.81910113574672, 45.836063594560656, 12.973500125551663, 72.14331043551313, 5.477763853011532, 7.388864921327915, 6.8250713046081355, 15.731518730824376, 12.780938864884204, 16.09237857726248, 23.968600465935417, 119.83700276667219, 28.588202893349067, 5.340951670142343, 28.329698348722346, 37.39590843763768, 16.709153459516926, 7.517350032701232, 52.771387002552885, 35.94091018271184, 50.80206529712721, 73.26061254223909, 12.292900017774574, 74.70098052734099, 9.071934705764697, 19.052527756395296, 71.24320210688082, 54.07341455501968, 265.7259241217547, 84.20613472635836, 17.91913515160188, 24.28905446721271, 17.049181395109976, 22.137634159920758, 122.80086053383766, 9.907294100877618, 20.029149789941627, 71.7315036062534, 9.409070688694175, 37.39883486939237, 37.761578944659334, 7.733800699061319, 30.797937101031497, 128.99838552194763, 224.04519221280862, 5.708275318689917, 29.732838182156218, 27.115790452608366, 5.995201394494593, 77.38470730346917, 59.35302234938895, 30.722271144544266, 154.4296477858248, 56.09930282664572, 7.967328409210181, 7.914863656516175, 18.76537316616238, 5.331253691562925, 7.981153177666256, 8.889489380302331, 18.339322534751318, 11.564356358815303, 122.83818142187648, 9.107242376423814, 123.45916927860912, 175.29302292775122, 137.32886053387756, 28.235741648146675, 9.64432807299074, 77.8851749142331, 69.01249812203545, 43.83944598037677, 24.931145774706074, 77.25549479733786, 66.64129185982561, 73.8735382864464, 174.0852408410499, 9.063937294958487, 34.846333470381865, 7.000507452607215, 21.833500660058398, 15.762372754931299, 117.10008996904233, 15.176796337404655, 93.57360806375947, 84.61883709511372, 7.492858609666375, 73.20729629968665, 31.814269795906945, 25.03682089653273, 23.23396674673427, 29.404296946264893, 57.60497299031576, 27.25719336247592, 31.13899983845341, 24.86707850717826, 140.21241656872883, 59.45036199895632, 13.918310268167634, 10.747778633285058, 36.760945278239106, 62.86178263570446, 13.137843503598335, 106.45422902874913, 59.734362832945706, 20.624542918069487, 137.31312562316904, 49.43303087837355, 116.0842121599388, 55.436868773881464, 156.81127696489625, 94.62413334714437, 59.71501605366211, 41.63934743084855, 118.31233469985045, 9.1201868047878, 23.67984879160359, 5.5005917905589605, 5.8561244796545155, 40.85914510388619, 33.4888675608728, 82.73804426084737, 14.459628958423707, 29.196908137681753, 75.41204820446082, 47.74970735324905, 23.400522752174332, 147.49735721318135, 25.528649776395035, 5.749737372746509, 50.23061717627709, 9.503505634029786, 106.66751610896904, 25.389950615011333, 42.99044360811129, 67.80492748702451, 14.569323564043213, 18.76775649215487, 7.247550350194846, 28.741825867670162, 18.49715994878787, 5.361263937060797, 7.945894225745194, 139.71506471022812, 5.400723336460811, 5.487191606612264, 6.0492969989580265, 99.42768519148936, 22.082414773731553, 18.61701856846863, 59.79844406467576, 78.88788929084645, 71.83431455726443, 6.036702472076214, 11.949416193744206, 29.538990385458646, 7.20084467232208, 105.87551552378092, 141.09080034434817, 5.218026312422773, 9.276783334453729, 46.23363177767121, 7.017092856794906, 124.82401179172793, 31.390705819633013, 17.219170388477938, 74.8813264594954, 81.20833382968752, 22.42221863361179, 40.81123129235505, 30.59388549593067, 176.20990802105874, 22.195086281907248, 17.660740550966622, 17.277410818285748, 28.988459989514816, 10.966425747440166, 15.217815291246973, 11.311050594998765, 340.94990732590986, 75.43329020602646, 134.38800444479716, 40.00191257804434, 17.47616524779702, 16.014006505082232, 65.09535450869313, 9.749677296389148, 91.52349394968557, 22.54461769071616, 11.544692225226594, 25.707249999086677, 18.20996065327645, 16.68633672933071, 15.232226561613583, 24.523904481227646, 77.46049830448467, 33.98772940001531, 8.19656884101864, 14.005051430590814, 30.937106276219012, 53.12387261929945, 14.010844962635957, 10.700413102503228, 65.77592256046744, 21.575681088452836, 144.0833032851957, 17.73847678022874, 20.25813476230444, 54.90187710011353, 48.54632843527331, 16.82960473963261, 12.31019072362033, 8.799617549429193, 13.72368176740732, 52.582741415228135, 46.90471675340255, 30.84862651264708, 22.259188376148632, 12.402221284448112, 10.240386037678242, 56.80426480961775, 118.76432185204735, 58.001719219476314, 22.924650040674265, 46.80629612065768, 17.087931984591375, 78.34280623168664, 15.952137683613252, 33.19853918044565, 24.772413131082065, 17.956748046832637, 56.289468041552105, 10.358401976896287, 26.291718493699427, 6.950512466227142, 5.5985591500192, 29.138137459282245, 42.68766148408197, 52.272410629502005, 10.835371938490038, 34.91248962084255, 112.6834711885268, 18.67581518627141, 29.913453755664687, 14.804962870038501, 32.588070371109914, 63.54009935829295, 14.559022477153572, 41.80922103585018, 8.059958062964112, 57.54954087371252, 29.35793210913901, 85.47705576200413, 77.40309677608442, 42.17914585847131, 87.07878856357398, 12.419377784717184, 67.41766670437927, 36.26416677406268, 87.46393222308969, 17.516449735647974, 23.1769169822273, 56.99606589633142, 17.725539248263814, 25.88344112651053, 85.4597886351529, 7.529756500978428, 34.06547913508063, 38.14811064339878, 43.44494509826955, 62.90365675009846, 55.30088311846258, 134.94625738230874, 172.58084577136555, 63.948357575024254, 58.22251163220751, 13.906064827238005, 77.00278563719789, 10.81860834758158, 26.98497210956544, 12.44437476160724, 21.956419252585118, 16.606698464257583, 14.374741450855941, 24.589769099716456, 92.46660727171464, 92.32626685302043, 18.625934137678264, 34.55724094625096, 31.490779348265878, 11.200395288647874, 16.61924226885571, 10.025501381924924, 33.81464702245183, 71.75930143433943, 98.26056097221189, 18.97125204845889, 5.800555636516856, 22.219418638095384, 93.50630982811523, 18.538663128570942, 20.02488309180787, 142.37139518737894, 5.330097650098789, 173.25304027152734, 5.354763180628302, 12.30015822053657, 22.741141612547047, 56.44373199710927, 121.63144656875784, 14.595943967006951, 33.48890656016408, 15.29474002136893, 93.78675213770042, 113.850147983507, 35.11378249282296, 21.7524978171193, 93.07261011338488, 17.149282818153086, 68.41074351798711, 20.472360792436824, 212.18215477486746, 12.551779977629973, 9.717620197079212, 93.52947119111504, 20.52855527794273, 35.654257666243566, 55.57599412641051, 11.556913875073818, 8.346816406534195, 11.62467408091534, 78.95157098950095, 11.702331693108254, 24.808425384908034, 35.80160810316947, 23.723795908509423, 62.14857402983691, 6.885397522123484, 5.239345617247031, 9.578106332632858, 7.560544544400103, 21.449202641575216, 55.691530696935985, 6.390174358631539, 23.388364606983114, 16.68271138651635, 5.630086247055411, 30.45055058112872, 7.174045295043531, 66.89211902974978, 6.574554561938732, 8.53448208551002, 14.676562310468672, 11.938531308185954, 33.52767863490694, 11.737102497529825, 11.137261303757148, 34.10037214036605, 17.661962659591403, 153.97696814505628, 9.657749127642079, 86.59949330962375, 50.7291378628419, 6.883114121020221, 17.735181455048583, 142.50816983935124, 14.561001302013429, 37.82140430936188, 11.43738278045919, 5.4710125757040675, 97.68531528889027, 31.11099677195107, 18.32647443342463, 70.86146766321312, 63.897184926145044, 11.216221023925463, 16.083361665830513, 104.50468891474267, 5.099132835950129, 58.72754958502614, 21.33241820690608, 60.74785516019497, 14.61579234553104, 25.537397973885597, 35.758375128197045, 22.73080561114132, 55.98099455889685, 20.55967811962021, 13.116500812420192, 29.672511525975626, 26.41369078400911, 70.97836457715634, 28.940464397367176, 70.8960224871883, 21.999339214961257, 8.186112821026441, 7.854196087505473, 78.14234852180418, 27.104576013853887, 100.98421233959708, 69.0181161911009, 117.65582572167533, 47.846755968443816, 30.590949693976757, 53.15793228587101, 22.948376388102076, 59.611037239638875, 64.44190095103382, 60.57003368865237, 29.162183897180803, 36.25054005645149, 53.750490698246175, 38.37564430901354, 139.70684080055102, 138.76059888873516, 40.73190737192321, 65.78297280372354, 34.102624489201396, 88.57184129338837, 130.43904760145, 10.267923340278292, 69.54835873759262, 9.543565170488087, 137.743141610397, 31.642893456047407, 5.18970466783386, 9.495613757190249, 55.45606230930154, 9.770115330281309, 223.91019869254856, 63.10292343327987, 19.755252050966227, 28.517314439491507, 11.994229521428041, 27.3142013250333, 56.367598066866336, 40.25771651685764, 53.761299966514585, 54.50819288723056, 65.50029002895326, 38.90864809920544, 89.50854139971581, 14.180452435649947, 296.25025113902933, 87.79181922051009, 20.006211966224274, 136.48246567197063, 79.43611395471578, 28.701030934071902, 7.268725976032982, 31.641580348852813, 64.49822403717509, 16.051370257442283, 8.2981283337975, 19.88235029161833, 8.016875477384211, 48.72827708358897, 39.97519690615355, 55.47713902948909, 10.338860401734522, 42.79104607053069, 18.908132331350114, 50.29639430235877, 16.577952143834615, 10.263838685195562, 13.664185953462098, 19.419014714258143, 73.9975147124032, 84.66404508926912, 9.165533484120251, 28.95007573962213, 68.78489125597275, 52.684307897911246, 12.192087554740123, 54.14816547249086, 11.067916541450716, 16.5386556931265, 92.26418514886745, 22.81545043508075, 21.363168162222916, 80.1187547257521, 44.88236840016036, 12.363784708679177, 75.74971375865866, 109.04405598247186, 37.89343784742657, 46.93415998272457, 60.331697346810245, 43.57066110924283, 27.121034280034504, 97.22911450091443, 18.622784341231707, 28.508227499404388, 41.111084160389076, 38.91446504003876, 7.668723883879745, 28.860529066664547, 57.93035257894341, 101.4635185835003, 13.477871291152047, 97.23602631475298, 49.8648184966766, 17.222553860664608, 47.459996170265605, 70.3761353771829, 79.58607310479618, 21.518185542301552, 16.193728842616927, 17.911579855242255, 20.79280556134626, 46.30851793261446, 37.67211050987942, 63.09018176500076, 151.14671620838982, 7.177798963598442, 21.84889533381404, 8.532826212675579, 54.973259070322484, 164.25763010093078, 26.546885004602494, 6.829478915661418, 5.408828007083277, 28.692284482299332, 37.776119686047444, 17.074526757378923, 24.33495666652971, 12.997902178897382, 151.98897361148389, 26.631157064368676, 13.926951154998841, 39.98852288115778, 37.60772506866381, 31.681079423627303, 14.112346655005053, 90.29524588346307, 11.354008775477029, 28.10394796605674, 15.519854640135318, 34.83954296502619, 76.15280302739563, 7.411533662235133, 78.07946530755548, 48.90508570136984, 12.459986241698942, 35.194719294878865, 36.803653580104644, 83.49898352914173, 8.706121965629004, 113.83985164634001, 48.16817819048694, 53.370934953317814, 34.7372519225488, 90.29687650210957, 18.06824761015601, 23.665431563886678, 20.334677050865245, 6.596621898487595, 6.653502443313717, 22.440697646357208, 27.425638611599652, 96.1085337620974, 79.5599897945616, 46.94205547546184, 63.73566984321253, 132.23934463077367, 8.73292374334342, 16.53104201833564, 9.92205734828081, 19.972397501943238, 45.11246401276121, 92.45701928627557, 39.87620066215849, 100.9525275041147, 30.14176558905084, 6.515045361141266, 8.366933314463623, 109.69299384832982, 17.294243552030046, 35.9884307517006, 15.9495567440953, 5.123946575392357, 39.60240510695492, 25.08769589768605, 20.676442419892805, 5.031854961378506, 161.8023613940314, 33.142148249104906, 47.090503493674234, 133.92748297954762, 22.22449505401862, 79.51509287495439, 99.30117842369403, 17.359216909687298, 74.40844823127654, 44.62767548971123, 47.88748447042259, 12.352938000191108, 5.048075508937244, 6.878587947314604, 100.48517790190802, 16.668074800219685, 47.879387911378906, 26.867691465681872, 8.489972719917128, 42.28429464743306, 137.9518092744992, 6.507073118526431, 32.95500654430641, 9.956120694173771, 34.47953779197832, 101.0607884141965, 39.98790648070091, 21.207697856328018, 9.893504090205914, 9.632700495650962, 25.984107911904193, 107.00538492809946, 77.53289338123625, 5.821885165212902, 8.924058998281009, 93.49223256402429, 6.478100103685473, 33.66562277490978, 27.285003560387263, 78.03814863611586, 134.30073970575737, 30.171329350101878, 8.757979117317637, 68.75088508092279, 5.267936684870443, 14.980538451774198, 103.53001780323812, 12.387519873070673, 32.28600094289877, 21.598213368689553, 12.57532221259069, 13.649522037746507, 25.9848749029687, 83.87330759101631, 8.997607542300447, 48.20327550052492, 47.32134544518891, 6.759076659365678, 83.88705545373546, 20.06505406722159, 13.626906610603458, 19.00249348848086, 86.77596784117044, 80.02126126739898, 100.97871892491442, 128.72458860352725, 43.291382271428375, 26.831329726703355, 73.34806431564121, 10.805130512479407, 25.519793612115656, 11.32952461605805, 46.58341685796373, 8.640587949036808, 73.72066032308645, 20.705497213632373, 11.374498506125546, 99.11560178532125, 14.192898421586644, 21.222705154388656, 5.136847573197004, 147.66274534242154, 23.55265486256575, 68.60411550341128, 10.792242800417283, 63.13554623591707, 77.37694878363162, 94.5426441896806, 5.486487782243106, 74.4256749279491, 12.918800527801396, 18.145222825818756, 11.700228024629922, 34.945449244079654, 85.71347275197823, 6.416007218259982, 12.566696294399993, 51.436171563055765, 18.26765348623769, 80.47480273458078, 10.533285023869338, 33.13300557267504, 18.489031651237006, 28.12987349562775, 8.484164615474795, 31.455802761729906, 14.739699047800144, 12.955551727190112, 140.76460436697548, 29.977158346194496, 33.63562441756007, 123.02375426552646, 11.914454402372584, 14.114482730543951, 92.09458802782385, 96.30715028265412, 11.34100008586672, 48.65147200673398, 84.49720842014675, 78.04085543075271, 25.6830260506496, 23.943301107689834, 63.010750863133325, 8.566491258031904, 24.349360991360697, 112.49092906802159, 86.13242355558509, 121.17053671821505, 5.185389561660235, 105.24908512082634, 71.17061577692567, 34.61837063228712, 35.36740714253317, 29.10278749632703, 5.837650008906686, 60.269364161744306, 5.955494944019535, 15.185579116448796, 44.78506523119576, 95.65169076601745, 52.90903938678113, 27.39613837391703, 24.019833206876623, 55.66343997453663, 47.85056619189923, 52.791163860215725, 11.178170633590552, 10.28599560800463, 14.107733969612163, 46.07944056199955, 18.0639667778515, 133.62423218808604, 8.190886640704322, 133.44880228844588, 16.468632222286164, 139.31183597062702, 18.55017285920477, 62.52847577132998, 68.24341470455286, 5.341669940670556, 12.363435534930577, 6.83886786669102, 24.531238460515887, 31.959750140441994, 58.21502550084928, 24.706546664241795, 10.059397757262609, 126.90738852840985, 88.6369750011083, 77.42281994182619, 7.454660703621332, 59.8331360395511, 11.074479973000892, 257.48637958110555, 5.786617127596288, 37.69408974041433, 8.812735890310833, 44.471062716101635, 14.141872279873418, 10.196151752683624, 100.9234083176051, 19.20880043384391, 140.80152415723586, 24.321880897835726, 27.426292675083307, 61.48693641602203, 130.01511886556247, 19.582681565601042, 13.09847534495329, 79.58180132485175, 19.00624635926688, 16.52019828927271, 126.9991110803022, 15.875995965947657, 34.31854958005314, 13.117850084642884, 7.3691609577123005, 5.411920242327684, 130.28749804018983, 81.8300764243366, 25.734325884884626, 133.0383962244394, 28.984439552032534, 215.9221333175869, 36.84203568279081, 7.236333247651748, 32.31258020614505, 105.92508820881062, 27.624482837849804, 15.46438311718951, 14.53266005967652, 12.103806785246892, 6.675784421319827, 11.140443011530964, 5.505166061167518, 41.19714170041837, 129.3359523816285, 252.44863843903616, 11.853119333873341, 15.375483929170615, 60.37456938789183, 29.739747879094914, 127.91410017638054, 34.40069918983241, 6.630718694888631, 107.53247901337592, 17.436351066177405, 8.08136908039732, 71.92153711992869, 6.309374197271136, 25.19174071482221, 129.9793350782896, 98.21805728812097, 15.781315288624471, 61.06708211247323, 14.170878801478896, 7.8713282922252, 33.14860589487955, 9.467974080736711, 64.17747844245649, 15.462641360103913, 7.844458861248137, 49.35749972032261, 76.87557169222234, 18.844915803751235, 16.354917912938607, 6.413573158093457, 81.98501754314076, 23.819027316221888, 40.82325054129801, 14.50870666338682, 210.16818229692578, 6.160538667683367, 12.76864993654433, 81.51270812810617, 5.674729200806293, 32.07912916727667, 12.995426090036023, 45.90581124774818, 23.20366586931112, 82.7305988203404, 48.621273947035505, 13.763022309907834, 28.329586037887275, 6.345538734586306, 17.67988140056329, 6.536428367108575, 137.55563274785024, 45.01148448391551, 159.82503862505254, 8.224120134289043, 155.92541934978553, 31.298979296875977, 35.93891524097332, 15.861576226194693, 10.92513740269342, 9.364340555778117, 165.1339447840456, 54.870673950238455, 9.913823856773435, 21.413709823974646, 58.194554135386994, 25.122438837743623, 12.723165748289086, 6.68431506345744, 71.70738208472044, 150.075245462811, 42.1651054302422, 15.280682251903746, 33.54436434572267, 112.82091913451744, 54.58331359932231, 161.79061702805265, 46.21588623149067, 99.03130173758929, 6.284826722934251, 98.3841759902905, 86.54580367845107, 101.53408966052288, 128.28678233639465, 8.940643025997389, 14.905848700608415, 36.66970988094741, 49.74297153071836, 124.82221407685097, 90.79585183184547, 17.880160080584226, 47.66552062472098, 15.79829608108597, 6.1328242888453035, 6.043898497370176, 94.05958973114791, 69.41640487951807, 92.47984687016236, 23.879910554706193, 82.36106267760375, 11.641438876350097, 68.09362829575946, 27.249015194246702, 70.58932162291003, 20.021562661057764, 17.444073907676273, 7.706817620671019, 61.75956127427244, 21.244775958247313, 20.855322820389645, 12.102959130055567, 9.648762530068161, 70.44682189104996, 30.237525879125617, 5.988692787028911, 5.367024093938492, 10.53171862559851, 25.651206957917672, 5.986785517794395, 43.983308430111535, 10.135507485952955, 44.36922617563751, 7.212892072380481, 31.743926414653494, 90.12996699013314, 38.44382086292669, 24.56642347932826, 111.33958907569695, 45.41140544842794, 47.74511610241744, 6.729770088385621, 21.961106477173978, 9.144542619433627, 6.766820384398225, 58.20292955505158, 9.411675564534722, 24.056780285143205, 109.893911583396, 40.09531201711927, 79.43713542013876, 47.573824382610695, 25.49726051840802, 45.03619183506421, 130.66630368734, 20.45169151945513, 12.418626940233654, 11.497501083287606, 117.4908172420656, 5.919040642427776, 13.83946236579385, 24.985328212466396, 36.86252043232728, 93.32023612634322, 9.996715814010066, 8.151414793249879, 49.463031798732246, 61.82207671331752, 46.253251985615904, 32.46803917067512, 29.60234158075259, 38.575333654407544, 66.7704928309852, 91.10274444905292, 59.15202827222607, 43.268970054024024, 68.0456958618784, 11.748128917772425, 23.53788466791833, ...])
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)