Compare commits
23 Commits
feature/in
...
3f8b5846c3
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f8b5846c3 | |||
| 728b321268 | |||
| 2670cac40b | |||
| adb7321b93 | |||
| 7211d63889 | |||
| 1d4f7690b8 | |||
| 92d5db16b1 | |||
| 6a0d1e4dc3 | |||
| 14b5bdac91 | |||
| 2cab8aa178 | |||
| 3805d927bf | |||
| 77fdbee41c | |||
| 597367518d | |||
| 14410e20e7 | |||
| 28c772f7e2 | |||
| 3661ccb23a | |||
| ad354f8f02 | |||
| 57f7fec9a0 | |||
| 07107cb63e | |||
| 35e5593967 | |||
| 174548f4c4 | |||
| 5af7e62f5d | |||
| a47b021f21 |
11
README.md
11
README.md
@@ -1,6 +1,6 @@
|
||||
# ba-letter
|
||||
|
||||
Repository containing latex source for the Bachelor's Thesis paper.
|
||||
Repository containing the latex source for the bachelor's thesis letter.
|
||||
|
||||
After cloning, make sure to initialize the submodules containing the dependencies:
|
||||
```bash
|
||||
@@ -11,17 +11,24 @@ $ git submodule update --init
|
||||
|
||||
### Build on host
|
||||
|
||||
For a list of dependencies consult one of the dockerfiles in the `dockerfiles` directory. Build document:
|
||||
|
||||
```bash
|
||||
$ make
|
||||
```
|
||||
|
||||
After compiling, the PDF can be found in the `build` directory.
|
||||
|
||||
### Build using docker
|
||||
|
||||
Be warned that `texlive` installations can take some time.
|
||||
Building the docker image may take a few minutes.
|
||||
|
||||
1. Build docker image
|
||||
```bash
|
||||
$ docker build -f dockerfiles/Dockerfile.alpine . -t ba-letter
|
||||
```
|
||||
2. Build examples
|
||||
2. Build document
|
||||
```bash
|
||||
$ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` ba-letter make
|
||||
```
|
||||
|
||||
@@ -2,6 +2,13 @@ FROM alpine:3.19
|
||||
|
||||
RUN apk update && apk upgrade
|
||||
RUN apk add make texlive texmf-dist-pictures
|
||||
RUN apk add texmf-dist-publishers
|
||||
RUN apk add texmf-dist-science
|
||||
RUN apk add texmf-dist-fontsextra
|
||||
RUN apk add texmf-dist-publishers texmf-dist-science texmf-dist-fontsextra texmf-dist-latexextra
|
||||
RUN apk add biber texmf-dist-bibtexextra
|
||||
|
||||
# The 'bbm' package insists on generating stuff in the home directory. In
|
||||
# order to guarantee access to the home directory no matter the user the
|
||||
# docker container is run with, create a temporary one anyone can write to
|
||||
RUN mkdir /tmp/home
|
||||
RUN chmod -R 777 /tmp/home
|
||||
ENV HOME=/tmp/home
|
||||
|
||||
|
||||
25
dockerfiles/Dockerfile.arch
Normal file
25
dockerfiles/Dockerfile.arch
Normal file
@@ -0,0 +1,25 @@
|
||||
FROM archlinux:latest
|
||||
|
||||
RUN pacman-key --init
|
||||
RUN pacman-key --populate archlinux
|
||||
RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm
|
||||
|
||||
RUN pacman -Syu --noconfirm
|
||||
RUN pacman -S make perl texlive texlive-binextra texlive-pictures --noconfirm
|
||||
RUN pacman -S texlive-publishers texlive-mathscience texlive-fontsextra texlive-latexextra --noconfirm
|
||||
RUN pacman -Syu biber texlive-bibtexextra --noconfirm
|
||||
|
||||
# The 'bbm' package insists on generating stuff in the home directory. In
|
||||
# order to guarantee access to the home directory no matter the user the
|
||||
# docker container is run with, create a temporary one anyone can write to
|
||||
RUN mkdir /tmp/home
|
||||
RUN chmod -R 777 /tmp/home
|
||||
ENV HOME=/tmp/home
|
||||
|
||||
# Generate font necessary for \mathbbm{1}
|
||||
RUN mktexpk --mfmode / --bdpi 600 --mag 1+0/600 --dpi 600 bbm10
|
||||
RUN chmod -R 777 /tmp/home
|
||||
|
||||
# For some reason simply installing 'biber' does not set the path
|
||||
ENV PATH="${PATH}:/usr/bin/vendor_perl"
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
FROM archlinux:latest
|
||||
|
||||
RUN pacman-key --init
|
||||
RUN pacman-key --populate archlinux
|
||||
RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm
|
||||
|
||||
RUN pacman -Syu --noconfirm
|
||||
RUN pacman -S make perl texlive texlive-binextra texlive-pictures --noconfirm
|
||||
RUN pacman -S texlive-publishers texlive-mathscience texlive-fontsextra --noconfirm
|
||||
@@ -4,4 +4,13 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt update -y && apt upgrade -y
|
||||
RUN apt install make texlive latexmk texlive-pictures -y
|
||||
RUN apt install make texlive-publishers texlive-science texlive-fonts-extra -y
|
||||
RUN apt install texlive-publishers texlive-science texlive-fonts-extra texlive-latex-extra -y
|
||||
RUN apt install biber texlive-bibtex-extra -y
|
||||
|
||||
# The 'bbm' package insists on generating stuff in the home directory. In
|
||||
# order to guarantee access to the home directory no matter the user the
|
||||
# docker container is run with, create a temporary one anyone can write to
|
||||
RUN mkdir /tmp/home
|
||||
RUN chmod -R 777 /tmp/home
|
||||
ENV HOME=/tmp/home
|
||||
|
||||
|
||||
104
letter.bib
Normal file
104
letter.bib
Normal file
@@ -0,0 +1,104 @@
|
||||
@ARTICLE{ADMM,
|
||||
author={Barman, Siddharth and Liu, Xishuo and Draper, Stark C. and Recht, Benjamin},
|
||||
journal={IEEE Transactions on Information Theory},
|
||||
title={Decomposition Methods for Large Scale LP Decoding},
|
||||
year={2013},
|
||||
volume={59},
|
||||
number={12},
|
||||
pages={7870-7886},
|
||||
% doi={10.1109/TIT.2013.2281372}
|
||||
}
|
||||
|
||||
@ARTICLE{feldman_paper,
|
||||
author={Feldman, J. and Wainwright, M.J. and Karger, D.R.},
|
||||
journal={IEEE Transactions on Information Theory},
|
||||
title={Using linear programming to Decode Binary linear codes},
|
||||
year={2005},
|
||||
volume={51},
|
||||
number={3},
|
||||
pages={954-972},
|
||||
% doi={10.1109/TIT.2004.842696}
|
||||
}
|
||||
|
||||
@ARTICLE{ml_in_the_list,
|
||||
author={Geiselhart, Marvin and Elkelesh, Ahmed and Ebada, Moustafa and Cammerer, Sebastian and Brink, Stephan ten},
|
||||
journal={IEEE Transactions on Communications},
|
||||
title={Automorphism Ensemble Decoding of Reed–Muller Codes},
|
||||
year={2021},
|
||||
volume={69},
|
||||
number={10},
|
||||
pages={6424-6438},
|
||||
% doi={10.1109/TCOMM.2021.3098798}
|
||||
}
|
||||
|
||||
@ARTICLE{mackay99,
|
||||
author={MacKay, D.J.C.},
|
||||
journal={IEEE Transactions on Information Theory},
|
||||
title={Good error-correcting codes based on very sparse matrices},
|
||||
year={1999},
|
||||
volume={45},
|
||||
number={2},
|
||||
pages={399-431},
|
||||
% doi={10.1109/18.748992}
|
||||
}
|
||||
|
||||
@online{mackay,
|
||||
author = {MacKay, David J.C.},
|
||||
title = {Encyclopedia of Sparse Graph Codes},
|
||||
date = {2023-04},
|
||||
url = {http://www.inference.org.uk/mackay/codes/data.html}
|
||||
}
|
||||
|
||||
@article{proximal_algorithms,
|
||||
title={Proximal algorithms},
|
||||
author={Parikh, Neal and Boyd, Stephen and others},
|
||||
journal={Foundations and trends{\textregistered} in Optimization},
|
||||
volume={1},
|
||||
number={3},
|
||||
pages={127--239},
|
||||
year={2014},
|
||||
publisher={Now Publishers, Inc.}
|
||||
}
|
||||
|
||||
@book{channel_codes_book,
|
||||
place={Cambridge},
|
||||
title={Channel Codes: Classical and Modern},
|
||||
% DOI={10.1017/CBO9780511803253},
|
||||
publisher={Cambridge University Press},
|
||||
author={Ryan, William and Lin, Shu},
|
||||
year={2009},
|
||||
% url={https://d1.amobbs.com/bbs_upload782111/files_35/ourdev_604508GHLFR2.pdf}
|
||||
}
|
||||
|
||||
@INPROCEEDINGS{adaptive_lp_decoding,
|
||||
author={Taghavi, Mohammad H. and Siegel, Paul H.},
|
||||
booktitle={2006 IEEE International Symposium on Information Theory},
|
||||
title={Adaptive Linear Programming Decoding},
|
||||
year={2006},
|
||||
volume={},
|
||||
number={},
|
||||
pages={1374-1378},
|
||||
% doi={10.1109/ISIT.2006.262071}
|
||||
}
|
||||
|
||||
@INPROCEEDINGS{interior_point_decoding,
|
||||
author={Vontobel, Pascal O.},
|
||||
booktitle={2008 Information Theory and Applications Workshop},
|
||||
title={Interior-point algorithms for linear-programming decoding},
|
||||
year={2008},
|
||||
volume={},
|
||||
number={},
|
||||
pages={433-437},
|
||||
% doi={10.1109/ITA.2008.4601085}
|
||||
}
|
||||
|
||||
@article{proximal_paper,
|
||||
title={Proximal Decoding for {LDPC} Codes},
|
||||
author={Tadashi Wadayama and Satoshi Takabe},
|
||||
journal={IEICE Transactions on Fundamentals of Electronics, Communications and Computer Sciences},
|
||||
% volume={advpub},
|
||||
% pages={2022TAP0002},
|
||||
year={2022},
|
||||
% doi={10.1587/transfun.2022TAP0002}
|
||||
}
|
||||
|
||||
756
letter.tex
756
letter.tex
File diff suppressed because it is too large
Load Diff
@@ -1,29 +0,0 @@
|
||||
indentPreamble: 1
|
||||
defaultIndent: ' '
|
||||
maxNumberOfBackUps: 9
|
||||
modifyLineBreaks:
|
||||
preserveBlankLines: 1
|
||||
condenseMultipleBlankLinesInto: 0
|
||||
oneSentencePerLine:
|
||||
manipulateSentences: 1
|
||||
removeSentenceLineBreaks: 0
|
||||
sentencesFollow:
|
||||
par: 1
|
||||
blankLine: 1
|
||||
fullStop: 1
|
||||
exclamationMark: 1
|
||||
questionMark: 1
|
||||
rightBrace: 1
|
||||
commentOnPreviousLine: 1
|
||||
other: 0
|
||||
sentencesBeginWith:
|
||||
A-Z: 1
|
||||
a-z: 0
|
||||
other: 0
|
||||
sentencesEndWith:
|
||||
basicFullStop: 0
|
||||
betterFullStop: 1
|
||||
exclamationMark: 1
|
||||
questionMark: 1
|
||||
other: '(?:\.\)(?!\h*[a-z]))|(?:(?<!(?:(?:e\.g)|(?:i\.e)|(?:etc))))\.(?!(?:[a-z]|[A-Z]|\-|\,|\.|[0-9]))'
|
||||
|
||||
14
res/bp_20433484.csv
Normal file
14
res/bp_20433484.csv
Normal file
@@ -0,0 +1,14 @@
|
||||
SNR,FER,BER,num_frame_errors
|
||||
1.0, 0.654723127035831 , 0.0888101168806285 , 201
|
||||
1.5, 0.392578125000000 , 0.0482345281862745 , 201
|
||||
2.0, 0.182561307901907 , 0.0213175188331463 , 201
|
||||
2.5, 0.0620753551575046 , 0.00605856919667188 , 201
|
||||
3.0, 0.0130012936610608 , 0.00128034396164675 , 201
|
||||
3.5, 0.00176298778188070 , 0.000150054320523940, 201
|
||||
4.0, 0.000267259157615091, 1.51866607463458e-05, 201
|
||||
4.5, 5.33724908622844e-05, 1.98370100658768e-06, 201
|
||||
5.0, 1.34177489983751e-05, 3.66497875284852e-07, 201
|
||||
5.5, 4.12634778374169e-06, 1.04658123477986e-07, 201
|
||||
6.0, 1.08000000000000e-06, 2.41176470588235e-08, 108
|
||||
6.5, 3.60000000000000e-07, 8.62745098039216e-09, 36
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
408
res/p_error.csv
408
res/p_error.csv
@@ -1,205 +1,205 @@
|
||||
index,p_error
|
||||
0,6.78e-06
|
||||
1,6.68e-06
|
||||
2,5.82e-06
|
||||
3,1.37e-06
|
||||
4,5.7e-07
|
||||
5,2.9e-07
|
||||
6,1.6e-07
|
||||
7,1.3e-07
|
||||
8,1.3e-07
|
||||
9,7e-08
|
||||
10,6e-08
|
||||
11,7e-08
|
||||
12,3e-08
|
||||
13,2e-08
|
||||
14,1e-08
|
||||
15,5e-08
|
||||
16,4e-08
|
||||
17,0.0
|
||||
18,1e-08
|
||||
19,2e-08
|
||||
20,2e-08
|
||||
21,1e-08
|
||||
22,2e-08
|
||||
23,0.0
|
||||
24,1e-08
|
||||
25,5e-08
|
||||
26,2e-08
|
||||
27,1e-08
|
||||
28,2e-08
|
||||
29,0.0
|
||||
30,1e-08
|
||||
31,1e-08
|
||||
32,1e-08
|
||||
33,3e-08
|
||||
34,0.0
|
||||
35,1e-08
|
||||
36,2e-08
|
||||
37,1e-08
|
||||
38,0.0
|
||||
39,0.0
|
||||
40,1e-08
|
||||
41,1e-08
|
||||
42,2e-08
|
||||
43,0.0
|
||||
44,1e-08
|
||||
45,0.0
|
||||
46,0.0
|
||||
47,1e-08
|
||||
48,0.0
|
||||
49,0.0
|
||||
50,0.0
|
||||
51,1e-08
|
||||
52,0.0
|
||||
53,1e-08
|
||||
54,0.0
|
||||
55,0.0
|
||||
56,0.0
|
||||
57,0.0
|
||||
58,0.0
|
||||
59,0.0
|
||||
60,1e-08
|
||||
61,0.0
|
||||
62,0.0
|
||||
63,0.0
|
||||
64,0.0
|
||||
65,0.0
|
||||
66,0.0
|
||||
67,1e-08
|
||||
68,0.0
|
||||
69,2e-08
|
||||
70,0.0
|
||||
71,0.0
|
||||
72,1e-08
|
||||
73,0.0
|
||||
74,0.0
|
||||
75,0.0
|
||||
76,0.0
|
||||
77,0.0
|
||||
78,0.0
|
||||
79,0.0
|
||||
80,0.0
|
||||
81,0.0
|
||||
82,0.0
|
||||
83,0.0
|
||||
84,0.0
|
||||
85,0.0
|
||||
86,0.0
|
||||
87,0.0
|
||||
88,0.0
|
||||
89,2e-08
|
||||
90,0.0
|
||||
91,0.0
|
||||
92,0.0
|
||||
93,0.0
|
||||
94,1e-08
|
||||
95,0.0
|
||||
96,0.0
|
||||
97,0.0
|
||||
98,0.0
|
||||
99,0.0
|
||||
100,1e-08
|
||||
101,0.0
|
||||
102,0.0
|
||||
103,0.0
|
||||
104,0.0
|
||||
105,0.0
|
||||
106,0.0
|
||||
107,0.0
|
||||
108,0.0
|
||||
109,0.0
|
||||
110,0.0
|
||||
111,0.0
|
||||
112,1e-08
|
||||
113,1e-08
|
||||
114,0.0
|
||||
115,0.0
|
||||
116,2e-08
|
||||
117,0.0
|
||||
118,0.0
|
||||
119,0.0
|
||||
120,0.0
|
||||
121,0.0
|
||||
122,0.0
|
||||
123,1e-08
|
||||
124,0.0
|
||||
125,0.0
|
||||
126,0.0
|
||||
127,0.0
|
||||
128,0.0
|
||||
129,0.0
|
||||
130,0.0
|
||||
131,0.0
|
||||
132,0.0
|
||||
133,0.0
|
||||
134,0.0
|
||||
135,0.0
|
||||
136,0.0
|
||||
137,0.0
|
||||
138,0.0
|
||||
139,0.0
|
||||
140,0.0
|
||||
141,0.0
|
||||
142,0.0
|
||||
143,0.0
|
||||
144,0.0
|
||||
145,0.0
|
||||
146,0.0
|
||||
147,0.0
|
||||
148,0.0
|
||||
149,0.0
|
||||
150,0.0
|
||||
151,0.0
|
||||
152,0.0
|
||||
153,0.0
|
||||
154,0.0
|
||||
155,0.0
|
||||
156,1e-08
|
||||
157,0.0
|
||||
158,1e-08
|
||||
159,0.0
|
||||
160,0.0
|
||||
161,0.0
|
||||
162,0.0
|
||||
163,0.0
|
||||
164,0.0
|
||||
165,0.0
|
||||
166,0.0
|
||||
167,0.0
|
||||
168,0.0
|
||||
169,0.0
|
||||
170,0.0
|
||||
171,0.0
|
||||
172,0.0
|
||||
173,0.0
|
||||
174,0.0
|
||||
175,0.0
|
||||
176,0.0
|
||||
177,0.0
|
||||
178,0.0
|
||||
179,0.0
|
||||
180,0.0
|
||||
181,0.0
|
||||
182,0.0
|
||||
183,0.0
|
||||
184,0.0
|
||||
185,0.0
|
||||
186,0.0
|
||||
187,1e-08
|
||||
188,0.0
|
||||
189,0.0
|
||||
190,0.0
|
||||
191,0.0
|
||||
192,0.0
|
||||
193,0.0
|
||||
194,0.0
|
||||
195,0.0
|
||||
196,0.0
|
||||
197,0.0
|
||||
198,0.0
|
||||
199,0.0
|
||||
200,0.0
|
||||
201,0.0
|
||||
202,0.0
|
||||
203,1e-08
|
||||
0,0.00196649
|
||||
1,0.00184247
|
||||
2,0.0016156
|
||||
3,0.00066842
|
||||
4,0.00033188
|
||||
5,0.00018416
|
||||
6,0.00011708
|
||||
7,8.057e-05
|
||||
8,5.825e-05
|
||||
9,4.342e-05
|
||||
10,3.424e-05
|
||||
11,2.667e-05
|
||||
12,2.035e-05
|
||||
13,1.79e-05
|
||||
14,1.413e-05
|
||||
15,1.173e-05
|
||||
16,1.013e-05
|
||||
17,8.33e-06
|
||||
18,7.16e-06
|
||||
19,6.06e-06
|
||||
20,5.49e-06
|
||||
21,5.25e-06
|
||||
22,3.93e-06
|
||||
23,3.75e-06
|
||||
24,3.44e-06
|
||||
25,3.04e-06
|
||||
26,2.69e-06
|
||||
27,2.67e-06
|
||||
28,2.16e-06
|
||||
29,2.46e-06
|
||||
30,1.87e-06
|
||||
31,1.7e-06
|
||||
32,1.46e-06
|
||||
33,1.62e-06
|
||||
34,1.54e-06
|
||||
35,1.26e-06
|
||||
36,1.09e-06
|
||||
37,1.1e-06
|
||||
38,8e-07
|
||||
39,8.9e-07
|
||||
40,8e-07
|
||||
41,6.1e-07
|
||||
42,7.1e-07
|
||||
43,6.6e-07
|
||||
44,5.9e-07
|
||||
45,7.2e-07
|
||||
46,6e-07
|
||||
47,5.8e-07
|
||||
48,4.4e-07
|
||||
49,5.2e-07
|
||||
50,4.2e-07
|
||||
51,4.2e-07
|
||||
52,4.3e-07
|
||||
53,4.8e-07
|
||||
54,4.6e-07
|
||||
55,3.6e-07
|
||||
56,4.5e-07
|
||||
57,3e-07
|
||||
58,3.3e-07
|
||||
59,3.4e-07
|
||||
60,2.4e-07
|
||||
61,3.4e-07
|
||||
62,2.8e-07
|
||||
63,2e-07
|
||||
64,2.8e-07
|
||||
65,2.7e-07
|
||||
66,3.2e-07
|
||||
67,1.8e-07
|
||||
68,2.7e-07
|
||||
69,1.9e-07
|
||||
70,1.7e-07
|
||||
71,1.6e-07
|
||||
72,2e-07
|
||||
73,2.8e-07
|
||||
74,1.4e-07
|
||||
75,1.5e-07
|
||||
76,2.6e-07
|
||||
77,2.4e-07
|
||||
78,1.1e-07
|
||||
79,2.2e-07
|
||||
80,2.1e-07
|
||||
81,2.6e-07
|
||||
82,2e-07
|
||||
83,1.9e-07
|
||||
84,1.8e-07
|
||||
85,1.8e-07
|
||||
86,1.9e-07
|
||||
87,2e-07
|
||||
88,2e-07
|
||||
89,1.7e-07
|
||||
90,1.8e-07
|
||||
91,2e-07
|
||||
92,2.3e-07
|
||||
93,1.5e-07
|
||||
94,1.7e-07
|
||||
95,1.4e-07
|
||||
96,1.1e-07
|
||||
97,1.6e-07
|
||||
98,2.2e-07
|
||||
99,1.1e-07
|
||||
100,1.8e-07
|
||||
101,1.4e-07
|
||||
102,1.6e-07
|
||||
103,9e-08
|
||||
104,1e-07
|
||||
105,1.3e-07
|
||||
106,9e-08
|
||||
107,1.1e-07
|
||||
108,1.3e-07
|
||||
109,1.2e-07
|
||||
110,9e-08
|
||||
111,1.7e-07
|
||||
112,1.3e-07
|
||||
113,7e-08
|
||||
114,1.2e-07
|
||||
115,6e-08
|
||||
116,1.4e-07
|
||||
117,1.3e-07
|
||||
118,1.3e-07
|
||||
119,8e-08
|
||||
120,8e-08
|
||||
121,8e-08
|
||||
122,1.1e-07
|
||||
123,2e-08
|
||||
124,1e-07
|
||||
125,1e-07
|
||||
126,9e-08
|
||||
127,9e-08
|
||||
128,1.1e-07
|
||||
129,6e-08
|
||||
130,5e-08
|
||||
131,5e-08
|
||||
132,6e-08
|
||||
133,6e-08
|
||||
134,6e-08
|
||||
135,6e-08
|
||||
136,5e-08
|
||||
137,9e-08
|
||||
138,7e-08
|
||||
139,9e-08
|
||||
140,9e-08
|
||||
141,5e-08
|
||||
142,6e-08
|
||||
143,1e-08
|
||||
144,9e-08
|
||||
145,8e-08
|
||||
146,5e-08
|
||||
147,7e-08
|
||||
148,3e-08
|
||||
149,3e-08
|
||||
150,3e-08
|
||||
151,6e-08
|
||||
152,6e-08
|
||||
153,9e-08
|
||||
154,6e-08
|
||||
155,7e-08
|
||||
156,5e-08
|
||||
157,2e-08
|
||||
158,3e-08
|
||||
159,5e-08
|
||||
160,7e-08
|
||||
161,4e-08
|
||||
162,3e-08
|
||||
163,7e-08
|
||||
164,1e-08
|
||||
165,7e-08
|
||||
166,6e-08
|
||||
167,6e-08
|
||||
168,5e-08
|
||||
169,4e-08
|
||||
170,5e-08
|
||||
171,8e-08
|
||||
172,5e-08
|
||||
173,7e-08
|
||||
174,4e-08
|
||||
175,5e-08
|
||||
176,3e-08
|
||||
177,4e-08
|
||||
178,3e-08
|
||||
179,1e-08
|
||||
180,4e-08
|
||||
181,5e-08
|
||||
182,5e-08
|
||||
183,2e-08
|
||||
184,3e-08
|
||||
185,1e-08
|
||||
186,5e-08
|
||||
187,0.0
|
||||
188,6e-08
|
||||
189,9e-08
|
||||
190,6e-08
|
||||
191,2e-08
|
||||
192,6e-08
|
||||
193,4e-08
|
||||
194,3e-08
|
||||
195,5e-08
|
||||
196,6e-08
|
||||
197,4e-08
|
||||
198,4e-08
|
||||
199,5e-08
|
||||
200,7e-08
|
||||
201,1e-07
|
||||
202,1.4e-07
|
||||
203,3.2e-07
|
||||
|
||||
|
Reference in New Issue
Block a user