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 = 45665
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);
([3441152.067664481, 3442332.8125, 3655755.428938314, 3757115.136116962, 3757192.2534993654, 3757726.3413757607, 3806109.2663677414, 3807957.6018616487, 3809558.2403941983, 3811652.227917717, 3811911.8280960415, 3813120.532419974, 3813314.2595493128, 3852451.3110713987, 3874861.9181055636, 3898420.8718592664, 3898922.403797656, 3933271.5660930304, 3941303.454372428, 3950701.6384843714, 3951303.988502386, 3957587.5, 3975343.75, 3980732.155776381, 3983600.3359170207, 3991066.0502597876, 4008375.500259214, 4047443.5311752325, 4081197.6710955277, 4081210.9375, 4125397.866312731, 4135490.1048991, 4137587.5, 4138778.077867435, 4138841.5764649785, 4173019.339263666, 4198682.8125, 4204090.539334947, 4213804.262620876, 4214369.592873636, 4214557.545603834, 4215690.583689476, 4219522.957906527, 4220747.413610718, 4221209.971686501, 4243211.328683868, 4284305.852282041, 4284593.75, 4284630.101760307, 4298202.93875394, 4309790.625, 4310276.492144263, 4310437.45568232, 4310813.558792864, 4313308.507591708, 4314363.798094571, 4314873.148622923, 4317820.504301704, 4318001.5625, 4341991.193034703, 4343531.7298865225, 4344505.702011816, 4372316.545454663, 4389080.995467125, 4405270.015495713, 4581890.547580954, 4583570.3125, 4601072.496588451, 4605711.112403563, 4608322.404944235, 4612823.4375, 4613996.858625759, 4823655.398089444, 6508304.124925612, 6517559.6086398065, 6530641.164217081, 6530653.125, 6532470.3125, 6532493.928237081, 6532741.470537504, 6533019.4908924345, 6533442.1875, 6539322.779993862, 6549692.350232062, 6551142.1875, 6557712.564872289, 6560512.5, 6569481.25, 6569894.173726226, 6570579.842618623, 6571096.875, 6571610.8545436375, 6583772.995648077, 6585793.740484225, 6587371.875, 6589210.521710912, 6592540.030542613, 6600469.931007366, 6600973.4375, 6601210.9375, 6601428.2031344455, 6642401.5625, 6644481.25, 6649007.848832692, 6649072.693834342, 6649623.4375, 6649737.5, 6658973.4375, 6662233.532200746, 6662383.295410589, 6662460.800997463, 6662587.49247636, 6662590.415025624, 6662643.766918736, 6662848.761454, 6662851.106837012, 6662851.74240516, 6662856.968408273, 6663016.8898550635, 6663610.9375, 6663616.578135365, 6663623.365737431, 6663642.295089924, 6663742.1875, 6663920.3125, 6664074.043571051, 6664127.164751453, 6664551.78215924, 6665450.0, 6665569.5361231705, 6666262.3375895545, 6666994.756059561, 6666996.461341323, 6668404.769818095, 6671969.735050758, 6674157.972528927, 6674293.75, 6674533.309681038, 6674605.824984608, 6674670.166095372, 6675182.490400006, 6675935.060376521, 6676064.792249167, 6676317.411795474, 6676326.535875628, 6676482.600976952, 6676685.711253822, 6677081.82715744, 6679376.5625, 6679856.25, 6680036.431263322, 6680107.344048072, 6681279.300705295, 6684809.358194165, 6685876.7277166415, 6686034.702473233, 6689521.875, 6691399.737470125, 6711088.183390919, 6744470.879790136, 6752785.737655066, 6818081.25, 6818082.8125, 6819658.161568219, 6835281.648803574, 6835738.260376229, 6835846.879693579, 6836041.543898104, 6836192.028247659, 6836197.685695271, 6836249.09478897, 6836265.625, 6836275.131286971, 6836506.232800747, 6836571.875, 6836637.040110224, 6836809.548098829, 6836827.285946131, 6836879.689331005, 6836957.112134518, 6836971.776310086, 6836990.993427095, 6837070.066691389, 6837169.491737653, 6837276.5625, 6837498.4375, 6837641.63100121, 6837736.625006857, 6837742.1875, 6837883.833568581, 6837908.697974383, 6837958.920520388, 6837970.77299645, 6838029.202000993, 6838067.439755488, 6838223.219483237, 6838291.209164652, 6838503.125, 6838546.875, 6838610.058431766, 6838746.875, 6838760.932051558, 6838853.125, 6838949.37287203, 6838999.310027708, 6839144.81708415, 6839291.036592392, 6839298.712735644, 6839453.873902228, 6839609.094397239, 6839610.791468964, 6839957.15760685, 6839970.650059373, 6840255.542578056, 6840318.75, 6845379.234102104, 6846003.054310514, 6846726.065075972, 6847485.079433107, 6848071.3759970395, 6848431.25, 6848626.92974267, 6848807.773007119, 6850145.654633175, 6853802.468003826, 6854931.25, 6856088.728853134, 6856118.75, 6857126.485978776, 6857413.783714519, 6861293.031778774, 6861662.491838324, 6862098.310978411, 6864070.264227565, 6864493.059576671, 6865938.520551243, 6872654.6875, 6873314.0625, 6873917.1875, 6874325.0, 6876532.8125, 6876579.031277187, 6876807.8569224095, 6876958.345058262, 6877420.226017529, 6877565.591419629, 6878248.607481059, 6878258.71443918, 6878281.25, 6878715.953844208, 6878857.558338441, 6878948.474745553, 6879748.945193894, 6885554.6875, 6888278.125, 6888291.638919359, 6889483.1593520865, 6893215.625, 6893428.094461307, 6893587.5, 6893626.0319377165, 6894073.713056834, 6894151.356398404, 6894196.348582177, 6894356.25, 6894360.9375, 6894531.366202503, 6894682.293887059, 6894722.44753112, 6894740.011293391, 6894885.452771462, 6895104.338552829, 6895260.9375, 6895489.010141799, 6896107.738671057, 6896523.4375, 6896720.004018838, 6896929.908623452, 6897595.89470142, 6897668.75, 6897717.599775597, 6897722.305122344, 6897814.0625, 6897956.25, 6898287.476651449, 6898836.643913032, 6898887.430159783, 6902445.178332836, 6909472.297454303, 6909955.943936504, 6910146.896393631, 6910538.245450028, 6910595.3125, 6911197.724754956, 6913553.125, 6913992.166708737, 6920036.021350754, 6925109.230573601, 6925761.574778166, 6926070.3125, 6926492.1875, 6926764.0625, 6927029.262296037, 6927069.504526739, 6927508.508909232, 6933634.817907948, 6941220.3125, 6950501.413336, 6951003.09899813, 6958589.0625, 6959096.801253341, 6959633.239081029, 6964183.441911243, 6966924.27518981, 6975624.19814126, 6976158.794877551, 6977374.772526032, 6977584.274257533, 6977932.8125, 6978307.316167997, 6978501.5625, 6978563.854433635, 6979184.285432568, 6979233.021199592, 6979364.874133867, 6979435.358558619, 6979635.9375, 6980098.12005359, 6980153.091884688, 6986630.937677265, 6986644.203010776, 6994738.952138883, 7000042.1875, 7000141.560343763, 7003250.0, 7004470.92827549, 7005672.644312354, 7007017.827756693, 7011879.6875, 7012386.54858307, 7012397.548097198, 7012672.702093434, 7012829.6875, 7013018.75, 7013128.143062746, 7013615.879214875, 7013670.213592552, 7013734.184639043, 7013743.75, 7013847.414751749, 7013909.375, 7014046.552708863, 7014165.3624431845, 7014260.877659608, 7014323.4375, 7014370.3125, 7014379.446460985, 7014481.25, 7014564.0625, 7014581.25, 7014584.293730946, 7014651.851343196, 7014656.015993692, 7014899.80757943, 7014906.046044418, 7014952.075178659, 7014975.42606665, 7015004.8645664435, 7015008.591426231, 7015042.1875, 7015112.026327129, 7015134.880838261, 7015149.419620431, 7015149.88537075, 7015154.6875, 7015177.217554488, 7015186.23353033, 7015250.0, 7015266.146522405, 7015286.068845055, 7015290.996115205, 7015291.715334036, 7015297.932993479, 7015314.0625, 7015386.7204057835, 7015435.923648708, 7015443.753077891, 7015444.304538254, 7015489.486543933, 7015507.8125, 7015589.980916489, 7015595.3125, 7015881.25, 7015943.000483984, 7015951.330629453, 7015967.65027619, 7016037.471934736, 7016087.5, 7016291.517975039, 7016329.536463608, 7016364.265247632, 7016404.6875, 7016404.896603645, 7016492.361444139, 7016543.165195481, 7016568.75, 7016581.25, 7016593.181190176, 7016599.700543222, 7016604.6875, 7016639.023170779, 7016646.5731581915, 7016654.0043215165, 7016673.89194559, 7016732.7121111415, 7016738.976652898, 7016746.875, 7016759.375, 7016771.610711782, 7016807.8125, 7016812.528984605, 7016813.913597211, 7016859.375, 7016871.712015686, 7016914.0625, 7016922.2841675505, 7016927.790382787, 7016952.994608237, 7016959.746708704, 7017001.52152415, 7017009.375, 7017032.8125, 7017039.312583283, 7017048.743276747, 7017075.591658709, 7017090.625, 7017134.955883664, 7017146.6007273, 7017209.9530854635, 7017219.997778648, 7017225.0, 7017241.207959499, 7017248.007966546, 7017252.791572532, 7017253.7921530055, 7017256.917369588, 7017310.367040708, 7017337.092810838, 7017344.9224223215, 7017404.314211137, 7017485.9375, 7017570.751435141, 7017648.250388341, 7017737.013030505, 7017827.001943575, 7017835.1040809285, 7018445.3125, 7018726.418097737, 7019049.754357039, 7019078.739787339, 7019218.615506746, 7019292.402208411, 7019557.7741031535, 7019682.230010848, 7019773.4375, 7019791.611905212, 7019802.860457029, 7019804.6875, 7019828.425914489, 7019863.751695275, 7019946.575255457, 7019982.160290027, 7019995.430239586, 7020051.4174934635, 7020161.220620902, 7020172.318474621, 7020250.271310352, 7020301.351607341, 7020383.270207468, 7020479.996166964, 7020492.1875, 7020613.226536125, 7020624.549894919, 7020640.3119042395, 7020650.0, 7020682.8125, 7020709.031570824, 7020812.5, 7020834.375, 7020856.25, 7020877.00316733, 7021099.924088442, 7021228.015022873, 7021344.600820829, 7021709.8633469865, 7021807.647517825, 7021974.384551121, 7022213.262694767, 7022324.919958065, 7022478.778737415, 7022752.162693588, 7027575.911111603, 7028039.9932807265, 7028796.498656377, 7033645.112441369, 7037224.77543601, 7037463.306973012, 7038634.1230794005, 7041466.572670665, 7046382.094543188, 7047761.605721996, 7048921.7896949, 7049537.354063419, 7049620.845381613, 7050123.4375, 7050168.75, 7050268.91784525, 7050271.26306183, 7050418.539134383, 7050460.506025113, 7050487.5, 7050490.131182634, 7050535.266682278, 7050643.75, 7050759.978216487, 7050768.877699009, 7050821.7027677335, 7050849.723479063, 7050850.409918368, 7050858.7379780775, 7050891.356556972, 7050929.220403746, 7050930.502144096, 7051005.468607087, 7051005.999043207, 7051017.1875, 7051021.8099068105, 7051070.991664183, 7051098.2152794795, 7051215.463589247, 7051278.125, 7051278.997929199, 7051376.214388506, 7051415.402714316, 7051466.729680129, 7051490.625, 7051501.5625, 7051598.397732995, 7051632.122428906, 7051657.353824265, 7051701.277631315, 7051713.844077279, 7051784.69452841, 7051835.795502245, 7051842.724241615, 7051857.50308825, 7051881.0276239095, 7051885.9375, 7052000.0, 7052007.301683868, 7052031.25, 7052177.645452737, 7052217.742050524, 7052226.5625, 7052240.625, 7052254.664384347, 7052255.993168159, 7052373.4375, 7052396.777785946, 7052415.7798468955, 7052417.42444546, 7052457.498357907, 7052572.545259318, 7052655.664449241, 7052657.597442008, 7052660.395880118, 7052671.875, 7052708.679784015, 7052739.47256158, 7052793.0847033, 7052801.5625, 7052808.966554366, 7052842.70697839, 7052846.87237945, 7052928.439125003, 7052996.070011981, 7053141.763132364, 7053155.988607844, 7053161.851275569, 7053173.154791241, 7053184.375, 7053188.388505298, 7053226.317036018, 7053244.610200345, 7053325.0, 7053378.381621636, 7053458.87557218, 7053460.265155112, 7053506.25, 7053516.22206884, 7053537.380495971, 7053562.462089833, 7053590.980931831, 7053606.845832767, 7053626.641895922, 7053631.25, 7053643.967522167, 7053671.875, 7053709.9283538675, 7053807.56659658, 7053824.3448886825, 7053843.75, 7053845.807685168, 7053865.849236755, 7053983.035624682, 7054036.194614497, 7054055.461605865, 7054060.006957561, 7054060.830165872, 7054090.3234891575, 7054100.051466287, 7054137.5, 7054154.39148981, 7054167.368026474, 7054204.618374759, 7054294.727191947, 7054300.936922192, 7054310.677304282, 7054314.02420892, 7054325.0, 7054335.308614393, 7054357.983066933, 7054385.9375, 7054429.6875, 7054435.9375, 7054455.5134303905, 7054483.16484041, 7054532.3215654595, 7054584.353591416, 7054689.0625, 7054756.052517068, 7054760.9375, 7054834.375, 7054854.5315183, 7054872.482362207, 7054914.024922156, 7054967.1847720975, 7054968.044273422, 7055069.131921511, 7055093.42994828, 7055098.323559804, 7055109.9070481425, 7055110.296927571, 7055120.3125, 7055132.400666291, 7055189.0625, 7055229.239627209, 7055245.533068842, 7055264.052279976, 7055423.576047543, 7055472.689263704, 7055512.321794105, 7055550.0, 7055632.472953971, 7055668.75, 7055695.793113343, 7055715.3543547895, 7055807.8125, 7055812.192828425, 7055832.8125, 7055834.375, 7055868.75, 7055880.596371998, 7055892.1875, 7055906.117320901, 7056048.4375, 7056074.477613774, 7056095.3125, 7056102.426397728, 7056134.375, 7056251.0052264165, 7056313.857845813, 7056418.126993645, 7056600.0, 7056612.5, 7056618.634727955, 7056718.75, 7056801.5625, 7056841.901292617, 7056876.353861304, 7056923.38302031, 7056969.5315158805, 7057096.875, 7057186.990013256, 7057188.840101447, 7057237.139026247, 7057286.73035241, 7057387.5, 7057408.886258226, 7057509.430253532, 7057530.112642362, 7057695.3125, 7057782.456744726, 7057806.17692829, 7057817.738585529, 7057859.157934758, 7057884.375, 7057901.438139731, 7057956.569506699, 7057965.283033563, 7058032.307183432, 7058145.925468926, 7058170.406123803, 7058244.933670107, 7058346.818441431, 7058359.554779928, 7058478.0279715955, 7058506.25, 7058510.907397893, 7058554.659997668, 7058643.108051228, 7058654.637176297, 7058684.927653293, 7058868.652967302, 7058888.699392426, 7058911.471026517, 7058956.960871219, 7058962.37774122, 7058986.068433677, 7058989.151303418, 7058992.53780694, 7059009.375, 7059023.4375, 7059055.623984269, 7059099.495543378, 7059103.620264083, 7059136.781927915, 7059178.965524775, 7059198.4375, 7059287.043247209, 7059390.625, 7059576.038055662, 7059601.149739867, 7059636.74667573, 7059671.168387115, 7059671.875, 7059676.195514925, 7059693.553677188, 7059698.14180652, 7059703.086318548, 7059710.812910685, 7059724.438472857, 7059781.25, 7059789.758199322, 7059805.137082465, 7060002.875599153, 7060028.023557652, 7060098.737990415, 7060135.040893567, 7060246.775685539, 7060268.293829687, 7060421.875, 7060437.473964882, 7060437.5, 7060556.179441944, 7060570.788205551, 7060618.75, 7060625.507915387, 7060699.632652806, 7060705.518383304, 7060735.337729976, 7060762.5, 7060800.369730995, 7060902.797037973, 7060915.082584103, 7061029.164133954, 7061040.625, 7061048.094137871, 7061053.137368015, 7061073.329289095, 7061126.622260556, 7061133.8829820715, 7061274.746369289, 7061279.633971485, 7061284.399833915, 7061303.983708989, 7061391.281612963, 7061445.912610845, 7061469.480800252, 7061559.375, 7061687.0821004035, 7061728.340687601, 7061735.682272108, 7061872.933349531, 7061904.6875, 7061912.5, 7061928.906869397, 7061943.371280054, 7062181.3631766355, 7062200.538388383, 7062214.0625, 7062216.202545836, 7062307.8125, 7062309.375, 7062310.491106268, 7062483.038564412, 7062561.099856388, 7062850.704600686, 7064026.5625, 7065290.404254605, 7065321.875, 7065365.196767051, 7065399.790127738, 7065773.4375, 7065834.86068876, 7066390.625, 7066392.593812608, 7066437.5, 7066577.432148951, 7066672.477865886, 7067045.3125, 7067285.9375, 7067642.5952912, 7067726.639486837, 7068186.501771651, 7068257.659032791, 7068375.3744866755, 7068694.364683004, 7068773.4375, 7068944.554972331, 7069225.663931641, 7069520.476942158, 7069525.0, 7069818.5768749025, 7070262.5, 7070275.0, 7070538.047865327, 7070734.259166906, 7070848.4375, 7070940.652215636, 7071004.546472188, 7071045.3125, 7071195.049093262, 7071261.714088998, 7071599.3401489565, 7071862.5, 7072288.626752565, 7072391.719690436, 7072475.781733121, 7072732.149121259, 7072898.080652764, 7073205.475131463, 7073404.012360139, 7073632.64321252, 7073692.604145914, 7073734.052798965, 7074296.875, 7074875.770921785, 7074953.139696818, 7075129.6875, 7075135.72770427, 7075173.05017109, 7075248.4375, 7075370.3125, 7075468.30246257, 7075795.551195053, 7075824.858795759, 7076204.579378895, 7076353.7766653625, 7076535.9375, 7077150.0, 7077749.396268087, 7077892.1875, 7080070.92485759, 7080329.6875, 7080510.9375, 7080610.972157591, 7080915.192414748, 7081223.4375, 7081649.415191701, 7082198.504747259, 7084516.017465282, 7084543.75, 7084564.286354211, 7084802.875151129, 7085332.325279814, 7085346.5721674515, 7086480.147587278, 7086585.9375, 7086948.316602807, 7087517.720461178, 7088725.7618361, 7089056.128426194, 7089287.102773338, 7090982.091387772, 7091685.938750565, 7091809.375, 7091826.370606947, 7092001.169531632, 7092125.192322875, 7092336.713218959, 7092382.490649219, 7092683.325865063, 7093958.969530384, 7094439.350982556, 7095090.625, 7102828.125, 7103278.125, 7103625.421329895, 7103850.294522824, 7104097.800246617, 7105285.07070854, 7105589.0625, 7106439.990852877, 7107789.521121658, 7108157.38216273, 7109085.9375, 7109090.9502089415, 7109827.829273341, 7109984.375, 7111556.081660008, 7112382.527943374, 7112615.664285912, 7112781.25, 7114211.014771666, 7114272.8004715005, 7114442.638298743, 7114458.734771199, 7114828.125, 7114954.432703856, 7115291.692511193, 7115315.625, 7115414.240724414, 7115432.210677461, 7116067.1875, 7116521.135806358, 7116560.9375, 7117418.898899743, 7119823.4375, 7119903.233867542, 7119927.845458586, 7120382.699873904, 7122369.985701107, 7123914.917928465, 7124790.625, 7124894.978094577, 7125068.75, 7125073.942981037, 7125103.125, 7125120.872456752, 7125323.655248881, 7125474.879081502, 7125593.481137427, 7125666.3937496, 7125673.841508486, 7125702.147785809, 7125706.25, 7125725.0, 7125795.009474999, 7125803.099939974, 7125935.876021063, 7126006.606076003, 7126364.0625, 7126386.298572378, 7126508.726703238, 7126637.397012286, 7126931.25, 7129063.424323108, 7129923.59833444, 7129992.220785696, 7130010.3173751095, 7130866.974891646, 7130995.082515714, 7131287.969732201, 7131750.904035254, 7132229.110405883, 7133513.991671064, 7133602.026240381, 7133698.4375, 7133751.759889995, 7133826.33631349, 7133908.344842745, 7134011.6628189115, 7134107.687695335, 7134190.588131332, 7134398.4375, 7135164.0625, 7135715.287522839, 7135780.068533181, 7136461.441058712, 7136519.428590328, 7137061.564574652, 7137412.798048732, 7137463.210693963, 7137626.7527532745, 7137748.251042607, 7138378.449186659, 7138387.5, 7138435.445495188, 7138573.647595593, ...], [33.76881742807218, 49.61192534311217, 7.331018923098529, 8.949620547411223, 5.099757428494539, 78.06735921861156, 8.229954225774547, 24.963518387466525, 23.94628014244268, 18.274984498254916, 63.74649351895445, 28.014486293591357, 8.393603558316908, 14.062603331557728, 124.75746960508332, 12.131212488137647, 7.267758762021161, 23.637630329134076, 204.55534246407856, 16.695653595184346, 14.143435995593435, 62.41090457962243, 29.57911378042452, 20.060265268089, 49.177570924706714, 17.661586073391906, 42.34375171850252, 29.39334010527776, 12.651198843124908, 39.084141355769475, 13.1352194541863, 21.294899485497027, 65.12239045589251, 27.625415019565335, 30.143925070200666, 58.22123781272227, 76.50449332739764, 26.938051190283744, 8.0739861176278, 37.307753251956484, 14.013266709132694, 121.86424327471514, 49.047663062652376, 79.21806223676111, 26.861046255548274, 16.676438433611505, 9.016323149545505, 68.80710328405807, 11.571528227794825, 17.279276860435317, 53.69428139852407, 9.272613600954353, 14.775239522034937, 50.002852848306844, 80.8639873060541, 31.92614767065153, 23.893869032818216, 11.44135079306997, 108.59823751993173, 45.309995469342454, 5.641155967730712, 85.61824582343966, 7.386431964093613, 5.159475767368841, 10.693173529499155, 14.654412673922875, 98.7608926584326, 28.95436401015723, 11.412559073956068, 26.164359977074774, 58.075217958827594, 110.80743026171999, 27.38026499988679, 13.157875473741315, 24.320890996170114, 62.66217534259171, 65.7779990932797, 51.80629769663437, 5.6239813342894625, 12.768678362857958, 96.72126633699023, 49.77431063017258, 55.102976185039076, 8.37454923487264, 45.36653659951442, 21.35496570200516, 75.21397690537697, 63.46269634954474, 16.846694284631443, 23.462989853098506, 59.89593854024706, 30.7392795638672, 8.065967944390533, 28.338007954256874, 31.21499970255388, 21.87508746400926, 20.59989317328548, 6.689661739236002, 98.87301028482936, 119.22092096195944, 5.401469462258778, 48.556103443305176, 68.68405998157615, 24.53984257121769, 7.928921056891293, 133.97150693479352, 50.86879780168445, 77.22182399238186, 12.475977502387407, 9.776082533870595, 5.927605566788009, 28.37696374869405, 73.34853155760224, 45.44761924580904, 20.10113952188218, 45.93512989570594, 33.578996914803184, 7.885526060165746, 66.7346185698873, 66.3214667324323, 6.395630208338146, 68.31359397960017, 74.46030862037978, 46.16748665484596, 43.88936160451379, 17.894886946893994, 12.220544733394227, 8.406256073629123, 75.15866515026829, 21.092976942363464, 17.398356166571844, 15.689261289994269, 10.537338319939508, 5.401630326891062, 20.753794972039184, 11.387407499759377, 43.7088019456172, 8.56824203276622, 32.69202312863388, 6.4643833398612465, 14.870313700278746, 12.399632342375348, 12.498601885654029, 30.008277512741238, 28.008579363811105, 71.070359493029, 14.144012536820325, 25.55998108165215, 113.75696247808257, 54.437190243836, 17.229539557571968, 5.060475646737438, 81.28290882401001, 34.37466804614378, 7.664107121528713, 16.356184743990788, 76.73376750994709, 14.027143015360176, 9.984841270421374, 33.26349015533428, 25.12033560700991, 36.85118026591592, 47.104562642590906, 16.820635075874705, 71.74335916025103, 15.985475520850787, 11.135051101927587, 63.11476987040953, 21.585822691224088, 113.5100814917729, 17.007022258307416, 191.60868098237458, 11.339310705093547, 31.351704941069446, 59.23563789595968, 89.07090980765508, 11.409497880991829, 87.31270727166056, 11.130569989109619, 19.70290489515528, 26.714791400944716, 9.66365042587263, 54.18778791042834, 28.071320157024687, 67.97613272926843, 91.31351031291338, 20.947420481590854, 12.404329003424232, 87.18552760239947, 39.371186194012154, 6.954171614243972, 45.231482186103285, 8.54609399087479, 36.97783829618316, 8.424636454834397, 24.85767245745527, 87.16117265704088, 51.63318408177517, 36.450337936464926, 24.52375392226315, 35.842753594293484, 44.97273604206515, 91.32877548209126, 20.01192808426184, 73.73058116263917, 8.04088772423508, 38.06596809456606, 7.195732413826433, 86.78152491038122, 9.104896840036508, 25.939177855037478, 8.832916387161717, 38.904820047554594, 40.358015033894056, 52.35765161527579, 30.166048774591374, 14.678749908376528, 58.7351617736778, 5.868008109297282, 21.503052003272966, 64.49823629862507, 11.754728519354222, 18.817495890110695, 46.15368890743362, 46.75018348385388, 52.96831228386605, 13.805971012543303, 32.50875143166774, 8.2465219499906, 100.9809942549269, 12.765646317154822, 14.910491920390909, 19.579578008056234, 6.083093653020624, 18.57671945498309, 10.374549427457833, 58.98354568716066, 69.26038143077693, 113.55519027348471, 39.22484616505747, 44.107916906674184, 20.06446259526451, 5.81727447213487, 36.79382863402823, 14.621815533012265, 11.075621079785822, 34.54383427330275, 73.8386114312243, 41.3854300241853, 85.34120241649137, 10.752390732025859, 49.08675312902584, 61.66216253287516, 38.93852275995727, 132.98686960008692, 32.24138890364665, 136.60684840384553, 63.39878279598094, 14.826373924883548, 67.11027583208339, 21.193548201724866, 16.10725415017712, 29.983156000120527, 21.23355504848244, 89.75941391180973, 30.641391813299133, 54.081258391489925, 14.501629830535283, 6.149732222039345, 13.025057113167277, 5.510008693673108, 62.31901181525015, 184.4912857790722, 14.745630489360714, 11.187330121595345, 32.071152931684175, 13.883072151634067, 50.11729626595411, 17.74779136265961, 54.71522410219531, 16.786253501578205, 5.048867568918722, 106.7039701801896, 75.8380683547079, 5.812254690458155, 8.69915727642895, 14.681829423144938, 6.074257262183815, 53.56581157201735, 38.140756141025165, 106.69535998766254, 10.0527496833028, 28.613615161509568, 19.60447356359241, 120.88916076872094, 13.29222001672537, 9.40332458922804, 34.93354502541693, 32.60994706508339, 42.97590606500535, 42.58814764793972, 80.19782781895252, 12.271363535547733, 18.88748217821085, 12.120493498009143, 5.357331094520434, 29.273288516932105, 5.697330124231626, 5.3974809349078345, 70.89849783094934, 8.247960110633711, 53.86823685226416, 65.93820249220468, 12.74981024068554, 12.568951025109612, 26.14935710268902, 24.72358358109148, 26.68001018383319, 36.59892642732245, 13.3361030540449, 59.811841562480055, 49.91160242769663, 10.990534875530045, 7.177414802177727, 12.68776535281153, 81.87262408388393, 49.98733492725238, 30.489590864785015, 27.8859493491823, 17.833327098572056, 47.323813840919115, 14.536912577989698, 92.29065034589969, 77.91117838520167, 57.03213152771569, 12.249137585315234, 55.011637279376345, 17.20496410310406, 144.35554357046985, 23.923693362149763, 18.32573219473997, 19.42751830423094, 55.35239678405623, 77.53284062261142, 7.6097837606606165, 117.79581732287635, 43.024752273214794, 95.9702340710648, 30.659201262741803, 85.61068624335738, 57.03390947496393, 8.123193646755542, 38.1054927735474, 27.394151191002976, 103.08027736279921, 62.18723056357603, 108.37048587450582, 30.342669292776698, 95.88434833833453, 50.86740120257981, 33.08624270785854, 16.169973131173688, 7.520738931275783, 137.02451090166718, 25.060331813428544, 53.590208356692855, 7.76496768927434, 69.85041071923479, 6.370895396823809, 108.74059678189629, 35.66884626779255, 5.5581446525127545, 52.8651159564959, 40.20492130656492, 85.60434722842692, 23.694218912202135, 20.14898068896592, 83.06879561487685, 9.815080370274359, 27.080814805133134, 16.57373363360511, 10.462022193029593, 89.18120472031674, 41.616992722716425, 19.094009660224625, 8.279266087882986, 14.953253889884742, 14.261160541960596, 93.66606460348788, 42.972950070685926, 123.57822785360142, 51.49354214295007, 83.35041388762228, 10.128528844827228, 8.167651841490997, 76.25256113834261, 84.85676148457591, 55.39491341055653, 10.220926666607925, 14.39547017320006, 15.77502543012251, 90.7040797622049, 15.8032789746426, 5.207876253421721, 20.686883201273574, 55.91147632659004, 55.497099564482355, 43.9330245354014, 104.28725489009054, 91.27162936429305, 5.068181815208531, 10.686555718409753, 83.09241760849635, 26.511767660741064, 93.95258295181539, 26.934899971095124, 31.178349730008133, 57.048508002830225, 56.68860367808571, 47.55590432752595, 15.053148124190784, 57.01558275283883, 41.78925028419205, 136.37255010097047, 71.77494660655782, 16.769948688486906, 24.435652261166524, 26.189388279817695, 39.42080044330128, 127.53443130995645, 40.23440557503366, 53.65803366476378, 5.408121319028456, 60.9993567453455, 9.887367040212924, 46.31008636847743, 17.530197618132604, 29.985233408907934, 23.420454748932187, 5.912458424310203, 66.07040697262472, 46.61591841989464, 7.4549352632547015, 58.768674767919265, 59.44767332352436, 8.67411683757826, 105.12542157367943, 22.471749213488675, 7.022553298415086, 22.85764329994815, 82.74246702232196, 6.134965832983293, 7.5369360708382205, 5.509904095561232, 7.770305091594263, 5.146395859970006, 44.12448442015928, 25.374668623388224, 7.516745054370084, 17.949408194194252, 8.216712936810811, 15.828309156440458, 106.90084287031009, 165.72354534109036, 36.052659908355615, 39.75510130886031, 43.879209164176444, 54.54400269690835, 61.84730220703023, 182.6810668245692, 8.13418256287427, 12.92765297139044, 6.28218940891676, 91.79497950459199, 11.601089523578947, 11.899680177475231, 5.252802695858964, 6.240916288106147, 9.750925521829853, 6.3070001079556155, 104.09589524927807, 13.964579549228244, 32.2352394278934, 13.86884036446218, 30.68530854564205, 41.04286022271104, 23.21140513833286, 110.52617224047744, 51.88183133052662, 56.08055272729851, 16.15834655818437, 99.1681804327428, 38.88217362278399, 5.879735231898141, 17.199098117643032, 9.195691606832796, 20.41387997313264, 31.78271094784886, 11.004859226083997, 18.198500488082107, 107.12422835939611, 8.835319162343175, 36.20721235008146, 14.17526944180555, 88.03354209429168, 14.677848774431729, 19.273808172954848, 24.384951799496054, 26.531760756006523, 19.56341037753889, 12.36201087755936, 6.746594733071394, 25.94067182443792, 22.54445128055839, 118.24368378186844, 38.79277127964075, 13.49733523001024, 20.44469276001697, 9.159249470655128, 22.205040599430102, 66.5458008133233, 10.434612183272465, 8.822031123370364, 84.51573381986262, 7.289591941199673, 151.0881536098046, 9.189896755197525, 24.16352694432352, 53.14966275815506, 49.58742699546164, 12.502685578094978, 5.120643408769405, 29.88684199704385, 10.092511306245369, 32.18386995476356, 97.45011516053628, 9.276963082655616, 74.79249508601806, 10.797262537487635, 8.203026017819674, 82.73172010850703, 80.5505953720716, 17.571333885840325, 34.01926088388744, 70.1007397331059, 86.95295044110276, 41.913744505121095, 27.76159349482266, 161.47112608109612, 13.440666508099484, 7.048529044447177, 24.851880369031214, 16.317410496127916, 39.64793938396858, 82.78069555566314, 29.664769663414273, 22.067481554052563, 45.453001514070266, 32.35536284309989, 21.385877866071972, 45.33841799156336, 10.452650054772462, 47.103641169294, 47.087587323578234, 72.69633983019615, 24.682937521937223, 10.74866764936981, 68.37441380718495, 98.11903626280642, 5.540643243882846, 125.134777985204, 58.67438876030526, 39.20246748313947, 10.32115119784473, 134.29926517745997, 20.381005579782897, 96.07450389839147, 19.744223905507866, 8.516020076231866, 17.455204580243205, 79.72475987530969, 40.54402272597201, 23.61820778915864, 20.82355496842515, 33.41858095659772, 5.4282447217624625, 82.93924290521389, 61.32601302415374, 20.12757663171223, 61.474132576595515, 40.96364195658487, 19.91687218623603, 5.037431528876951, 5.269875698850934, 49.64282085478547, 113.00569173423916, 13.327613375062969, 26.182483104061966, 56.377250767350546, 98.65249016505358, 36.373215512458565, 14.798955923687188, 11.733693463651187, 137.5609045213299, 15.25301848211503, 35.701997186834944, 30.528253673640503, 29.72606301269353, 53.77076904208779, 65.83672281717291, 8.832766901414479, 90.2043334937098, 17.237554661039287, 15.87111326848375, 6.8088845019285795, 11.55487136778347, 63.59057219602179, 12.283623844244717, 26.5690396638575, 25.650848869049643, 9.37530329134223, 59.227642365235404, 6.057848352760548, 18.217091332212707, 116.30512745787681, 20.682322442059622, 10.272955891998283, 23.573020887385944, 5.340611296872985, 99.48248143074098, 8.850807927718604, 15.634087471649496, 52.81915830382191, 92.12526341658182, 52.37271131558474, 8.777638849854743, 16.479186282522647, 30.48400368707788, 52.22935042425211, 53.07075753989339, 25.154971567412414, 52.16564586388287, 45.008975836637156, 7.547779481647624, 16.430261738020974, 22.061634337564158, 28.47126408451705, 6.947523021108615, 11.782206163126146, 10.661767330109766, 26.458927022448986, 17.44889045234693, 20.1967694098069, 64.3343004658974, 22.420128289483056, 44.41074275297063, 22.029349934102825, 5.170530518683905, 11.111769736543925, 8.361228166893735, 10.920200151303767, 69.1448534370206, 46.70799803686005, 23.258406084715315, 93.93036528318211, 17.15588101713659, 131.29747025176715, 204.3618539792472, 23.65956494824182, 55.65178258233664, 68.75596746846986, 58.91194273407315, 20.08624600893441, 34.731036801110704, 99.61213458505839, 46.83465430234372, 21.272655047183616, 68.94817278472918, 76.91476895255155, 39.95986435014594, 13.171877234981116, 25.0501686014342, 28.523811797802267, 61.644582062121735, 37.15232165824913, 26.436859202148067, 110.27247591875962, 34.33015005618897, 118.76378611647743, 9.161005539498221, 35.26990657348699, 167.8560418147592, 29.041122624779277, 20.707199546820817, 85.95643613042424, 5.446483545724355, 12.643607140931225, 65.19556698369175, 68.25376690665406, 33.071375355377626, 9.718762513746812, 33.6880024234481, 13.739257002706129, 27.15819134373243, 21.63464973667365, 6.453594316798204, 65.06945801301973, 43.33471029626286, 11.666756040133562, 20.49547605968744, 14.91277741968667, 28.12295763121984, 15.310785205206342, 145.5003018015264, 6.752267375912127, 68.47281086671067, 26.74302566752354, 29.304035951937305, 27.942717912050142, 14.83770941913968, 82.87106567730947, 7.108285622713329, 58.9509522940696, 31.935024845777093, 39.195558680312175, 50.28232626659337, 76.66114846037985, 26.321811342473907, 6.5078139947905695, 18.07881463184171, 11.72327706205846, 52.77399344649752, 45.957647226658075, 5.769068356228373, 58.259404356408986, 7.7927580425358185, 6.3801255275492785, 30.75052081433754, 61.27486941635258, 67.05064947092967, 35.515920999386736, 69.86803224070916, 22.40986686645912, 36.33488910788555, 19.653072956644134, 141.41361092488128, 35.23244250298499, 53.74797235219782, 23.805907789742157, 16.467892453036633, 44.93568603464509, 23.2707089904978, 86.58106258713832, 49.14683326475526, 16.985355986475575, 36.08265910125236, 10.97276343982825, 16.225506808781745, 38.63363797395994, 63.64585176111406, 5.511343301960134, 35.49690791487774, 9.309485608318669, 46.78950039577886, 82.64814067405817, 96.14857126747255, 70.53848563085717, 21.470198052236746, 62.83428443988548, 44.63402473212628, 36.26126169274302, 48.54458625451388, 36.815731295296175, 13.823278785804721, 105.11058390680657, 8.027934073335414, 46.798973228221186, 23.21221468367029, 21.889374435622585, 10.962676346969289, 141.42234180774886, 35.12681069666105, 32.497880669061665, 14.741334830426288, 22.437940772135512, 14.143477807842064, 55.40581881056244, 17.85785599739942, 12.500975708285454, 45.13996585018911, 5.44411121660356, 15.83269331209085, 124.48747928808753, 109.84118393607314, 78.35124378896994, 143.85111426091203, 144.67921839647286, 49.958768921302216, 20.083385545855386, 49.21895932124312, 58.4977863296759, 83.78461560748144, 49.433605363419446, 92.69165635821953, 60.24501960216362, 6.809493696579459, 66.69913102163665, 12.720236892332661, 40.40083328324779, 14.16197704405597, 29.233841729498934, 22.240189335215415, 45.84883276966209, 104.69433306221782, 17.184210603204495, 56.781093855765604, 7.757116085261234, 60.70515233415277, 10.193679588887248, 89.67580320082112, 46.42332431335336, 60.06751677468477, 150.80510643172158, 46.66577552471196, 7.820924456025639, 66.69156706136567, 96.29221610725348, 9.911514950107847, 33.62142153972796, 26.969468116616753, 24.730730536570192, 15.607656011836129, 38.77099277757117, 37.320038048119564, 40.20989526254964, 99.30927138867808, 17.541708368969683, 13.442822309239702, 48.12461708166047, 11.170514734524753, 26.018598109811283, 31.768464177353565, 5.237832403370328, 23.71736484331869, 20.034104472279825, 56.46059412306943, 8.988265099680813, 58.10780966052903, 93.31133713040535, 42.548400139920375, 30.183293558086085, 54.53968251363564, 10.214344792261423, 101.20950815583988, 7.235458538737651, 23.47123694374456, 44.54200748833846, 17.684517719156645, 7.608561934536178, 29.511381179910334, 14.197933150075128, 28.921164749166287, 65.85529927133355, 44.74491919565892, 10.493502253182339, 91.72302294591142, 5.697829941656163, 10.962809974822605, 7.857261127280415, 67.34349596716642, 36.70868781927474, 20.517180203230936, 33.07160510236138, 26.985294987108787, 32.168409085064454, 58.10938734365959, 9.360881064900292, 22.19303384363515, 29.895131932231767, 10.322052563426308, 11.234471021848156, 19.337363419721758, 60.423176627062475, 15.869388627904268, 10.758412905796046, 13.361183745493273, 10.685202068947616, 17.0425732007083, 44.48930169493762, 26.34413798966944, 12.077232146386377, 31.21982507824204, 5.699064166816628, 16.29034643082884, 6.627603186473118, 22.246009179736713, 78.19777929036731, 5.335388928520223, 115.65880642225744, 5.624773249675017, 10.086467498943609, 30.774745149808364, 12.037641899336222, 23.306624866216296, 22.179240508817887, 100.31509034248256, 63.6875906076715, 69.89921015213073, 73.86550582320959, 43.019353817431714, 20.22511490115914, 12.422462094233078, 76.6375756267635, 67.80460074232093, 18.142842543469328, 8.992236161754747, 90.95200713805329, 11.67715479814334, 26.028367406540756, 96.00306381891184, 8.199518274344289, 10.710265719129053, 61.91360659024813, 48.52789983777914, 7.631426681819334, 5.885784908028267, 11.913905494467633, 65.5797842984278, 100.6518258891404, 14.051819145802666, 44.21013465161146, 49.2104342309065, 6.799617061017928, 31.008123467639564, 112.45489559885549, 13.712052618949544, 80.414351328885, 11.46692819417726, 41.361353398993295, 11.302247143315588, 15.125602656093339, 14.528931939892159, 15.732293470742977, 39.86143826209687, 40.54663936049374, 10.642364212030746, 56.57599313745642, 17.295892248813292, 34.850571381328535, 6.880695178381367, 9.522568592190952, 7.560081270598267, 21.845440164787895, 12.58761714859928, 69.93707547387895, 12.184966443120489, 32.4966727547411, 68.54272636871426, 23.712178218686795, 36.503116687804436, 6.751294530983705, 5.97102645018426, 52.10805766026848, 21.384433271754197, 7.384462352621642, 8.232856356458859, 51.1923365031906, 56.88415070119689, 104.5519440799494, 15.069915024312529, 79.32323884238605, 43.453539878592565, 15.948744426115745, 17.095564522142, 31.596139192851332, 21.045351955266042, 11.018772437919447, 61.33289295163897, 59.60647190815288, 20.612168036049766, 16.767389119659274, 126.99631831329503, 41.61786810143924, 78.54664001787789, 64.43924078196771, 71.57978005483659, 69.60271098512986, 5.1949084443244455, 6.842038202266546, 9.79686776016768, 12.384707504504538, 80.08203044112409, 37.79014165190192, 34.535942950268776, 11.438702770931325, 25.31818717454042, 11.675288367383835, 88.6159947834548, 21.573228995985392, 13.757220683398032, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3441152.067664481, 3442332.8125, 3655755.428938314, 3757115.136116962, 3757192.2534993654, 3757726.3413757607, 3806109.2663677414, 3807957.6018616487, 3809558.2403941983, 3811652.227917717, 3811911.8280960415, 3813120.532419974, 3813314.2595493128, 3852451.3110713987, 3874861.9181055636, 3898420.8718592664, 3898922.403797656, 3933271.5660930304, 3941303.454372428, 3950701.6384843714, 3951303.988502386, 3957587.5, 3975343.75, 3980732.155776381, 3983600.3359170207, 3991066.0502597876, 4008375.500259214, 4047443.5311752325, 4081197.6710955277, 4081210.9375, 4125397.866312731, 4135490.1048991, 4137587.5, 4138778.077867435, 4138841.5764649785, 4173019.339263666, 4198682.8125, 4204090.539334947, 4213804.262620876, 4214369.592873636, 4214557.545603834, 4215690.583689476, 4219522.957906527, 4220747.413610718, 4221209.971686501, 4243211.328683868, 4284305.852282041, 4284593.75, 4284630.101760307, 4298202.93875394, 4309790.625, 4310276.492144263, 4310437.45568232, 4310813.558792864, 4313308.507591708, 4314363.798094571, 4314873.148622923, 4317820.504301704, 4318001.5625, 4341991.193034703, 4343531.7298865225, 4344505.702011816, 4372316.545454663, 4389080.995467125, 4405270.015495713, 4581890.547580954, 4583570.3125, 4601072.496588451, 4605711.112403563, 4608322.404944235, 4612823.4375, 4613996.858625759, 4823655.398089444, 6508304.124925612, 6517559.6086398065, 6530641.164217081, 6530653.125, 6532470.3125, 6532493.928237081, 6532741.470537504, 6533019.4908924345, 6533442.1875, 6539322.779993862, 6549692.350232062, 6551142.1875, 6557712.564872289, 6560512.5, 6569481.25, 6569894.173726226, 6570579.842618623, 6571096.875, 6571610.8545436375, 6583772.995648077, 6585793.740484225, 6587371.875, 6589210.521710912, 6592540.030542613, 6600469.931007366, 6600973.4375, 6601210.9375, 6601428.2031344455, 6642401.5625, 6644481.25, 6649007.848832692, 6649072.693834342, 6649623.4375, 6649737.5, 6658973.4375, 6662233.532200746, 6662383.295410589, 6662460.800997463, 6662587.49247636, 6662590.415025624, 6662643.766918736, 6662848.761454, 6662851.106837012, 6662851.74240516, 6662856.968408273, 6663016.8898550635, 6663610.9375, 6663616.578135365, 6663623.365737431, 6663642.295089924, 6663742.1875, 6663920.3125, 6664074.043571051, 6664127.164751453, 6664551.78215924, 6665450.0, 6665569.5361231705, 6666262.3375895545, 6666994.756059561, 6666996.461341323, 6668404.769818095, 6671969.735050758, 6674157.972528927, 6674293.75, 6674533.309681038, 6674605.824984608, 6674670.166095372, 6675182.490400006, 6675935.060376521, 6676064.792249167, 6676317.411795474, 6676326.535875628, 6676482.600976952, 6676685.711253822, 6677081.82715744, 6679376.5625, 6679856.25, 6680036.431263322, 6680107.344048072, 6681279.300705295, 6684809.358194165, 6685876.7277166415, 6686034.702473233, 6689521.875, 6691399.737470125, 6711088.183390919, 6744470.879790136, 6752785.737655066, 6818081.25, 6818082.8125, 6819658.161568219, 6835281.648803574, 6835738.260376229, 6835846.879693579, 6836041.543898104, 6836192.028247659, 6836197.685695271, 6836249.09478897, 6836265.625, 6836275.131286971, 6836506.232800747, 6836571.875, 6836637.040110224, 6836809.548098829, 6836827.285946131, 6836879.689331005, 6836957.112134518, 6836971.776310086, 6836990.993427095, 6837070.066691389, 6837169.491737653, 6837276.5625, 6837498.4375, 6837641.63100121, 6837736.625006857, 6837742.1875, 6837883.833568581, 6837908.697974383, 6837958.920520388, 6837970.77299645, 6838029.202000993, 6838067.439755488, 6838223.219483237, 6838291.209164652, 6838503.125, 6838546.875, 6838610.058431766, 6838746.875, 6838760.932051558, 6838853.125, 6838949.37287203, 6838999.310027708, 6839144.81708415, 6839291.036592392, 6839298.712735644, 6839453.873902228, 6839609.094397239, 6839610.791468964, 6839957.15760685, 6839970.650059373, 6840255.542578056, 6840318.75, 6845379.234102104, 6846003.054310514, 6846726.065075972, 6847485.079433107, 6848071.3759970395, 6848431.25, 6848626.92974267, 6848807.773007119, 6850145.654633175, 6853802.468003826, 6854931.25, 6856088.728853134, 6856118.75, 6857126.485978776, 6857413.783714519, 6861293.031778774, 6861662.491838324, 6862098.310978411, 6864070.264227565, 6864493.059576671, 6865938.520551243, 6872654.6875, 6873314.0625, 6873917.1875, 6874325.0, 6876532.8125, 6876579.031277187, 6876807.8569224095, 6876958.345058262, 6877420.226017529, 6877565.591419629, 6878248.607481059, 6878258.71443918, 6878281.25, 6878715.953844208, 6878857.558338441, 6878948.474745553, 6879748.945193894, 6885554.6875, 6888278.125, 6888291.638919359, 6889483.1593520865, 6893215.625, 6893428.094461307, 6893587.5, 6893626.0319377165, 6894073.713056834, 6894151.356398404, 6894196.348582177, 6894356.25, 6894360.9375, 6894531.366202503, 6894682.293887059, 6894722.44753112, 6894740.011293391, 6894885.452771462, 6895104.338552829, 6895260.9375, 6895489.010141799, 6896107.738671057, 6896523.4375, 6896720.004018838, 6896929.908623452, 6897595.89470142, 6897668.75, 6897717.599775597, 6897722.305122344, 6897814.0625, 6897956.25, 6898287.476651449, 6898836.643913032, 6898887.430159783, 6902445.178332836, 6909472.297454303, 6909955.943936504, 6910146.896393631, 6910538.245450028, 6910595.3125, 6911197.724754956, 6913553.125, 6913992.166708737, 6920036.021350754, 6925109.230573601, 6925761.574778166, 6926070.3125, 6926492.1875, 6926764.0625, 6927029.262296037, 6927069.504526739, 6927508.508909232, 6933634.817907948, 6941220.3125, 6950501.413336, 6951003.09899813, 6958589.0625, 6959096.801253341, 6959633.239081029, 6964183.441911243, 6966924.27518981, 6975624.19814126, 6976158.794877551, 6977374.772526032, 6977584.274257533, 6977932.8125, 6978307.316167997, 6978501.5625, 6978563.854433635, 6979184.285432568, 6979233.021199592, 6979364.874133867, 6979435.358558619, 6979635.9375, 6980098.12005359, 6980153.091884688, 6986630.937677265, 6986644.203010776, 6994738.952138883, 7000042.1875, 7000141.560343763, 7003250.0, 7004470.92827549, 7005672.644312354, 7007017.827756693, 7011879.6875, 7012386.54858307, 7012397.548097198, 7012672.702093434, 7012829.6875, 7013018.75, 7013128.143062746, 7013615.879214875, 7013670.213592552, 7013734.184639043, 7013743.75, 7013847.414751749, 7013909.375, 7014046.552708863, 7014165.3624431845, 7014260.877659608, 7014323.4375, 7014370.3125, 7014379.446460985, 7014481.25, 7014564.0625, 7014581.25, 7014584.293730946, 7014651.851343196, 7014656.015993692, 7014899.80757943, 7014906.046044418, 7014952.075178659, 7014975.42606665, 7015004.8645664435, 7015008.591426231, 7015042.1875, 7015112.026327129, 7015134.880838261, 7015149.419620431, 7015149.88537075, 7015154.6875, 7015177.217554488, 7015186.23353033, 7015250.0, 7015266.146522405, 7015286.068845055, 7015290.996115205, 7015291.715334036, 7015297.932993479, 7015314.0625, 7015386.7204057835, 7015435.923648708, 7015443.753077891, 7015444.304538254, 7015489.486543933, 7015507.8125, 7015589.980916489, 7015595.3125, 7015881.25, 7015943.000483984, 7015951.330629453, 7015967.65027619, 7016037.471934736, 7016087.5, 7016291.517975039, 7016329.536463608, 7016364.265247632, 7016404.6875, 7016404.896603645, 7016492.361444139, 7016543.165195481, 7016568.75, 7016581.25, 7016593.181190176, 7016599.700543222, 7016604.6875, 7016639.023170779, 7016646.5731581915, 7016654.0043215165, 7016673.89194559, 7016732.7121111415, 7016738.976652898, 7016746.875, 7016759.375, 7016771.610711782, 7016807.8125, 7016812.528984605, 7016813.913597211, 7016859.375, 7016871.712015686, 7016914.0625, 7016922.2841675505, 7016927.790382787, 7016952.994608237, 7016959.746708704, 7017001.52152415, 7017009.375, 7017032.8125, 7017039.312583283, 7017048.743276747, 7017075.591658709, 7017090.625, 7017134.955883664, 7017146.6007273, 7017209.9530854635, 7017219.997778648, 7017225.0, 7017241.207959499, 7017248.007966546, 7017252.791572532, 7017253.7921530055, 7017256.917369588, 7017310.367040708, 7017337.092810838, 7017344.9224223215, 7017404.314211137, 7017485.9375, 7017570.751435141, 7017648.250388341, 7017737.013030505, 7017827.001943575, 7017835.1040809285, 7018445.3125, 7018726.418097737, 7019049.754357039, 7019078.739787339, 7019218.615506746, 7019292.402208411, 7019557.7741031535, 7019682.230010848, 7019773.4375, 7019791.611905212, 7019802.860457029, 7019804.6875, 7019828.425914489, 7019863.751695275, 7019946.575255457, 7019982.160290027, 7019995.430239586, 7020051.4174934635, 7020161.220620902, 7020172.318474621, 7020250.271310352, 7020301.351607341, 7020383.270207468, 7020479.996166964, 7020492.1875, 7020613.226536125, 7020624.549894919, 7020640.3119042395, 7020650.0, 7020682.8125, 7020709.031570824, 7020812.5, 7020834.375, 7020856.25, 7020877.00316733, 7021099.924088442, 7021228.015022873, 7021344.600820829, 7021709.8633469865, 7021807.647517825, 7021974.384551121, 7022213.262694767, 7022324.919958065, 7022478.778737415, 7022752.162693588, 7027575.911111603, 7028039.9932807265, 7028796.498656377, 7033645.112441369, 7037224.77543601, 7037463.306973012, 7038634.1230794005, 7041466.572670665, 7046382.094543188, 7047761.605721996, 7048921.7896949, 7049537.354063419, 7049620.845381613, 7050123.4375, 7050168.75, 7050268.91784525, 7050271.26306183, 7050418.539134383, 7050460.506025113, 7050487.5, 7050490.131182634, 7050535.266682278, 7050643.75, 7050759.978216487, 7050768.877699009, 7050821.7027677335, 7050849.723479063, 7050850.409918368, 7050858.7379780775, 7050891.356556972, 7050929.220403746, 7050930.502144096, 7051005.468607087, 7051005.999043207, 7051017.1875, 7051021.8099068105, 7051070.991664183, 7051098.2152794795, 7051215.463589247, 7051278.125, 7051278.997929199, 7051376.214388506, 7051415.402714316, 7051466.729680129, 7051490.625, 7051501.5625, 7051598.397732995, 7051632.122428906, 7051657.353824265, 7051701.277631315, 7051713.844077279, 7051784.69452841, 7051835.795502245, 7051842.724241615, 7051857.50308825, 7051881.0276239095, 7051885.9375, 7052000.0, 7052007.301683868, 7052031.25, 7052177.645452737, 7052217.742050524, 7052226.5625, 7052240.625, 7052254.664384347, 7052255.993168159, 7052373.4375, 7052396.777785946, 7052415.7798468955, 7052417.42444546, 7052457.498357907, 7052572.545259318, 7052655.664449241, 7052657.597442008, 7052660.395880118, 7052671.875, 7052708.679784015, 7052739.47256158, 7052793.0847033, 7052801.5625, 7052808.966554366, 7052842.70697839, 7052846.87237945, 7052928.439125003, 7052996.070011981, 7053141.763132364, 7053155.988607844, 7053161.851275569, 7053173.154791241, 7053184.375, 7053188.388505298, 7053226.317036018, 7053244.610200345, 7053325.0, 7053378.381621636, 7053458.87557218, 7053460.265155112, 7053506.25, 7053516.22206884, 7053537.380495971, 7053562.462089833, 7053590.980931831, 7053606.845832767, 7053626.641895922, 7053631.25, 7053643.967522167, 7053671.875, 7053709.9283538675, 7053807.56659658, 7053824.3448886825, 7053843.75, 7053845.807685168, 7053865.849236755, 7053983.035624682, 7054036.194614497, 7054055.461605865, 7054060.006957561, 7054060.830165872, 7054090.3234891575, 7054100.051466287, 7054137.5, 7054154.39148981, 7054167.368026474, 7054204.618374759, 7054294.727191947, 7054300.936922192, 7054310.677304282, 7054314.02420892, 7054325.0, 7054335.308614393, 7054357.983066933, 7054385.9375, 7054429.6875, 7054435.9375, 7054455.5134303905, 7054483.16484041, 7054532.3215654595, 7054584.353591416, 7054689.0625, 7054756.052517068, 7054760.9375, 7054834.375, 7054854.5315183, 7054872.482362207, 7054914.024922156, 7054967.1847720975, 7054968.044273422, 7055069.131921511, 7055093.42994828, 7055098.323559804, 7055109.9070481425, 7055110.296927571, 7055120.3125, 7055132.400666291, 7055189.0625, 7055229.239627209, 7055245.533068842, 7055264.052279976, 7055423.576047543, 7055472.689263704, 7055512.321794105, 7055550.0, 7055632.472953971, 7055668.75, 7055695.793113343, 7055715.3543547895, 7055807.8125, 7055812.192828425, 7055832.8125, 7055834.375, 7055868.75, 7055880.596371998, 7055892.1875, 7055906.117320901, 7056048.4375, 7056074.477613774, 7056095.3125, 7056102.426397728, 7056134.375, 7056251.0052264165, 7056313.857845813, 7056418.126993645, 7056600.0, 7056612.5, 7056618.634727955, 7056718.75, 7056801.5625, 7056841.901292617, 7056876.353861304, 7056923.38302031, 7056969.5315158805, 7057096.875, 7057186.990013256, 7057188.840101447, 7057237.139026247, 7057286.73035241, 7057387.5, 7057408.886258226, 7057509.430253532, 7057530.112642362, 7057695.3125, 7057782.456744726, 7057806.17692829, 7057817.738585529, 7057859.157934758, 7057884.375, 7057901.438139731, 7057956.569506699, 7057965.283033563, 7058032.307183432, 7058145.925468926, 7058170.406123803, 7058244.933670107, 7058346.818441431, 7058359.554779928, 7058478.0279715955, 7058506.25, 7058510.907397893, 7058554.659997668, 7058643.108051228, 7058654.637176297, 7058684.927653293, 7058868.652967302, 7058888.699392426, 7058911.471026517, 7058956.960871219, 7058962.37774122, 7058986.068433677, 7058989.151303418, 7058992.53780694, 7059009.375, 7059023.4375, 7059055.623984269, 7059099.495543378, 7059103.620264083, 7059136.781927915, 7059178.965524775, 7059198.4375, 7059287.043247209, 7059390.625, 7059576.038055662, 7059601.149739867, 7059636.74667573, 7059671.168387115, 7059671.875, 7059676.195514925, 7059693.553677188, 7059698.14180652, 7059703.086318548, 7059710.812910685, 7059724.438472857, 7059781.25, 7059789.758199322, 7059805.137082465, 7060002.875599153, 7060028.023557652, 7060098.737990415, 7060135.040893567, 7060246.775685539, 7060268.293829687, 7060421.875, 7060437.473964882, 7060437.5, 7060556.179441944, 7060570.788205551, 7060618.75, 7060625.507915387, 7060699.632652806, 7060705.518383304, 7060735.337729976, 7060762.5, 7060800.369730995, 7060902.797037973, 7060915.082584103, 7061029.164133954, 7061040.625, 7061048.094137871, 7061053.137368015, 7061073.329289095, 7061126.622260556, 7061133.8829820715, 7061274.746369289, 7061279.633971485, 7061284.399833915, 7061303.983708989, 7061391.281612963, 7061445.912610845, 7061469.480800252, 7061559.375, 7061687.0821004035, 7061728.340687601, 7061735.682272108, 7061872.933349531, 7061904.6875, 7061912.5, 7061928.906869397, 7061943.371280054, 7062181.3631766355, 7062200.538388383, 7062214.0625, 7062216.202545836, 7062307.8125, 7062309.375, 7062310.491106268, 7062483.038564412, 7062561.099856388, 7062850.704600686, 7064026.5625, 7065290.404254605, 7065321.875, 7065365.196767051, 7065399.790127738, 7065773.4375, 7065834.86068876, 7066390.625, 7066392.593812608, 7066437.5, 7066577.432148951, 7066672.477865886, 7067045.3125, 7067285.9375, 7067642.5952912, 7067726.639486837, 7068186.501771651, 7068257.659032791, 7068375.3744866755, 7068694.364683004, 7068773.4375, 7068944.554972331, 7069225.663931641, 7069520.476942158, 7069525.0, 7069818.5768749025, 7070262.5, 7070275.0, 7070538.047865327, 7070734.259166906, 7070848.4375, 7070940.652215636, 7071004.546472188, 7071045.3125, 7071195.049093262, 7071261.714088998, 7071599.3401489565, 7071862.5, 7072288.626752565, 7072391.719690436, 7072475.781733121, 7072732.149121259, 7072898.080652764, 7073205.475131463, 7073404.012360139, 7073632.64321252, 7073692.604145914, 7073734.052798965, 7074296.875, 7074875.770921785, 7074953.139696818, 7075129.6875, 7075135.72770427, 7075173.05017109, 7075248.4375, 7075370.3125, 7075468.30246257, 7075795.551195053, 7075824.858795759, 7076204.579378895, 7076353.7766653625, 7076535.9375, 7077150.0, 7077749.396268087, 7077892.1875, 7080070.92485759, 7080329.6875, 7080510.9375, 7080610.972157591, 7080915.192414748, 7081223.4375, 7081649.415191701, 7082198.504747259, 7084516.017465282, 7084543.75, 7084564.286354211, 7084802.875151129, 7085332.325279814, 7085346.5721674515, 7086480.147587278, 7086585.9375, 7086948.316602807, 7087517.720461178, 7088725.7618361, 7089056.128426194, 7089287.102773338, 7090982.091387772, 7091685.938750565, 7091809.375, 7091826.370606947, 7092001.169531632, 7092125.192322875, 7092336.713218959, 7092382.490649219, 7092683.325865063, 7093958.969530384, 7094439.350982556, 7095090.625, 7102828.125, 7103278.125, 7103625.421329895, 7103850.294522824, 7104097.800246617, 7105285.07070854, 7105589.0625, 7106439.990852877, 7107789.521121658, 7108157.38216273, 7109085.9375, 7109090.9502089415, 7109827.829273341, 7109984.375, 7111556.081660008, 7112382.527943374, 7112615.664285912, 7112781.25, 7114211.014771666, 7114272.8004715005, 7114442.638298743, 7114458.734771199, 7114828.125, 7114954.432703856, 7115291.692511193, 7115315.625, 7115414.240724414, 7115432.210677461, 7116067.1875, 7116521.135806358, 7116560.9375, 7117418.898899743, 7119823.4375, 7119903.233867542, 7119927.845458586, 7120382.699873904, 7122369.985701107, 7123914.917928465, 7124790.625, 7124894.978094577, 7125068.75, 7125073.942981037, 7125103.125, 7125120.872456752, 7125323.655248881, 7125474.879081502, 7125593.481137427, 7125666.3937496, 7125673.841508486, 7125702.147785809, 7125706.25, 7125725.0, 7125795.009474999, 7125803.099939974, 7125935.876021063, 7126006.606076003, 7126364.0625, 7126386.298572378, 7126508.726703238, 7126637.397012286, 7126931.25, 7129063.424323108, 7129923.59833444, 7129992.220785696, 7130010.3173751095, 7130866.974891646, 7130995.082515714, 7131287.969732201, 7131750.904035254, 7132229.110405883, 7133513.991671064, 7133602.026240381, 7133698.4375, 7133751.759889995, 7133826.33631349, 7133908.344842745, 7134011.6628189115, 7134107.687695335, 7134190.588131332, 7134398.4375, 7135164.0625, 7135715.287522839, 7135780.068533181, 7136461.441058712, 7136519.428590328, 7137061.564574652, 7137412.798048732, 7137463.210693963, 7137626.7527532745, 7137748.251042607, 7138378.449186659, 7138387.5, 7138435.445495188, 7138573.647595593, ...], [33.76881742807218, 49.61192534311217, 7.331018923098529, 8.949620547411223, 5.099757428494539, 78.06735921861156, 8.229954225774547, 24.963518387466525, 23.94628014244268, 18.274984498254916, 63.74649351895445, 28.014486293591357, 8.393603558316908, 14.062603331557728, 124.75746960508332, 12.131212488137647, 7.267758762021161, 23.637630329134076, 204.55534246407856, 16.695653595184346, 14.143435995593435, 62.41090457962243, 29.57911378042452, 20.060265268089, 49.177570924706714, 17.661586073391906, 42.34375171850252, 29.39334010527776, 12.651198843124908, 39.084141355769475, 13.1352194541863, 21.294899485497027, 65.12239045589251, 27.625415019565335, 30.143925070200666, 58.22123781272227, 76.50449332739764, 26.938051190283744, 8.0739861176278, 37.307753251956484, 14.013266709132694, 121.86424327471514, 49.047663062652376, 79.21806223676111, 26.861046255548274, 16.676438433611505, 9.016323149545505, 68.80710328405807, 11.571528227794825, 17.279276860435317, 53.69428139852407, 9.272613600954353, 14.775239522034937, 50.002852848306844, 80.8639873060541, 31.92614767065153, 23.893869032818216, 11.44135079306997, 108.59823751993173, 45.309995469342454, 5.641155967730712, 85.61824582343966, 7.386431964093613, 5.159475767368841, 10.693173529499155, 14.654412673922875, 98.7608926584326, 28.95436401015723, 11.412559073956068, 26.164359977074774, 58.075217958827594, 110.80743026171999, 27.38026499988679, 13.157875473741315, 24.320890996170114, 62.66217534259171, 65.7779990932797, 51.80629769663437, 5.6239813342894625, 12.768678362857958, 96.72126633699023, 49.77431063017258, 55.102976185039076, 8.37454923487264, 45.36653659951442, 21.35496570200516, 75.21397690537697, 63.46269634954474, 16.846694284631443, 23.462989853098506, 59.89593854024706, 30.7392795638672, 8.065967944390533, 28.338007954256874, 31.21499970255388, 21.87508746400926, 20.59989317328548, 6.689661739236002, 98.87301028482936, 119.22092096195944, 5.401469462258778, 48.556103443305176, 68.68405998157615, 24.53984257121769, 7.928921056891293, 133.97150693479352, 50.86879780168445, 77.22182399238186, 12.475977502387407, 9.776082533870595, 5.927605566788009, 28.37696374869405, 73.34853155760224, 45.44761924580904, 20.10113952188218, 45.93512989570594, 33.578996914803184, 7.885526060165746, 66.7346185698873, 66.3214667324323, 6.395630208338146, 68.31359397960017, 74.46030862037978, 46.16748665484596, 43.88936160451379, 17.894886946893994, 12.220544733394227, 8.406256073629123, 75.15866515026829, 21.092976942363464, 17.398356166571844, 15.689261289994269, 10.537338319939508, 5.401630326891062, 20.753794972039184, 11.387407499759377, 43.7088019456172, 8.56824203276622, 32.69202312863388, 6.4643833398612465, 14.870313700278746, 12.399632342375348, 12.498601885654029, 30.008277512741238, 28.008579363811105, 71.070359493029, 14.144012536820325, 25.55998108165215, 113.75696247808257, 54.437190243836, 17.229539557571968, 5.060475646737438, 81.28290882401001, 34.37466804614378, 7.664107121528713, 16.356184743990788, 76.73376750994709, 14.027143015360176, 9.984841270421374, 33.26349015533428, 25.12033560700991, 36.85118026591592, 47.104562642590906, 16.820635075874705, 71.74335916025103, 15.985475520850787, 11.135051101927587, 63.11476987040953, 21.585822691224088, 113.5100814917729, 17.007022258307416, 191.60868098237458, 11.339310705093547, 31.351704941069446, 59.23563789595968, 89.07090980765508, 11.409497880991829, 87.31270727166056, 11.130569989109619, 19.70290489515528, 26.714791400944716, 9.66365042587263, 54.18778791042834, 28.071320157024687, 67.97613272926843, 91.31351031291338, 20.947420481590854, 12.404329003424232, 87.18552760239947, 39.371186194012154, 6.954171614243972, 45.231482186103285, 8.54609399087479, 36.97783829618316, 8.424636454834397, 24.85767245745527, 87.16117265704088, 51.63318408177517, 36.450337936464926, 24.52375392226315, 35.842753594293484, 44.97273604206515, 91.32877548209126, 20.01192808426184, 73.73058116263917, 8.04088772423508, 38.06596809456606, 7.195732413826433, 86.78152491038122, 9.104896840036508, 25.939177855037478, 8.832916387161717, 38.904820047554594, 40.358015033894056, 52.35765161527579, 30.166048774591374, 14.678749908376528, 58.7351617736778, 5.868008109297282, 21.503052003272966, 64.49823629862507, 11.754728519354222, 18.817495890110695, 46.15368890743362, 46.75018348385388, 52.96831228386605, 13.805971012543303, 32.50875143166774, 8.2465219499906, 100.9809942549269, 12.765646317154822, 14.910491920390909, 19.579578008056234, 6.083093653020624, 18.57671945498309, 10.374549427457833, 58.98354568716066, 69.26038143077693, 113.55519027348471, 39.22484616505747, 44.107916906674184, 20.06446259526451, 5.81727447213487, 36.79382863402823, 14.621815533012265, 11.075621079785822, 34.54383427330275, 73.8386114312243, 41.3854300241853, 85.34120241649137, 10.752390732025859, 49.08675312902584, 61.66216253287516, 38.93852275995727, 132.98686960008692, 32.24138890364665, 136.60684840384553, 63.39878279598094, 14.826373924883548, 67.11027583208339, 21.193548201724866, 16.10725415017712, 29.983156000120527, 21.23355504848244, 89.75941391180973, 30.641391813299133, 54.081258391489925, 14.501629830535283, 6.149732222039345, 13.025057113167277, 5.510008693673108, 62.31901181525015, 184.4912857790722, 14.745630489360714, 11.187330121595345, 32.071152931684175, 13.883072151634067, 50.11729626595411, 17.74779136265961, 54.71522410219531, 16.786253501578205, 5.048867568918722, 106.7039701801896, 75.8380683547079, 5.812254690458155, 8.69915727642895, 14.681829423144938, 6.074257262183815, 53.56581157201735, 38.140756141025165, 106.69535998766254, 10.0527496833028, 28.613615161509568, 19.60447356359241, 120.88916076872094, 13.29222001672537, 9.40332458922804, 34.93354502541693, 32.60994706508339, 42.97590606500535, 42.58814764793972, 80.19782781895252, 12.271363535547733, 18.88748217821085, 12.120493498009143, 5.357331094520434, 29.273288516932105, 5.697330124231626, 5.3974809349078345, 70.89849783094934, 8.247960110633711, 53.86823685226416, 65.93820249220468, 12.74981024068554, 12.568951025109612, 26.14935710268902, 24.72358358109148, 26.68001018383319, 36.59892642732245, 13.3361030540449, 59.811841562480055, 49.91160242769663, 10.990534875530045, 7.177414802177727, 12.68776535281153, 81.87262408388393, 49.98733492725238, 30.489590864785015, 27.8859493491823, 17.833327098572056, 47.323813840919115, 14.536912577989698, 92.29065034589969, 77.91117838520167, 57.03213152771569, 12.249137585315234, 55.011637279376345, 17.20496410310406, 144.35554357046985, 23.923693362149763, 18.32573219473997, 19.42751830423094, 55.35239678405623, 77.53284062261142, 7.6097837606606165, 117.79581732287635, 43.024752273214794, 95.9702340710648, 30.659201262741803, 85.61068624335738, 57.03390947496393, 8.123193646755542, 38.1054927735474, 27.394151191002976, 103.08027736279921, 62.18723056357603, 108.37048587450582, 30.342669292776698, 95.88434833833453, 50.86740120257981, 33.08624270785854, 16.169973131173688, 7.520738931275783, 137.02451090166718, 25.060331813428544, 53.590208356692855, 7.76496768927434, 69.85041071923479, 6.370895396823809, 108.74059678189629, 35.66884626779255, 5.5581446525127545, 52.8651159564959, 40.20492130656492, 85.60434722842692, 23.694218912202135, 20.14898068896592, 83.06879561487685, 9.815080370274359, 27.080814805133134, 16.57373363360511, 10.462022193029593, 89.18120472031674, 41.616992722716425, 19.094009660224625, 8.279266087882986, 14.953253889884742, 14.261160541960596, 93.66606460348788, 42.972950070685926, 123.57822785360142, 51.49354214295007, 83.35041388762228, 10.128528844827228, 8.167651841490997, 76.25256113834261, 84.85676148457591, 55.39491341055653, 10.220926666607925, 14.39547017320006, 15.77502543012251, 90.7040797622049, 15.8032789746426, 5.207876253421721, 20.686883201273574, 55.91147632659004, 55.497099564482355, 43.9330245354014, 104.28725489009054, 91.27162936429305, 5.068181815208531, 10.686555718409753, 83.09241760849635, 26.511767660741064, 93.95258295181539, 26.934899971095124, 31.178349730008133, 57.048508002830225, 56.68860367808571, 47.55590432752595, 15.053148124190784, 57.01558275283883, 41.78925028419205, 136.37255010097047, 71.77494660655782, 16.769948688486906, 24.435652261166524, 26.189388279817695, 39.42080044330128, 127.53443130995645, 40.23440557503366, 53.65803366476378, 5.408121319028456, 60.9993567453455, 9.887367040212924, 46.31008636847743, 17.530197618132604, 29.985233408907934, 23.420454748932187, 5.912458424310203, 66.07040697262472, 46.61591841989464, 7.4549352632547015, 58.768674767919265, 59.44767332352436, 8.67411683757826, 105.12542157367943, 22.471749213488675, 7.022553298415086, 22.85764329994815, 82.74246702232196, 6.134965832983293, 7.5369360708382205, 5.509904095561232, 7.770305091594263, 5.146395859970006, 44.12448442015928, 25.374668623388224, 7.516745054370084, 17.949408194194252, 8.216712936810811, 15.828309156440458, 106.90084287031009, 165.72354534109036, 36.052659908355615, 39.75510130886031, 43.879209164176444, 54.54400269690835, 61.84730220703023, 182.6810668245692, 8.13418256287427, 12.92765297139044, 6.28218940891676, 91.79497950459199, 11.601089523578947, 11.899680177475231, 5.252802695858964, 6.240916288106147, 9.750925521829853, 6.3070001079556155, 104.09589524927807, 13.964579549228244, 32.2352394278934, 13.86884036446218, 30.68530854564205, 41.04286022271104, 23.21140513833286, 110.52617224047744, 51.88183133052662, 56.08055272729851, 16.15834655818437, 99.1681804327428, 38.88217362278399, 5.879735231898141, 17.199098117643032, 9.195691606832796, 20.41387997313264, 31.78271094784886, 11.004859226083997, 18.198500488082107, 107.12422835939611, 8.835319162343175, 36.20721235008146, 14.17526944180555, 88.03354209429168, 14.677848774431729, 19.273808172954848, 24.384951799496054, 26.531760756006523, 19.56341037753889, 12.36201087755936, 6.746594733071394, 25.94067182443792, 22.54445128055839, 118.24368378186844, 38.79277127964075, 13.49733523001024, 20.44469276001697, 9.159249470655128, 22.205040599430102, 66.5458008133233, 10.434612183272465, 8.822031123370364, 84.51573381986262, 7.289591941199673, 151.0881536098046, 9.189896755197525, 24.16352694432352, 53.14966275815506, 49.58742699546164, 12.502685578094978, 5.120643408769405, 29.88684199704385, 10.092511306245369, 32.18386995476356, 97.45011516053628, 9.276963082655616, 74.79249508601806, 10.797262537487635, 8.203026017819674, 82.73172010850703, 80.5505953720716, 17.571333885840325, 34.01926088388744, 70.1007397331059, 86.95295044110276, 41.913744505121095, 27.76159349482266, 161.47112608109612, 13.440666508099484, 7.048529044447177, 24.851880369031214, 16.317410496127916, 39.64793938396858, 82.78069555566314, 29.664769663414273, 22.067481554052563, 45.453001514070266, 32.35536284309989, 21.385877866071972, 45.33841799156336, 10.452650054772462, 47.103641169294, 47.087587323578234, 72.69633983019615, 24.682937521937223, 10.74866764936981, 68.37441380718495, 98.11903626280642, 5.540643243882846, 125.134777985204, 58.67438876030526, 39.20246748313947, 10.32115119784473, 134.29926517745997, 20.381005579782897, 96.07450389839147, 19.744223905507866, 8.516020076231866, 17.455204580243205, 79.72475987530969, 40.54402272597201, 23.61820778915864, 20.82355496842515, 33.41858095659772, 5.4282447217624625, 82.93924290521389, 61.32601302415374, 20.12757663171223, 61.474132576595515, 40.96364195658487, 19.91687218623603, 5.037431528876951, 5.269875698850934, 49.64282085478547, 113.00569173423916, 13.327613375062969, 26.182483104061966, 56.377250767350546, 98.65249016505358, 36.373215512458565, 14.798955923687188, 11.733693463651187, 137.5609045213299, 15.25301848211503, 35.701997186834944, 30.528253673640503, 29.72606301269353, 53.77076904208779, 65.83672281717291, 8.832766901414479, 90.2043334937098, 17.237554661039287, 15.87111326848375, 6.8088845019285795, 11.55487136778347, 63.59057219602179, 12.283623844244717, 26.5690396638575, 25.650848869049643, 9.37530329134223, 59.227642365235404, 6.057848352760548, 18.217091332212707, 116.30512745787681, 20.682322442059622, 10.272955891998283, 23.573020887385944, 5.340611296872985, 99.48248143074098, 8.850807927718604, 15.634087471649496, 52.81915830382191, 92.12526341658182, 52.37271131558474, 8.777638849854743, 16.479186282522647, 30.48400368707788, 52.22935042425211, 53.07075753989339, 25.154971567412414, 52.16564586388287, 45.008975836637156, 7.547779481647624, 16.430261738020974, 22.061634337564158, 28.47126408451705, 6.947523021108615, 11.782206163126146, 10.661767330109766, 26.458927022448986, 17.44889045234693, 20.1967694098069, 64.3343004658974, 22.420128289483056, 44.41074275297063, 22.029349934102825, 5.170530518683905, 11.111769736543925, 8.361228166893735, 10.920200151303767, 69.1448534370206, 46.70799803686005, 23.258406084715315, 93.93036528318211, 17.15588101713659, 131.29747025176715, 204.3618539792472, 23.65956494824182, 55.65178258233664, 68.75596746846986, 58.91194273407315, 20.08624600893441, 34.731036801110704, 99.61213458505839, 46.83465430234372, 21.272655047183616, 68.94817278472918, 76.91476895255155, 39.95986435014594, 13.171877234981116, 25.0501686014342, 28.523811797802267, 61.644582062121735, 37.15232165824913, 26.436859202148067, 110.27247591875962, 34.33015005618897, 118.76378611647743, 9.161005539498221, 35.26990657348699, 167.8560418147592, 29.041122624779277, 20.707199546820817, 85.95643613042424, 5.446483545724355, 12.643607140931225, 65.19556698369175, 68.25376690665406, 33.071375355377626, 9.718762513746812, 33.6880024234481, 13.739257002706129, 27.15819134373243, 21.63464973667365, 6.453594316798204, 65.06945801301973, 43.33471029626286, 11.666756040133562, 20.49547605968744, 14.91277741968667, 28.12295763121984, 15.310785205206342, 145.5003018015264, 6.752267375912127, 68.47281086671067, 26.74302566752354, 29.304035951937305, 27.942717912050142, 14.83770941913968, 82.87106567730947, 7.108285622713329, 58.9509522940696, 31.935024845777093, 39.195558680312175, 50.28232626659337, 76.66114846037985, 26.321811342473907, 6.5078139947905695, 18.07881463184171, 11.72327706205846, 52.77399344649752, 45.957647226658075, 5.769068356228373, 58.259404356408986, 7.7927580425358185, 6.3801255275492785, 30.75052081433754, 61.27486941635258, 67.05064947092967, 35.515920999386736, 69.86803224070916, 22.40986686645912, 36.33488910788555, 19.653072956644134, 141.41361092488128, 35.23244250298499, 53.74797235219782, 23.805907789742157, 16.467892453036633, 44.93568603464509, 23.2707089904978, 86.58106258713832, 49.14683326475526, 16.985355986475575, 36.08265910125236, 10.97276343982825, 16.225506808781745, 38.63363797395994, 63.64585176111406, 5.511343301960134, 35.49690791487774, 9.309485608318669, 46.78950039577886, 82.64814067405817, 96.14857126747255, 70.53848563085717, 21.470198052236746, 62.83428443988548, 44.63402473212628, 36.26126169274302, 48.54458625451388, 36.815731295296175, 13.823278785804721, 105.11058390680657, 8.027934073335414, 46.798973228221186, 23.21221468367029, 21.889374435622585, 10.962676346969289, 141.42234180774886, 35.12681069666105, 32.497880669061665, 14.741334830426288, 22.437940772135512, 14.143477807842064, 55.40581881056244, 17.85785599739942, 12.500975708285454, 45.13996585018911, 5.44411121660356, 15.83269331209085, 124.48747928808753, 109.84118393607314, 78.35124378896994, 143.85111426091203, 144.67921839647286, 49.958768921302216, 20.083385545855386, 49.21895932124312, 58.4977863296759, 83.78461560748144, 49.433605363419446, 92.69165635821953, 60.24501960216362, 6.809493696579459, 66.69913102163665, 12.720236892332661, 40.40083328324779, 14.16197704405597, 29.233841729498934, 22.240189335215415, 45.84883276966209, 104.69433306221782, 17.184210603204495, 56.781093855765604, 7.757116085261234, 60.70515233415277, 10.193679588887248, 89.67580320082112, 46.42332431335336, 60.06751677468477, 150.80510643172158, 46.66577552471196, 7.820924456025639, 66.69156706136567, 96.29221610725348, 9.911514950107847, 33.62142153972796, 26.969468116616753, 24.730730536570192, 15.607656011836129, 38.77099277757117, 37.320038048119564, 40.20989526254964, 99.30927138867808, 17.541708368969683, 13.442822309239702, 48.12461708166047, 11.170514734524753, 26.018598109811283, 31.768464177353565, 5.237832403370328, 23.71736484331869, 20.034104472279825, 56.46059412306943, 8.988265099680813, 58.10780966052903, 93.31133713040535, 42.548400139920375, 30.183293558086085, 54.53968251363564, 10.214344792261423, 101.20950815583988, 7.235458538737651, 23.47123694374456, 44.54200748833846, 17.684517719156645, 7.608561934536178, 29.511381179910334, 14.197933150075128, 28.921164749166287, 65.85529927133355, 44.74491919565892, 10.493502253182339, 91.72302294591142, 5.697829941656163, 10.962809974822605, 7.857261127280415, 67.34349596716642, 36.70868781927474, 20.517180203230936, 33.07160510236138, 26.985294987108787, 32.168409085064454, 58.10938734365959, 9.360881064900292, 22.19303384363515, 29.895131932231767, 10.322052563426308, 11.234471021848156, 19.337363419721758, 60.423176627062475, 15.869388627904268, 10.758412905796046, 13.361183745493273, 10.685202068947616, 17.0425732007083, 44.48930169493762, 26.34413798966944, 12.077232146386377, 31.21982507824204, 5.699064166816628, 16.29034643082884, 6.627603186473118, 22.246009179736713, 78.19777929036731, 5.335388928520223, 115.65880642225744, 5.624773249675017, 10.086467498943609, 30.774745149808364, 12.037641899336222, 23.306624866216296, 22.179240508817887, 100.31509034248256, 63.6875906076715, 69.89921015213073, 73.86550582320959, 43.019353817431714, 20.22511490115914, 12.422462094233078, 76.6375756267635, 67.80460074232093, 18.142842543469328, 8.992236161754747, 90.95200713805329, 11.67715479814334, 26.028367406540756, 96.00306381891184, 8.199518274344289, 10.710265719129053, 61.91360659024813, 48.52789983777914, 7.631426681819334, 5.885784908028267, 11.913905494467633, 65.5797842984278, 100.6518258891404, 14.051819145802666, 44.21013465161146, 49.2104342309065, 6.799617061017928, 31.008123467639564, 112.45489559885549, 13.712052618949544, 80.414351328885, 11.46692819417726, 41.361353398993295, 11.302247143315588, 15.125602656093339, 14.528931939892159, 15.732293470742977, 39.86143826209687, 40.54663936049374, 10.642364212030746, 56.57599313745642, 17.295892248813292, 34.850571381328535, 6.880695178381367, 9.522568592190952, 7.560081270598267, 21.845440164787895, 12.58761714859928, 69.93707547387895, 12.184966443120489, 32.4966727547411, 68.54272636871426, 23.712178218686795, 36.503116687804436, 6.751294530983705, 5.97102645018426, 52.10805766026848, 21.384433271754197, 7.384462352621642, 8.232856356458859, 51.1923365031906, 56.88415070119689, 104.5519440799494, 15.069915024312529, 79.32323884238605, 43.453539878592565, 15.948744426115745, 17.095564522142, 31.596139192851332, 21.045351955266042, 11.018772437919447, 61.33289295163897, 59.60647190815288, 20.612168036049766, 16.767389119659274, 126.99631831329503, 41.61786810143924, 78.54664001787789, 64.43924078196771, 71.57978005483659, 69.60271098512986, 5.1949084443244455, 6.842038202266546, 9.79686776016768, 12.384707504504538, 80.08203044112409, 37.79014165190192, 34.535942950268776, 11.438702770931325, 25.31818717454042, 11.675288367383835, 88.6159947834548, 21.573228995985392, 13.757220683398032, ...])
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);
([3441152.067664481, 3442332.8125, 3655755.428938314, 3757115.136116962, 3757192.2534993654, 3757726.3413757607, 3806109.2663677414, 3807957.6018616487, 3809558.2403941983, 3811652.227917717, 3811911.8280960415, 3813120.532419974, 3813314.2595493128, 3852451.3110713987, 3874861.9181055636, 3898420.8718592664, 3898922.403797656, 3933271.5660930304, 3941303.454372428, 3950701.6384843714, 3951303.988502386, 3957587.5, 3975343.75, 3980732.155776381, 3983600.3359170207, 3991066.0502597876, 4008375.500259214, 4047443.5311752325, 4081197.6710955277, 4081210.9375, 4125397.866312731, 4135490.1048991, 4137587.5, 4138778.077867435, 4138841.5764649785, 4173019.339263666, 4198682.8125, 4204090.539334947, 4213804.262620876, 4214369.592873636, 4214557.545603834, 4215690.583689476, 4219522.957906527, 4220747.413610718, 4221209.971686501, 4243211.328683868, 4284305.852282041, 4284593.75, 4284630.101760307, 4298202.93875394, 4309790.625, 4310276.492144263, 4310437.45568232, 4310813.558792864, 4313308.507591708, 4314363.798094571, 4314873.148622923, 4317820.504301704, 4318001.5625, 4341991.193034703, 4343531.7298865225, 4344505.702011816, 4372316.545454663, 4389080.995467125, 4405270.015495713, 4581890.547580954, 4583570.3125, 4601072.496588451, 4605711.112403563, 4608322.404944235, 4612823.4375, 4613996.858625759, 4823655.398089444, 6508304.124925612, 6517559.6086398065, 6530641.164217081, 6530653.125, 6532470.3125, 6532493.928237081, 6532741.470537504, 6533019.4908924345, 6533442.1875, 6539322.779993862, 6549692.350232062, 6551142.1875, 6557712.564872289, 6560512.5, 6569481.25, 6569894.173726226, 6570579.842618623, 6571096.875, 6571610.8545436375, 6583772.995648077, 6585793.740484225, 6587371.875, 6589210.521710912, 6592540.030542613, 6600469.931007366, 6600973.4375, 6601210.9375, 6601428.2031344455, 6642401.5625, 6644481.25, 6649007.848832692, 6649072.693834342, 6649623.4375, 6649737.5, 6658973.4375, 6662233.532200746, 6662383.295410589, 6662460.800997463, 6662587.49247636, 6662590.415025624, 6662643.766918736, 6662848.761454, 6662851.106837012, 6662851.74240516, 6662856.968408273, 6663016.8898550635, 6663610.9375, 6663616.578135365, 6663623.365737431, 6663642.295089924, 6663742.1875, 6663920.3125, 6664074.043571051, 6664127.164751453, 6664551.78215924, 6665450.0, 6665569.5361231705, 6666262.3375895545, 6666994.756059561, 6666996.461341323, 6668404.769818095, 6671969.735050758, 6674157.972528927, 6674293.75, 6674533.309681038, 6674605.824984608, 6674670.166095372, 6675182.490400006, 6675935.060376521, 6676064.792249167, 6676317.411795474, 6676326.535875628, 6676482.600976952, 6676685.711253822, 6677081.82715744, 6679376.5625, 6679856.25, 6680036.431263322, 6680107.344048072, 6681279.300705295, 6684809.358194165, 6685876.7277166415, 6686034.702473233, 6689521.875, 6691399.737470125, 6711088.183390919, 6744470.879790136, 6752785.737655066, 6818081.25, 6818082.8125, 6819658.161568219, 6835281.648803574, 6835738.260376229, 6835846.879693579, 6836041.543898104, 6836192.028247659, 6836197.685695271, 6836249.09478897, 6836265.625, 6836275.131286971, 6836506.232800747, 6836571.875, 6836637.040110224, 6836809.548098829, 6836827.285946131, 6836879.689331005, 6836957.112134518, 6836971.776310086, 6836990.993427095, 6837070.066691389, 6837169.491737653, 6837276.5625, 6837498.4375, 6837641.63100121, 6837736.625006857, 6837742.1875, 6837883.833568581, 6837908.697974383, 6837958.920520388, 6837970.77299645, 6838029.202000993, 6838067.439755488, 6838223.219483237, 6838291.209164652, 6838503.125, 6838546.875, 6838610.058431766, 6838746.875, 6838760.932051558, 6838853.125, 6838949.37287203, 6838999.310027708, 6839144.81708415, 6839291.036592392, 6839298.712735644, 6839453.873902228, 6839609.094397239, 6839610.791468964, 6839957.15760685, 6839970.650059373, 6840255.542578056, 6840318.75, 6845379.234102104, 6846003.054310514, 6846726.065075972, 6847485.079433107, 6848071.3759970395, 6848431.25, 6848626.92974267, 6848807.773007119, 6850145.654633175, 6853802.468003826, 6854931.25, 6856088.728853134, 6856118.75, 6857126.485978776, 6857413.783714519, 6861293.031778774, 6861662.491838324, 6862098.310978411, 6864070.264227565, 6864493.059576671, 6865938.520551243, 6872654.6875, 6873314.0625, 6873917.1875, 6874325.0, 6876532.8125, 6876579.031277187, 6876807.8569224095, 6876958.345058262, 6877420.226017529, 6877565.591419629, 6878248.607481059, 6878258.71443918, 6878281.25, 6878715.953844208, 6878857.558338441, 6878948.474745553, 6879748.945193894, 6885554.6875, 6888278.125, 6888291.638919359, 6889483.1593520865, 6893215.625, 6893428.094461307, 6893587.5, 6893626.0319377165, 6894073.713056834, 6894151.356398404, 6894196.348582177, 6894356.25, 6894360.9375, 6894531.366202503, 6894682.293887059, 6894722.44753112, 6894740.011293391, 6894885.452771462, 6895104.338552829, 6895260.9375, 6895489.010141799, 6896107.738671057, 6896523.4375, 6896720.004018838, 6896929.908623452, 6897595.89470142, 6897668.75, 6897717.599775597, 6897722.305122344, 6897814.0625, 6897956.25, 6898287.476651449, 6898836.643913032, 6898887.430159783, 6902445.178332836, 6909472.297454303, 6909955.943936504, 6910146.896393631, 6910538.245450028, 6910595.3125, 6911197.724754956, 6913553.125, 6913992.166708737, 6920036.021350754, 6925109.230573601, 6925761.574778166, 6926070.3125, 6926492.1875, 6926764.0625, 6927029.262296037, 6927069.504526739, 6927508.508909232, 6933634.817907948, 6941220.3125, 6950501.413336, 6951003.09899813, 6958589.0625, 6959096.801253341, 6959633.239081029, 6964183.441911243, 6966924.27518981, 6975624.19814126, 6976158.794877551, 6977374.772526032, 6977584.274257533, 6977932.8125, 6978307.316167997, 6978501.5625, 6978563.854433635, 6979184.285432568, 6979233.021199592, 6979364.874133867, 6979435.358558619, 6979635.9375, 6980098.12005359, 6980153.091884688, 6986630.937677265, 6986644.203010776, 6994738.952138883, 7000042.1875, 7000141.560343763, 7003250.0, 7004470.92827549, 7005672.644312354, 7007017.827756693, 7011879.6875, 7012386.54858307, 7012397.548097198, 7012672.702093434, 7012829.6875, 7013018.75, 7013128.143062746, 7013615.879214875, 7013670.213592552, 7013734.184639043, 7013743.75, 7013847.414751749, 7013909.375, 7014046.552708863, 7014165.3624431845, 7014260.877659608, 7014323.4375, 7014370.3125, 7014379.446460985, 7014481.25, 7014564.0625, 7014581.25, 7014584.293730946, 7014651.851343196, 7014656.015993692, 7014899.80757943, 7014906.046044418, 7014952.075178659, 7014975.42606665, 7015004.8645664435, 7015008.591426231, 7015042.1875, 7015112.026327129, 7015134.880838261, 7015149.419620431, 7015149.88537075, 7015154.6875, 7015177.217554488, 7015186.23353033, 7015250.0, 7015266.146522405, 7015286.068845055, 7015290.996115205, 7015291.715334036, 7015297.932993479, 7015314.0625, 7015386.7204057835, 7015435.923648708, 7015443.753077891, 7015444.304538254, 7015489.486543933, 7015507.8125, 7015589.980916489, 7015595.3125, 7015881.25, 7015943.000483984, 7015951.330629453, 7015967.65027619, 7016037.471934736, 7016087.5, 7016291.517975039, 7016329.536463608, 7016364.265247632, 7016404.6875, 7016404.896603645, 7016492.361444139, 7016543.165195481, 7016568.75, 7016581.25, 7016593.181190176, 7016599.700543222, 7016604.6875, 7016639.023170779, 7016646.5731581915, 7016654.0043215165, 7016673.89194559, 7016732.7121111415, 7016738.976652898, 7016746.875, 7016759.375, 7016771.610711782, 7016807.8125, 7016812.528984605, 7016813.913597211, 7016859.375, 7016871.712015686, 7016914.0625, 7016922.2841675505, 7016927.790382787, 7016952.994608237, 7016959.746708704, 7017001.52152415, 7017009.375, 7017032.8125, 7017039.312583283, 7017048.743276747, 7017075.591658709, 7017090.625, 7017134.955883664, 7017146.6007273, 7017209.9530854635, 7017219.997778648, 7017225.0, 7017241.207959499, 7017248.007966546, 7017252.791572532, 7017253.7921530055, 7017256.917369588, 7017310.367040708, 7017337.092810838, 7017344.9224223215, 7017404.314211137, 7017485.9375, 7017570.751435141, 7017648.250388341, 7017737.013030505, 7017827.001943575, 7017835.1040809285, 7018445.3125, 7018726.418097737, 7019049.754357039, 7019078.739787339, 7019218.615506746, 7019292.402208411, 7019557.7741031535, 7019682.230010848, 7019773.4375, 7019791.611905212, 7019802.860457029, 7019804.6875, 7019828.425914489, 7019863.751695275, 7019946.575255457, 7019982.160290027, 7019995.430239586, 7020051.4174934635, 7020161.220620902, 7020172.318474621, 7020250.271310352, 7020301.351607341, 7020383.270207468, 7020479.996166964, 7020492.1875, 7020613.226536125, 7020624.549894919, 7020640.3119042395, 7020650.0, 7020682.8125, 7020709.031570824, 7020812.5, 7020834.375, 7020856.25, 7020877.00316733, 7021099.924088442, 7021228.015022873, 7021344.600820829, 7021709.8633469865, 7021807.647517825, 7021974.384551121, 7022213.262694767, 7022324.919958065, 7022478.778737415, 7022752.162693588, 7027575.911111603, 7028039.9932807265, 7028796.498656377, 7033645.112441369, 7037224.77543601, 7037463.306973012, 7038634.1230794005, 7041466.572670665, 7046382.094543188, 7047761.605721996, 7048921.7896949, 7049537.354063419, 7049620.845381613, 7050123.4375, 7050168.75, 7050268.91784525, 7050271.26306183, 7050418.539134383, 7050460.506025113, 7050487.5, 7050490.131182634, 7050535.266682278, 7050643.75, 7050759.978216487, 7050768.877699009, 7050821.7027677335, 7050849.723479063, 7050850.409918368, 7050858.7379780775, 7050891.356556972, 7050929.220403746, 7050930.502144096, 7051005.468607087, 7051005.999043207, 7051017.1875, 7051021.8099068105, 7051070.991664183, 7051098.2152794795, 7051215.463589247, 7051278.125, 7051278.997929199, 7051376.214388506, 7051415.402714316, 7051466.729680129, 7051490.625, 7051501.5625, 7051598.397732995, 7051632.122428906, 7051657.353824265, 7051701.277631315, 7051713.844077279, 7051784.69452841, 7051835.795502245, 7051842.724241615, 7051857.50308825, 7051881.0276239095, 7051885.9375, 7052000.0, 7052007.301683868, 7052031.25, 7052177.645452737, 7052217.742050524, 7052226.5625, 7052240.625, 7052254.664384347, 7052255.993168159, 7052373.4375, 7052396.777785946, 7052415.7798468955, 7052417.42444546, 7052457.498357907, 7052572.545259318, 7052655.664449241, 7052657.597442008, 7052660.395880118, 7052671.875, 7052708.679784015, 7052739.47256158, 7052793.0847033, 7052801.5625, 7052808.966554366, 7052842.70697839, 7052846.87237945, 7052928.439125003, 7052996.070011981, 7053141.763132364, 7053155.988607844, 7053161.851275569, 7053173.154791241, 7053184.375, 7053188.388505298, 7053226.317036018, 7053244.610200345, 7053325.0, 7053378.381621636, 7053458.87557218, 7053460.265155112, 7053506.25, 7053516.22206884, 7053537.380495971, 7053562.462089833, 7053590.980931831, 7053606.845832767, 7053626.641895922, 7053631.25, 7053643.967522167, 7053671.875, 7053709.9283538675, 7053807.56659658, 7053824.3448886825, 7053843.75, 7053845.807685168, 7053865.849236755, 7053983.035624682, 7054036.194614497, 7054055.461605865, 7054060.006957561, 7054060.830165872, 7054090.3234891575, 7054100.051466287, 7054137.5, 7054154.39148981, 7054167.368026474, 7054204.618374759, 7054294.727191947, 7054300.936922192, 7054310.677304282, 7054314.02420892, 7054325.0, 7054335.308614393, 7054357.983066933, 7054385.9375, 7054429.6875, 7054435.9375, 7054455.5134303905, 7054483.16484041, 7054532.3215654595, 7054584.353591416, 7054689.0625, 7054756.052517068, 7054760.9375, 7054834.375, 7054854.5315183, 7054872.482362207, 7054914.024922156, 7054967.1847720975, 7054968.044273422, 7055069.131921511, 7055093.42994828, 7055098.323559804, 7055109.9070481425, 7055110.296927571, 7055120.3125, 7055132.400666291, 7055189.0625, 7055229.239627209, 7055245.533068842, 7055264.052279976, 7055423.576047543, 7055472.689263704, 7055512.321794105, 7055550.0, 7055632.472953971, 7055668.75, 7055695.793113343, 7055715.3543547895, 7055807.8125, 7055812.192828425, 7055832.8125, 7055834.375, 7055868.75, 7055880.596371998, 7055892.1875, 7055906.117320901, 7056048.4375, 7056074.477613774, 7056095.3125, 7056102.426397728, 7056134.375, 7056251.0052264165, 7056313.857845813, 7056418.126993645, 7056600.0, 7056612.5, 7056618.634727955, 7056718.75, 7056801.5625, 7056841.901292617, 7056876.353861304, 7056923.38302031, 7056969.5315158805, 7057096.875, 7057186.990013256, 7057188.840101447, 7057237.139026247, 7057286.73035241, 7057387.5, 7057408.886258226, 7057509.430253532, 7057530.112642362, 7057695.3125, 7057782.456744726, 7057806.17692829, 7057817.738585529, 7057859.157934758, 7057884.375, 7057901.438139731, 7057956.569506699, 7057965.283033563, 7058032.307183432, 7058145.925468926, 7058170.406123803, 7058244.933670107, 7058346.818441431, 7058359.554779928, 7058478.0279715955, 7058506.25, 7058510.907397893, 7058554.659997668, 7058643.108051228, 7058654.637176297, 7058684.927653293, 7058868.652967302, 7058888.699392426, 7058911.471026517, 7058956.960871219, 7058962.37774122, 7058986.068433677, 7058989.151303418, 7058992.53780694, 7059009.375, 7059023.4375, 7059055.623984269, 7059099.495543378, 7059103.620264083, 7059136.781927915, 7059178.965524775, 7059198.4375, 7059287.043247209, 7059390.625, 7059576.038055662, 7059601.149739867, 7059636.74667573, 7059671.168387115, 7059671.875, 7059676.195514925, 7059693.553677188, 7059698.14180652, 7059703.086318548, 7059710.812910685, 7059724.438472857, 7059781.25, 7059789.758199322, 7059805.137082465, 7060002.875599153, 7060028.023557652, 7060098.737990415, 7060135.040893567, 7060246.775685539, 7060268.293829687, 7060421.875, 7060437.473964882, 7060437.5, 7060556.179441944, 7060570.788205551, 7060618.75, 7060625.507915387, 7060699.632652806, 7060705.518383304, 7060735.337729976, 7060762.5, 7060800.369730995, 7060902.797037973, 7060915.082584103, 7061029.164133954, 7061040.625, 7061048.094137871, 7061053.137368015, 7061073.329289095, 7061126.622260556, 7061133.8829820715, 7061274.746369289, 7061279.633971485, 7061284.399833915, 7061303.983708989, 7061391.281612963, 7061445.912610845, 7061469.480800252, 7061559.375, 7061687.0821004035, 7061728.340687601, 7061735.682272108, 7061872.933349531, 7061904.6875, 7061912.5, 7061928.906869397, 7061943.371280054, 7062181.3631766355, 7062200.538388383, 7062214.0625, 7062216.202545836, 7062307.8125, 7062309.375, 7062310.491106268, 7062483.038564412, 7062561.099856388, 7062850.704600686, 7064026.5625, 7065290.404254605, 7065321.875, 7065365.196767051, 7065399.790127738, 7065773.4375, 7065834.86068876, 7066390.625, 7066392.593812608, 7066437.5, 7066577.432148951, 7066672.477865886, 7067045.3125, 7067285.9375, 7067642.5952912, 7067726.639486837, 7068186.501771651, 7068257.659032791, 7068375.3744866755, 7068694.364683004, 7068773.4375, 7068944.554972331, 7069225.663931641, 7069520.476942158, 7069525.0, 7069818.5768749025, 7070262.5, 7070275.0, 7070538.047865327, 7070734.259166906, 7070848.4375, 7070940.652215636, 7071004.546472188, 7071045.3125, 7071195.049093262, 7071261.714088998, 7071599.3401489565, 7071862.5, 7072288.626752565, 7072391.719690436, 7072475.781733121, 7072732.149121259, 7072898.080652764, 7073205.475131463, 7073404.012360139, 7073632.64321252, 7073692.604145914, 7073734.052798965, 7074296.875, 7074875.770921785, 7074953.139696818, 7075129.6875, 7075135.72770427, 7075173.05017109, 7075248.4375, 7075370.3125, 7075468.30246257, 7075795.551195053, 7075824.858795759, 7076204.579378895, 7076353.7766653625, 7076535.9375, 7077150.0, 7077749.396268087, 7077892.1875, 7080070.92485759, 7080329.6875, 7080510.9375, 7080610.972157591, 7080915.192414748, 7081223.4375, 7081649.415191701, 7082198.504747259, 7084516.017465282, 7084543.75, 7084564.286354211, 7084802.875151129, 7085332.325279814, 7085346.5721674515, 7086480.147587278, 7086585.9375, 7086948.316602807, 7087517.720461178, 7088725.7618361, 7089056.128426194, 7089287.102773338, 7090982.091387772, 7091685.938750565, 7091809.375, 7091826.370606947, 7092001.169531632, 7092125.192322875, 7092336.713218959, 7092382.490649219, 7092683.325865063, 7093958.969530384, 7094439.350982556, 7095090.625, 7102828.125, 7103278.125, 7103625.421329895, 7103850.294522824, 7104097.800246617, 7105285.07070854, 7105589.0625, 7106439.990852877, 7107789.521121658, 7108157.38216273, 7109085.9375, 7109090.9502089415, 7109827.829273341, 7109984.375, 7111556.081660008, 7112382.527943374, 7112615.664285912, 7112781.25, 7114211.014771666, 7114272.8004715005, 7114442.638298743, 7114458.734771199, 7114828.125, 7114954.432703856, 7115291.692511193, 7115315.625, 7115414.240724414, 7115432.210677461, 7116067.1875, 7116521.135806358, 7116560.9375, 7117418.898899743, 7119823.4375, 7119903.233867542, 7119927.845458586, 7120382.699873904, 7122369.985701107, 7123914.917928465, 7124790.625, 7124894.978094577, 7125068.75, 7125073.942981037, 7125103.125, 7125120.872456752, 7125323.655248881, 7125474.879081502, 7125593.481137427, 7125666.3937496, 7125673.841508486, 7125702.147785809, 7125706.25, 7125725.0, 7125795.009474999, 7125803.099939974, 7125935.876021063, 7126006.606076003, 7126364.0625, 7126386.298572378, 7126508.726703238, 7126637.397012286, 7126931.25, 7129063.424323108, 7129923.59833444, 7129992.220785696, 7130010.3173751095, 7130866.974891646, 7130995.082515714, 7131287.969732201, 7131750.904035254, 7132229.110405883, 7133513.991671064, 7133602.026240381, 7133698.4375, 7133751.759889995, 7133826.33631349, 7133908.344842745, 7134011.6628189115, 7134107.687695335, 7134190.588131332, 7134398.4375, 7135164.0625, 7135715.287522839, 7135780.068533181, 7136461.441058712, 7136519.428590328, 7137061.564574652, 7137412.798048732, 7137463.210693963, 7137626.7527532745, 7137748.251042607, 7138378.449186659, 7138387.5, 7138435.445495188, 7138573.647595593, ...], [33.76881742807218, 49.61192534311217, 7.331018923098529, 8.949620547411223, 5.099757428494539, 78.06735921861156, 8.229954225774547, 24.963518387466525, 23.94628014244268, 18.274984498254916, 63.74649351895445, 28.014486293591357, 8.393603558316908, 14.062603331557728, 124.75746960508332, 12.131212488137647, 7.267758762021161, 23.637630329134076, 204.55534246407856, 16.695653595184346, 14.143435995593435, 62.41090457962243, 29.57911378042452, 20.060265268089, 49.177570924706714, 17.661586073391906, 42.34375171850252, 29.39334010527776, 12.651198843124908, 39.084141355769475, 13.1352194541863, 21.294899485497027, 65.12239045589251, 27.625415019565335, 30.143925070200666, 58.22123781272227, 76.50449332739764, 26.938051190283744, 8.0739861176278, 37.307753251956484, 14.013266709132694, 121.86424327471514, 49.047663062652376, 79.21806223676111, 26.861046255548274, 16.676438433611505, 9.016323149545505, 68.80710328405807, 11.571528227794825, 17.279276860435317, 53.69428139852407, 9.272613600954353, 14.775239522034937, 50.002852848306844, 80.8639873060541, 31.92614767065153, 23.893869032818216, 11.44135079306997, 108.59823751993173, 45.309995469342454, 5.641155967730712, 85.61824582343966, 7.386431964093613, 5.159475767368841, 10.693173529499155, 14.654412673922875, 98.7608926584326, 28.95436401015723, 11.412559073956068, 26.164359977074774, 58.075217958827594, 110.80743026171999, 27.38026499988679, 13.157875473741315, 24.320890996170114, 62.66217534259171, 65.7779990932797, 51.80629769663437, 5.6239813342894625, 12.768678362857958, 96.72126633699023, 49.77431063017258, 55.102976185039076, 8.37454923487264, 45.36653659951442, 21.35496570200516, 75.21397690537697, 63.46269634954474, 16.846694284631443, 23.462989853098506, 59.89593854024706, 30.7392795638672, 8.065967944390533, 28.338007954256874, 31.21499970255388, 21.87508746400926, 20.59989317328548, 6.689661739236002, 98.87301028482936, 119.22092096195944, 5.401469462258778, 48.556103443305176, 68.68405998157615, 24.53984257121769, 7.928921056891293, 133.97150693479352, 50.86879780168445, 77.22182399238186, 12.475977502387407, 9.776082533870595, 5.927605566788009, 28.37696374869405, 73.34853155760224, 45.44761924580904, 20.10113952188218, 45.93512989570594, 33.578996914803184, 7.885526060165746, 66.7346185698873, 66.3214667324323, 6.395630208338146, 68.31359397960017, 74.46030862037978, 46.16748665484596, 43.88936160451379, 17.894886946893994, 12.220544733394227, 8.406256073629123, 75.15866515026829, 21.092976942363464, 17.398356166571844, 15.689261289994269, 10.537338319939508, 5.401630326891062, 20.753794972039184, 11.387407499759377, 43.7088019456172, 8.56824203276622, 32.69202312863388, 6.4643833398612465, 14.870313700278746, 12.399632342375348, 12.498601885654029, 30.008277512741238, 28.008579363811105, 71.070359493029, 14.144012536820325, 25.55998108165215, 113.75696247808257, 54.437190243836, 17.229539557571968, 5.060475646737438, 81.28290882401001, 34.37466804614378, 7.664107121528713, 16.356184743990788, 76.73376750994709, 14.027143015360176, 9.984841270421374, 33.26349015533428, 25.12033560700991, 36.85118026591592, 47.104562642590906, 16.820635075874705, 71.74335916025103, 15.985475520850787, 11.135051101927587, 63.11476987040953, 21.585822691224088, 113.5100814917729, 17.007022258307416, 191.60868098237458, 11.339310705093547, 31.351704941069446, 59.23563789595968, 89.07090980765508, 11.409497880991829, 87.31270727166056, 11.130569989109619, 19.70290489515528, 26.714791400944716, 9.66365042587263, 54.18778791042834, 28.071320157024687, 67.97613272926843, 91.31351031291338, 20.947420481590854, 12.404329003424232, 87.18552760239947, 39.371186194012154, 6.954171614243972, 45.231482186103285, 8.54609399087479, 36.97783829618316, 8.424636454834397, 24.85767245745527, 87.16117265704088, 51.63318408177517, 36.450337936464926, 24.52375392226315, 35.842753594293484, 44.97273604206515, 91.32877548209126, 20.01192808426184, 73.73058116263917, 8.04088772423508, 38.06596809456606, 7.195732413826433, 86.78152491038122, 9.104896840036508, 25.939177855037478, 8.832916387161717, 38.904820047554594, 40.358015033894056, 52.35765161527579, 30.166048774591374, 14.678749908376528, 58.7351617736778, 5.868008109297282, 21.503052003272966, 64.49823629862507, 11.754728519354222, 18.817495890110695, 46.15368890743362, 46.75018348385388, 52.96831228386605, 13.805971012543303, 32.50875143166774, 8.2465219499906, 100.9809942549269, 12.765646317154822, 14.910491920390909, 19.579578008056234, 6.083093653020624, 18.57671945498309, 10.374549427457833, 58.98354568716066, 69.26038143077693, 113.55519027348471, 39.22484616505747, 44.107916906674184, 20.06446259526451, 5.81727447213487, 36.79382863402823, 14.621815533012265, 11.075621079785822, 34.54383427330275, 73.8386114312243, 41.3854300241853, 85.34120241649137, 10.752390732025859, 49.08675312902584, 61.66216253287516, 38.93852275995727, 132.98686960008692, 32.24138890364665, 136.60684840384553, 63.39878279598094, 14.826373924883548, 67.11027583208339, 21.193548201724866, 16.10725415017712, 29.983156000120527, 21.23355504848244, 89.75941391180973, 30.641391813299133, 54.081258391489925, 14.501629830535283, 6.149732222039345, 13.025057113167277, 5.510008693673108, 62.31901181525015, 184.4912857790722, 14.745630489360714, 11.187330121595345, 32.071152931684175, 13.883072151634067, 50.11729626595411, 17.74779136265961, 54.71522410219531, 16.786253501578205, 5.048867568918722, 106.7039701801896, 75.8380683547079, 5.812254690458155, 8.69915727642895, 14.681829423144938, 6.074257262183815, 53.56581157201735, 38.140756141025165, 106.69535998766254, 10.0527496833028, 28.613615161509568, 19.60447356359241, 120.88916076872094, 13.29222001672537, 9.40332458922804, 34.93354502541693, 32.60994706508339, 42.97590606500535, 42.58814764793972, 80.19782781895252, 12.271363535547733, 18.88748217821085, 12.120493498009143, 5.357331094520434, 29.273288516932105, 5.697330124231626, 5.3974809349078345, 70.89849783094934, 8.247960110633711, 53.86823685226416, 65.93820249220468, 12.74981024068554, 12.568951025109612, 26.14935710268902, 24.72358358109148, 26.68001018383319, 36.59892642732245, 13.3361030540449, 59.811841562480055, 49.91160242769663, 10.990534875530045, 7.177414802177727, 12.68776535281153, 81.87262408388393, 49.98733492725238, 30.489590864785015, 27.8859493491823, 17.833327098572056, 47.323813840919115, 14.536912577989698, 92.29065034589969, 77.91117838520167, 57.03213152771569, 12.249137585315234, 55.011637279376345, 17.20496410310406, 144.35554357046985, 23.923693362149763, 18.32573219473997, 19.42751830423094, 55.35239678405623, 77.53284062261142, 7.6097837606606165, 117.79581732287635, 43.024752273214794, 95.9702340710648, 30.659201262741803, 85.61068624335738, 57.03390947496393, 8.123193646755542, 38.1054927735474, 27.394151191002976, 103.08027736279921, 62.18723056357603, 108.37048587450582, 30.342669292776698, 95.88434833833453, 50.86740120257981, 33.08624270785854, 16.169973131173688, 7.520738931275783, 137.02451090166718, 25.060331813428544, 53.590208356692855, 7.76496768927434, 69.85041071923479, 6.370895396823809, 108.74059678189629, 35.66884626779255, 5.5581446525127545, 52.8651159564959, 40.20492130656492, 85.60434722842692, 23.694218912202135, 20.14898068896592, 83.06879561487685, 9.815080370274359, 27.080814805133134, 16.57373363360511, 10.462022193029593, 89.18120472031674, 41.616992722716425, 19.094009660224625, 8.279266087882986, 14.953253889884742, 14.261160541960596, 93.66606460348788, 42.972950070685926, 123.57822785360142, 51.49354214295007, 83.35041388762228, 10.128528844827228, 8.167651841490997, 76.25256113834261, 84.85676148457591, 55.39491341055653, 10.220926666607925, 14.39547017320006, 15.77502543012251, 90.7040797622049, 15.8032789746426, 5.207876253421721, 20.686883201273574, 55.91147632659004, 55.497099564482355, 43.9330245354014, 104.28725489009054, 91.27162936429305, 5.068181815208531, 10.686555718409753, 83.09241760849635, 26.511767660741064, 93.95258295181539, 26.934899971095124, 31.178349730008133, 57.048508002830225, 56.68860367808571, 47.55590432752595, 15.053148124190784, 57.01558275283883, 41.78925028419205, 136.37255010097047, 71.77494660655782, 16.769948688486906, 24.435652261166524, 26.189388279817695, 39.42080044330128, 127.53443130995645, 40.23440557503366, 53.65803366476378, 5.408121319028456, 60.9993567453455, 9.887367040212924, 46.31008636847743, 17.530197618132604, 29.985233408907934, 23.420454748932187, 5.912458424310203, 66.07040697262472, 46.61591841989464, 7.4549352632547015, 58.768674767919265, 59.44767332352436, 8.67411683757826, 105.12542157367943, 22.471749213488675, 7.022553298415086, 22.85764329994815, 82.74246702232196, 6.134965832983293, 7.5369360708382205, 5.509904095561232, 7.770305091594263, 5.146395859970006, 44.12448442015928, 25.374668623388224, 7.516745054370084, 17.949408194194252, 8.216712936810811, 15.828309156440458, 106.90084287031009, 165.72354534109036, 36.052659908355615, 39.75510130886031, 43.879209164176444, 54.54400269690835, 61.84730220703023, 182.6810668245692, 8.13418256287427, 12.92765297139044, 6.28218940891676, 91.79497950459199, 11.601089523578947, 11.899680177475231, 5.252802695858964, 6.240916288106147, 9.750925521829853, 6.3070001079556155, 104.09589524927807, 13.964579549228244, 32.2352394278934, 13.86884036446218, 30.68530854564205, 41.04286022271104, 23.21140513833286, 110.52617224047744, 51.88183133052662, 56.08055272729851, 16.15834655818437, 99.1681804327428, 38.88217362278399, 5.879735231898141, 17.199098117643032, 9.195691606832796, 20.41387997313264, 31.78271094784886, 11.004859226083997, 18.198500488082107, 107.12422835939611, 8.835319162343175, 36.20721235008146, 14.17526944180555, 88.03354209429168, 14.677848774431729, 19.273808172954848, 24.384951799496054, 26.531760756006523, 19.56341037753889, 12.36201087755936, 6.746594733071394, 25.94067182443792, 22.54445128055839, 118.24368378186844, 38.79277127964075, 13.49733523001024, 20.44469276001697, 9.159249470655128, 22.205040599430102, 66.5458008133233, 10.434612183272465, 8.822031123370364, 84.51573381986262, 7.289591941199673, 151.0881536098046, 9.189896755197525, 24.16352694432352, 53.14966275815506, 49.58742699546164, 12.502685578094978, 5.120643408769405, 29.88684199704385, 10.092511306245369, 32.18386995476356, 97.45011516053628, 9.276963082655616, 74.79249508601806, 10.797262537487635, 8.203026017819674, 82.73172010850703, 80.5505953720716, 17.571333885840325, 34.01926088388744, 70.1007397331059, 86.95295044110276, 41.913744505121095, 27.76159349482266, 161.47112608109612, 13.440666508099484, 7.048529044447177, 24.851880369031214, 16.317410496127916, 39.64793938396858, 82.78069555566314, 29.664769663414273, 22.067481554052563, 45.453001514070266, 32.35536284309989, 21.385877866071972, 45.33841799156336, 10.452650054772462, 47.103641169294, 47.087587323578234, 72.69633983019615, 24.682937521937223, 10.74866764936981, 68.37441380718495, 98.11903626280642, 5.540643243882846, 125.134777985204, 58.67438876030526, 39.20246748313947, 10.32115119784473, 134.29926517745997, 20.381005579782897, 96.07450389839147, 19.744223905507866, 8.516020076231866, 17.455204580243205, 79.72475987530969, 40.54402272597201, 23.61820778915864, 20.82355496842515, 33.41858095659772, 5.4282447217624625, 82.93924290521389, 61.32601302415374, 20.12757663171223, 61.474132576595515, 40.96364195658487, 19.91687218623603, 5.037431528876951, 5.269875698850934, 49.64282085478547, 113.00569173423916, 13.327613375062969, 26.182483104061966, 56.377250767350546, 98.65249016505358, 36.373215512458565, 14.798955923687188, 11.733693463651187, 137.5609045213299, 15.25301848211503, 35.701997186834944, 30.528253673640503, 29.72606301269353, 53.77076904208779, 65.83672281717291, 8.832766901414479, 90.2043334937098, 17.237554661039287, 15.87111326848375, 6.8088845019285795, 11.55487136778347, 63.59057219602179, 12.283623844244717, 26.5690396638575, 25.650848869049643, 9.37530329134223, 59.227642365235404, 6.057848352760548, 18.217091332212707, 116.30512745787681, 20.682322442059622, 10.272955891998283, 23.573020887385944, 5.340611296872985, 99.48248143074098, 8.850807927718604, 15.634087471649496, 52.81915830382191, 92.12526341658182, 52.37271131558474, 8.777638849854743, 16.479186282522647, 30.48400368707788, 52.22935042425211, 53.07075753989339, 25.154971567412414, 52.16564586388287, 45.008975836637156, 7.547779481647624, 16.430261738020974, 22.061634337564158, 28.47126408451705, 6.947523021108615, 11.782206163126146, 10.661767330109766, 26.458927022448986, 17.44889045234693, 20.1967694098069, 64.3343004658974, 22.420128289483056, 44.41074275297063, 22.029349934102825, 5.170530518683905, 11.111769736543925, 8.361228166893735, 10.920200151303767, 69.1448534370206, 46.70799803686005, 23.258406084715315, 93.93036528318211, 17.15588101713659, 131.29747025176715, 204.3618539792472, 23.65956494824182, 55.65178258233664, 68.75596746846986, 58.91194273407315, 20.08624600893441, 34.731036801110704, 99.61213458505839, 46.83465430234372, 21.272655047183616, 68.94817278472918, 76.91476895255155, 39.95986435014594, 13.171877234981116, 25.0501686014342, 28.523811797802267, 61.644582062121735, 37.15232165824913, 26.436859202148067, 110.27247591875962, 34.33015005618897, 118.76378611647743, 9.161005539498221, 35.26990657348699, 167.8560418147592, 29.041122624779277, 20.707199546820817, 85.95643613042424, 5.446483545724355, 12.643607140931225, 65.19556698369175, 68.25376690665406, 33.071375355377626, 9.718762513746812, 33.6880024234481, 13.739257002706129, 27.15819134373243, 21.63464973667365, 6.453594316798204, 65.06945801301973, 43.33471029626286, 11.666756040133562, 20.49547605968744, 14.91277741968667, 28.12295763121984, 15.310785205206342, 145.5003018015264, 6.752267375912127, 68.47281086671067, 26.74302566752354, 29.304035951937305, 27.942717912050142, 14.83770941913968, 82.87106567730947, 7.108285622713329, 58.9509522940696, 31.935024845777093, 39.195558680312175, 50.28232626659337, 76.66114846037985, 26.321811342473907, 6.5078139947905695, 18.07881463184171, 11.72327706205846, 52.77399344649752, 45.957647226658075, 5.769068356228373, 58.259404356408986, 7.7927580425358185, 6.3801255275492785, 30.75052081433754, 61.27486941635258, 67.05064947092967, 35.515920999386736, 69.86803224070916, 22.40986686645912, 36.33488910788555, 19.653072956644134, 141.41361092488128, 35.23244250298499, 53.74797235219782, 23.805907789742157, 16.467892453036633, 44.93568603464509, 23.2707089904978, 86.58106258713832, 49.14683326475526, 16.985355986475575, 36.08265910125236, 10.97276343982825, 16.225506808781745, 38.63363797395994, 63.64585176111406, 5.511343301960134, 35.49690791487774, 9.309485608318669, 46.78950039577886, 82.64814067405817, 96.14857126747255, 70.53848563085717, 21.470198052236746, 62.83428443988548, 44.63402473212628, 36.26126169274302, 48.54458625451388, 36.815731295296175, 13.823278785804721, 105.11058390680657, 8.027934073335414, 46.798973228221186, 23.21221468367029, 21.889374435622585, 10.962676346969289, 141.42234180774886, 35.12681069666105, 32.497880669061665, 14.741334830426288, 22.437940772135512, 14.143477807842064, 55.40581881056244, 17.85785599739942, 12.500975708285454, 45.13996585018911, 5.44411121660356, 15.83269331209085, 124.48747928808753, 109.84118393607314, 78.35124378896994, 143.85111426091203, 144.67921839647286, 49.958768921302216, 20.083385545855386, 49.21895932124312, 58.4977863296759, 83.78461560748144, 49.433605363419446, 92.69165635821953, 60.24501960216362, 6.809493696579459, 66.69913102163665, 12.720236892332661, 40.40083328324779, 14.16197704405597, 29.233841729498934, 22.240189335215415, 45.84883276966209, 104.69433306221782, 17.184210603204495, 56.781093855765604, 7.757116085261234, 60.70515233415277, 10.193679588887248, 89.67580320082112, 46.42332431335336, 60.06751677468477, 150.80510643172158, 46.66577552471196, 7.820924456025639, 66.69156706136567, 96.29221610725348, 9.911514950107847, 33.62142153972796, 26.969468116616753, 24.730730536570192, 15.607656011836129, 38.77099277757117, 37.320038048119564, 40.20989526254964, 99.30927138867808, 17.541708368969683, 13.442822309239702, 48.12461708166047, 11.170514734524753, 26.018598109811283, 31.768464177353565, 5.237832403370328, 23.71736484331869, 20.034104472279825, 56.46059412306943, 8.988265099680813, 58.10780966052903, 93.31133713040535, 42.548400139920375, 30.183293558086085, 54.53968251363564, 10.214344792261423, 101.20950815583988, 7.235458538737651, 23.47123694374456, 44.54200748833846, 17.684517719156645, 7.608561934536178, 29.511381179910334, 14.197933150075128, 28.921164749166287, 65.85529927133355, 44.74491919565892, 10.493502253182339, 91.72302294591142, 5.697829941656163, 10.962809974822605, 7.857261127280415, 67.34349596716642, 36.70868781927474, 20.517180203230936, 33.07160510236138, 26.985294987108787, 32.168409085064454, 58.10938734365959, 9.360881064900292, 22.19303384363515, 29.895131932231767, 10.322052563426308, 11.234471021848156, 19.337363419721758, 60.423176627062475, 15.869388627904268, 10.758412905796046, 13.361183745493273, 10.685202068947616, 17.0425732007083, 44.48930169493762, 26.34413798966944, 12.077232146386377, 31.21982507824204, 5.699064166816628, 16.29034643082884, 6.627603186473118, 22.246009179736713, 78.19777929036731, 5.335388928520223, 115.65880642225744, 5.624773249675017, 10.086467498943609, 30.774745149808364, 12.037641899336222, 23.306624866216296, 22.179240508817887, 100.31509034248256, 63.6875906076715, 69.89921015213073, 73.86550582320959, 43.019353817431714, 20.22511490115914, 12.422462094233078, 76.6375756267635, 67.80460074232093, 18.142842543469328, 8.992236161754747, 90.95200713805329, 11.67715479814334, 26.028367406540756, 96.00306381891184, 8.199518274344289, 10.710265719129053, 61.91360659024813, 48.52789983777914, 7.631426681819334, 5.885784908028267, 11.913905494467633, 65.5797842984278, 100.6518258891404, 14.051819145802666, 44.21013465161146, 49.2104342309065, 6.799617061017928, 31.008123467639564, 112.45489559885549, 13.712052618949544, 80.414351328885, 11.46692819417726, 41.361353398993295, 11.302247143315588, 15.125602656093339, 14.528931939892159, 15.732293470742977, 39.86143826209687, 40.54663936049374, 10.642364212030746, 56.57599313745642, 17.295892248813292, 34.850571381328535, 6.880695178381367, 9.522568592190952, 7.560081270598267, 21.845440164787895, 12.58761714859928, 69.93707547387895, 12.184966443120489, 32.4966727547411, 68.54272636871426, 23.712178218686795, 36.503116687804436, 6.751294530983705, 5.97102645018426, 52.10805766026848, 21.384433271754197, 7.384462352621642, 8.232856356458859, 51.1923365031906, 56.88415070119689, 104.5519440799494, 15.069915024312529, 79.32323884238605, 43.453539878592565, 15.948744426115745, 17.095564522142, 31.596139192851332, 21.045351955266042, 11.018772437919447, 61.33289295163897, 59.60647190815288, 20.612168036049766, 16.767389119659274, 126.99631831329503, 41.61786810143924, 78.54664001787789, 64.43924078196771, 71.57978005483659, 69.60271098512986, 5.1949084443244455, 6.842038202266546, 9.79686776016768, 12.384707504504538, 80.08203044112409, 37.79014165190192, 34.535942950268776, 11.438702770931325, 25.31818717454042, 11.675288367383835, 88.6159947834548, 21.573228995985392, 13.757220683398032, ...])
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)