Compare commits
No commits in common. "b65d7033dd6f14715e4f268689a13a297e2620dd" and "d3e5792e6cc9eebd4a19d5bd081ec44652807b70" have entirely different histories.
b65d7033dd
...
d3e5792e6c
24
.vscode/settings.json
vendored
24
.vscode/settings.json
vendored
|
|
@ -1,32 +1,10 @@
|
||||||
{
|
{
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"Amstetten",
|
|
||||||
"Baude",
|
|
||||||
"CEFR",
|
|
||||||
"Cossettini",
|
|
||||||
"Creo",
|
"Creo",
|
||||||
"Flexera",
|
"Flexera",
|
||||||
"Forgejo",
|
"Forgejo",
|
||||||
"Heitzinger",
|
|
||||||
"Hoerbiger",
|
|
||||||
"Howorka",
|
|
||||||
"IELTS",
|
"IELTS",
|
||||||
"Kaniusas",
|
|
||||||
"Karimi",
|
|
||||||
"Khodadadian",
|
|
||||||
"Leitwind",
|
|
||||||
"Mitscha",
|
|
||||||
"nanocapacitor",
|
|
||||||
"Nanocapacitors",
|
|
||||||
"Nanopore",
|
|
||||||
"Nanopores",
|
|
||||||
"nanowire",
|
|
||||||
"Pasterk",
|
|
||||||
"Redmine",
|
"Redmine",
|
||||||
"Scarbolo",
|
"Stadlbauer"
|
||||||
"Selmi",
|
|
||||||
"Stadlbauer",
|
|
||||||
"Taghizadeh",
|
|
||||||
"Weninger"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
155
cv.html
155
cv.html
|
|
@ -5,11 +5,10 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="description"
|
<meta name="description" content="The curriculum vitae of Benjamin Stadlbauer including his professional background and education">
|
||||||
content="The curriculum vitae of Benjamin Stadlbauer including his professional background and education">
|
|
||||||
<meta property="og:title" content="The CV of Benjamin Stadlbauer">
|
<meta property="og:title" content="The CV of Benjamin Stadlbauer">
|
||||||
<meta property="og:url" content="https://benjamin.stadlbauer.wien/cv">
|
<meta property="og:url" content="https://benjamin.stadlbauer.wien/cv">
|
||||||
<meta property="og:description" content="The professional and educational background of Benjamin Stadlbauer">
|
<meta property="og:description" content="The professional background and education of Benjamin Stadlbauer">
|
||||||
<meta property="og:type" content="profile">
|
<meta property="og:type" content="profile">
|
||||||
<meta property="og:locale" content="de_AT">
|
<meta property="og:locale" content="de_AT">
|
||||||
|
|
||||||
|
|
@ -25,22 +24,20 @@
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--color-primary-light: #000000;
|
--color-primary-light: #000000;
|
||||||
--color-secondary-light: #000053;
|
|
||||||
--color-background-light: #ffffff;
|
--color-background-light: #ffffff;
|
||||||
--color-primary-dark: #ffffff;
|
--color-primary-dark: #ffffff;
|
||||||
--color-secondary-dark: #ababff;
|
|
||||||
--color-background-dark: #121212;
|
--color-background-dark: #121212;
|
||||||
--color-primary: var(--color-primary-light);
|
--color: var(--color-primary-light);
|
||||||
--color-secondary: var(--color-secondary-light);
|
--color-background: var(--color-background-light)
|
||||||
--color-background: var(--color-background-light);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
color: var(--color-primary);
|
color: var(--color);
|
||||||
background-color: var(--color-background);
|
background-color: var(--color-background);
|
||||||
|
max-width: 80ch;
|
||||||
padding: 1ch;
|
padding: 1ch;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
font-family: system-ui;
|
font-family: Vollkorn, serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
li:not(:last-child) {
|
li:not(:last-child) {
|
||||||
|
|
@ -54,75 +51,68 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--color-secondary);
|
color: var(--color);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-bottom-color: var(--color-primary);
|
|
||||||
border-bottom-style: solid;
|
|
||||||
}
|
|
||||||
|
|
||||||
section#publications span.journal,
|
section#publications span.journal,
|
||||||
section#conferences span.conference {
|
section#conferences span.conference {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 600px) {
|
|
||||||
body {
|
|
||||||
padding: 2ch;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 800px) {
|
|
||||||
body {
|
|
||||||
padding: 3ch;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 900px) {
|
|
||||||
body {
|
|
||||||
max-width: 900px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
:root {
|
:root {
|
||||||
--color-primary: var(--color-primary-light);
|
--color: var(--color-primary-light);
|
||||||
--color-secondary: var(--color-secondary-light);
|
|
||||||
--color-background: var(--color-background-light);
|
--color-background: var(--color-background-light);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
:root {
|
:root {
|
||||||
--color-primary: var(--color-primary-dark);
|
--color: var(--color-primary-dark);
|
||||||
--color-secondary: var(--color-secondary-dark);
|
|
||||||
--color-background: var(--color-background-dark);
|
--color-background: var(--color-background-dark);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
|
|
||||||
html,
|
|
||||||
body {
|
body {
|
||||||
max-width: initial;
|
max-width: 72ch;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
background-color: #ffffff;
|
|
||||||
padding: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body,
|
body,
|
||||||
a {
|
a {
|
||||||
color: #000000;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
@page {
|
.no-page-break {
|
||||||
margin: 25mm;
|
break-inside: avoid;
|
||||||
size: A4;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Vollkorn;
|
||||||
|
src: url("vollkorn/Vollkorn-Regular.woff2") format("woff2");
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Vollkorn;
|
||||||
|
src: url("vollkorn/Vollkorn-Italic.woff2") format("woff2");
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 400;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Vollkorn;
|
||||||
|
src: url("vollkorn/Vollkorn-Bold.woff2") format("woff2");
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
@ -137,9 +127,8 @@
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2>Experience</h2>
|
<h2>Experience</h2>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span><a href="https://cads.engineering/">CADS Engineering GmbH, Vienna, Austria</a></span>
|
<h3><span>CADS Engineering GmbH, Vienna, Austria</span> <span>9/2020–present</span></h3>
|
||||||
<span>9/2020–present</span></h3>
|
|
||||||
<aside>Application Developer</aside>
|
<aside>Application Developer</aside>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Developing and maintaining software for CAD (computer-aided design) and PLM (product lifecycle
|
<li>Developing and maintaining software for CAD (computer-aided design) and PLM (product lifecycle
|
||||||
|
|
@ -173,7 +162,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span>XL-Operations, Amstetten, Austria</span> <span>3/2019–7/2020</span></h3>
|
<h3><span>XL-Operations, Amstetten, Austria</span> <span>3/2019–7/2020</span></h3>
|
||||||
<aside>Software developing and research</aside>
|
<aside>Software developing and research</aside>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
@ -183,34 +172,34 @@
|
||||||
<li>Partially employed, partially freelance</li>
|
<li>Partially employed, partially freelance</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span><a href="https://www.tuwien.ac.at/en/">Technical University Vienna</a></span>
|
<h3><span>Technical University Vienna</span> <span>3/2017–11/2018</span></h3>
|
||||||
<span>3/2017–11/2018</span>
|
|
||||||
</h3>
|
|
||||||
<aside>Research fellow</aside>
|
<aside>Research fellow</aside>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Performed research on nano-technology simulations and statistical modelling</li>
|
<li>Performed research on nano-technology simulations and statistical modelling</li>
|
||||||
<li>Contributed to <a href="#publications">5 scientific papers</a>, 2 as first author</li>
|
<li>Contributed to 5 scientific papers, 2 as first author</li>
|
||||||
<li>Presented group research at various <a href="#conferences">conferences and workshops</a></li>
|
<li>Presented group research at various conferences and workshops</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2>Education</h2>
|
<h2>Education</h2>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span><a href="https://www.tuwien.ac.at/en/">Technical University Vienna</a></span>
|
<h3><span><a href="https://www.tuwien.ac.at/en/">Technical University Vienna</a></span>
|
||||||
<span>10/2012–11/2018</span>
|
<span>10/2012–11/2018</span>
|
||||||
</h3>
|
</h3>
|
||||||
<aside>Tertiary</aside>
|
<aside>Tertiary</aside>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Master of science in technical mathematics<br>Thesis: <em>Fast Algorithms for Iterative Bayesian PDE
|
<li><a href="https://www.tuwien.ac.at/en/teaching/master_programs/technical_mathematics/">Master of
|
||||||
|
science in technical mathematics</a><br>Thesis: <em>Fast Algorithms for Iterative Bayesian PDE
|
||||||
Inversion</em></li>
|
Inversion</em></li>
|
||||||
<li>Bachelor of science in technical mathematics</li>
|
<li><a href="https://www.tuwien.ac.at/en/teaching/bachelor_programs/technical_mathematics/">Bachelor of
|
||||||
|
science in technical mathematics</a></li>
|
||||||
<li>Specializations: numerical mathematics, modelling, statistics, stochastic processes</li>
|
<li>Specializations: numerical mathematics, modelling, statistics, stochastic processes</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span><a href="https://www.htlwienwest.at/">Higher technical school, Vienna</a></span>
|
<h3><span><a href="https://www.htl-ottakring.at">Higher technical school, Vienna</a></span>
|
||||||
<span>9/2006–6/2011</span>
|
<span>9/2006–6/2011</span>
|
||||||
</h3>
|
</h3>
|
||||||
<aside>Secondary</aside>
|
<aside>Secondary</aside>
|
||||||
|
|
@ -220,12 +209,12 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h2>Skills</h2>
|
<h2>Skills</h2>
|
||||||
German is my native language and I am fluent and experienced in English (I have an Academic-IELTS-score of 8.0
|
German is my native language and I am fluent and experienced in English (I have an Academic-IELTS-score of 8.0
|
||||||
from 2018 which is equivalent to an CEFR-score of C1–C2).
|
from 2018 which is equivalent to an CEFR-score of C1–C2).
|
||||||
<h3>Technologies</h3>
|
<h3>Technologies</h3>
|
||||||
I have experience with and can work right away with:
|
I have experience with and can work right away with:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Java.</li>
|
<li>Java.</li>
|
||||||
<li>JavaScript,</li>
|
<li>JavaScript,</li>
|
||||||
|
|
@ -246,27 +235,27 @@
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2>Internships</h2>
|
<h2>Internships</h2>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span><a href="https://www.leitwind.com/">Leitwind</a></span> <span>2 months, 2011</span></h3>
|
<h3><span><a href="https://www.leitwind.com/">Leitwind</a></span> <span>2 months, 2011</span></h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Designed parts of platforms inside wind turbine towers using 3D CAD modelling software; Leitwind
|
<li>Designed parts of platforms inside wind turbine towers using 3D CAD modelling software; Leitwind
|
||||||
itself designs, builds and installs wind turbines</li>
|
itself designs, builds and installs wind turbines</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span><a href="https://www.hoerbiger.com/">Hoerbiger</a></span> <span>3 months, 2009, 2010</span></h3>
|
<h3><span><a href="https://www.hoerbiger.com/">Hoerbiger</a></span> <span>3 months, 2009, 2010</span></h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Worked in manufacturing of valve-rings</li>
|
<li>Worked in manufacturing of valve-rings</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h3><span><a href="https://www.a1.net/">A1 Telekom Austria</a></span> <span>2 months, 2007, 2008</span></h3>
|
<h3><span><a href="https://www.a1.net/">A1 Telekom Austria</a></span> <span>2 months, 2007, 2008</span></h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Maintained hardware and software for hundreds of PCs and laptops</li>
|
<li>Maintained hardware and software for hundreds of PCs and laptops</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
<section style="break-inside: avoid-page;">
|
<section class="no-page-break">
|
||||||
<h2>Interests</h2>
|
<h2>Interests</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Biking and hiking</li>
|
<li>Biking and hiking</li>
|
||||||
|
|
@ -282,7 +271,7 @@
|
||||||
<section id="conferences">
|
<section id="conferences">
|
||||||
<h2>Conferences</h2>
|
<h2>Conferences</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<a href="http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63803">
|
<a href="http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=63803">
|
||||||
<span class="presenter">Benjamin Stadlbauer (Presenter)</span>,
|
<span class="presenter">Benjamin Stadlbauer (Presenter)</span>,
|
||||||
<span>Bayesian Estimation for Transport Equations for Nanocapacitors</span>,
|
<span>Bayesian Estimation for Transport Equations for Nanocapacitors</span>,
|
||||||
|
|
@ -291,14 +280,16 @@
|
||||||
<span class="location">Garden Grove, California, USA</span>.
|
<span class="location">Garden Grove, California, USA</span>.
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<span class="presenter">Benjamin Stadlbauer (Presenter)</span>,
|
<a href="http://anaday2017.sbg.ac.at/program/">
|
||||||
<span>Brownian-Dynamics Simulations of Nanopore Protein Sensing</span>,
|
<span class="presenter">Benjamin Stadlbauer (Presenter)</span>,
|
||||||
<span class="conference">Austrian Numerical Analysis Day</span>,
|
<span>Brownian-Dynamics Simulations of Nanopore Protein Sensing</span>,
|
||||||
<span class="date">May 4–5, 2017</span>,
|
<span class="conference">Austrian Numerical Analysis Day</span>,
|
||||||
<span class="location">Salzburg, Austria</span>.
|
<span class="date">May 4–5, 2017</span>,
|
||||||
|
<span class="location">Salzburg, Austria</span>.
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<a href="http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23025">
|
<a href="http://meetings.siam.org/sess/dsp_programsess.cfm?SESSIONCODE=23025">
|
||||||
<span class="presenter">Benjamin Stadlbauer (Presenter)</span>,
|
<span class="presenter">Benjamin Stadlbauer (Presenter)</span>,
|
||||||
<span>Modeling the Expected Time to Reach the Recognition Element in Nanopore DNA
|
<span>Modeling the Expected Time to Reach the Recognition Element in Nanopore DNA
|
||||||
|
|
@ -313,7 +304,7 @@
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<h2>Publications</h2>
|
<h2>Publications</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<a href="http://doi.org/10.1016/j.jcp.2019.108874">
|
<a href="http://doi.org/10.1016/j.jcp.2019.108874">
|
||||||
<span>Stadlbauer, B., Cossettini, A., Pasterk, D., Scarbolo, P., Taghizadeh, L.,
|
<span>Stadlbauer, B., Cossettini, A., Pasterk, D., Scarbolo, P., Taghizadeh, L.,
|
||||||
Heitzinger, C. and Selmi, L.</span>,
|
Heitzinger, C. and Selmi, L.</span>,
|
||||||
|
|
@ -326,7 +317,7 @@
|
||||||
<span>p.108874</span>.
|
<span>p.108874</span>.
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<a href="http://doi.org/10.1088/1361-6528/ab513e">
|
<a href="http://doi.org/10.1088/1361-6528/ab513e">
|
||||||
<span>Stadlbauer, B., Mitscha–Baude, G. and Heitzinger, C.</span>,
|
<span>Stadlbauer, B., Mitscha–Baude, G. and Heitzinger, C.</span>,
|
||||||
<span>2019</span>,
|
<span>2019</span>,
|
||||||
|
|
@ -337,7 +328,7 @@
|
||||||
<span>p.075502</span>.
|
<span>p.075502</span>.
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<a href="http://doi.org/10.1007/s10825-019-01417-0">
|
<a href="http://doi.org/10.1007/s10825-019-01417-0">
|
||||||
<span>Khodadadian, A., Stadlbauer, B. and Heitzinger, C.</span>,
|
<span>Khodadadian, A., Stadlbauer, B. and Heitzinger, C.</span>,
|
||||||
<span>2020</span>,
|
<span>2020</span>,
|
||||||
|
|
@ -347,7 +338,7 @@
|
||||||
<span>pp.147–159</span>.
|
<span>pp.147–159</span>.
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<a href="http://doi.org/10.1016/j.cma.2020.112959">
|
<a href="http://doi.org/10.1016/j.cma.2020.112959">
|
||||||
<span>Taghizadeh, L., Karimi, A., Stadlbauer, B., Weninger, W.J., Kaniusas, E. and
|
<span>Taghizadeh, L., Karimi, A., Stadlbauer, B., Weninger, W.J., Kaniusas, E. and
|
||||||
Heitzinger, C.</span>,
|
Heitzinger, C.</span>,
|
||||||
|
|
@ -360,7 +351,7 @@
|
||||||
<span>p.112959</span>.
|
<span>p.112959</span>.
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li style="break-inside: avoid-page;">
|
<li class="no-page-break">
|
||||||
<a href="http://doi.org/10.1021/acsnano.1c01078">
|
<a href="http://doi.org/10.1021/acsnano.1c01078">
|
||||||
<span>Mitscha–Baude, G., Stadlbauer, B., Howorka, S. and Heitzinger,
|
<span>Mitscha–Baude, G., Stadlbauer, B., Howorka, S. and Heitzinger,
|
||||||
C.</span>,
|
C.</span>,
|
||||||
|
|
|
||||||
BIN
vollkorn/Vollkorn-Bold.woff2
Normal file
BIN
vollkorn/Vollkorn-Bold.woff2
Normal file
Binary file not shown.
BIN
vollkorn/Vollkorn-Italic.woff2
Normal file
BIN
vollkorn/Vollkorn-Italic.woff2
Normal file
Binary file not shown.
BIN
vollkorn/Vollkorn-Regular.woff2
Normal file
BIN
vollkorn/Vollkorn-Regular.woff2
Normal file
Binary file not shown.
Loading…
Reference in a new issue