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 = 48330
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);
([4353278.125, 4429308.0545240315, 4532712.5, 4536144.521047022, 4548256.25, 4869145.3125, 6826652.762090804, 7004606.25, 7483196.875, 7556251.109262596, 8241273.106287755, 8270657.69720274, 8271841.084034072, 8326820.3125, 8327885.9375, 8370964.0625, 8440059.833810238, 8504462.350442596, 8588865.561092164, 8589187.34816807, 8607046.406302808, 8785490.625, 8946585.9375, 8946617.1875, 8946782.8125, 8947293.208759347, 8947726.531778663, 8948323.4375, 8950026.89857858, 8951610.873874767, 8956218.820523687, 8956427.643482275, 9063482.8125, 9155504.657916173, 9181232.237344265, 9204511.610976035, 9281686.518174255, 9284341.269129183, 9309232.8125, 9309250.016518937, 9344481.25, 9345199.20127404, 9346495.3125, 9347096.875, 9347682.163593275, 9399659.375, 9399729.266479312, 9400780.825535534, 9400782.05614664, 9401058.015398415, 9402017.438688783, 9402119.53718952, 9402137.40748455, 9402395.3125, 9402438.587433225, 9402693.75, 9403064.0625, 9403111.819609331, 9404172.107142892, 9404829.6875, 9405857.8125, 9406333.971498007, 9406456.107268043, 9410161.788953854, 9410219.95715875, 9410382.18844446, 9410439.509390822, 9601070.690049585, 9837480.845902035, 9861982.28674551, 9929382.649684712, 10641748.4375, 10657304.6875, 10826795.3125, 10834827.879165543, 10921371.262690697, 10922319.908800747, 10922532.758390646, 10922557.8125, 10968724.699153548, 10968973.4375, 10968982.604595726, 10981481.44115113, 10981483.538511341, 11008911.974115534, 11015785.9375, 11043930.630872533, 11048514.0625, 11055630.273180814, 11055656.221639574, 11058078.944678338, 11058499.237068541, 11059273.282897588, 11069546.460754924, 11071126.61742266, 11071705.971355533, 11071727.448534606, 11102671.875, 11102678.984947463, 11104216.258179115, 11104393.724875554, 11105455.610649731, 11105478.125, 11105529.376444407, 11105725.0, 11105797.85826407, 11106014.839665076, 11106405.600245157, 11106665.625, 11107762.489895048, 11117323.084857227, 11118930.813028207, 11120928.924056804, 11121332.8125, 11122794.713748813, 11139610.445341786, 11141030.835602963, 11141070.939716158, 11141746.65924495, 11157830.2032663, 11158513.58928206, 11158970.308684964, 11159350.0, 11159800.798556115, 11159850.662677694, 11160303.222876469, 11160593.245551398, 11162060.296742003, 11164198.984029828, 11164635.945392545, 11165727.455848195, 11166027.22726979, 11166028.125, 11178037.283674356, 11185081.25, 11188255.900940206, 11188298.4375, 11219041.446072578, 11228692.1875, 11228741.491965706, 11228766.418212865, 11228848.011355337, 11228919.735060094, 11229509.866388362, 11229698.234869298, 11229798.4375, 11229801.622799324, 11229932.203475507, 11229943.943019392, 11229965.326930739, 11229966.069567816, 11230120.309398083, 11230184.375, 11230269.39213433, 11230283.147542153, 11230520.160462633, 11230607.861578858, 11230618.704929154, 11230842.362823334, 11231058.061901208, 11231073.013988186, 11231182.649157599, 11231607.8125, 11231721.875, 11231742.1875, 11231749.135497933, 11231778.125, 11231792.07113327, 11232665.945904009, 11233073.258709984, 11233928.708658613, 11233983.637457013, 11235158.133813692, 11235462.00005665, 11236331.25, 11236570.01887773, 11236843.651904939, 11236870.619187566, 11236871.476210695, 11237000.0, 11237332.581557497, 11237523.55983808, 11237526.93234676, 11237650.0, 11237659.375, 11237722.779617732, 11237806.25, 11237810.9375, 11237976.5625, 11238362.262457766, 11238599.059297707, 12004566.82814214, 12018173.4375, 12036264.72694201, 12054043.75, 12248304.6875, 12264104.6875, 12514812.740818866, 12522949.802142048, 12527435.86675314, 12533616.095319856, 12536090.166833833, 12541222.931823516, 12542701.5625, 12548005.534982009, 12549515.597521193, 12576860.410716496, 12577193.094966978, 12579096.636278486, 12580697.574150512, 12583098.4375, 12584587.779082, 12585764.0625, 12594829.261143863, 12595481.25, 12602607.8125, 12603284.229565427, 12608377.772807606, 12608979.6875, 12609548.002223933, 12615697.794742148, 12615951.408981336, 12620613.10409156, 12623157.654976508, 12642451.481676405, 12689168.158309236, 12692780.849703968, 12694233.709333004, 12698746.630264, 12699520.721390665, 12700907.580498498, 12701229.219759533, 12708529.024216752, 12709228.125, 12713502.155446758, 12715000.30538857, 12716033.390427675, 12716348.294855181, 12719210.9375, 12721679.601708563, 12723879.6875, 12724611.205804557, 12725384.375, 12725771.875, 12725879.209512617, 12726908.218681997, 12727168.75, 12727746.958169179, 12728197.467067176, 12728735.9375, 12729042.34833476, 12729573.016663564, 12729697.872667648, 12730254.6875, 12730262.837953959, 12730576.985021634, 12730681.93980837, 12730894.672970064, 12731404.550641205, 12731417.679075839, 12731874.568894017, 12732269.286803212, 12740869.751293635, 12742082.973960634, 12742169.464202942, 12742177.170369629, 12742380.691957513, 12742420.3125, 12742426.5625, 12742488.074283015, 12742660.906575378, 12742727.660987746, 12742738.202585185, 12742740.823560683, 12742773.489851816, 12742779.6875, 12742907.8125, 12742920.3125, 12742921.87348292, 12742947.522390682, 12742973.54277741, 12742993.75, 12743087.5, 12743113.069456575, 12743145.839700297, 12743154.6875, 12743171.609003862, 12743173.4375, 12743201.187340109, 12743298.308981366, 12743316.926853752, 12743339.217015775, 12743343.38094667, 12743362.505301397, 12743376.5625, 12743413.07888423, 12743428.482442155, 12743432.8125, 12743450.0, 12743467.574811693, 12743479.091656476, 12743657.332958857, 12743671.875, 12743687.5, 12743734.33206603, 12743741.225858744, 12743768.75, 12743775.070912914, 12743781.098333238, 12743931.25, 12743945.226492241, 12743985.887821749, 12744004.6875, 12744017.516773855, 12744071.875, 12744090.625, 12744190.822788158, 12744201.053957263, 12744219.440395158, 12744251.409583492, 12744351.548931146, 12744419.807163553, 12744434.3958559, 12744498.883621912, 12744504.561246747, 12744616.663396321, 12744640.621455835, 12744729.175271772, 12744768.75, 12744841.07823283, 12744870.997195298, 12744889.0058445, 12744892.585660195, 12744923.23870347, 12744984.442342358, 12745087.5, 12745132.739994472, 12745206.25, 12745288.46847148, 12745464.662808817, 12745500.0, 12745722.62893196, 12745754.646936102, 12746153.676218905, 12746336.624418195, 12746623.208794821, 12746870.3125, 12746895.3125, 12746976.025448542, 12747064.206209559, 12747081.014891045, 12747101.870647611, 12747208.86624782, 12747439.356137607, 12747468.75, 12747486.497586943, 12747894.355738943, 12748027.026697397, 12748044.17769891, 12748183.11625948, 12748413.505041743, 12748576.99770085, 12749129.074848821, 12749133.670670705, 12749140.63885697, 12749144.12742629, 12749162.931156436, 12749526.5625, 12749599.359537138, 12749980.977974368, 12750032.340288749, 12750037.5, 12750051.241153738, 12750093.75, 12750114.0625, 12750122.922044883, 12750187.83382986, 12750228.125, 12750275.0, 12750327.395580955, 12750328.708479358, 12750331.932897657, 12750385.591112338, 12750443.003250673, 12750444.29633725, 12750519.30481662, 12750524.30860431, 12750572.965795377, 12750584.17875359, 12750608.57005293, 12750766.757218247, 12750790.625, 12750831.25, 12750904.107418835, 12750967.231502902, 12750991.061647879, 12751043.692275835, 12751056.154269198, 12751081.80790154, 12751095.706326444, 12751161.541190881, 12751173.4375, 12751190.763867255, 12751213.648977442, 12751235.9375, 12751242.1875, 12751338.113367759, 12751407.288681157, 12751456.723037852, 12751548.598079465, 12751570.3125, 12751583.656512037, 12751595.169389063, 12751641.051343072, 12751649.969227256, 12751893.75, 12751900.0, 12751954.671555942, 12752008.88789445, 12752042.591652123, 12752055.53796309, 12752150.0, 12752186.23429489, 12752187.218015356, 12752254.6875, 12752645.3125, 12752646.875, 12752684.54198487, 12752730.330580423, 12752853.125, 12752884.134455858, 12752901.5625, 12752984.41730369, 12753112.630428258, 12753118.767891917, 12753175.75343826, 12753889.930407325, 12754151.374229899, 12754232.479883809, 12755014.808326798, 12755249.954584116, 12755563.60623426, 12755594.872941097, 12755946.875, 12756218.75, 12756445.3125, 12756546.875, 12756659.150408387, 12756880.73354646, 12756908.245235357, 12757007.182745606, 12757089.222379828, 12757172.378627261, 12757235.480407188, 12757247.659128623, 12757415.61205823, 12757640.539915787, 12757723.345660692, 12758506.214044148, 12758990.625, 12759120.347385943, 12759705.247412015, 12760023.700612292, 12760666.671109578, 12760861.255340274, 12761914.65173332, 12762280.226975702, 12762282.95486225, 12762818.389189702, 12763409.375, 12763435.9375, 12763576.5625, 12763633.453856343, 12763817.060090441, 12764004.94850876, 12764073.817885637, 12764075.0, 12764107.095431378, 12764227.83635677, 12764729.068885257, 12764910.9375, 12765176.455969267, 12765640.625, 12766009.375, 12766095.3125, 12766181.25, 12766401.5625, 12766735.388812762, 12767103.536899323, 12767701.344910711, 12770759.375, 12771132.151585676, 12771774.501099877, 12771804.127453515, 12771859.298541453, 12772095.383056806, 12772626.629361259, 12772726.526250843, 12773577.163952423, 12773618.75, 12773724.115787163, 12773731.654695954, 12773747.691200644, 12774161.787304481, 12775050.38273346, 12778723.396753747, 12780175.0, 12780240.662371559, 12783147.200131249, 12784720.116459012, 12785180.978842491, 12785241.833533354, 12785979.638808258, 12786298.103145916, 12786326.770881617, 12786460.9375, 12786682.258881217, 12786727.90562178, 12789316.656868976, 12792507.76617896, 12792548.336305985, 12795249.457159769, 12802243.139622811, 12802843.742193034, 12803565.21851729, 12803859.034170073, 12805337.100296585, 12808977.919161797, 12808996.676427525, 12816325.0, 12849657.88604663, 12911116.48136851, 12992106.23016578, 12996669.76975704, 13007221.664272338, 13007849.768678624, 13018751.5625, 13024138.011953138, 13026167.1875, 13026190.393352523, 13029780.695943503, 13030662.885003207, 13043007.8125, 13043742.304347875, 13044237.31571802, 13044874.103250865, 13048148.875228507, 13064757.639365463, 13078545.174204253, 13081077.957903426, 13087696.429605352, 13088139.0625, 13088701.5625, 13088761.578955458, 13090228.73328802, 13102090.329896392, 13102333.07956564, 13103760.120917888, 13106901.5625, 13107403.125, 13108131.764206057, 13108810.650666187, 13109809.375, 13110471.450015092, 13111078.125, 13111146.844840692, 13111514.0625, 13111886.908523502, 13112996.846981743, 13113235.794460526, 13113414.0625, 13114329.902182119, 13114343.75, 13114838.933010671, 13115039.944768634, 13116542.1875, 13116817.257600091, 13117170.3125, 13118345.369232658, 13118782.8125, 13118860.9375, 13118981.28639936, 13119084.375, 13119460.896115497, 13119586.78562845, 13119632.8125, 13119672.853795359, 13119767.1875, 13119802.984846754, 13120477.573757935, 13120583.474051617, 13120653.672380812, 13120670.3125, 13121223.602046635, 13121329.6875, 13121459.375, 13122231.25, 13123540.625, 13123771.604780417, 13124837.749399615, 13125210.9375, 13125234.566957643, 13125406.25, 13125775.0, 13125932.80718064, 13126189.0625, 13126192.025234092, 13126667.383186411, 13126668.427246757, 13126927.79196245, 13126956.433380611, 13127085.9375, 13128750.95585749, 13129187.880944068, 13129831.629694492, 13129958.445046091, 13129976.5625, 13130134.654803196, 13130167.624370724, 13130223.479406895, 13130565.625, 13130612.669349568, 13130744.357441777, 13130784.375, 13130849.762031753, 13131065.188787922, 13131499.630182372, 13131739.0625, 13131803.05495322, 13131890.625, 13132035.426858416, 13132070.594910853, 13132076.5625, 13132146.95497654, 13132199.95302651, 13132252.812434416, 13132410.9375, 13132506.002308339, 13132609.375, 13132636.178516027, 13132642.75768269, 13132660.33631913, 13132670.621439064, 13132674.066371858, 13132844.159067655, 13132911.642133402, 13132933.221803581, 13133064.0625, 13133071.611489546, 13133178.125, 13133464.0625, 13133548.095908854, 13133798.393004041, 13133861.1459356, 13134167.272390373, 13134329.6875, 13134632.28991672, 13135692.1875, 13137233.080497516, 13137236.977346849, 13142393.75, 13143964.0625, 13144007.8125, 13144616.58792084, 13144770.272887217, 13144891.082640437, 13144978.125, 13145326.504682006, 13145629.517593684, 13149923.4375, 13152012.5, 13152177.847593235, 13152778.001116963, 13157246.904819753, 13158328.125, 13158619.155663395, 13161916.419712342, 13161951.18512942, 13164439.586472347, 13165213.12540443, 13165342.170812825, 13165350.949926522, 13166335.486802872, 13169234.375, 13170118.75, 13178511.590270933, 13183748.005856313, 13188542.916920597, 13188914.091435801, 13189102.579320677, 13189378.925489213, 13189401.30223923, 13189570.012300631, 13189937.5, 13189941.09996775, 13189978.897039676, 13189982.888956772, 13190292.418073809, 13190343.708771043, 13190432.38610497, 13190554.846609239, 13190735.405303711, 13190807.298106726, 13190918.665560687, 13190949.051557422, 13190956.863392066, 13191021.875, 13191082.8125, 13191225.338943334, 13191295.3125, 13191420.688586872, 13191427.796566544, 13191510.018475538, 13191532.253363306, 13191543.59109978, 13191667.378056683, 13192059.683539167, 13192065.539731985, 13192240.838367777, 13192635.9375, 13197257.8125, 13199958.850342333, 13205593.75, 13216774.83195588, 13219429.227117905, 13219514.0625, 13219710.565672873, 13219831.543525875, 13220306.656548303, 13220330.033081457, 13220429.563069645, 13220846.302834107, 13221083.362503594, 13221497.107252058, 13221584.375, 13221650.499024883, 13221980.716441842, 13222175.012529721, 13222248.4375, 13222369.752609268, 13222435.64184654, 13222475.814948747, 13222677.90459062, 13222743.574930053, 13222801.5625, 13222920.168188345, 13223576.5625, 13240640.043560406, 13241294.623290343, 13247055.158640383, 13251166.108363533, 13251189.29783499, 13252231.974811837, 13254238.516515875, 13258582.8125, 13258710.881108144, 13259930.672729507, 13261392.1875, 13262158.026207408, 13262233.942720309, 13262867.1875, 13266106.657282943, 13266108.099071639, 13266307.449196229, 13266683.895579042, 13266784.72924348, 13266960.9375, 13267135.9375, 13267223.4375, 13267729.446797594, 13267870.284997668, 13268043.75, 13268066.22113963, 13268261.601557795, 13268292.37974601, 13268398.447855346, 13268558.697589083, 13269194.716185661, 13269349.14374214, 13269402.315116473, 13269820.606628723, 13270264.0625, 13270268.75, 13271434.375, 13277509.375, 13278111.955092337, 13278655.015974365, 13278844.696211983, 13283211.59490857, 13283516.406717861, 13283676.41736628, 13283978.125, 13284093.51100902, 13284384.375, 13284788.425972821, 13284889.85658518, 13285276.479216991, 13285310.801788513, 13286129.97852503, 13288543.322996253, 13289552.239695305, 13289633.94655983, 13289814.503807023, 13290232.893056849, 13290247.163265247, 13290300.420875235, 13290654.662195455, 13291085.88634544, 13291459.375, 13291675.10059376, 13291839.065056557, 13291926.5625, 13292025.0, 13292090.954848731, 13292365.59088262, 13292842.801005393, 13293108.063063214, 13293116.129677445, 13293164.0625, 13293241.80436173, 13293302.652156368, 13293826.5625, 13293855.460171074, 13294149.415546903, 13294224.413928838, 13294690.625, 13295047.404056225, 13295079.040615663, 13295322.330184128, 13295485.073681373, 13295519.275409825, 13295736.959915271, 13295867.1875, 13295878.846485581, 13295959.86285076, 13296109.375, 13296612.853786463, 13296673.243126625, 13297013.723491535, 13297800.240751604, 13300678.737459004, 13301610.9375, 13301903.696686374, 13317534.56742186, 13317577.50676709, 13323629.735292928, 13325808.29778499, 13325881.074494602, 13329009.375, 13338037.5, 13338932.580847492, 13340176.342659364, 13342631.374971708, 13344060.896000298, 13344306.48599006, 13344869.821928691, 13346851.119130936, 13347012.5, 13348150.63768804, 13365665.501451116, 13367439.921322577, 13369539.897157168, 13369648.4375, 13372216.371520905, 13372725.89981854, 13372763.460600704, 13376264.419776486, 13376873.678152023, 13380980.228003673, 13380998.194346447, 13381559.521361116, 13381938.877565913, 13382006.393478423, 13382554.86066174, 13382921.660316959, 13383171.875, 13383354.379049078, 13383378.125, 13384377.692962935, 13385624.129911404, 13385855.752190465, 13386237.5, 13386679.435998114, 13389240.131602025, 13389332.8125, 13390306.25, 13391143.75, 13391818.056199659, 13392925.0, 13393395.3125, 13393959.375, 13394325.238668106, 13394326.650128858, 13394726.247940144, 13395012.148524944, 13395038.2517841, 13395041.415784808, 13395193.655429387, 13395250.677314922, 13395361.797202555, 13395657.31851638, 13395737.5, 13395808.47879848, 13396151.807731893, 13396260.897607716, 13396300.0, 13396307.759603808, 13396327.720944881, 13396451.5625, 13396497.378825558, 13396765.322302299, 13396778.125, 13396796.543792041, 13397084.96189497, 13397806.25, 13398212.5, 13415527.894702686, 13415676.782611981, 13417164.485775486, 13418018.75, 13419366.95827867, 13425209.549931714, 13425272.500230357, 13425314.58098594, 13425510.865933822, 13425559.375, 13426206.25, 13426559.375, 13427461.1595033, 13427709.92670456, 13427714.688041264, 13427815.553925479, 13428400.27535291, 13428447.038466683, 13428453.539994115, 13428476.97251469, 13428530.718258528, 13428718.75, 13428787.5, 13428806.086609937, 13428860.172022041, 13428895.3125, 13428965.932500407, 13429058.696909504, 13429135.9375, 13429324.873017544, 13429350.0, 13429708.659138445, 13429736.006281173, 13429753.242733749, 13429904.46195746, 13429915.520737085, 13430026.533793135, 13430068.647141788, 13430167.1875, 13430170.953688478, 13430203.066622412, 13430444.516109599, 13430756.25, 13430806.110474952, 13430861.920608085, 13430900.972364392, 13431240.623508938, 13431298.020698724, 13431384.375, 13431438.533613777, 13431438.990533816, 13431497.171328457, 13431710.9375, 13431766.182942942, 13432055.964179052, 13432259.707420804, 13432274.416586285, 13433569.334353326, 13433667.1875, 13434058.74085877, 13435633.391878521, 13435743.514121076, 13436339.0625, 13436387.5, 13436661.361722972, 13436763.782098537, 13437060.666249033, 13437121.40382344, 13437433.362805938, 13437814.772168526, 13438054.609296061, 13438130.052377526, 13438165.791624866, 13438493.164093344, 13438634.375, 13438742.975847196, 13438868.127262117, 13438943.232867487, 13439016.740112618, 13439056.25, 13439107.608687492, 13439335.618187523, 13439446.17297682, 13439516.71825174, ...], [49.49595003397344, 15.95187812831522, 31.307856593556952, 12.592921417328181, 52.641049016499124, 88.90239392822568, 37.14843242907467, 57.871533398805504, 49.969152226607925, 38.196890546199356, 44.14696205369471, 54.96109302762069, 52.114106729609034, 49.45571162283307, 37.69362350018054, 29.858766240504295, 11.929527267678353, 70.76273862453921, 58.73033747563291, 41.667847305660516, 81.94392762307595, 68.52977394683597, 68.10622831125083, 50.87610655418748, 48.02036305623261, 14.461978067618805, 66.0129453818079, 76.83192394397761, 8.472673999289128, 61.34258280651265, 15.217303101530005, 63.7524504322348, 36.57920739926153, 22.41948107785901, 64.6958951482777, 36.7702432179593, 31.384285278830056, 73.78538950504122, 44.390834676887536, 15.004847912135457, 32.2997973326946, 71.13312373055489, 53.403775037749824, 53.782858281352034, 7.970851627546232, 60.01301700517141, 28.403410061635405, 67.96015098082079, 63.64063655456185, 7.175828834459807, 9.553229797283635, 8.751892000129, 8.238252124563639, 52.381324458745375, 56.60945563637535, 38.94275029922272, 83.71369331653146, 19.864431071488692, 22.362739593725774, 31.07058288535504, 48.85458673709729, 9.012033899371211, 42.21841695246084, 49.77177776928427, 48.7317689067107, 8.854146395654842, 6.325360588682875, 60.21733609855168, 71.68119774681209, 6.662894791985007, 7.545392867762332, 39.90130617708564, 36.2967497499916, 49.52725034892945, 56.99485696869415, 8.86228585672204, 46.8461895712237, 46.03119368594284, 74.89565729986133, 64.09423419620042, 51.37635984043149, 5.334847681653222, 9.498437130605984, 11.07412308873172, 13.25570924303146, 53.18482517880132, 16.50742555402161, 54.415717795916564, 43.471979559824426, 7.593012307240759, 17.169052150686504, 12.659344100363127, 53.4849007046311, 26.14876928556125, 5.464128829021382, 50.02268888215249, 7.958556396370224, 40.23123785344244, 23.653790683062095, 8.652423732094512, 59.27010141664185, 47.713123091535635, 72.84087565416667, 79.0904636017313, 32.200428611281374, 7.406363259478881, 6.172826572485233, 47.89541019131668, 47.284051848702404, 28.32651089882259, 5.32998139316804, 13.502044983532855, 5.573160127301399, 51.01024909423485, 13.063488876635391, 50.00114806784089, 10.536376296572856, 12.27348815644361, 48.099647941894915, 5.0783969145499395, 8.051240401543426, 28.44982259866848, 78.35577626156856, 8.759415144654815, 18.25696682844516, 15.32817034724518, 13.313878853504598, 10.254880305341795, 5.485723572299024, 20.798430701074906, 10.221364608074962, 18.27071968345591, 68.24352082266513, 10.805612545050751, 52.73474977027135, 23.143666356510007, 52.976900808054474, 10.406913024922275, 77.98590665682907, 12.82063162543876, 19.17047788929302, 21.389689243417052, 20.753880253885082, 5.306511118918385, 58.64384349187756, 37.281861079209584, 11.223284979525138, 20.47035534986652, 8.391356670910827, 13.91533991650849, 16.958223706284365, 11.122861766245178, 61.38067039872746, 10.473351522724016, 16.393358580871087, 32.469014879372374, 11.50682291468091, 98.87266433377512, 15.654699379693767, 60.51835543975911, 67.4458220812808, 10.881642716577952, 67.68167461758253, 50.678683609648694, 51.30009257525205, 31.907243614702306, 64.19633446745411, 5.394043997817305, 11.669301483845322, 25.433207458126773, 17.75667971275385, 86.54765522600664, 6.308665891485384, 21.49366536598893, 67.570439454248, 23.83255160519907, 50.19482024889847, 52.735753321275645, 67.08241449728045, 55.3881935087701, 8.168113556633005, 8.35234892210989, 8.492346457945683, 70.73964887589918, 64.76442441578078, 32.99110008188926, 31.602158917546948, 76.55539100525331, 78.50076508164419, 14.107326967720555, 6.8943349651049175, 38.1261982947338, 52.756225555242146, 18.26856315802594, 29.721782973541533, 46.455475838149496, 42.968059723621494, 11.526209546084152, 14.237435040361174, 64.07931940472824, 61.573738127235046, 104.92021703185293, 10.419702624049144, 89.53663904998773, 19.58653795714057, 14.83779734025196, 21.23001746231112, 12.920597205241835, 14.103512901116758, 8.694477610037726, 107.9590180316032, 8.43988840119695, 87.99670796736103, 51.43841755016648, 42.81446014469309, 40.08372319952191, 43.34623207255838, 93.85237505548764, 91.62528423022476, 13.50687535204387, 20.178160504854368, 25.82140163788799, 6.1532560778237695, 6.732460490443161, 17.095405530139853, 66.58989110317907, 22.548907171034163, 12.894122990664691, 32.087792875344235, 35.63088367323098, 24.660008322523815, 21.8210577251351, 47.26567260128272, 45.994528028377815, 12.20099221462164, 11.641136184394396, 17.721790815734547, 25.992866252073433, 71.08162342949996, 92.77697263347983, 70.70376308574095, 9.569064026915555, 45.852182205904064, 74.53774702712596, 13.386740446720456, 96.3868960721017, 71.807699137748, 8.331053774564742, 17.808199949754478, 30.605361190181235, 11.388765501970038, 22.320901497399113, 7.410970716390019, 109.82446258707466, 11.700503943551965, 11.859277514518329, 29.020704929488844, 14.424330556094842, 101.09760598674967, 5.259114984674972, 22.209033259329516, 14.721039372316778, 20.90351597740512, 7.164551567380834, 84.41107673676359, 28.033985214813477, 20.93299780160555, 67.76406344506532, 46.88538091933355, 17.699697013335822, 8.270291291840637, 21.8597695895335, 93.48703963560838, 6.8038058568386734, 6.774003403235254, 79.76921238182939, 45.24835823313804, 73.13085827827872, 26.15847678408085, 20.86973770340436, 5.402513996610431, 75.22329927209694, 80.78627724078922, 40.3905977965462, 12.065551197049848, 47.56217181725145, 7.053241846826619, 111.77045309612248, 6.220935313579323, 124.29741774648603, 80.3653047942438, 15.56508036831193, 105.55684246872273, 12.539216583882812, 48.1232400138319, 17.727601535452877, 41.74636740938104, 43.430647197337606, 68.12592583677598, 51.96633570453726, 66.2052466373126, 16.39325317132511, 75.60987014095774, 58.4928237223321, 123.64795329815841, 17.862491617691074, 41.00153668531096, 15.218865040477185, 34.05861257061966, 43.84238945734876, 26.932119803237963, 48.243482137093146, 65.47317082169407, 30.306433408807035, 40.910787806491996, 48.11671424329272, 8.394015772860115, 54.13318069181965, 8.68884935260702, 19.93340338810555, 14.890042296008343, 5.5090475083895525, 22.841471795230852, 7.243878606581858, 8.220922176816352, 10.396679632723501, 74.01179411884303, 13.292680100095986, 54.13201856317998, 136.50551425487274, 26.454251926845757, 14.729874553772593, 16.712545964602466, 46.833048281282764, 11.234624380310544, 57.82858570369892, 14.672170947151304, 79.16100640330504, 6.1949552541854995, 9.896414711843567, 103.51515909189825, 33.50402921331747, 6.262086978674528, 24.10323053580479, 6.6004470969705045, 61.90377214513168, 69.61732980710255, 69.03640527527847, 64.57725831683135, 19.988686444014792, 81.8793712538916, 5.137142949108131, 13.302139618201883, 6.305024148064652, 52.598399498840145, 17.614331760705298, 6.8907789686867345, 17.065101180732427, 6.556294083494185, 8.454019372485362, 42.770906077443705, 80.97563520396996, 6.969207830848565, 16.106191111043213, 24.727522953445266, 65.43181620333233, 6.556871671592978, 72.65518341008203, 20.197703519635958, 13.99701567290182, 24.4821309494587, 73.15782934649073, 13.84350063637482, 43.23596095912482, 86.54569018847499, 26.41703941263621, 26.12701973482583, 83.61518008491042, 84.36139230453568, 5.2251788857899815, 5.362320995292693, 8.684041229419453, 8.11151939828999, 12.697507425782113, 9.840439821577093, 98.97830908646488, 17.769973319840034, 10.462608917166024, 34.5754110667711, 12.561863604735132, 83.17747621296829, 66.11796611060782, 39.51678399588171, 6.976881346145441, 9.368889338945221, 24.883570638352822, 34.66415061899248, 7.096512282885793, 5.743208782795266, 68.32747003467946, 17.880074575787347, 69.80265091738143, 12.956673964717849, 22.401430672360004, 93.60299244187996, 71.50038833980466, 30.438899834448982, 14.892877474229387, 7.783782789885709, 5.7170544992365775, 43.030270649694494, 30.764745888101075, 5.606175658314525, 124.81061300754315, 27.930059485173153, 65.89558383159272, 44.61787646340587, 6.086442743020158, 36.69545657174634, 16.74372762447984, 84.11183761732089, 53.73933650121178, 16.516820267031864, 50.39517615146657, 51.75031842822624, 124.20630950558206, 61.55863647458412, 11.399147034737233, 30.07103982534647, 37.727807741254956, 19.531559645162986, 53.44525606417282, 5.343373367676105, 55.590526199872876, 15.01014639660424, 27.389034341093364, 6.018728183773044, 6.0687371872363345, 64.4432426003623, 8.72473016848154, 14.771185485116106, 5.589291443237779, 22.11799278886961, 107.14701293467591, 51.20896118983316, 57.12434475499521, 97.15923416521053, 27.22110000913163, 21.330522720819552, 16.894661991514468, 6.965196134578655, 72.91795729867398, 118.27308733319776, 7.4458783445579675, 6.010730513839783, 9.320484099355983, 20.757917145568022, 5.288258810476114, 77.3328712804417, 41.12390612392418, 15.076166651575722, 12.132350827831933, 78.19256399720926, 51.42806916434889, 16.309203846598958, 121.743696834947, 9.833404232390532, 15.5133881844918, 76.95672360996026, 29.532364950883665, 31.768132577596525, 115.41686258829567, 12.303792317832077, 9.22594569432844, 26.326386745701484, 16.620963368012237, 77.87357342611925, 34.164444014612, 10.704644177009392, 6.192081512939351, 56.42547966443463, 68.48981659699882, 35.35246625017914, 104.11061538454634, 49.35094185672242, 70.69590655432323, 33.5799970092794, 21.020789490749785, 16.784277285499755, 15.580342823897798, 31.92047831299709, 12.905934974570412, 13.329059348293018, 13.164547242628446, 14.65787927477349, 8.324244731660354, 36.01102993201831, 12.255384386372603, 7.2890706333042194, 62.89428594262429, 60.91920209431594, 26.786053295383148, 8.771144349393053, 19.604864835585616, 8.499903335141022, 27.743396882837665, 58.88724481440752, 10.5521891265699, 16.34472876254878, 36.23075143858664, 7.508023041551221, 9.049024366859532, 12.910955628218934, 23.321615442027003, 34.07240369013546, 63.55242040370778, 8.903398349073198, 63.55479330064861, 13.242930501380185, 7.109328268832978, 26.67237303503427, 29.999831630489204, 6.193043362347949, 41.62147338679827, 83.39428758423426, 13.784191926993582, 61.65765520451415, 10.82052133396851, 14.235061795130884, 53.42509361978333, 21.17989008333313, 7.366360508648288, 11.096845522762672, 21.07705606963069, 24.962230682558065, 24.669533267538796, 89.8456998943963, 38.596950747050585, 47.66472088822887, 10.783954093712527, 20.9702899809374, 8.501237183012512, 29.950151838362878, 142.99482163631575, 5.0384520520914355, 18.27717836952452, 7.241475983175206, 25.518858145475015, 14.439350189606234, 7.543899445783539, 11.632001794773508, 47.492518952515525, 77.14008507058503, 18.118976920923842, 5.262495054733195, 13.924570792421031, 9.567914648445036, 52.33526978983764, 66.71199159240483, 58.82880813802032, 81.80589938104565, 11.237296158035111, 112.29174559389445, 106.88273961711066, 59.99571239080862, 30.309566071214796, 60.82253249767038, 21.356761903767193, 39.04804023032922, 5.3930337783390545, 66.81384856746891, 29.51305839928851, 107.94991797592373, 26.204003173953193, 81.88756769295684, 55.70706918126077, 15.215603751780595, 45.9347517729193, 139.2453367808626, 92.48319366060218, 77.40134917805648, 11.185082007549312, 33.17423838646176, 43.23161809204632, 187.92272906348205, 50.78710837808671, 5.890135383516912, 94.56142784505337, 26.032540795776168, 8.905078974258695, 12.3474767395548, 12.10662524514231, 45.91637833424866, 5.169211565431229, 39.55336193456051, 63.46178985292505, 41.04547423885744, 33.81342010363977, 54.16160975276264, 83.79487963005688, 30.27161519442233, 21.86255062988019, 80.1373423672601, 28.675400860433793, 45.52415401560008, 32.16568759982536, 5.240626385855701, 88.55304943360687, 13.839192824006899, 36.94626231918271, 46.90254556937477, 73.98529062683681, 6.0272066875516295, 15.268442969298265, 16.617429640182408, 18.06185892001389, 122.15564998530542, 11.595160440989398, 5.978375758035341, 13.245376878384159, 48.88781949768406, 5.2963471672088325, 9.903897726578016, 89.27390848887251, 8.164620911545098, 30.900624032749768, 14.735849034171611, 63.26114109019128, 28.35232640626983, 113.48452802163887, 13.296995426626609, 37.081287352688385, 69.25391310852045, 49.57791229632247, 14.765440950830063, 8.127925945311059, 32.17765110666411, 10.761429444149936, 75.96683415684652, 7.692798877446821, 17.872138688784457, 95.8512020648986, 11.647562314345082, 6.895904583652695, 11.833561627758648, 8.698009626960365, 43.85135264529667, 33.39242071312731, 76.83192647350407, 70.42730763365607, 66.311276015093, 9.058357316813952, 14.774581188692942, 21.19603993565762, 8.331984799866667, 70.35736285069234, 6.990537631078656, 51.41158725419838, 33.35614256520285, 18.050138363030776, 30.29060521183607, 29.249724548796873, 43.41902629068805, 7.993068684896543, 52.78413346299599, 17.029199650249122, 111.18514306952531, 20.91404561070053, 7.542920090866722, 81.63507961347258, 58.01404394045972, 94.2736349639148, 33.56943779800422, 42.511814311938714, 88.55461708295402, 8.513417830647064, 90.25334737713975, 38.2039347977106, 90.19129776141656, 18.016414409922884, 14.87828491207086, 6.026632248703182, 307.47252935579684, 58.81264424357987, 128.54454034013398, 12.328424509510093, 13.517239532289349, 17.449439672536705, 15.052958171430229, 21.04921406895027, 43.88119120783861, 9.120624267279815, 23.74819533423927, 30.2889630580349, 11.961229890536973, 49.895314598563054, 70.07125742396462, 15.899758170281137, 15.958022760929603, 214.76953801349498, 22.257572665046393, 8.023860465814598, 10.408790079261186, 214.656875979808, 12.245493709064153, 66.4908125508808, 68.88715536637783, 81.2607627075108, 158.1110804811389, 38.67764018905824, 206.0229463182209, 13.821841092241822, 86.21089230501845, 93.59966385694825, 8.204298481357288, 8.389984807827293, 6.306983289289262, 34.275568537894074, 36.284365976504965, 76.19224086329223, 39.89365620433649, 13.259018016927781, 80.8302120476197, 25.596548028368286, 50.208490263769974, 36.776438463742856, 41.48368807934406, 74.30311094786762, 99.5857735011623, 22.152654176588353, 10.93862904016737, 52.87738991001903, 7.273947253765275, 131.79344681828002, 68.73659844098582, 232.235095988868, 27.10078531719644, 25.117692974433844, 62.634610494321805, 21.272184682886216, 5.914065248822214, 53.337467591702406, 85.24079958443369, 25.48946872892225, 44.91621232871021, 10.909389633370736, 103.70935325672738, 107.2303322067042, 5.432942551023613, 17.103338376575724, 17.17121629500032, 8.415074646048232, 18.677338674582547, 60.73781296635693, 94.77565645677433, 11.04069206483847, 366.68496566097286, 144.9958950845766, 15.823830788699953, 8.990809643572648, 80.33054128597752, 35.739773693514834, 127.38735133306426, 22.974456349663477, 71.34922322172146, 11.730563822679391, 80.57864858766361, 29.324697049829282, 36.882117514550394, 43.5141828843319, 14.83770941913968, 104.06332455586573, 9.892050228990817, 56.37390047532702, 11.44211098436303, 9.340174578952249, 17.31516285687876, 116.31142804429771, 27.78326724787282, 20.14711254100444, 6.534208590047929, 38.34903214911055, 50.6134247560021, 84.95273108501081, 82.3497241957624, 21.05652180839251, 11.683123003145479, 8.859525555711421, 157.9612818808546, 80.19306175229241, 14.415752059183738, 79.20593713629452, 24.562637430700928, 54.0058884646507, 6.189993421464857, 19.176985980621126, 6.25673319150645, 7.55487973222256, 12.742241725294516, 8.994686345461911, 12.239496798637092, 28.540462666466567, 24.272521482079885, 15.393007383541121, 5.964908788683787, 88.20285559840278, 27.38859326380858, 27.551720425523065, 50.69613572806041, 9.417934371718644, 5.5332046322213255, 74.280015844373, 38.089798268197654, 8.469064982720809, 14.813045170782864, 13.614673399219832, 11.54332112009523, 17.291320020699352, 84.66200065527575, 20.65420881219698, 21.768345532476477, 71.60867446082247, 5.223564553120394, 13.100550707790926, 23.474806393845384, 76.78902486320328, 16.710677104368358, 24.738071105417625, 7.246477144412091, 18.497496972228536, 9.819037659749855, 7.4189194330312676, 66.54398452325376, 7.886840216742769, 11.98669793999334, 37.27002747694184, 16.48641644924276, 6.068116675998559, 20.930231092643982, 5.722253332481682, 9.909173251985138, 31.148084498573294, 88.91028861375267, 11.44241189676215, 36.36560241326966, 35.61649296256804, 11.98161218553826, 25.31863020558662, 113.82459676371504, 31.21678629299221, 126.50576160071077, 91.67257763545136, 15.440243899613233, 8.264752837799623, 7.184899500825518, 8.043142199032681, 5.901702412397754, 83.47231931168524, 61.2273635412181, 10.939931440698922, 19.676447134416225, 19.486122828801278, 38.64788116548372, 5.871361469893544, 12.901539240155662, 20.533457248994083, 16.503901857684905, 57.396445949065594, 17.49834600305192, 52.453950992771425, 52.97481981996103, 5.800422281534749, 25.694490031532744, 237.63481636091703, 82.17849328973041, 63.21831813397432, 50.67107870888434, 41.307073581652475, 38.106580957507596, 18.455013195030492, 21.514979151950754, 28.869454140092277, 6.2359373814585926, 234.8858001312881, 61.67892348708937, 29.992982600880335, 83.24182625572224, 16.743835243879495, 62.12870382437713, 78.88016757420007, 70.18174583717128, 15.742839230656134, 56.70033940385847, 10.669222769581143, 22.156565877624715, 10.059772710952771, 19.152392874757584, 10.983035763889896, 5.425014169113979, 29.524261884144707, 6.668737276613792, 100.11353623940369, 12.357814307290045, 11.5339489679222, 255.42726056015107, 44.09169247714367, 44.698274381409874, 22.173962300853944, 33.76090618267949, 12.018515321231318, 9.0879308531107, 88.87055285883109, 13.813388646292857, 7.284775697422251, 92.22948765552891, 72.76568213606664, 28.584044428134632, 9.5247234893768, 43.359747637863656, 77.78641852169555, 14.559391856711137, 6.106481472122334, 18.54488962264669, 17.370337956811504, 9.271614257407824, 70.43103028502559, 87.20528638629527, 42.004578333541176, 15.861051351565527, 17.56443615831983, 18.017282294349556, 9.272020121151716, 6.117209340549966, 8.374955251651361, 61.42599437280084, 61.669313233142105, 97.87709085476963, 46.53049390589517, 95.44667057346034, 25.668078557876292, 102.53906789740815, 37.57500617347684, 85.79913841017435, 7.957833957837927, 94.11141938148164, 195.82060911196442, 61.42444077237567, 252.2914869831834, 87.00154226191026, 22.0900134340148, 15.772423350016261, 47.33171816138339, 5.70493345858919, 7.094673334239115, 74.76011881344637, 38.10230826175571, 74.45632595056168, 19.942391014555774, 42.270457115536075, 34.0833846597202, 64.9583710133698, 13.085783538902676, 5.0415188029713915, 22.36524147623609, 44.3546612222845, 86.77974835775856, 11.017051855994838, 122.13021280333771, 40.54010886440501, 8.60544375874019, 17.446052748031242, 20.562015653581792, 69.0632165226873, 112.88747478154478, 60.58101239083094, 12.607639560154912, 46.48802851554723, 24.605876220025007, 49.77707542435522, 72.40143639762574, 109.6437551646428, 112.47079791775809, 102.86968777736126, 21.78553026965667, 110.48333318035908, 90.83467045459872, 33.159346954157634, 64.99903187341693, 157.2781371571859, 97.00321311013967, 105.02321752091959, 31.554590425068515, 172.54413340394944, 21.443005457506132, 22.03450107572367, 54.48751955201683, 90.81613540440256, 30.24114532210673, 15.444488252673214, 5.154575293320598, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4353278.125, 4429308.0545240315, 4532712.5, 4536144.521047022, 4548256.25, 4869145.3125, 6826652.762090804, 7004606.25, 7483196.875, 7556251.109262596, 8241273.106287755, 8270657.69720274, 8271841.084034072, 8326820.3125, 8327885.9375, 8370964.0625, 8440059.833810238, 8504462.350442596, 8588865.561092164, 8589187.34816807, 8607046.406302808, 8785490.625, 8946585.9375, 8946617.1875, 8946782.8125, 8947293.208759347, 8947726.531778663, 8948323.4375, 8950026.89857858, 8951610.873874767, 8956218.820523687, 8956427.643482275, 9063482.8125, 9155504.657916173, 9181232.237344265, 9204511.610976035, 9281686.518174255, 9284341.269129183, 9309232.8125, 9309250.016518937, 9344481.25, 9345199.20127404, 9346495.3125, 9347096.875, 9347682.163593275, 9399659.375, 9399729.266479312, 9400780.825535534, 9400782.05614664, 9401058.015398415, 9402017.438688783, 9402119.53718952, 9402137.40748455, 9402395.3125, 9402438.587433225, 9402693.75, 9403064.0625, 9403111.819609331, 9404172.107142892, 9404829.6875, 9405857.8125, 9406333.971498007, 9406456.107268043, 9410161.788953854, 9410219.95715875, 9410382.18844446, 9410439.509390822, 9601070.690049585, 9837480.845902035, 9861982.28674551, 9929382.649684712, 10641748.4375, 10657304.6875, 10826795.3125, 10834827.879165543, 10921371.262690697, 10922319.908800747, 10922532.758390646, 10922557.8125, 10968724.699153548, 10968973.4375, 10968982.604595726, 10981481.44115113, 10981483.538511341, 11008911.974115534, 11015785.9375, 11043930.630872533, 11048514.0625, 11055630.273180814, 11055656.221639574, 11058078.944678338, 11058499.237068541, 11059273.282897588, 11069546.460754924, 11071126.61742266, 11071705.971355533, 11071727.448534606, 11102671.875, 11102678.984947463, 11104216.258179115, 11104393.724875554, 11105455.610649731, 11105478.125, 11105529.376444407, 11105725.0, 11105797.85826407, 11106014.839665076, 11106405.600245157, 11106665.625, 11107762.489895048, 11117323.084857227, 11118930.813028207, 11120928.924056804, 11121332.8125, 11122794.713748813, 11139610.445341786, 11141030.835602963, 11141070.939716158, 11141746.65924495, 11157830.2032663, 11158513.58928206, 11158970.308684964, 11159350.0, 11159800.798556115, 11159850.662677694, 11160303.222876469, 11160593.245551398, 11162060.296742003, 11164198.984029828, 11164635.945392545, 11165727.455848195, 11166027.22726979, 11166028.125, 11178037.283674356, 11185081.25, 11188255.900940206, 11188298.4375, 11219041.446072578, 11228692.1875, 11228741.491965706, 11228766.418212865, 11228848.011355337, 11228919.735060094, 11229509.866388362, 11229698.234869298, 11229798.4375, 11229801.622799324, 11229932.203475507, 11229943.943019392, 11229965.326930739, 11229966.069567816, 11230120.309398083, 11230184.375, 11230269.39213433, 11230283.147542153, 11230520.160462633, 11230607.861578858, 11230618.704929154, 11230842.362823334, 11231058.061901208, 11231073.013988186, 11231182.649157599, 11231607.8125, 11231721.875, 11231742.1875, 11231749.135497933, 11231778.125, 11231792.07113327, 11232665.945904009, 11233073.258709984, 11233928.708658613, 11233983.637457013, 11235158.133813692, 11235462.00005665, 11236331.25, 11236570.01887773, 11236843.651904939, 11236870.619187566, 11236871.476210695, 11237000.0, 11237332.581557497, 11237523.55983808, 11237526.93234676, 11237650.0, 11237659.375, 11237722.779617732, 11237806.25, 11237810.9375, 11237976.5625, 11238362.262457766, 11238599.059297707, 12004566.82814214, 12018173.4375, 12036264.72694201, 12054043.75, 12248304.6875, 12264104.6875, 12514812.740818866, 12522949.802142048, 12527435.86675314, 12533616.095319856, 12536090.166833833, 12541222.931823516, 12542701.5625, 12548005.534982009, 12549515.597521193, 12576860.410716496, 12577193.094966978, 12579096.636278486, 12580697.574150512, 12583098.4375, 12584587.779082, 12585764.0625, 12594829.261143863, 12595481.25, 12602607.8125, 12603284.229565427, 12608377.772807606, 12608979.6875, 12609548.002223933, 12615697.794742148, 12615951.408981336, 12620613.10409156, 12623157.654976508, 12642451.481676405, 12689168.158309236, 12692780.849703968, 12694233.709333004, 12698746.630264, 12699520.721390665, 12700907.580498498, 12701229.219759533, 12708529.024216752, 12709228.125, 12713502.155446758, 12715000.30538857, 12716033.390427675, 12716348.294855181, 12719210.9375, 12721679.601708563, 12723879.6875, 12724611.205804557, 12725384.375, 12725771.875, 12725879.209512617, 12726908.218681997, 12727168.75, 12727746.958169179, 12728197.467067176, 12728735.9375, 12729042.34833476, 12729573.016663564, 12729697.872667648, 12730254.6875, 12730262.837953959, 12730576.985021634, 12730681.93980837, 12730894.672970064, 12731404.550641205, 12731417.679075839, 12731874.568894017, 12732269.286803212, 12740869.751293635, 12742082.973960634, 12742169.464202942, 12742177.170369629, 12742380.691957513, 12742420.3125, 12742426.5625, 12742488.074283015, 12742660.906575378, 12742727.660987746, 12742738.202585185, 12742740.823560683, 12742773.489851816, 12742779.6875, 12742907.8125, 12742920.3125, 12742921.87348292, 12742947.522390682, 12742973.54277741, 12742993.75, 12743087.5, 12743113.069456575, 12743145.839700297, 12743154.6875, 12743171.609003862, 12743173.4375, 12743201.187340109, 12743298.308981366, 12743316.926853752, 12743339.217015775, 12743343.38094667, 12743362.505301397, 12743376.5625, 12743413.07888423, 12743428.482442155, 12743432.8125, 12743450.0, 12743467.574811693, 12743479.091656476, 12743657.332958857, 12743671.875, 12743687.5, 12743734.33206603, 12743741.225858744, 12743768.75, 12743775.070912914, 12743781.098333238, 12743931.25, 12743945.226492241, 12743985.887821749, 12744004.6875, 12744017.516773855, 12744071.875, 12744090.625, 12744190.822788158, 12744201.053957263, 12744219.440395158, 12744251.409583492, 12744351.548931146, 12744419.807163553, 12744434.3958559, 12744498.883621912, 12744504.561246747, 12744616.663396321, 12744640.621455835, 12744729.175271772, 12744768.75, 12744841.07823283, 12744870.997195298, 12744889.0058445, 12744892.585660195, 12744923.23870347, 12744984.442342358, 12745087.5, 12745132.739994472, 12745206.25, 12745288.46847148, 12745464.662808817, 12745500.0, 12745722.62893196, 12745754.646936102, 12746153.676218905, 12746336.624418195, 12746623.208794821, 12746870.3125, 12746895.3125, 12746976.025448542, 12747064.206209559, 12747081.014891045, 12747101.870647611, 12747208.86624782, 12747439.356137607, 12747468.75, 12747486.497586943, 12747894.355738943, 12748027.026697397, 12748044.17769891, 12748183.11625948, 12748413.505041743, 12748576.99770085, 12749129.074848821, 12749133.670670705, 12749140.63885697, 12749144.12742629, 12749162.931156436, 12749526.5625, 12749599.359537138, 12749980.977974368, 12750032.340288749, 12750037.5, 12750051.241153738, 12750093.75, 12750114.0625, 12750122.922044883, 12750187.83382986, 12750228.125, 12750275.0, 12750327.395580955, 12750328.708479358, 12750331.932897657, 12750385.591112338, 12750443.003250673, 12750444.29633725, 12750519.30481662, 12750524.30860431, 12750572.965795377, 12750584.17875359, 12750608.57005293, 12750766.757218247, 12750790.625, 12750831.25, 12750904.107418835, 12750967.231502902, 12750991.061647879, 12751043.692275835, 12751056.154269198, 12751081.80790154, 12751095.706326444, 12751161.541190881, 12751173.4375, 12751190.763867255, 12751213.648977442, 12751235.9375, 12751242.1875, 12751338.113367759, 12751407.288681157, 12751456.723037852, 12751548.598079465, 12751570.3125, 12751583.656512037, 12751595.169389063, 12751641.051343072, 12751649.969227256, 12751893.75, 12751900.0, 12751954.671555942, 12752008.88789445, 12752042.591652123, 12752055.53796309, 12752150.0, 12752186.23429489, 12752187.218015356, 12752254.6875, 12752645.3125, 12752646.875, 12752684.54198487, 12752730.330580423, 12752853.125, 12752884.134455858, 12752901.5625, 12752984.41730369, 12753112.630428258, 12753118.767891917, 12753175.75343826, 12753889.930407325, 12754151.374229899, 12754232.479883809, 12755014.808326798, 12755249.954584116, 12755563.60623426, 12755594.872941097, 12755946.875, 12756218.75, 12756445.3125, 12756546.875, 12756659.150408387, 12756880.73354646, 12756908.245235357, 12757007.182745606, 12757089.222379828, 12757172.378627261, 12757235.480407188, 12757247.659128623, 12757415.61205823, 12757640.539915787, 12757723.345660692, 12758506.214044148, 12758990.625, 12759120.347385943, 12759705.247412015, 12760023.700612292, 12760666.671109578, 12760861.255340274, 12761914.65173332, 12762280.226975702, 12762282.95486225, 12762818.389189702, 12763409.375, 12763435.9375, 12763576.5625, 12763633.453856343, 12763817.060090441, 12764004.94850876, 12764073.817885637, 12764075.0, 12764107.095431378, 12764227.83635677, 12764729.068885257, 12764910.9375, 12765176.455969267, 12765640.625, 12766009.375, 12766095.3125, 12766181.25, 12766401.5625, 12766735.388812762, 12767103.536899323, 12767701.344910711, 12770759.375, 12771132.151585676, 12771774.501099877, 12771804.127453515, 12771859.298541453, 12772095.383056806, 12772626.629361259, 12772726.526250843, 12773577.163952423, 12773618.75, 12773724.115787163, 12773731.654695954, 12773747.691200644, 12774161.787304481, 12775050.38273346, 12778723.396753747, 12780175.0, 12780240.662371559, 12783147.200131249, 12784720.116459012, 12785180.978842491, 12785241.833533354, 12785979.638808258, 12786298.103145916, 12786326.770881617, 12786460.9375, 12786682.258881217, 12786727.90562178, 12789316.656868976, 12792507.76617896, 12792548.336305985, 12795249.457159769, 12802243.139622811, 12802843.742193034, 12803565.21851729, 12803859.034170073, 12805337.100296585, 12808977.919161797, 12808996.676427525, 12816325.0, 12849657.88604663, 12911116.48136851, 12992106.23016578, 12996669.76975704, 13007221.664272338, 13007849.768678624, 13018751.5625, 13024138.011953138, 13026167.1875, 13026190.393352523, 13029780.695943503, 13030662.885003207, 13043007.8125, 13043742.304347875, 13044237.31571802, 13044874.103250865, 13048148.875228507, 13064757.639365463, 13078545.174204253, 13081077.957903426, 13087696.429605352, 13088139.0625, 13088701.5625, 13088761.578955458, 13090228.73328802, 13102090.329896392, 13102333.07956564, 13103760.120917888, 13106901.5625, 13107403.125, 13108131.764206057, 13108810.650666187, 13109809.375, 13110471.450015092, 13111078.125, 13111146.844840692, 13111514.0625, 13111886.908523502, 13112996.846981743, 13113235.794460526, 13113414.0625, 13114329.902182119, 13114343.75, 13114838.933010671, 13115039.944768634, 13116542.1875, 13116817.257600091, 13117170.3125, 13118345.369232658, 13118782.8125, 13118860.9375, 13118981.28639936, 13119084.375, 13119460.896115497, 13119586.78562845, 13119632.8125, 13119672.853795359, 13119767.1875, 13119802.984846754, 13120477.573757935, 13120583.474051617, 13120653.672380812, 13120670.3125, 13121223.602046635, 13121329.6875, 13121459.375, 13122231.25, 13123540.625, 13123771.604780417, 13124837.749399615, 13125210.9375, 13125234.566957643, 13125406.25, 13125775.0, 13125932.80718064, 13126189.0625, 13126192.025234092, 13126667.383186411, 13126668.427246757, 13126927.79196245, 13126956.433380611, 13127085.9375, 13128750.95585749, 13129187.880944068, 13129831.629694492, 13129958.445046091, 13129976.5625, 13130134.654803196, 13130167.624370724, 13130223.479406895, 13130565.625, 13130612.669349568, 13130744.357441777, 13130784.375, 13130849.762031753, 13131065.188787922, 13131499.630182372, 13131739.0625, 13131803.05495322, 13131890.625, 13132035.426858416, 13132070.594910853, 13132076.5625, 13132146.95497654, 13132199.95302651, 13132252.812434416, 13132410.9375, 13132506.002308339, 13132609.375, 13132636.178516027, 13132642.75768269, 13132660.33631913, 13132670.621439064, 13132674.066371858, 13132844.159067655, 13132911.642133402, 13132933.221803581, 13133064.0625, 13133071.611489546, 13133178.125, 13133464.0625, 13133548.095908854, 13133798.393004041, 13133861.1459356, 13134167.272390373, 13134329.6875, 13134632.28991672, 13135692.1875, 13137233.080497516, 13137236.977346849, 13142393.75, 13143964.0625, 13144007.8125, 13144616.58792084, 13144770.272887217, 13144891.082640437, 13144978.125, 13145326.504682006, 13145629.517593684, 13149923.4375, 13152012.5, 13152177.847593235, 13152778.001116963, 13157246.904819753, 13158328.125, 13158619.155663395, 13161916.419712342, 13161951.18512942, 13164439.586472347, 13165213.12540443, 13165342.170812825, 13165350.949926522, 13166335.486802872, 13169234.375, 13170118.75, 13178511.590270933, 13183748.005856313, 13188542.916920597, 13188914.091435801, 13189102.579320677, 13189378.925489213, 13189401.30223923, 13189570.012300631, 13189937.5, 13189941.09996775, 13189978.897039676, 13189982.888956772, 13190292.418073809, 13190343.708771043, 13190432.38610497, 13190554.846609239, 13190735.405303711, 13190807.298106726, 13190918.665560687, 13190949.051557422, 13190956.863392066, 13191021.875, 13191082.8125, 13191225.338943334, 13191295.3125, 13191420.688586872, 13191427.796566544, 13191510.018475538, 13191532.253363306, 13191543.59109978, 13191667.378056683, 13192059.683539167, 13192065.539731985, 13192240.838367777, 13192635.9375, 13197257.8125, 13199958.850342333, 13205593.75, 13216774.83195588, 13219429.227117905, 13219514.0625, 13219710.565672873, 13219831.543525875, 13220306.656548303, 13220330.033081457, 13220429.563069645, 13220846.302834107, 13221083.362503594, 13221497.107252058, 13221584.375, 13221650.499024883, 13221980.716441842, 13222175.012529721, 13222248.4375, 13222369.752609268, 13222435.64184654, 13222475.814948747, 13222677.90459062, 13222743.574930053, 13222801.5625, 13222920.168188345, 13223576.5625, 13240640.043560406, 13241294.623290343, 13247055.158640383, 13251166.108363533, 13251189.29783499, 13252231.974811837, 13254238.516515875, 13258582.8125, 13258710.881108144, 13259930.672729507, 13261392.1875, 13262158.026207408, 13262233.942720309, 13262867.1875, 13266106.657282943, 13266108.099071639, 13266307.449196229, 13266683.895579042, 13266784.72924348, 13266960.9375, 13267135.9375, 13267223.4375, 13267729.446797594, 13267870.284997668, 13268043.75, 13268066.22113963, 13268261.601557795, 13268292.37974601, 13268398.447855346, 13268558.697589083, 13269194.716185661, 13269349.14374214, 13269402.315116473, 13269820.606628723, 13270264.0625, 13270268.75, 13271434.375, 13277509.375, 13278111.955092337, 13278655.015974365, 13278844.696211983, 13283211.59490857, 13283516.406717861, 13283676.41736628, 13283978.125, 13284093.51100902, 13284384.375, 13284788.425972821, 13284889.85658518, 13285276.479216991, 13285310.801788513, 13286129.97852503, 13288543.322996253, 13289552.239695305, 13289633.94655983, 13289814.503807023, 13290232.893056849, 13290247.163265247, 13290300.420875235, 13290654.662195455, 13291085.88634544, 13291459.375, 13291675.10059376, 13291839.065056557, 13291926.5625, 13292025.0, 13292090.954848731, 13292365.59088262, 13292842.801005393, 13293108.063063214, 13293116.129677445, 13293164.0625, 13293241.80436173, 13293302.652156368, 13293826.5625, 13293855.460171074, 13294149.415546903, 13294224.413928838, 13294690.625, 13295047.404056225, 13295079.040615663, 13295322.330184128, 13295485.073681373, 13295519.275409825, 13295736.959915271, 13295867.1875, 13295878.846485581, 13295959.86285076, 13296109.375, 13296612.853786463, 13296673.243126625, 13297013.723491535, 13297800.240751604, 13300678.737459004, 13301610.9375, 13301903.696686374, 13317534.56742186, 13317577.50676709, 13323629.735292928, 13325808.29778499, 13325881.074494602, 13329009.375, 13338037.5, 13338932.580847492, 13340176.342659364, 13342631.374971708, 13344060.896000298, 13344306.48599006, 13344869.821928691, 13346851.119130936, 13347012.5, 13348150.63768804, 13365665.501451116, 13367439.921322577, 13369539.897157168, 13369648.4375, 13372216.371520905, 13372725.89981854, 13372763.460600704, 13376264.419776486, 13376873.678152023, 13380980.228003673, 13380998.194346447, 13381559.521361116, 13381938.877565913, 13382006.393478423, 13382554.86066174, 13382921.660316959, 13383171.875, 13383354.379049078, 13383378.125, 13384377.692962935, 13385624.129911404, 13385855.752190465, 13386237.5, 13386679.435998114, 13389240.131602025, 13389332.8125, 13390306.25, 13391143.75, 13391818.056199659, 13392925.0, 13393395.3125, 13393959.375, 13394325.238668106, 13394326.650128858, 13394726.247940144, 13395012.148524944, 13395038.2517841, 13395041.415784808, 13395193.655429387, 13395250.677314922, 13395361.797202555, 13395657.31851638, 13395737.5, 13395808.47879848, 13396151.807731893, 13396260.897607716, 13396300.0, 13396307.759603808, 13396327.720944881, 13396451.5625, 13396497.378825558, 13396765.322302299, 13396778.125, 13396796.543792041, 13397084.96189497, 13397806.25, 13398212.5, 13415527.894702686, 13415676.782611981, 13417164.485775486, 13418018.75, 13419366.95827867, 13425209.549931714, 13425272.500230357, 13425314.58098594, 13425510.865933822, 13425559.375, 13426206.25, 13426559.375, 13427461.1595033, 13427709.92670456, 13427714.688041264, 13427815.553925479, 13428400.27535291, 13428447.038466683, 13428453.539994115, 13428476.97251469, 13428530.718258528, 13428718.75, 13428787.5, 13428806.086609937, 13428860.172022041, 13428895.3125, 13428965.932500407, 13429058.696909504, 13429135.9375, 13429324.873017544, 13429350.0, 13429708.659138445, 13429736.006281173, 13429753.242733749, 13429904.46195746, 13429915.520737085, 13430026.533793135, 13430068.647141788, 13430167.1875, 13430170.953688478, 13430203.066622412, 13430444.516109599, 13430756.25, 13430806.110474952, 13430861.920608085, 13430900.972364392, 13431240.623508938, 13431298.020698724, 13431384.375, 13431438.533613777, 13431438.990533816, 13431497.171328457, 13431710.9375, 13431766.182942942, 13432055.964179052, 13432259.707420804, 13432274.416586285, 13433569.334353326, 13433667.1875, 13434058.74085877, 13435633.391878521, 13435743.514121076, 13436339.0625, 13436387.5, 13436661.361722972, 13436763.782098537, 13437060.666249033, 13437121.40382344, 13437433.362805938, 13437814.772168526, 13438054.609296061, 13438130.052377526, 13438165.791624866, 13438493.164093344, 13438634.375, 13438742.975847196, 13438868.127262117, 13438943.232867487, 13439016.740112618, 13439056.25, 13439107.608687492, 13439335.618187523, 13439446.17297682, 13439516.71825174, ...], [49.49595003397344, 15.95187812831522, 31.307856593556952, 12.592921417328181, 52.641049016499124, 88.90239392822568, 37.14843242907467, 57.871533398805504, 49.969152226607925, 38.196890546199356, 44.14696205369471, 54.96109302762069, 52.114106729609034, 49.45571162283307, 37.69362350018054, 29.858766240504295, 11.929527267678353, 70.76273862453921, 58.73033747563291, 41.667847305660516, 81.94392762307595, 68.52977394683597, 68.10622831125083, 50.87610655418748, 48.02036305623261, 14.461978067618805, 66.0129453818079, 76.83192394397761, 8.472673999289128, 61.34258280651265, 15.217303101530005, 63.7524504322348, 36.57920739926153, 22.41948107785901, 64.6958951482777, 36.7702432179593, 31.384285278830056, 73.78538950504122, 44.390834676887536, 15.004847912135457, 32.2997973326946, 71.13312373055489, 53.403775037749824, 53.782858281352034, 7.970851627546232, 60.01301700517141, 28.403410061635405, 67.96015098082079, 63.64063655456185, 7.175828834459807, 9.553229797283635, 8.751892000129, 8.238252124563639, 52.381324458745375, 56.60945563637535, 38.94275029922272, 83.71369331653146, 19.864431071488692, 22.362739593725774, 31.07058288535504, 48.85458673709729, 9.012033899371211, 42.21841695246084, 49.77177776928427, 48.7317689067107, 8.854146395654842, 6.325360588682875, 60.21733609855168, 71.68119774681209, 6.662894791985007, 7.545392867762332, 39.90130617708564, 36.2967497499916, 49.52725034892945, 56.99485696869415, 8.86228585672204, 46.8461895712237, 46.03119368594284, 74.89565729986133, 64.09423419620042, 51.37635984043149, 5.334847681653222, 9.498437130605984, 11.07412308873172, 13.25570924303146, 53.18482517880132, 16.50742555402161, 54.415717795916564, 43.471979559824426, 7.593012307240759, 17.169052150686504, 12.659344100363127, 53.4849007046311, 26.14876928556125, 5.464128829021382, 50.02268888215249, 7.958556396370224, 40.23123785344244, 23.653790683062095, 8.652423732094512, 59.27010141664185, 47.713123091535635, 72.84087565416667, 79.0904636017313, 32.200428611281374, 7.406363259478881, 6.172826572485233, 47.89541019131668, 47.284051848702404, 28.32651089882259, 5.32998139316804, 13.502044983532855, 5.573160127301399, 51.01024909423485, 13.063488876635391, 50.00114806784089, 10.536376296572856, 12.27348815644361, 48.099647941894915, 5.0783969145499395, 8.051240401543426, 28.44982259866848, 78.35577626156856, 8.759415144654815, 18.25696682844516, 15.32817034724518, 13.313878853504598, 10.254880305341795, 5.485723572299024, 20.798430701074906, 10.221364608074962, 18.27071968345591, 68.24352082266513, 10.805612545050751, 52.73474977027135, 23.143666356510007, 52.976900808054474, 10.406913024922275, 77.98590665682907, 12.82063162543876, 19.17047788929302, 21.389689243417052, 20.753880253885082, 5.306511118918385, 58.64384349187756, 37.281861079209584, 11.223284979525138, 20.47035534986652, 8.391356670910827, 13.91533991650849, 16.958223706284365, 11.122861766245178, 61.38067039872746, 10.473351522724016, 16.393358580871087, 32.469014879372374, 11.50682291468091, 98.87266433377512, 15.654699379693767, 60.51835543975911, 67.4458220812808, 10.881642716577952, 67.68167461758253, 50.678683609648694, 51.30009257525205, 31.907243614702306, 64.19633446745411, 5.394043997817305, 11.669301483845322, 25.433207458126773, 17.75667971275385, 86.54765522600664, 6.308665891485384, 21.49366536598893, 67.570439454248, 23.83255160519907, 50.19482024889847, 52.735753321275645, 67.08241449728045, 55.3881935087701, 8.168113556633005, 8.35234892210989, 8.492346457945683, 70.73964887589918, 64.76442441578078, 32.99110008188926, 31.602158917546948, 76.55539100525331, 78.50076508164419, 14.107326967720555, 6.8943349651049175, 38.1261982947338, 52.756225555242146, 18.26856315802594, 29.721782973541533, 46.455475838149496, 42.968059723621494, 11.526209546084152, 14.237435040361174, 64.07931940472824, 61.573738127235046, 104.92021703185293, 10.419702624049144, 89.53663904998773, 19.58653795714057, 14.83779734025196, 21.23001746231112, 12.920597205241835, 14.103512901116758, 8.694477610037726, 107.9590180316032, 8.43988840119695, 87.99670796736103, 51.43841755016648, 42.81446014469309, 40.08372319952191, 43.34623207255838, 93.85237505548764, 91.62528423022476, 13.50687535204387, 20.178160504854368, 25.82140163788799, 6.1532560778237695, 6.732460490443161, 17.095405530139853, 66.58989110317907, 22.548907171034163, 12.894122990664691, 32.087792875344235, 35.63088367323098, 24.660008322523815, 21.8210577251351, 47.26567260128272, 45.994528028377815, 12.20099221462164, 11.641136184394396, 17.721790815734547, 25.992866252073433, 71.08162342949996, 92.77697263347983, 70.70376308574095, 9.569064026915555, 45.852182205904064, 74.53774702712596, 13.386740446720456, 96.3868960721017, 71.807699137748, 8.331053774564742, 17.808199949754478, 30.605361190181235, 11.388765501970038, 22.320901497399113, 7.410970716390019, 109.82446258707466, 11.700503943551965, 11.859277514518329, 29.020704929488844, 14.424330556094842, 101.09760598674967, 5.259114984674972, 22.209033259329516, 14.721039372316778, 20.90351597740512, 7.164551567380834, 84.41107673676359, 28.033985214813477, 20.93299780160555, 67.76406344506532, 46.88538091933355, 17.699697013335822, 8.270291291840637, 21.8597695895335, 93.48703963560838, 6.8038058568386734, 6.774003403235254, 79.76921238182939, 45.24835823313804, 73.13085827827872, 26.15847678408085, 20.86973770340436, 5.402513996610431, 75.22329927209694, 80.78627724078922, 40.3905977965462, 12.065551197049848, 47.56217181725145, 7.053241846826619, 111.77045309612248, 6.220935313579323, 124.29741774648603, 80.3653047942438, 15.56508036831193, 105.55684246872273, 12.539216583882812, 48.1232400138319, 17.727601535452877, 41.74636740938104, 43.430647197337606, 68.12592583677598, 51.96633570453726, 66.2052466373126, 16.39325317132511, 75.60987014095774, 58.4928237223321, 123.64795329815841, 17.862491617691074, 41.00153668531096, 15.218865040477185, 34.05861257061966, 43.84238945734876, 26.932119803237963, 48.243482137093146, 65.47317082169407, 30.306433408807035, 40.910787806491996, 48.11671424329272, 8.394015772860115, 54.13318069181965, 8.68884935260702, 19.93340338810555, 14.890042296008343, 5.5090475083895525, 22.841471795230852, 7.243878606581858, 8.220922176816352, 10.396679632723501, 74.01179411884303, 13.292680100095986, 54.13201856317998, 136.50551425487274, 26.454251926845757, 14.729874553772593, 16.712545964602466, 46.833048281282764, 11.234624380310544, 57.82858570369892, 14.672170947151304, 79.16100640330504, 6.1949552541854995, 9.896414711843567, 103.51515909189825, 33.50402921331747, 6.262086978674528, 24.10323053580479, 6.6004470969705045, 61.90377214513168, 69.61732980710255, 69.03640527527847, 64.57725831683135, 19.988686444014792, 81.8793712538916, 5.137142949108131, 13.302139618201883, 6.305024148064652, 52.598399498840145, 17.614331760705298, 6.8907789686867345, 17.065101180732427, 6.556294083494185, 8.454019372485362, 42.770906077443705, 80.97563520396996, 6.969207830848565, 16.106191111043213, 24.727522953445266, 65.43181620333233, 6.556871671592978, 72.65518341008203, 20.197703519635958, 13.99701567290182, 24.4821309494587, 73.15782934649073, 13.84350063637482, 43.23596095912482, 86.54569018847499, 26.41703941263621, 26.12701973482583, 83.61518008491042, 84.36139230453568, 5.2251788857899815, 5.362320995292693, 8.684041229419453, 8.11151939828999, 12.697507425782113, 9.840439821577093, 98.97830908646488, 17.769973319840034, 10.462608917166024, 34.5754110667711, 12.561863604735132, 83.17747621296829, 66.11796611060782, 39.51678399588171, 6.976881346145441, 9.368889338945221, 24.883570638352822, 34.66415061899248, 7.096512282885793, 5.743208782795266, 68.32747003467946, 17.880074575787347, 69.80265091738143, 12.956673964717849, 22.401430672360004, 93.60299244187996, 71.50038833980466, 30.438899834448982, 14.892877474229387, 7.783782789885709, 5.7170544992365775, 43.030270649694494, 30.764745888101075, 5.606175658314525, 124.81061300754315, 27.930059485173153, 65.89558383159272, 44.61787646340587, 6.086442743020158, 36.69545657174634, 16.74372762447984, 84.11183761732089, 53.73933650121178, 16.516820267031864, 50.39517615146657, 51.75031842822624, 124.20630950558206, 61.55863647458412, 11.399147034737233, 30.07103982534647, 37.727807741254956, 19.531559645162986, 53.44525606417282, 5.343373367676105, 55.590526199872876, 15.01014639660424, 27.389034341093364, 6.018728183773044, 6.0687371872363345, 64.4432426003623, 8.72473016848154, 14.771185485116106, 5.589291443237779, 22.11799278886961, 107.14701293467591, 51.20896118983316, 57.12434475499521, 97.15923416521053, 27.22110000913163, 21.330522720819552, 16.894661991514468, 6.965196134578655, 72.91795729867398, 118.27308733319776, 7.4458783445579675, 6.010730513839783, 9.320484099355983, 20.757917145568022, 5.288258810476114, 77.3328712804417, 41.12390612392418, 15.076166651575722, 12.132350827831933, 78.19256399720926, 51.42806916434889, 16.309203846598958, 121.743696834947, 9.833404232390532, 15.5133881844918, 76.95672360996026, 29.532364950883665, 31.768132577596525, 115.41686258829567, 12.303792317832077, 9.22594569432844, 26.326386745701484, 16.620963368012237, 77.87357342611925, 34.164444014612, 10.704644177009392, 6.192081512939351, 56.42547966443463, 68.48981659699882, 35.35246625017914, 104.11061538454634, 49.35094185672242, 70.69590655432323, 33.5799970092794, 21.020789490749785, 16.784277285499755, 15.580342823897798, 31.92047831299709, 12.905934974570412, 13.329059348293018, 13.164547242628446, 14.65787927477349, 8.324244731660354, 36.01102993201831, 12.255384386372603, 7.2890706333042194, 62.89428594262429, 60.91920209431594, 26.786053295383148, 8.771144349393053, 19.604864835585616, 8.499903335141022, 27.743396882837665, 58.88724481440752, 10.5521891265699, 16.34472876254878, 36.23075143858664, 7.508023041551221, 9.049024366859532, 12.910955628218934, 23.321615442027003, 34.07240369013546, 63.55242040370778, 8.903398349073198, 63.55479330064861, 13.242930501380185, 7.109328268832978, 26.67237303503427, 29.999831630489204, 6.193043362347949, 41.62147338679827, 83.39428758423426, 13.784191926993582, 61.65765520451415, 10.82052133396851, 14.235061795130884, 53.42509361978333, 21.17989008333313, 7.366360508648288, 11.096845522762672, 21.07705606963069, 24.962230682558065, 24.669533267538796, 89.8456998943963, 38.596950747050585, 47.66472088822887, 10.783954093712527, 20.9702899809374, 8.501237183012512, 29.950151838362878, 142.99482163631575, 5.0384520520914355, 18.27717836952452, 7.241475983175206, 25.518858145475015, 14.439350189606234, 7.543899445783539, 11.632001794773508, 47.492518952515525, 77.14008507058503, 18.118976920923842, 5.262495054733195, 13.924570792421031, 9.567914648445036, 52.33526978983764, 66.71199159240483, 58.82880813802032, 81.80589938104565, 11.237296158035111, 112.29174559389445, 106.88273961711066, 59.99571239080862, 30.309566071214796, 60.82253249767038, 21.356761903767193, 39.04804023032922, 5.3930337783390545, 66.81384856746891, 29.51305839928851, 107.94991797592373, 26.204003173953193, 81.88756769295684, 55.70706918126077, 15.215603751780595, 45.9347517729193, 139.2453367808626, 92.48319366060218, 77.40134917805648, 11.185082007549312, 33.17423838646176, 43.23161809204632, 187.92272906348205, 50.78710837808671, 5.890135383516912, 94.56142784505337, 26.032540795776168, 8.905078974258695, 12.3474767395548, 12.10662524514231, 45.91637833424866, 5.169211565431229, 39.55336193456051, 63.46178985292505, 41.04547423885744, 33.81342010363977, 54.16160975276264, 83.79487963005688, 30.27161519442233, 21.86255062988019, 80.1373423672601, 28.675400860433793, 45.52415401560008, 32.16568759982536, 5.240626385855701, 88.55304943360687, 13.839192824006899, 36.94626231918271, 46.90254556937477, 73.98529062683681, 6.0272066875516295, 15.268442969298265, 16.617429640182408, 18.06185892001389, 122.15564998530542, 11.595160440989398, 5.978375758035341, 13.245376878384159, 48.88781949768406, 5.2963471672088325, 9.903897726578016, 89.27390848887251, 8.164620911545098, 30.900624032749768, 14.735849034171611, 63.26114109019128, 28.35232640626983, 113.48452802163887, 13.296995426626609, 37.081287352688385, 69.25391310852045, 49.57791229632247, 14.765440950830063, 8.127925945311059, 32.17765110666411, 10.761429444149936, 75.96683415684652, 7.692798877446821, 17.872138688784457, 95.8512020648986, 11.647562314345082, 6.895904583652695, 11.833561627758648, 8.698009626960365, 43.85135264529667, 33.39242071312731, 76.83192647350407, 70.42730763365607, 66.311276015093, 9.058357316813952, 14.774581188692942, 21.19603993565762, 8.331984799866667, 70.35736285069234, 6.990537631078656, 51.41158725419838, 33.35614256520285, 18.050138363030776, 30.29060521183607, 29.249724548796873, 43.41902629068805, 7.993068684896543, 52.78413346299599, 17.029199650249122, 111.18514306952531, 20.91404561070053, 7.542920090866722, 81.63507961347258, 58.01404394045972, 94.2736349639148, 33.56943779800422, 42.511814311938714, 88.55461708295402, 8.513417830647064, 90.25334737713975, 38.2039347977106, 90.19129776141656, 18.016414409922884, 14.87828491207086, 6.026632248703182, 307.47252935579684, 58.81264424357987, 128.54454034013398, 12.328424509510093, 13.517239532289349, 17.449439672536705, 15.052958171430229, 21.04921406895027, 43.88119120783861, 9.120624267279815, 23.74819533423927, 30.2889630580349, 11.961229890536973, 49.895314598563054, 70.07125742396462, 15.899758170281137, 15.958022760929603, 214.76953801349498, 22.257572665046393, 8.023860465814598, 10.408790079261186, 214.656875979808, 12.245493709064153, 66.4908125508808, 68.88715536637783, 81.2607627075108, 158.1110804811389, 38.67764018905824, 206.0229463182209, 13.821841092241822, 86.21089230501845, 93.59966385694825, 8.204298481357288, 8.389984807827293, 6.306983289289262, 34.275568537894074, 36.284365976504965, 76.19224086329223, 39.89365620433649, 13.259018016927781, 80.8302120476197, 25.596548028368286, 50.208490263769974, 36.776438463742856, 41.48368807934406, 74.30311094786762, 99.5857735011623, 22.152654176588353, 10.93862904016737, 52.87738991001903, 7.273947253765275, 131.79344681828002, 68.73659844098582, 232.235095988868, 27.10078531719644, 25.117692974433844, 62.634610494321805, 21.272184682886216, 5.914065248822214, 53.337467591702406, 85.24079958443369, 25.48946872892225, 44.91621232871021, 10.909389633370736, 103.70935325672738, 107.2303322067042, 5.432942551023613, 17.103338376575724, 17.17121629500032, 8.415074646048232, 18.677338674582547, 60.73781296635693, 94.77565645677433, 11.04069206483847, 366.68496566097286, 144.9958950845766, 15.823830788699953, 8.990809643572648, 80.33054128597752, 35.739773693514834, 127.38735133306426, 22.974456349663477, 71.34922322172146, 11.730563822679391, 80.57864858766361, 29.324697049829282, 36.882117514550394, 43.5141828843319, 14.83770941913968, 104.06332455586573, 9.892050228990817, 56.37390047532702, 11.44211098436303, 9.340174578952249, 17.31516285687876, 116.31142804429771, 27.78326724787282, 20.14711254100444, 6.534208590047929, 38.34903214911055, 50.6134247560021, 84.95273108501081, 82.3497241957624, 21.05652180839251, 11.683123003145479, 8.859525555711421, 157.9612818808546, 80.19306175229241, 14.415752059183738, 79.20593713629452, 24.562637430700928, 54.0058884646507, 6.189993421464857, 19.176985980621126, 6.25673319150645, 7.55487973222256, 12.742241725294516, 8.994686345461911, 12.239496798637092, 28.540462666466567, 24.272521482079885, 15.393007383541121, 5.964908788683787, 88.20285559840278, 27.38859326380858, 27.551720425523065, 50.69613572806041, 9.417934371718644, 5.5332046322213255, 74.280015844373, 38.089798268197654, 8.469064982720809, 14.813045170782864, 13.614673399219832, 11.54332112009523, 17.291320020699352, 84.66200065527575, 20.65420881219698, 21.768345532476477, 71.60867446082247, 5.223564553120394, 13.100550707790926, 23.474806393845384, 76.78902486320328, 16.710677104368358, 24.738071105417625, 7.246477144412091, 18.497496972228536, 9.819037659749855, 7.4189194330312676, 66.54398452325376, 7.886840216742769, 11.98669793999334, 37.27002747694184, 16.48641644924276, 6.068116675998559, 20.930231092643982, 5.722253332481682, 9.909173251985138, 31.148084498573294, 88.91028861375267, 11.44241189676215, 36.36560241326966, 35.61649296256804, 11.98161218553826, 25.31863020558662, 113.82459676371504, 31.21678629299221, 126.50576160071077, 91.67257763545136, 15.440243899613233, 8.264752837799623, 7.184899500825518, 8.043142199032681, 5.901702412397754, 83.47231931168524, 61.2273635412181, 10.939931440698922, 19.676447134416225, 19.486122828801278, 38.64788116548372, 5.871361469893544, 12.901539240155662, 20.533457248994083, 16.503901857684905, 57.396445949065594, 17.49834600305192, 52.453950992771425, 52.97481981996103, 5.800422281534749, 25.694490031532744, 237.63481636091703, 82.17849328973041, 63.21831813397432, 50.67107870888434, 41.307073581652475, 38.106580957507596, 18.455013195030492, 21.514979151950754, 28.869454140092277, 6.2359373814585926, 234.8858001312881, 61.67892348708937, 29.992982600880335, 83.24182625572224, 16.743835243879495, 62.12870382437713, 78.88016757420007, 70.18174583717128, 15.742839230656134, 56.70033940385847, 10.669222769581143, 22.156565877624715, 10.059772710952771, 19.152392874757584, 10.983035763889896, 5.425014169113979, 29.524261884144707, 6.668737276613792, 100.11353623940369, 12.357814307290045, 11.5339489679222, 255.42726056015107, 44.09169247714367, 44.698274381409874, 22.173962300853944, 33.76090618267949, 12.018515321231318, 9.0879308531107, 88.87055285883109, 13.813388646292857, 7.284775697422251, 92.22948765552891, 72.76568213606664, 28.584044428134632, 9.5247234893768, 43.359747637863656, 77.78641852169555, 14.559391856711137, 6.106481472122334, 18.54488962264669, 17.370337956811504, 9.271614257407824, 70.43103028502559, 87.20528638629527, 42.004578333541176, 15.861051351565527, 17.56443615831983, 18.017282294349556, 9.272020121151716, 6.117209340549966, 8.374955251651361, 61.42599437280084, 61.669313233142105, 97.87709085476963, 46.53049390589517, 95.44667057346034, 25.668078557876292, 102.53906789740815, 37.57500617347684, 85.79913841017435, 7.957833957837927, 94.11141938148164, 195.82060911196442, 61.42444077237567, 252.2914869831834, 87.00154226191026, 22.0900134340148, 15.772423350016261, 47.33171816138339, 5.70493345858919, 7.094673334239115, 74.76011881344637, 38.10230826175571, 74.45632595056168, 19.942391014555774, 42.270457115536075, 34.0833846597202, 64.9583710133698, 13.085783538902676, 5.0415188029713915, 22.36524147623609, 44.3546612222845, 86.77974835775856, 11.017051855994838, 122.13021280333771, 40.54010886440501, 8.60544375874019, 17.446052748031242, 20.562015653581792, 69.0632165226873, 112.88747478154478, 60.58101239083094, 12.607639560154912, 46.48802851554723, 24.605876220025007, 49.77707542435522, 72.40143639762574, 109.6437551646428, 112.47079791775809, 102.86968777736126, 21.78553026965667, 110.48333318035908, 90.83467045459872, 33.159346954157634, 64.99903187341693, 157.2781371571859, 97.00321311013967, 105.02321752091959, 31.554590425068515, 172.54413340394944, 21.443005457506132, 22.03450107572367, 54.48751955201683, 90.81613540440256, 30.24114532210673, 15.444488252673214, 5.154575293320598, ...])
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);
([4353278.125, 4429308.0545240315, 4532712.5, 4536144.521047022, 4548256.25, 4869145.3125, 6826652.762090804, 7004606.25, 7483196.875, 7556251.109262596, 8241273.106287755, 8270657.69720274, 8271841.084034072, 8326820.3125, 8327885.9375, 8370964.0625, 8440059.833810238, 8504462.350442596, 8588865.561092164, 8589187.34816807, 8607046.406302808, 8785490.625, 8946585.9375, 8946617.1875, 8946782.8125, 8947293.208759347, 8947726.531778663, 8948323.4375, 8950026.89857858, 8951610.873874767, 8956218.820523687, 8956427.643482275, 9063482.8125, 9155504.657916173, 9181232.237344265, 9204511.610976035, 9281686.518174255, 9284341.269129183, 9309232.8125, 9309250.016518937, 9344481.25, 9345199.20127404, 9346495.3125, 9347096.875, 9347682.163593275, 9399659.375, 9399729.266479312, 9400780.825535534, 9400782.05614664, 9401058.015398415, 9402017.438688783, 9402119.53718952, 9402137.40748455, 9402395.3125, 9402438.587433225, 9402693.75, 9403064.0625, 9403111.819609331, 9404172.107142892, 9404829.6875, 9405857.8125, 9406333.971498007, 9406456.107268043, 9410161.788953854, 9410219.95715875, 9410382.18844446, 9410439.509390822, 9601070.690049585, 9837480.845902035, 9861982.28674551, 9929382.649684712, 10641748.4375, 10657304.6875, 10826795.3125, 10834827.879165543, 10921371.262690697, 10922319.908800747, 10922532.758390646, 10922557.8125, 10968724.699153548, 10968973.4375, 10968982.604595726, 10981481.44115113, 10981483.538511341, 11008911.974115534, 11015785.9375, 11043930.630872533, 11048514.0625, 11055630.273180814, 11055656.221639574, 11058078.944678338, 11058499.237068541, 11059273.282897588, 11069546.460754924, 11071126.61742266, 11071705.971355533, 11071727.448534606, 11102671.875, 11102678.984947463, 11104216.258179115, 11104393.724875554, 11105455.610649731, 11105478.125, 11105529.376444407, 11105725.0, 11105797.85826407, 11106014.839665076, 11106405.600245157, 11106665.625, 11107762.489895048, 11117323.084857227, 11118930.813028207, 11120928.924056804, 11121332.8125, 11122794.713748813, 11139610.445341786, 11141030.835602963, 11141070.939716158, 11141746.65924495, 11157830.2032663, 11158513.58928206, 11158970.308684964, 11159350.0, 11159800.798556115, 11159850.662677694, 11160303.222876469, 11160593.245551398, 11162060.296742003, 11164198.984029828, 11164635.945392545, 11165727.455848195, 11166027.22726979, 11166028.125, 11178037.283674356, 11185081.25, 11188255.900940206, 11188298.4375, 11219041.446072578, 11228692.1875, 11228741.491965706, 11228766.418212865, 11228848.011355337, 11228919.735060094, 11229509.866388362, 11229698.234869298, 11229798.4375, 11229801.622799324, 11229932.203475507, 11229943.943019392, 11229965.326930739, 11229966.069567816, 11230120.309398083, 11230184.375, 11230269.39213433, 11230283.147542153, 11230520.160462633, 11230607.861578858, 11230618.704929154, 11230842.362823334, 11231058.061901208, 11231073.013988186, 11231182.649157599, 11231607.8125, 11231721.875, 11231742.1875, 11231749.135497933, 11231778.125, 11231792.07113327, 11232665.945904009, 11233073.258709984, 11233928.708658613, 11233983.637457013, 11235158.133813692, 11235462.00005665, 11236331.25, 11236570.01887773, 11236843.651904939, 11236870.619187566, 11236871.476210695, 11237000.0, 11237332.581557497, 11237523.55983808, 11237526.93234676, 11237650.0, 11237659.375, 11237722.779617732, 11237806.25, 11237810.9375, 11237976.5625, 11238362.262457766, 11238599.059297707, 12004566.82814214, 12018173.4375, 12036264.72694201, 12054043.75, 12248304.6875, 12264104.6875, 12514812.740818866, 12522949.802142048, 12527435.86675314, 12533616.095319856, 12536090.166833833, 12541222.931823516, 12542701.5625, 12548005.534982009, 12549515.597521193, 12576860.410716496, 12577193.094966978, 12579096.636278486, 12580697.574150512, 12583098.4375, 12584587.779082, 12585764.0625, 12594829.261143863, 12595481.25, 12602607.8125, 12603284.229565427, 12608377.772807606, 12608979.6875, 12609548.002223933, 12615697.794742148, 12615951.408981336, 12620613.10409156, 12623157.654976508, 12642451.481676405, 12689168.158309236, 12692780.849703968, 12694233.709333004, 12698746.630264, 12699520.721390665, 12700907.580498498, 12701229.219759533, 12708529.024216752, 12709228.125, 12713502.155446758, 12715000.30538857, 12716033.390427675, 12716348.294855181, 12719210.9375, 12721679.601708563, 12723879.6875, 12724611.205804557, 12725384.375, 12725771.875, 12725879.209512617, 12726908.218681997, 12727168.75, 12727746.958169179, 12728197.467067176, 12728735.9375, 12729042.34833476, 12729573.016663564, 12729697.872667648, 12730254.6875, 12730262.837953959, 12730576.985021634, 12730681.93980837, 12730894.672970064, 12731404.550641205, 12731417.679075839, 12731874.568894017, 12732269.286803212, 12740869.751293635, 12742082.973960634, 12742169.464202942, 12742177.170369629, 12742380.691957513, 12742420.3125, 12742426.5625, 12742488.074283015, 12742660.906575378, 12742727.660987746, 12742738.202585185, 12742740.823560683, 12742773.489851816, 12742779.6875, 12742907.8125, 12742920.3125, 12742921.87348292, 12742947.522390682, 12742973.54277741, 12742993.75, 12743087.5, 12743113.069456575, 12743145.839700297, 12743154.6875, 12743171.609003862, 12743173.4375, 12743201.187340109, 12743298.308981366, 12743316.926853752, 12743339.217015775, 12743343.38094667, 12743362.505301397, 12743376.5625, 12743413.07888423, 12743428.482442155, 12743432.8125, 12743450.0, 12743467.574811693, 12743479.091656476, 12743657.332958857, 12743671.875, 12743687.5, 12743734.33206603, 12743741.225858744, 12743768.75, 12743775.070912914, 12743781.098333238, 12743931.25, 12743945.226492241, 12743985.887821749, 12744004.6875, 12744017.516773855, 12744071.875, 12744090.625, 12744190.822788158, 12744201.053957263, 12744219.440395158, 12744251.409583492, 12744351.548931146, 12744419.807163553, 12744434.3958559, 12744498.883621912, 12744504.561246747, 12744616.663396321, 12744640.621455835, 12744729.175271772, 12744768.75, 12744841.07823283, 12744870.997195298, 12744889.0058445, 12744892.585660195, 12744923.23870347, 12744984.442342358, 12745087.5, 12745132.739994472, 12745206.25, 12745288.46847148, 12745464.662808817, 12745500.0, 12745722.62893196, 12745754.646936102, 12746153.676218905, 12746336.624418195, 12746623.208794821, 12746870.3125, 12746895.3125, 12746976.025448542, 12747064.206209559, 12747081.014891045, 12747101.870647611, 12747208.86624782, 12747439.356137607, 12747468.75, 12747486.497586943, 12747894.355738943, 12748027.026697397, 12748044.17769891, 12748183.11625948, 12748413.505041743, 12748576.99770085, 12749129.074848821, 12749133.670670705, 12749140.63885697, 12749144.12742629, 12749162.931156436, 12749526.5625, 12749599.359537138, 12749980.977974368, 12750032.340288749, 12750037.5, 12750051.241153738, 12750093.75, 12750114.0625, 12750122.922044883, 12750187.83382986, 12750228.125, 12750275.0, 12750327.395580955, 12750328.708479358, 12750331.932897657, 12750385.591112338, 12750443.003250673, 12750444.29633725, 12750519.30481662, 12750524.30860431, 12750572.965795377, 12750584.17875359, 12750608.57005293, 12750766.757218247, 12750790.625, 12750831.25, 12750904.107418835, 12750967.231502902, 12750991.061647879, 12751043.692275835, 12751056.154269198, 12751081.80790154, 12751095.706326444, 12751161.541190881, 12751173.4375, 12751190.763867255, 12751213.648977442, 12751235.9375, 12751242.1875, 12751338.113367759, 12751407.288681157, 12751456.723037852, 12751548.598079465, 12751570.3125, 12751583.656512037, 12751595.169389063, 12751641.051343072, 12751649.969227256, 12751893.75, 12751900.0, 12751954.671555942, 12752008.88789445, 12752042.591652123, 12752055.53796309, 12752150.0, 12752186.23429489, 12752187.218015356, 12752254.6875, 12752645.3125, 12752646.875, 12752684.54198487, 12752730.330580423, 12752853.125, 12752884.134455858, 12752901.5625, 12752984.41730369, 12753112.630428258, 12753118.767891917, 12753175.75343826, 12753889.930407325, 12754151.374229899, 12754232.479883809, 12755014.808326798, 12755249.954584116, 12755563.60623426, 12755594.872941097, 12755946.875, 12756218.75, 12756445.3125, 12756546.875, 12756659.150408387, 12756880.73354646, 12756908.245235357, 12757007.182745606, 12757089.222379828, 12757172.378627261, 12757235.480407188, 12757247.659128623, 12757415.61205823, 12757640.539915787, 12757723.345660692, 12758506.214044148, 12758990.625, 12759120.347385943, 12759705.247412015, 12760023.700612292, 12760666.671109578, 12760861.255340274, 12761914.65173332, 12762280.226975702, 12762282.95486225, 12762818.389189702, 12763409.375, 12763435.9375, 12763576.5625, 12763633.453856343, 12763817.060090441, 12764004.94850876, 12764073.817885637, 12764075.0, 12764107.095431378, 12764227.83635677, 12764729.068885257, 12764910.9375, 12765176.455969267, 12765640.625, 12766009.375, 12766095.3125, 12766181.25, 12766401.5625, 12766735.388812762, 12767103.536899323, 12767701.344910711, 12770759.375, 12771132.151585676, 12771774.501099877, 12771804.127453515, 12771859.298541453, 12772095.383056806, 12772626.629361259, 12772726.526250843, 12773577.163952423, 12773618.75, 12773724.115787163, 12773731.654695954, 12773747.691200644, 12774161.787304481, 12775050.38273346, 12778723.396753747, 12780175.0, 12780240.662371559, 12783147.200131249, 12784720.116459012, 12785180.978842491, 12785241.833533354, 12785979.638808258, 12786298.103145916, 12786326.770881617, 12786460.9375, 12786682.258881217, 12786727.90562178, 12789316.656868976, 12792507.76617896, 12792548.336305985, 12795249.457159769, 12802243.139622811, 12802843.742193034, 12803565.21851729, 12803859.034170073, 12805337.100296585, 12808977.919161797, 12808996.676427525, 12816325.0, 12849657.88604663, 12911116.48136851, 12992106.23016578, 12996669.76975704, 13007221.664272338, 13007849.768678624, 13018751.5625, 13024138.011953138, 13026167.1875, 13026190.393352523, 13029780.695943503, 13030662.885003207, 13043007.8125, 13043742.304347875, 13044237.31571802, 13044874.103250865, 13048148.875228507, 13064757.639365463, 13078545.174204253, 13081077.957903426, 13087696.429605352, 13088139.0625, 13088701.5625, 13088761.578955458, 13090228.73328802, 13102090.329896392, 13102333.07956564, 13103760.120917888, 13106901.5625, 13107403.125, 13108131.764206057, 13108810.650666187, 13109809.375, 13110471.450015092, 13111078.125, 13111146.844840692, 13111514.0625, 13111886.908523502, 13112996.846981743, 13113235.794460526, 13113414.0625, 13114329.902182119, 13114343.75, 13114838.933010671, 13115039.944768634, 13116542.1875, 13116817.257600091, 13117170.3125, 13118345.369232658, 13118782.8125, 13118860.9375, 13118981.28639936, 13119084.375, 13119460.896115497, 13119586.78562845, 13119632.8125, 13119672.853795359, 13119767.1875, 13119802.984846754, 13120477.573757935, 13120583.474051617, 13120653.672380812, 13120670.3125, 13121223.602046635, 13121329.6875, 13121459.375, 13122231.25, 13123540.625, 13123771.604780417, 13124837.749399615, 13125210.9375, 13125234.566957643, 13125406.25, 13125775.0, 13125932.80718064, 13126189.0625, 13126192.025234092, 13126667.383186411, 13126668.427246757, 13126927.79196245, 13126956.433380611, 13127085.9375, 13128750.95585749, 13129187.880944068, 13129831.629694492, 13129958.445046091, 13129976.5625, 13130134.654803196, 13130167.624370724, 13130223.479406895, 13130565.625, 13130612.669349568, 13130744.357441777, 13130784.375, 13130849.762031753, 13131065.188787922, 13131499.630182372, 13131739.0625, 13131803.05495322, 13131890.625, 13132035.426858416, 13132070.594910853, 13132076.5625, 13132146.95497654, 13132199.95302651, 13132252.812434416, 13132410.9375, 13132506.002308339, 13132609.375, 13132636.178516027, 13132642.75768269, 13132660.33631913, 13132670.621439064, 13132674.066371858, 13132844.159067655, 13132911.642133402, 13132933.221803581, 13133064.0625, 13133071.611489546, 13133178.125, 13133464.0625, 13133548.095908854, 13133798.393004041, 13133861.1459356, 13134167.272390373, 13134329.6875, 13134632.28991672, 13135692.1875, 13137233.080497516, 13137236.977346849, 13142393.75, 13143964.0625, 13144007.8125, 13144616.58792084, 13144770.272887217, 13144891.082640437, 13144978.125, 13145326.504682006, 13145629.517593684, 13149923.4375, 13152012.5, 13152177.847593235, 13152778.001116963, 13157246.904819753, 13158328.125, 13158619.155663395, 13161916.419712342, 13161951.18512942, 13164439.586472347, 13165213.12540443, 13165342.170812825, 13165350.949926522, 13166335.486802872, 13169234.375, 13170118.75, 13178511.590270933, 13183748.005856313, 13188542.916920597, 13188914.091435801, 13189102.579320677, 13189378.925489213, 13189401.30223923, 13189570.012300631, 13189937.5, 13189941.09996775, 13189978.897039676, 13189982.888956772, 13190292.418073809, 13190343.708771043, 13190432.38610497, 13190554.846609239, 13190735.405303711, 13190807.298106726, 13190918.665560687, 13190949.051557422, 13190956.863392066, 13191021.875, 13191082.8125, 13191225.338943334, 13191295.3125, 13191420.688586872, 13191427.796566544, 13191510.018475538, 13191532.253363306, 13191543.59109978, 13191667.378056683, 13192059.683539167, 13192065.539731985, 13192240.838367777, 13192635.9375, 13197257.8125, 13199958.850342333, 13205593.75, 13216774.83195588, 13219429.227117905, 13219514.0625, 13219710.565672873, 13219831.543525875, 13220306.656548303, 13220330.033081457, 13220429.563069645, 13220846.302834107, 13221083.362503594, 13221497.107252058, 13221584.375, 13221650.499024883, 13221980.716441842, 13222175.012529721, 13222248.4375, 13222369.752609268, 13222435.64184654, 13222475.814948747, 13222677.90459062, 13222743.574930053, 13222801.5625, 13222920.168188345, 13223576.5625, 13240640.043560406, 13241294.623290343, 13247055.158640383, 13251166.108363533, 13251189.29783499, 13252231.974811837, 13254238.516515875, 13258582.8125, 13258710.881108144, 13259930.672729507, 13261392.1875, 13262158.026207408, 13262233.942720309, 13262867.1875, 13266106.657282943, 13266108.099071639, 13266307.449196229, 13266683.895579042, 13266784.72924348, 13266960.9375, 13267135.9375, 13267223.4375, 13267729.446797594, 13267870.284997668, 13268043.75, 13268066.22113963, 13268261.601557795, 13268292.37974601, 13268398.447855346, 13268558.697589083, 13269194.716185661, 13269349.14374214, 13269402.315116473, 13269820.606628723, 13270264.0625, 13270268.75, 13271434.375, 13277509.375, 13278111.955092337, 13278655.015974365, 13278844.696211983, 13283211.59490857, 13283516.406717861, 13283676.41736628, 13283978.125, 13284093.51100902, 13284384.375, 13284788.425972821, 13284889.85658518, 13285276.479216991, 13285310.801788513, 13286129.97852503, 13288543.322996253, 13289552.239695305, 13289633.94655983, 13289814.503807023, 13290232.893056849, 13290247.163265247, 13290300.420875235, 13290654.662195455, 13291085.88634544, 13291459.375, 13291675.10059376, 13291839.065056557, 13291926.5625, 13292025.0, 13292090.954848731, 13292365.59088262, 13292842.801005393, 13293108.063063214, 13293116.129677445, 13293164.0625, 13293241.80436173, 13293302.652156368, 13293826.5625, 13293855.460171074, 13294149.415546903, 13294224.413928838, 13294690.625, 13295047.404056225, 13295079.040615663, 13295322.330184128, 13295485.073681373, 13295519.275409825, 13295736.959915271, 13295867.1875, 13295878.846485581, 13295959.86285076, 13296109.375, 13296612.853786463, 13296673.243126625, 13297013.723491535, 13297800.240751604, 13300678.737459004, 13301610.9375, 13301903.696686374, 13317534.56742186, 13317577.50676709, 13323629.735292928, 13325808.29778499, 13325881.074494602, 13329009.375, 13338037.5, 13338932.580847492, 13340176.342659364, 13342631.374971708, 13344060.896000298, 13344306.48599006, 13344869.821928691, 13346851.119130936, 13347012.5, 13348150.63768804, 13365665.501451116, 13367439.921322577, 13369539.897157168, 13369648.4375, 13372216.371520905, 13372725.89981854, 13372763.460600704, 13376264.419776486, 13376873.678152023, 13380980.228003673, 13380998.194346447, 13381559.521361116, 13381938.877565913, 13382006.393478423, 13382554.86066174, 13382921.660316959, 13383171.875, 13383354.379049078, 13383378.125, 13384377.692962935, 13385624.129911404, 13385855.752190465, 13386237.5, 13386679.435998114, 13389240.131602025, 13389332.8125, 13390306.25, 13391143.75, 13391818.056199659, 13392925.0, 13393395.3125, 13393959.375, 13394325.238668106, 13394326.650128858, 13394726.247940144, 13395012.148524944, 13395038.2517841, 13395041.415784808, 13395193.655429387, 13395250.677314922, 13395361.797202555, 13395657.31851638, 13395737.5, 13395808.47879848, 13396151.807731893, 13396260.897607716, 13396300.0, 13396307.759603808, 13396327.720944881, 13396451.5625, 13396497.378825558, 13396765.322302299, 13396778.125, 13396796.543792041, 13397084.96189497, 13397806.25, 13398212.5, 13415527.894702686, 13415676.782611981, 13417164.485775486, 13418018.75, 13419366.95827867, 13425209.549931714, 13425272.500230357, 13425314.58098594, 13425510.865933822, 13425559.375, 13426206.25, 13426559.375, 13427461.1595033, 13427709.92670456, 13427714.688041264, 13427815.553925479, 13428400.27535291, 13428447.038466683, 13428453.539994115, 13428476.97251469, 13428530.718258528, 13428718.75, 13428787.5, 13428806.086609937, 13428860.172022041, 13428895.3125, 13428965.932500407, 13429058.696909504, 13429135.9375, 13429324.873017544, 13429350.0, 13429708.659138445, 13429736.006281173, 13429753.242733749, 13429904.46195746, 13429915.520737085, 13430026.533793135, 13430068.647141788, 13430167.1875, 13430170.953688478, 13430203.066622412, 13430444.516109599, 13430756.25, 13430806.110474952, 13430861.920608085, 13430900.972364392, 13431240.623508938, 13431298.020698724, 13431384.375, 13431438.533613777, 13431438.990533816, 13431497.171328457, 13431710.9375, 13431766.182942942, 13432055.964179052, 13432259.707420804, 13432274.416586285, 13433569.334353326, 13433667.1875, 13434058.74085877, 13435633.391878521, 13435743.514121076, 13436339.0625, 13436387.5, 13436661.361722972, 13436763.782098537, 13437060.666249033, 13437121.40382344, 13437433.362805938, 13437814.772168526, 13438054.609296061, 13438130.052377526, 13438165.791624866, 13438493.164093344, 13438634.375, 13438742.975847196, 13438868.127262117, 13438943.232867487, 13439016.740112618, 13439056.25, 13439107.608687492, 13439335.618187523, 13439446.17297682, 13439516.71825174, ...], [49.49595003397344, 15.95187812831522, 31.307856593556952, 12.592921417328181, 52.641049016499124, 88.90239392822568, 37.14843242907467, 57.871533398805504, 49.969152226607925, 38.196890546199356, 44.14696205369471, 54.96109302762069, 52.114106729609034, 49.45571162283307, 37.69362350018054, 29.858766240504295, 11.929527267678353, 70.76273862453921, 58.73033747563291, 41.667847305660516, 81.94392762307595, 68.52977394683597, 68.10622831125083, 50.87610655418748, 48.02036305623261, 14.461978067618805, 66.0129453818079, 76.83192394397761, 8.472673999289128, 61.34258280651265, 15.217303101530005, 63.7524504322348, 36.57920739926153, 22.41948107785901, 64.6958951482777, 36.7702432179593, 31.384285278830056, 73.78538950504122, 44.390834676887536, 15.004847912135457, 32.2997973326946, 71.13312373055489, 53.403775037749824, 53.782858281352034, 7.970851627546232, 60.01301700517141, 28.403410061635405, 67.96015098082079, 63.64063655456185, 7.175828834459807, 9.553229797283635, 8.751892000129, 8.238252124563639, 52.381324458745375, 56.60945563637535, 38.94275029922272, 83.71369331653146, 19.864431071488692, 22.362739593725774, 31.07058288535504, 48.85458673709729, 9.012033899371211, 42.21841695246084, 49.77177776928427, 48.7317689067107, 8.854146395654842, 6.325360588682875, 60.21733609855168, 71.68119774681209, 6.662894791985007, 7.545392867762332, 39.90130617708564, 36.2967497499916, 49.52725034892945, 56.99485696869415, 8.86228585672204, 46.8461895712237, 46.03119368594284, 74.89565729986133, 64.09423419620042, 51.37635984043149, 5.334847681653222, 9.498437130605984, 11.07412308873172, 13.25570924303146, 53.18482517880132, 16.50742555402161, 54.415717795916564, 43.471979559824426, 7.593012307240759, 17.169052150686504, 12.659344100363127, 53.4849007046311, 26.14876928556125, 5.464128829021382, 50.02268888215249, 7.958556396370224, 40.23123785344244, 23.653790683062095, 8.652423732094512, 59.27010141664185, 47.713123091535635, 72.84087565416667, 79.0904636017313, 32.200428611281374, 7.406363259478881, 6.172826572485233, 47.89541019131668, 47.284051848702404, 28.32651089882259, 5.32998139316804, 13.502044983532855, 5.573160127301399, 51.01024909423485, 13.063488876635391, 50.00114806784089, 10.536376296572856, 12.27348815644361, 48.099647941894915, 5.0783969145499395, 8.051240401543426, 28.44982259866848, 78.35577626156856, 8.759415144654815, 18.25696682844516, 15.32817034724518, 13.313878853504598, 10.254880305341795, 5.485723572299024, 20.798430701074906, 10.221364608074962, 18.27071968345591, 68.24352082266513, 10.805612545050751, 52.73474977027135, 23.143666356510007, 52.976900808054474, 10.406913024922275, 77.98590665682907, 12.82063162543876, 19.17047788929302, 21.389689243417052, 20.753880253885082, 5.306511118918385, 58.64384349187756, 37.281861079209584, 11.223284979525138, 20.47035534986652, 8.391356670910827, 13.91533991650849, 16.958223706284365, 11.122861766245178, 61.38067039872746, 10.473351522724016, 16.393358580871087, 32.469014879372374, 11.50682291468091, 98.87266433377512, 15.654699379693767, 60.51835543975911, 67.4458220812808, 10.881642716577952, 67.68167461758253, 50.678683609648694, 51.30009257525205, 31.907243614702306, 64.19633446745411, 5.394043997817305, 11.669301483845322, 25.433207458126773, 17.75667971275385, 86.54765522600664, 6.308665891485384, 21.49366536598893, 67.570439454248, 23.83255160519907, 50.19482024889847, 52.735753321275645, 67.08241449728045, 55.3881935087701, 8.168113556633005, 8.35234892210989, 8.492346457945683, 70.73964887589918, 64.76442441578078, 32.99110008188926, 31.602158917546948, 76.55539100525331, 78.50076508164419, 14.107326967720555, 6.8943349651049175, 38.1261982947338, 52.756225555242146, 18.26856315802594, 29.721782973541533, 46.455475838149496, 42.968059723621494, 11.526209546084152, 14.237435040361174, 64.07931940472824, 61.573738127235046, 104.92021703185293, 10.419702624049144, 89.53663904998773, 19.58653795714057, 14.83779734025196, 21.23001746231112, 12.920597205241835, 14.103512901116758, 8.694477610037726, 107.9590180316032, 8.43988840119695, 87.99670796736103, 51.43841755016648, 42.81446014469309, 40.08372319952191, 43.34623207255838, 93.85237505548764, 91.62528423022476, 13.50687535204387, 20.178160504854368, 25.82140163788799, 6.1532560778237695, 6.732460490443161, 17.095405530139853, 66.58989110317907, 22.548907171034163, 12.894122990664691, 32.087792875344235, 35.63088367323098, 24.660008322523815, 21.8210577251351, 47.26567260128272, 45.994528028377815, 12.20099221462164, 11.641136184394396, 17.721790815734547, 25.992866252073433, 71.08162342949996, 92.77697263347983, 70.70376308574095, 9.569064026915555, 45.852182205904064, 74.53774702712596, 13.386740446720456, 96.3868960721017, 71.807699137748, 8.331053774564742, 17.808199949754478, 30.605361190181235, 11.388765501970038, 22.320901497399113, 7.410970716390019, 109.82446258707466, 11.700503943551965, 11.859277514518329, 29.020704929488844, 14.424330556094842, 101.09760598674967, 5.259114984674972, 22.209033259329516, 14.721039372316778, 20.90351597740512, 7.164551567380834, 84.41107673676359, 28.033985214813477, 20.93299780160555, 67.76406344506532, 46.88538091933355, 17.699697013335822, 8.270291291840637, 21.8597695895335, 93.48703963560838, 6.8038058568386734, 6.774003403235254, 79.76921238182939, 45.24835823313804, 73.13085827827872, 26.15847678408085, 20.86973770340436, 5.402513996610431, 75.22329927209694, 80.78627724078922, 40.3905977965462, 12.065551197049848, 47.56217181725145, 7.053241846826619, 111.77045309612248, 6.220935313579323, 124.29741774648603, 80.3653047942438, 15.56508036831193, 105.55684246872273, 12.539216583882812, 48.1232400138319, 17.727601535452877, 41.74636740938104, 43.430647197337606, 68.12592583677598, 51.96633570453726, 66.2052466373126, 16.39325317132511, 75.60987014095774, 58.4928237223321, 123.64795329815841, 17.862491617691074, 41.00153668531096, 15.218865040477185, 34.05861257061966, 43.84238945734876, 26.932119803237963, 48.243482137093146, 65.47317082169407, 30.306433408807035, 40.910787806491996, 48.11671424329272, 8.394015772860115, 54.13318069181965, 8.68884935260702, 19.93340338810555, 14.890042296008343, 5.5090475083895525, 22.841471795230852, 7.243878606581858, 8.220922176816352, 10.396679632723501, 74.01179411884303, 13.292680100095986, 54.13201856317998, 136.50551425487274, 26.454251926845757, 14.729874553772593, 16.712545964602466, 46.833048281282764, 11.234624380310544, 57.82858570369892, 14.672170947151304, 79.16100640330504, 6.1949552541854995, 9.896414711843567, 103.51515909189825, 33.50402921331747, 6.262086978674528, 24.10323053580479, 6.6004470969705045, 61.90377214513168, 69.61732980710255, 69.03640527527847, 64.57725831683135, 19.988686444014792, 81.8793712538916, 5.137142949108131, 13.302139618201883, 6.305024148064652, 52.598399498840145, 17.614331760705298, 6.8907789686867345, 17.065101180732427, 6.556294083494185, 8.454019372485362, 42.770906077443705, 80.97563520396996, 6.969207830848565, 16.106191111043213, 24.727522953445266, 65.43181620333233, 6.556871671592978, 72.65518341008203, 20.197703519635958, 13.99701567290182, 24.4821309494587, 73.15782934649073, 13.84350063637482, 43.23596095912482, 86.54569018847499, 26.41703941263621, 26.12701973482583, 83.61518008491042, 84.36139230453568, 5.2251788857899815, 5.362320995292693, 8.684041229419453, 8.11151939828999, 12.697507425782113, 9.840439821577093, 98.97830908646488, 17.769973319840034, 10.462608917166024, 34.5754110667711, 12.561863604735132, 83.17747621296829, 66.11796611060782, 39.51678399588171, 6.976881346145441, 9.368889338945221, 24.883570638352822, 34.66415061899248, 7.096512282885793, 5.743208782795266, 68.32747003467946, 17.880074575787347, 69.80265091738143, 12.956673964717849, 22.401430672360004, 93.60299244187996, 71.50038833980466, 30.438899834448982, 14.892877474229387, 7.783782789885709, 5.7170544992365775, 43.030270649694494, 30.764745888101075, 5.606175658314525, 124.81061300754315, 27.930059485173153, 65.89558383159272, 44.61787646340587, 6.086442743020158, 36.69545657174634, 16.74372762447984, 84.11183761732089, 53.73933650121178, 16.516820267031864, 50.39517615146657, 51.75031842822624, 124.20630950558206, 61.55863647458412, 11.399147034737233, 30.07103982534647, 37.727807741254956, 19.531559645162986, 53.44525606417282, 5.343373367676105, 55.590526199872876, 15.01014639660424, 27.389034341093364, 6.018728183773044, 6.0687371872363345, 64.4432426003623, 8.72473016848154, 14.771185485116106, 5.589291443237779, 22.11799278886961, 107.14701293467591, 51.20896118983316, 57.12434475499521, 97.15923416521053, 27.22110000913163, 21.330522720819552, 16.894661991514468, 6.965196134578655, 72.91795729867398, 118.27308733319776, 7.4458783445579675, 6.010730513839783, 9.320484099355983, 20.757917145568022, 5.288258810476114, 77.3328712804417, 41.12390612392418, 15.076166651575722, 12.132350827831933, 78.19256399720926, 51.42806916434889, 16.309203846598958, 121.743696834947, 9.833404232390532, 15.5133881844918, 76.95672360996026, 29.532364950883665, 31.768132577596525, 115.41686258829567, 12.303792317832077, 9.22594569432844, 26.326386745701484, 16.620963368012237, 77.87357342611925, 34.164444014612, 10.704644177009392, 6.192081512939351, 56.42547966443463, 68.48981659699882, 35.35246625017914, 104.11061538454634, 49.35094185672242, 70.69590655432323, 33.5799970092794, 21.020789490749785, 16.784277285499755, 15.580342823897798, 31.92047831299709, 12.905934974570412, 13.329059348293018, 13.164547242628446, 14.65787927477349, 8.324244731660354, 36.01102993201831, 12.255384386372603, 7.2890706333042194, 62.89428594262429, 60.91920209431594, 26.786053295383148, 8.771144349393053, 19.604864835585616, 8.499903335141022, 27.743396882837665, 58.88724481440752, 10.5521891265699, 16.34472876254878, 36.23075143858664, 7.508023041551221, 9.049024366859532, 12.910955628218934, 23.321615442027003, 34.07240369013546, 63.55242040370778, 8.903398349073198, 63.55479330064861, 13.242930501380185, 7.109328268832978, 26.67237303503427, 29.999831630489204, 6.193043362347949, 41.62147338679827, 83.39428758423426, 13.784191926993582, 61.65765520451415, 10.82052133396851, 14.235061795130884, 53.42509361978333, 21.17989008333313, 7.366360508648288, 11.096845522762672, 21.07705606963069, 24.962230682558065, 24.669533267538796, 89.8456998943963, 38.596950747050585, 47.66472088822887, 10.783954093712527, 20.9702899809374, 8.501237183012512, 29.950151838362878, 142.99482163631575, 5.0384520520914355, 18.27717836952452, 7.241475983175206, 25.518858145475015, 14.439350189606234, 7.543899445783539, 11.632001794773508, 47.492518952515525, 77.14008507058503, 18.118976920923842, 5.262495054733195, 13.924570792421031, 9.567914648445036, 52.33526978983764, 66.71199159240483, 58.82880813802032, 81.80589938104565, 11.237296158035111, 112.29174559389445, 106.88273961711066, 59.99571239080862, 30.309566071214796, 60.82253249767038, 21.356761903767193, 39.04804023032922, 5.3930337783390545, 66.81384856746891, 29.51305839928851, 107.94991797592373, 26.204003173953193, 81.88756769295684, 55.70706918126077, 15.215603751780595, 45.9347517729193, 139.2453367808626, 92.48319366060218, 77.40134917805648, 11.185082007549312, 33.17423838646176, 43.23161809204632, 187.92272906348205, 50.78710837808671, 5.890135383516912, 94.56142784505337, 26.032540795776168, 8.905078974258695, 12.3474767395548, 12.10662524514231, 45.91637833424866, 5.169211565431229, 39.55336193456051, 63.46178985292505, 41.04547423885744, 33.81342010363977, 54.16160975276264, 83.79487963005688, 30.27161519442233, 21.86255062988019, 80.1373423672601, 28.675400860433793, 45.52415401560008, 32.16568759982536, 5.240626385855701, 88.55304943360687, 13.839192824006899, 36.94626231918271, 46.90254556937477, 73.98529062683681, 6.0272066875516295, 15.268442969298265, 16.617429640182408, 18.06185892001389, 122.15564998530542, 11.595160440989398, 5.978375758035341, 13.245376878384159, 48.88781949768406, 5.2963471672088325, 9.903897726578016, 89.27390848887251, 8.164620911545098, 30.900624032749768, 14.735849034171611, 63.26114109019128, 28.35232640626983, 113.48452802163887, 13.296995426626609, 37.081287352688385, 69.25391310852045, 49.57791229632247, 14.765440950830063, 8.127925945311059, 32.17765110666411, 10.761429444149936, 75.96683415684652, 7.692798877446821, 17.872138688784457, 95.8512020648986, 11.647562314345082, 6.895904583652695, 11.833561627758648, 8.698009626960365, 43.85135264529667, 33.39242071312731, 76.83192647350407, 70.42730763365607, 66.311276015093, 9.058357316813952, 14.774581188692942, 21.19603993565762, 8.331984799866667, 70.35736285069234, 6.990537631078656, 51.41158725419838, 33.35614256520285, 18.050138363030776, 30.29060521183607, 29.249724548796873, 43.41902629068805, 7.993068684896543, 52.78413346299599, 17.029199650249122, 111.18514306952531, 20.91404561070053, 7.542920090866722, 81.63507961347258, 58.01404394045972, 94.2736349639148, 33.56943779800422, 42.511814311938714, 88.55461708295402, 8.513417830647064, 90.25334737713975, 38.2039347977106, 90.19129776141656, 18.016414409922884, 14.87828491207086, 6.026632248703182, 307.47252935579684, 58.81264424357987, 128.54454034013398, 12.328424509510093, 13.517239532289349, 17.449439672536705, 15.052958171430229, 21.04921406895027, 43.88119120783861, 9.120624267279815, 23.74819533423927, 30.2889630580349, 11.961229890536973, 49.895314598563054, 70.07125742396462, 15.899758170281137, 15.958022760929603, 214.76953801349498, 22.257572665046393, 8.023860465814598, 10.408790079261186, 214.656875979808, 12.245493709064153, 66.4908125508808, 68.88715536637783, 81.2607627075108, 158.1110804811389, 38.67764018905824, 206.0229463182209, 13.821841092241822, 86.21089230501845, 93.59966385694825, 8.204298481357288, 8.389984807827293, 6.306983289289262, 34.275568537894074, 36.284365976504965, 76.19224086329223, 39.89365620433649, 13.259018016927781, 80.8302120476197, 25.596548028368286, 50.208490263769974, 36.776438463742856, 41.48368807934406, 74.30311094786762, 99.5857735011623, 22.152654176588353, 10.93862904016737, 52.87738991001903, 7.273947253765275, 131.79344681828002, 68.73659844098582, 232.235095988868, 27.10078531719644, 25.117692974433844, 62.634610494321805, 21.272184682886216, 5.914065248822214, 53.337467591702406, 85.24079958443369, 25.48946872892225, 44.91621232871021, 10.909389633370736, 103.70935325672738, 107.2303322067042, 5.432942551023613, 17.103338376575724, 17.17121629500032, 8.415074646048232, 18.677338674582547, 60.73781296635693, 94.77565645677433, 11.04069206483847, 366.68496566097286, 144.9958950845766, 15.823830788699953, 8.990809643572648, 80.33054128597752, 35.739773693514834, 127.38735133306426, 22.974456349663477, 71.34922322172146, 11.730563822679391, 80.57864858766361, 29.324697049829282, 36.882117514550394, 43.5141828843319, 14.83770941913968, 104.06332455586573, 9.892050228990817, 56.37390047532702, 11.44211098436303, 9.340174578952249, 17.31516285687876, 116.31142804429771, 27.78326724787282, 20.14711254100444, 6.534208590047929, 38.34903214911055, 50.6134247560021, 84.95273108501081, 82.3497241957624, 21.05652180839251, 11.683123003145479, 8.859525555711421, 157.9612818808546, 80.19306175229241, 14.415752059183738, 79.20593713629452, 24.562637430700928, 54.0058884646507, 6.189993421464857, 19.176985980621126, 6.25673319150645, 7.55487973222256, 12.742241725294516, 8.994686345461911, 12.239496798637092, 28.540462666466567, 24.272521482079885, 15.393007383541121, 5.964908788683787, 88.20285559840278, 27.38859326380858, 27.551720425523065, 50.69613572806041, 9.417934371718644, 5.5332046322213255, 74.280015844373, 38.089798268197654, 8.469064982720809, 14.813045170782864, 13.614673399219832, 11.54332112009523, 17.291320020699352, 84.66200065527575, 20.65420881219698, 21.768345532476477, 71.60867446082247, 5.223564553120394, 13.100550707790926, 23.474806393845384, 76.78902486320328, 16.710677104368358, 24.738071105417625, 7.246477144412091, 18.497496972228536, 9.819037659749855, 7.4189194330312676, 66.54398452325376, 7.886840216742769, 11.98669793999334, 37.27002747694184, 16.48641644924276, 6.068116675998559, 20.930231092643982, 5.722253332481682, 9.909173251985138, 31.148084498573294, 88.91028861375267, 11.44241189676215, 36.36560241326966, 35.61649296256804, 11.98161218553826, 25.31863020558662, 113.82459676371504, 31.21678629299221, 126.50576160071077, 91.67257763545136, 15.440243899613233, 8.264752837799623, 7.184899500825518, 8.043142199032681, 5.901702412397754, 83.47231931168524, 61.2273635412181, 10.939931440698922, 19.676447134416225, 19.486122828801278, 38.64788116548372, 5.871361469893544, 12.901539240155662, 20.533457248994083, 16.503901857684905, 57.396445949065594, 17.49834600305192, 52.453950992771425, 52.97481981996103, 5.800422281534749, 25.694490031532744, 237.63481636091703, 82.17849328973041, 63.21831813397432, 50.67107870888434, 41.307073581652475, 38.106580957507596, 18.455013195030492, 21.514979151950754, 28.869454140092277, 6.2359373814585926, 234.8858001312881, 61.67892348708937, 29.992982600880335, 83.24182625572224, 16.743835243879495, 62.12870382437713, 78.88016757420007, 70.18174583717128, 15.742839230656134, 56.70033940385847, 10.669222769581143, 22.156565877624715, 10.059772710952771, 19.152392874757584, 10.983035763889896, 5.425014169113979, 29.524261884144707, 6.668737276613792, 100.11353623940369, 12.357814307290045, 11.5339489679222, 255.42726056015107, 44.09169247714367, 44.698274381409874, 22.173962300853944, 33.76090618267949, 12.018515321231318, 9.0879308531107, 88.87055285883109, 13.813388646292857, 7.284775697422251, 92.22948765552891, 72.76568213606664, 28.584044428134632, 9.5247234893768, 43.359747637863656, 77.78641852169555, 14.559391856711137, 6.106481472122334, 18.54488962264669, 17.370337956811504, 9.271614257407824, 70.43103028502559, 87.20528638629527, 42.004578333541176, 15.861051351565527, 17.56443615831983, 18.017282294349556, 9.272020121151716, 6.117209340549966, 8.374955251651361, 61.42599437280084, 61.669313233142105, 97.87709085476963, 46.53049390589517, 95.44667057346034, 25.668078557876292, 102.53906789740815, 37.57500617347684, 85.79913841017435, 7.957833957837927, 94.11141938148164, 195.82060911196442, 61.42444077237567, 252.2914869831834, 87.00154226191026, 22.0900134340148, 15.772423350016261, 47.33171816138339, 5.70493345858919, 7.094673334239115, 74.76011881344637, 38.10230826175571, 74.45632595056168, 19.942391014555774, 42.270457115536075, 34.0833846597202, 64.9583710133698, 13.085783538902676, 5.0415188029713915, 22.36524147623609, 44.3546612222845, 86.77974835775856, 11.017051855994838, 122.13021280333771, 40.54010886440501, 8.60544375874019, 17.446052748031242, 20.562015653581792, 69.0632165226873, 112.88747478154478, 60.58101239083094, 12.607639560154912, 46.48802851554723, 24.605876220025007, 49.77707542435522, 72.40143639762574, 109.6437551646428, 112.47079791775809, 102.86968777736126, 21.78553026965667, 110.48333318035908, 90.83467045459872, 33.159346954157634, 64.99903187341693, 157.2781371571859, 97.00321311013967, 105.02321752091959, 31.554590425068515, 172.54413340394944, 21.443005457506132, 22.03450107572367, 54.48751955201683, 90.81613540440256, 30.24114532210673, 15.444488252673214, 5.154575293320598, ...])
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)