diff --git a/README.md b/README.md
index 1a374a3f9b457b31329eed6f7114ed1285bd3041..dc17e7bab911d385cbc51d2b30d53b58d0f2cf8f 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,37 @@
 # Slider
 
-Slide overlay software based on beamer and inkscape. This project is currently used in coursebox. 
-The software also offers a package for jinja2 (jinjafy) which offers a handful of convenient extensions.
\ No newline at end of file
+Slide overlay software based on beamer and inkscape. This project is currently used in DTU coursebox.
+## What it does
+Slider allows you to combine free-hand drawing with a standard LaTeX beamer slideshow. It allows you to insert a special `\osvg{label}` tag in your beamer slides:
+```latex
+\begin{frame}\osvg{label}
+Various standard latex stuff
+\end{frame}
+```
+Then by running the `slider` command (see below) this will automatically create a transparent `.svg` file placed "above" the LaTeX contents 
+which allows you to do free-hand drawing. While you could do this manually, slider has the advantage it maintains the **LaTeX** contents as a non-editable background layer in the `.svg` file so you can do absolute positioning etc. Naturally, you can insert new `\osvg` tags (and keep them updated) at any point by just running the `slider` command. 
+
+### Install:
+Simple pip-install the package and you should be all set.
+```terminal
+pip install beamer-slider
+```
+You can import the package using `import slider`. 
+
+
+# Use and examples
+Go to an empty directory where you want to start a slideshow. Use the command
+```terminal
+python -m slider index.tex
+```
+This will start a small beamer project and populate it with the (few) necesary files to make the framework work. You can see the 
+generated files in the `/examples/new_project` folder. The main pdf file looks like this:
+
+
+
+to start a beamer project. Edit index.tex (see how you add overlays in the file) and after you edit the overlay `.svg` files, run
+```terminal
+slider.py index.tex
+```
+to update the overlays. Note the overlay `.svg` files by default contains all the text in the slide they are imported from. This is helpful 
+if you want to move elements around. You can always add new overlays by using the '\osvg{my_label}' command in LaTeX.
\ No newline at end of file
diff --git a/build/lib/jinjafy/__init__.py b/build/lib/jinjafy/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..0bebe70d96db3874f2f97a22a611728675673f86
--- /dev/null
+++ b/build/lib/jinjafy/__init__.py
@@ -0,0 +1,43 @@
+from jinjafy.jinjafy import jinjafy_comment
+from jinjafy.jinjafy import jinjafy_template
+from jinjafy.jinja_matlab_load import matlab_load
+# from slider import latexmk
+from jinjafy.textools import mat2table
+import subprocess
+# import os
+import platform
+# from subprocess import subprocess
+
+
+def execute_command(command, shell=True):
+    if not isinstance(command, list):
+        command = [command]
+    if not platform.uname()[0] == "Linux":
+        result = subprocess.run(command, stdout=subprocess.PIPE, shell=shell)
+        out = result.stdout
+    else:
+        out = subprocess.check_output(command, shell=shell)
+    s = out.decode("utf-8")
+    OK = True
+    return s, OK
+
+
+# def get_system_name():
+#     if is_win():
+#         return "Win"
+#     if is_compute():
+#         return "thinlinc.compute.dtu.dk"
+#     if is_cogsys_cluster():
+#         return "cogys cluster"
+
+# def execute_command(command, shell=True):
+#     if not isinstance(command, list):
+#         command = [command]
+#     # if not is_compute():
+#     # result = subprocess.run(command, stdout=subprocess.PIPE, shell=shell)
+#     # out = result.stdout
+#     # else:
+#     out = subprocess.check_output(command, shell=shell)
+#     s = out.decode("utf-8")
+#     OK = True
+#     return s, OK
\ No newline at end of file
diff --git a/build/lib/jinjafy/cache/__init__.py b/build/lib/jinjafy/cache/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..a46ef35f71399ee0932c8d376af74af0682a8e6c
--- /dev/null
+++ b/build/lib/jinjafy/cache/__init__.py
@@ -0,0 +1,8 @@
+from jinjafy.cache.simplecache import cache_update_str as cache_update_str
+from jinjafy.cache.simplecache import cache_contains_str as cache_contains_str
+
+from jinjafy.cache.simplecache import cache_update_file as cache_update_file
+from jinjafy.cache.simplecache import cache_contains_file as cache_contains_file
+
+from jinjafy.cache.simplecache import cache_update_dir as cache_update_dir
+from jinjafy.cache.simplecache import cache_contains_dir as cache_contains_dir
\ No newline at end of file
diff --git a/build/lib/jinjafy/cache/simplecache.py b/build/lib/jinjafy/cache/simplecache.py
new file mode 100644
index 0000000000000000000000000000000000000000..e24ab194c44642e727a0eae4ce6e281f3a607fd8
--- /dev/null
+++ b/build/lib/jinjafy/cache/simplecache.py
@@ -0,0 +1,94 @@
+from hashlib import md5
+import os
+import pickle
+import glob
+
+def dir_content_cache_(dir, pattern="*"):
+    fl = glob.glob(dir + "/" + pattern)
+    s = ''.join(fl)
+    key = "key_"+dir
+    return fl, s,key
+
+def cache_contains_dir(cache_base, dir, pattern="*"):
+    # fl = glob.glob(dir)
+    fl,s,key =  dir_content_cache_(dir, pattern=pattern)
+
+    v = [cache_contains_file(cache_base, f) for f in fl]
+    if all(v) and cache_contains_str(cache_base, key, s):
+        return True
+    return False
+
+def cache_update_dir(cache_base, dir, pattern="*"):
+    fl, s, key = dir_content_cache_(dir, pattern=pattern)
+    cache_update_str(cache_base, key, s)
+    for f in fl:
+        cache_update_file(cache_base, f)
+
+
+def cache_contains_str(cache_base,key=None,value=None):
+    assert(key or value)
+    value = hash_binary_(value.encode())
+    if not key: key = value
+    return cache_contains_hash(cache_base, key, value)
+
+def cache_update_str(cache_base,key,value):
+    assert(key or value)
+    value = hash_binary_(value.encode())
+    if not key: key = value
+    return cache_update_hash(cache_base, key, value)
+
+
+def cache_contains_file(cache_base,file):
+    key = os.path.abspath(file)
+    if not os.path.exists(file):
+        return False
+    value = hash_file_(file)
+    return cache_contains_hash(cache_base, key, value)
+
+def hash_file_(file):
+    import hashlib
+    hasher = hashlib.md5()
+    with open(file, 'rb') as afile:
+        buf = afile.read()
+        hasher.update(buf)
+    return hasher.hexdigest()
+
+def cache_update_file(cache_base, file):
+    key = os.path.abspath(file)
+    value = hash_file_(file)
+    return cache_update_hash(cache_base, key, value)
+
+
+def cache_contains_hash(cache_base,key,hash_val):
+    cc = load_cache(cache_base)
+    return cc.get(key,"Not found") == hash_val
+
+def cache_update_hash(cache_base,key,hash_val):
+    cc = load_cache(cache_base)
+    cc[key] = hash_val
+    save_cache(cache_base, cc)
+
+
+def hash_binary_(str_bin):
+    return md5(str_bin).hexdigest()
+
+
+def cache_file(cache_base):
+    return os.path.join(cache_base, "cache.pkl")
+
+def save_cache(cache_base, cache):
+    with open(cache_file(cache_base), 'wb') as f:
+        pickle.dump(cache,f)
+
+def load_cache(cache_base):
+    if not os.path.exists(cache_file(cache_base)):
+        save_cache(cache_base, {'default' : 42})
+        return load_cache(cache_base)
+    with open(cache_file(cache_base), 'rb') as f:
+        return pickle.load(f)
+
+
+if __name__ == "__main__":
+    cache_base = "./"
+
+    print("Hello World")
diff --git a/build/lib/jinjafy/jinja_env.py b/build/lib/jinjafy/jinja_env.py
new file mode 100644
index 0000000000000000000000000000000000000000..102ef966eba2420c374279e5d1d32d67cdfaa4ba
--- /dev/null
+++ b/build/lib/jinjafy/jinja_env.py
@@ -0,0 +1,136 @@
+import numpy as np
+from fractions import Fraction
+import jinja2
+
+
+def format_list_symbols(list, pattern, symbol="x", seperator=",\ "):
+    return format_join(list, pattern=symbol+"_{%i}", seperator=seperator)
+
+
+def n2w(i):
+    w = {0: 'zero', 1: 'one', 2: 'two', 3: 'three', 4: 'four', 5: 'five', 6: 'six', 7: 'seven', 8: 'eight',
+         9: 'nine', 10: 'ten'}
+    return i if i < 0 or i > 10 else w[i]
+
+
+def format_list(list_, pattern):
+    list_ = tolist(list_)
+    return [pattern % s for s in list_]
+
+
+def format_join(list, pattern, seperator=",\ ",withand=False,withor=False,lastsep=None):
+    ls = format_list(list, pattern)
+    if withand:
+        return seperator.join(ls[:-1]) + "$, and $" + ls[-1]
+    if withor:
+        return seperator.join(ls[:-1]) + "$, or $" + ls[-1]
+    return seperator.join(ls)
+
+
+def format_join_enum(list, pattern="x_{%i}=%g", seperator=",\ "):
+    list = tolist(list)
+    return seperator.join(format_list( zip( range(1,len(list)+1 ), list), pattern))
+
+
+def as_set(l, symbol='f_{%i}'):
+    if type(l) != list and type(l) != np.ndarray:
+        l = [l]
+    l = tolist(l)
+    s = [symbol%(i,) for i in l]
+    s = '\{' + ", ".join(s) + "\}"
+    return s
+
+
+def as_set_list(ll, symbol='%g'):
+    s = []
+    for l in ll.flat:
+        l = tolist(l)
+        s.append(as_set(l, symbol))
+    s = ["$"+ds+"$" for ds in s]
+    s = ", ".join(s)
+    return s
+
+
+def infty(n,tol=10^8):
+    if n > tol:
+        s = '\infty'
+    else:
+        s = str(n)
+    return s
+
+
+def flatten(ar):
+    v = []
+    if type(ar) is np.ndarray or type(ar) is np.array:
+        for x in ar.flat:
+            m = flatten(x)
+            if type(m) == list:
+                v = v + m
+            else:
+                v.append(m)
+    else:
+        v = ar
+    return v
+
+
+def tolist(l):
+    if type(l) == np.ndarray:
+        l2 = []
+        for x in l.flat:
+            l2.append(  x.tolist() if isinstance(x,np.ndarray) else x  )
+        l = l2
+
+    elif type(l) == list or hasattr(l, '__iter__'):
+        pass
+    else:
+        l = [l]
+    return l
+
+
+def jget(A,n=0):
+    A = flatten(A)
+    return A[n]
+
+
+def as_rational(x, output='tex', always_frac=False):
+    if type(x) == jinja2.runtime.Undefined:
+        return "UNDEFINED(jinja2)"
+    b = Fraction.from_float(x).limit_denominator(10000)
+    s = "output_error_in_as_rational_filter"
+    if output == 'tex':
+        if (b.denominator == 1 or b.numerator == 0) and not always_frac:
+            s = '%i'%b.numerator
+        else:
+            s = "\\frac{%i}{%i}"%(b.numerator, b.denominator)
+    return s
+
+
+def mylen(l):
+    if isinstance(l, np.ndarray):
+        sz = l.size
+    else:
+        sz = len(l)
+    return sz
+
+
+def permute_exam_answers(section,permutation):
+    v = section.split("\\item")
+    v = v[:5] + v[-1:]
+    assert(len(v) == 6)
+    permutation = [0] + permutation + [5]
+    v[0] = "\\begin{answer}[%i]\n"%permutation.index(1)
+    v2 = "\\item".join( [v[i] for i in permutation] )
+    return v2
+
+
+def startswithvowel(value):
+    if value.lower().startswith(("a", "e", "i", "o","u")):
+        return True
+    else:
+        return False
+
+
+def aan(s):
+    if s.startswith("no "):
+        return ""
+    return "an" if startswithvowel(s) else "a"
diff --git a/build/lib/jinjafy/jinja_matlab_load.py b/build/lib/jinjafy/jinja_matlab_load.py
new file mode 100644
index 0000000000000000000000000000000000000000..c67581542aaf2fc407f65489a2db9a1713770335
--- /dev/null
+++ b/build/lib/jinjafy/jinja_matlab_load.py
@@ -0,0 +1,149 @@
+import numpy as np
+import scipy.io as spio
+
+def matlab_load(mfile):
+    j = mfile.rfind('.')
+    if j > -1:
+        ex = mfile[j + 1:]
+        base = mfile[:j]
+    else:
+        ex = ''
+        base = mfile
+    mat = loadmat(base + '.mat')
+    mat = uuroll(mat)
+    mat = fix_1_arrays(mat)
+    mat = fix_strings(mat)
+    mat = fix_simple_lists(mat)
+    return mat
+
+
+def loadmat(filename):
+    '''
+    this function should be called instead of direct spio.loadmat
+    as it cures the problem of not properly recovering python dictionaries
+    from mat files. It calls the function check keys to cure all entries
+    which are still mat-objects
+    '''
+    data = spio.loadmat(filename,struct_as_record=False)
+    data2 = _check_keys(data)
+    return data2
+
+
+def _check_keys(dd):
+    '''
+    checks if entries in dictionary are mat-objects. If yes
+    todict is called to change them to nested dictionaries
+    '''
+    if isinstance(dd, spio.matlab.mio5_params.mat_struct):
+        dd = _check_keys(_todict(dd))
+    elif type(dd) == dict:
+        for key in dd:
+            kv = flist(dd[key])
+            if type( kv ) == spio.matlab.mio5_params.mat_struct:
+                dd[key] = _check_keys(kv)
+            else:
+                dd[key] = _check_keys(dd[key])
+    elif type(dd) == list:
+        dd = [_check_keys(l) for l in dd]
+    elif type(dd) == np.ndarray:
+        if dd.dtype.str == '|O' and dd.size > 0:
+            if type( flist(dd.flat[0]) ) == spio.matlab.mio5_params.mat_struct:
+                for i in range( dd.size ):
+                    dd.flat[i] = _check_keys( flist( dd.flat[i]) )
+        else:
+            for i in range(dd.size):
+                dd.flat[i] = _check_keys(dd.flat[i])
+
+    return dd
+
+def fix_simple_lists(l):
+    if type(l) == dict:
+        for k,v in l.items():
+            l[k] = fix_simple_lists(v)
+    elif type(l) == np.ndarray and l.dtype.name == "uint8" and l.shape[0] == 1 and l.ndim == 2:
+        # l = l.tolist()
+        l = l.tolist()[0]
+    return l
+
+def apply_recursively(l, myfun):
+    if type(l) == dict:
+        for k,v in l.items():
+            l[k] = apply_recursively(v, myfun)
+    elif type(l) == np.ndarray and l.dtype.str == '|O' and l.size > 0:
+        for i in range( l.size ):
+            l.flat[i] = apply_recursively( l.flat[i], myfun)
+    else:
+        l = myfun(l)
+    return l
+
+
+def fix_1_arrays(l):
+    def _fix_1_arrays(l):
+        if type(l) == np.ndarray and l.size == 1 and np.issubdtype(l.dtype, np.number):
+            l = l.flat[0]
+        return l
+    l = apply_recursively(l, _fix_1_arrays)
+    return l
+
+
+def fix_strings(l):
+    if type(l) == dict:
+        for k,v in l.items():
+            l[k] = fix_strings(v)
+    elif type(l) == np.ndarray and l.size > 0:
+        tp = type(superpop(l.flat[0]))
+        if tp == str or tp == np.str_:
+            l = [superpop(x) for x in l.flat ]
+            if len(l) == 1:
+                l = l.pop()
+    return l
+
+
+def superpop(l):
+    if type(l) == list and len(l) == 1:
+        return superpop(l[0])
+    if type(l) == np.ndarray and l.size == 1:
+        return superpop(l.tolist())
+    return l
+
+
+def flist(l):
+    if type(l) == list and len(l) == 1:
+        l = flist( l.pop() )
+
+    if type(l) == np.ndarray and l.dtype.name == "object":
+        l3 = [flist(v) for v in l.flat]
+        l = flist( l3 )
+    return l
+
+
+def _todict(matobj):
+    '''
+    A recursive function which constructs from matobjects nested dictionaries
+    '''
+    dict = {}
+    for strg in matobj._fieldnames:
+        elem = matobj.__dict__[strg]
+        if isinstance(elem, spio.matlab.mio5_params.mat_struct):
+            dict[strg] = _todict(elem)
+        else:
+            dict[strg] = elem
+    return dict
+
+
+def uuroll(v):
+    if type(v) is dict:
+        for key,val in v.items():
+            v[key] = uuroll(val)
+    if type(v) is np.ndarray or type(v) is np.array:
+        for j in range(v.size):
+            v.flat[j] = uuroll(v.flat[j])
+    return v
+
+
+def uroll(mat):
+    for k in mat.keys():
+        v = mat[k]
+        v = uuroll(v)
+        mat[k] = v
+    return mat
\ No newline at end of file
diff --git a/build/lib/jinjafy/jinjafy.py b/build/lib/jinjafy/jinjafy.py
new file mode 100644
index 0000000000000000000000000000000000000000..43da4a7568b76ee8e1d479026bb4f2b032cf5e3f
--- /dev/null
+++ b/build/lib/jinjafy/jinjafy.py
@@ -0,0 +1,214 @@
+import inspect
+import jinja2
+from math import floor, log10
+import os
+import numpy as np
+from jinjafy import jinja_env
+
+
+def jinjafy_template(data,file_in,file_out=None, filters={},template_searchpath=None):
+    if template_searchpath:
+        file_in = os.path.relpath(file_in, template_searchpath)
+
+    return jinjafy_comment(data, file_in=file_in, file_out=file_out,jinja_tag=None, filters=filters,template_searchpath=template_searchpath)
+
+
+def jinjafy_comment(data,file_in=None,file_out=None,jinja_tag="jinja",jinja_code=None,trim_whitespace=True,trim_comments=True,comment_char="#",
+                    filters={},template_searchpath=None):
+    # Extract all comments from the given file and jinjafy them.
+    if file_in is None:
+        frame = inspect.stack()[1]
+        module = inspect.getmodule(frame[0])
+        file_in = module.__file__
+    elif not jinja_tag:
+        trim_comments=False
+        trim_whitespace=False
+
+    if not template_searchpath:
+        with open(file_in,'r') as f:
+            s = f.read()
+            if jinja_tag:
+                stag = "<" + jinja_tag + ">"
+                etag = "</" + jinja_tag + ">"
+
+                i_start = s.find(stag)
+                i_end = s.find(etag)
+                s = s[i_start+len(stag):i_end]
+            ss = [s]
+            if trim_comments:
+                ss = [ds.strip()[1:] for ds in s.splitlines() if len(ds.strip()) > 0 and ds.strip()[0] in ["#", "%"] ]
+            if trim_whitespace:
+                ss = [ds.strip() for ds in ss]
+
+            jinja_code = '\n'.join(ss)
+
+    from jinjafy.snipper import SnipperExtension
+    extensions = [SnipperExtension]
+    if template_searchpath:
+        if not isinstance(template_searchpath, list):
+            template_searchpath = [template_searchpath]
+        template_searchpath = [ts.replace("\\", "/") for ts in template_searchpath]
+        templateLoader = jinja2.FileSystemLoader(searchpath=template_searchpath)
+        env = jinja2.Environment(lstrip_blocks=True, trim_blocks=True,loader=templateLoader, extensions=extensions)
+    else:
+        env = jinja2.Environment(lstrip_blocks=True, trim_blocks=True, extensions=extensions)
+
+    import math
+    env.globals['exp'] = math.exp
+    env.globals['sqrt'] = math.sqrt
+    env.globals['cos'] = math.cos
+    env.globals['sin'] = math.sin
+
+    env.globals['mround'] = mround
+    env.globals['bold'] = bold
+    env.globals['fmat'] = fmat
+    env.globals['enumerate'] = enumerate
+    env.globals['zip'] = zip
+    env.globals['ensure_numpy'] = ensure_numpy
+    env.globals['transpose'] = transpose
+    import math
+    env.globals['ceil'] = math.ceil
+    env.globals['floor'] = math.floor
+
+
+    from pylatexenc import latexencode
+    env.globals['utf8tolatex'] = latexencode.utf8tolatex
+    env.globals['as_set'] = jinja_env.as_set
+    env.globals['as_set_list'] = jinja_env.as_set_list
+    env.globals['len'] = jinja_env.mylen
+    env.globals['get'] = jinja_env.jget
+    env.globals['tolist'] = jinja_env.tolist
+
+    filters['as_set'] =  jinja_env.as_set
+    filters['format_list'] =jinja_env.format_list
+    filters['format_join'] = jinja_env.format_join
+    filters['format_join_enum'] = jinja_env.format_join_enum
+    filters['pm'] = lambda x: f" {x}" if x < 0 else f"+{x}"
+    filters['bold'] = bold
+    filters['capfirst'] = lambda x: (x[0].upper() + x[1:] if len(x) > 1 else x.upper()) if x != None and isinstance(x, str) else x
+    filters['lowerfirst'] = lambda x: (x[0].lower() + x[1:] if len(x) > 1 else x.lower()) if x != None and isinstance(x, str) else x
+    filters['infty'] = jinja_env.infty
+    filters['n2w'] = jinja_env.n2w
+    def latex_url(url):
+        if not isinstance(url, str):
+            return url
+        url = url.replace("%", r"\%")
+        return url
+    filters['latex_url'] = latex_url
+    filters['format_list_symbols'] = jinja_env.format_list_symbols
+    filters['mround'] = mround
+    def eround(val,l):
+        x = str(mround(val, l))
+        if l == 0:
+            return x
+        if '.' not in x:
+            x = x + "."
+        n = l - (len(x) - x.find(".") - 1)
+        if n > 0:
+            x = x + "0"*n
+        return x
+
+    filters['eround'] = eround
+    filters['get'] = jinja_env.jget
+    filters['flatten'] = jinja_env.flatten
+    filters['aan'] = jinja_env.aan
+    filters['bracket'] = bracket
+    filters['tolist'] = jinja_env.tolist
+    filters['rational'] = jinja_env.as_rational
+    filters['permute_exam_answers'] = jinja_env.permute_exam_answers
+    env.filters.update(filters)
+
+    data['block_start_string'] = '{%'
+    if not template_searchpath:
+        jinja_out = env.from_string(jinja_code).render(data)
+    else:
+        file_in = file_in.replace("\\", "/")
+        template = env.get_template(file_in)
+        jinja_out = template.render(data)
+
+    if file_out is not None:
+        with open(file_out,'w',encoding='utf-8') as f:
+            # jinja_out = jinja_out.encode('utf-8')
+
+            f.write(jinja_out)
+            print("Writing to: " + file_out)
+
+    return jinja_out
+
+
+def bold(bob,d=True) :
+    if not isinstance(bob, str) :
+        bob = str(bob)
+    if d :
+        bob = '\\textbf{' + bob +"}"
+    return bob
+
+
+def fmat(bob,l=2,dobold=False) :
+    bob = mround(bob,l)
+    bob = bold(bob, dobold)
+    return bob
+
+def bracket(s):
+    return "{"+str(s)+"}"
+
+def un2str(x, xe, precision=2):
+    """pretty print nominal value and uncertainty
+
+        x  - nominal value
+        xe - uncertainty
+        precision - number of significant digits in uncertainty
+
+        returns shortest string representation of `x +- xe` either as
+        x.xx(ee)e+xx
+        or as
+        xxx.xx(ee)"""
+    # base 10 exponents
+    x_exp = int(floor(log10(x)))
+    xe_exp = int(floor(log10(xe)))
+
+    # uncertainty
+    un_exp = xe_exp - precision + 1
+    un_int = round(xe * 10 ** (-un_exp))
+
+    # nominal value
+    no_exp = un_exp
+    no_int = round(x * 10 ** (-no_exp))
+
+    # format - nom(unc)exp
+    fieldw = x_exp - no_exp
+    fmt = '%%.%df' % fieldw
+    result1 = (fmt + '(%.0f)e%d') % (no_int * 10 ** (-fieldw), un_int, x_exp)
+
+    # format - nom(unc)
+    fieldw = max(0, -no_exp)
+    fmt = '%%.%df' % fieldw
+    result2 = (fmt + '(%.0f)') % (no_int * 10 ** no_exp, un_int * 10 ** max(0, un_exp))
+
+    # return shortest representation
+    if len(result2) <= len(result1):
+        return result2
+    else:
+        return result1
+
+
+def mround(val, l=2):
+    if not isinstance(l, int):
+        return un2str(val, l, 1)
+    else:
+        if isinstance(val, np.ndarray):
+            return np.round(val * 10 ** l) / (10 ** l)
+        else:
+            return round(val * 10 ** l) / (10 ** l)
+
+
+def transpose(X):
+    return np.transpose( ensure_numpy( X) )
+
+
+def ensure_numpy(X):
+    if type(X) != np.ndarray:
+        X = np.asarray(X)
+    if X.ndim == 1:
+        X = np.transpose( np.expand_dims(X,1) )
+    return X
\ No newline at end of file
diff --git a/build/lib/jinjafy/plot/__init__.py b/build/lib/jinjafy/plot/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..d2254a59f55bb578875e2f0e81c6aa4264e14025
--- /dev/null
+++ b/build/lib/jinjafy/plot/__init__.py
@@ -0,0 +1 @@
+# from thtools.plot.plot_helpers import *
diff --git a/build/lib/jinjafy/plot/plot_helpers.py b/build/lib/jinjafy/plot/plot_helpers.py
new file mode 100644
index 0000000000000000000000000000000000000000..594e7182f50c536f1b6c5b7d8542f631325b1425
--- /dev/null
+++ b/build/lib/jinjafy/plot/plot_helpers.py
@@ -0,0 +1,48 @@
+import matplotlib.pyplot as plt
+import numpy as np
+import seaborn as sns
+import inspect
+import os
+from datetime import datetime
+
+def subplots(nrows=2, ncols=2, size_inches=(10,12), *args):
+    fig,axx = plt.subplots(nrows, ncols, *args)
+    fig.set_size_inches(size_inches[0], size_inches[1])
+    if not isinstance(axx, list):
+        axx = np.asarray(axx, dtype=np.object).reshape((nrows, ncols))
+    return fig, axx
+
+def get_colors(palette="dark",max_colors=5):
+    return sns.color_palette(palette, max_colors)
+
+
+def watermark_plot(extra="", nback=2, fz_y=10):
+    # from slider.thtools_base import watermark_string
+    s = watermark_string(nback=nback)
+    plt.figtext(0.05, 0.95, s)
+
+
+
+def watermark_string(nback=2):
+
+
+    tm =  datetime.now().strftime('%b-%d-%I:%M%p')
+    # for line in traceback.format_stack():
+    #     #     print(line.strip())
+    v = inspect.stack()
+    ss = []
+    j = 0
+    for i in range(len(v)):
+        if "plot_helpers.py" in v[i].filename: continue
+        ss.append( os.path.basename( v[i].filename) )
+        j = j + 1
+        if j > nback: break
+    # from thtools import execute_command
+    from jinjafy import execute_command
+    v, _ = execute_command("git rev-parse --short HEAD".split())
+
+    ss.append(tm)
+    return ('/'.join(ss) + f" @{v}").strip()
+
+
+
diff --git a/build/lib/jinjafy/snipper.py b/build/lib/jinjafy/snipper.py
new file mode 100644
index 0000000000000000000000000000000000000000..ad55d29ae0dcc9746768c017852d129e98ed5d3c
--- /dev/null
+++ b/build/lib/jinjafy/snipper.py
@@ -0,0 +1,89 @@
+from jinja2 import nodes
+from jinja2.ext import Extension
+import os
+
+
+class SnipperExtension(Extension):
+    # a set of names that trigger the extension.
+    tags = set(['snipper'])
+
+    def __init__(self, environment):
+        super(SnipperExtension, self).__init__(environment)
+
+        # add the defaults to the environment
+        environment.extend(
+            fragment_cache_prefix='',
+            fragment_cache=None
+        )
+        self.ofile = ""
+
+    def parse(self, parser):
+        # the first token is the token that started the tag.  In our case
+        # we only listen to ``'cache'`` so this will be a name token with
+        # `cache` as value.  We get the line number so that we can give
+        # that line number to the nodes we create by hand.
+        lineno = next(parser.stream).lineno
+
+        # now we parse a single expression that is used as cache key.
+        args = [parser.parse_expression()]
+        ofile = os.path.join(os.path.dirname(parser.filename), args[0].value)
+        args[0].value = ofile
+        if not os.path.isdir(os.path.dirname(ofile)):
+            os.makedirs(os.path.dirname(ofile))
+        self.ofile = ofile
+        print("Snipper args", args, "ofile", ofile)
+
+        # if there is a comma, the user provided a timeout.  If not use
+        # None as second parameter.
+        if parser.stream.skip_if('comma'):
+            args.append(parser.parse_expression())
+        else:
+            args.append(nodes.Const(None))
+
+        # now we parse the body of the cache block up to `endcache` and
+        # drop the needle (which would always be `endcache` in that case)
+        body = parser.parse_statements(['name:endsnipper'], drop_needle=True)
+
+        # now return a `CallBlock` node that calls our _cache_support
+        # helper method on this extension.
+        return nodes.CallBlock(self.call_method('_snip_method', args),
+                                [], [], body).set_lineno(lineno)
+
+        # parser.environment.loader.searchpath
+        # parser.parse_statements(body)
+        return body
+
+    def _snip_method(self, name, timeout, caller):
+        # rv = 0
+        # key = self.environment.fragment_cache_prefix + name
+
+        # try to load the block from the cache
+        # if there is no fragment in the cache, render it and store
+        # it in the cache.
+        # rv = self.environment.fragment_cache.get(key)
+        # if rv is not None:
+        #     return rv
+        rv = caller()
+        outfile = name
+        print("Actually snipping to ", self.ofile, "name", name, "timeout", timeout)
+        with open(name, 'w') as f:
+            f.write(rv)
+        # print("Actually snipping to ", self.ofile, 'writing', rv)
+
+        # self.environment.fragment_cache.add(key, rv, timeout)
+        return rv
+
+
+    def _cache_support(self, name, timeout, caller):
+        """Helper callback."""
+        key = self.environment.fragment_cache_prefix + name
+
+        # try to load the block from the cache
+        # if there is no fragment in the cache, render it and store
+        # it in the cache.
+        rv = self.environment.fragment_cache.get(key)
+        if rv is not None:
+            return rv
+        rv = caller()
+        self.environment.fragment_cache.add(key, rv, timeout)
+        return rv
\ No newline at end of file
diff --git a/build/lib/jinjafy/textools.py b/build/lib/jinjafy/textools.py
new file mode 100644
index 0000000000000000000000000000000000000000..511932d118708e006a70e908b681fd50643a8647
--- /dev/null
+++ b/build/lib/jinjafy/textools.py
@@ -0,0 +1,187 @@
+from jinjafy import jinjafy_comment
+import numpy as np
+
+#"<jinja1>"
+#\begin{tabular}{ {{cc}} }
+# {% if bookstabs %}\toprule{% endif %}
+# {% if vvlabels %}
+#   {% for vl in vvlabels %}
+#       {% if loop.index > 1 %} & {% endif %}  \multicolumn{ {{vl[0]}} }{ {{vl[2]}} }{ {{vl[1]}} }
+#   {% endfor %} \\
+#   {% for vl in vvlabels %}
+#       {% if vl[3] %}
+# 	     \cmidrule(r){ {{vl[3]}} }
+#       {% endif %}
+#   {% endfor %}
+# {% endif %}
+# {% for row in X %}
+# {% if bookstabs and loop.index == 2%}\midrule{% endif %}
+# {% for c in row %}
+# {% if loop.index > 1 %} & {% endif %} {{ c['tex'] }} {% if loop.index == W %} \\ {% endif %}
+# {% endfor %}
+# {% endfor %}
+# {% if bookstabs %}\bottomrule{% endif %}
+#\end{tabular}
+#</jinja1>
+# Convert a matrix to a table super quickly
+def mat2table(X,vlabels=None,hlabels=None,file_out = None, bookstabs=True, vvlabels=None,plot=False,pdf_out=None, standalone=False):
+    X, Xx, Xerr,Xdl = fmat_X2dict(X)
+    if pdf_out: plot = True
+    #%%
+    if plot:
+        import matplotlib.pyplot as plt
+        #plt.style.use('ggplot')
+        plt.style.use('seaborn')
+        fig = plt.figure()
+        ax = fig.gca()
+        #ax = plt.gca()
+        ls = []
+        for j in range(X.shape[0]):
+            ls.append(ax.plot(Xx[j, :]).pop() )
+
+            if Xerr[j]:
+                plt.errorbar(range(X.shape[1]), Xx[j,:], yerr=Xerr[j], color=ls[j].get_color())
+
+            for i in range( X.shape[1] ):
+                if 'xs' in X[j,i]:
+                    plt.plot([i]*len(X[j,i]['xs']), X[j,i]['xs'], '.', color=ls[j].get_color())
+
+        if vlabels:
+            plt.legend(ls, vlabels, bbox_to_anchor=(1.04, 1), loc="upper left")
+        if hlabels:
+            plt.xticks(range(X.shape[1]), hlabels[1:])
+        #plt.subplots_adjust(right=0.5)
+        plt.tight_layout(rect=[0, 0, 1, 1])
+        plt.show()
+        #if pdf_out:
+        #    fig.savefig(pdf_out, bbox_inches='tight')
+
+
+    if vlabels:
+        vltex =  [{'tex': v} for v in vlabels]
+        for i in range(len(Xdl)):
+            Xdl[i] = [vltex[i]] + Xdl[i]
+
+    if hlabels:
+        Xdl = [ [{'tex': h} for h in hlabels] ] + Xdl
+
+    if vvlabels:
+        cc = 1
+        for i in range(len(vvlabels)):
+            if len(vvlabels[i]) < 3:
+                vvlabels[i].append("c")
+            dl = vvlabels[i][0]
+            if dl == 1:
+                a = None
+            else:
+                a = "%i-%i"%(cc, cc+dl-1)
+            cc = cc + dl
+            vvlabels[i] = vvlabels[i] + [a]
+
+    H = len(Xdl)
+    W = len(Xdl[0])
+    cc = ["c" for i in range(W)]
+    if vlabels:
+        cc[0] = "l"
+    cc = "".join(cc)
+
+    def fmat(x):
+        if isinstance(x, int):
+            x = str(x)
+        if isinstance(x, float):
+            x = "%2.3f"%x
+        return x
+
+    #X = [ [fmat(x) for x in row] for row in X]
+
+    data = {'X' : Xdl, 'hlabels': hlabels, 'vlabels': vlabels, 'cc': cc, 'H':H, 'W': W, 'bookstabs': bookstabs,
+            'vvlabels': vvlabels}
+
+    from jinjafy.jinjafy import jinjafy_comment
+    s = jinjafy_comment(data,jinja_tag="jinja1")
+    if file_out:
+        print("Writing to: " + file_out)
+
+        if standalone:
+            s = jinjafy_comment({"s": s}, jinja_tag="jinja3")
+
+        with open(file_out, 'w') as f:
+            f.write(s)
+        if standalone:
+
+            from slider import latexmk
+            latexmk(file_out)
+
+
+    return s
+# "<jinja3>"
+# \documentclass[crop]{standalone}
+# \usepackage{booktabs}
+# \usepackage{siunitx}
+# \begin{document}
+# {{s}}
+# \end{document}
+# </jinja3>
+
+def fmat_X2dict(X):
+    X = np.asarray(X, dtype=np.object)
+    if len(X.shape) > 2:
+        X2 = np.ndarray(X.shape[:2], dtype=np.object)
+        for i in range(X.shape[0]):
+            for j in range(X.shape[1]):
+                X2[i, j] = X[i, j, :].squeeze()
+        X = X2
+    X = np.reshape(X, X.shape[:2])
+
+    for i in range(X.shape[0]):
+        for j in range(X.shape[1]):
+            dx = X[i,j]
+            if isinstance(dx, (list, np.ndarray)):
+                dx = [x for x in np.ravel(dx)]
+
+            if not isinstance(dx, dict):
+                dx = {'x': dx}
+            elif not isinstance(dx['x'], str):
+                x = dx['x']
+                # if isinstance(x, np.ndarray):
+                if 'tex' not in dx:
+                    dx['std'] = np.std(x)
+                    dx['std_mean'] = np.std(x) / np.sqrt( len(x))
+                    dx['xs'] = x
+                    dx['x'] = np.mean(x)
+                    x2, u2 = mround( dx['x'], dx['std_mean'] )
+
+                    dx['tex'] = '\\SI{%g\\pm %.2f}{}'%(x2, u2)
+
+            if 'tex' not in dx:
+                dx['tex'] = dx['x']
+
+            X[i,j] = dx
+
+    Xerr = [None] * X.shape[0]
+    Xx = np.zeros(X.shape)
+
+    for i in range(X.shape[0]):
+        if "std" in X[0,0]:
+            Xerr[i] = [dx['std_mean'] for dx in X[i]]
+
+        for j in range(X.shape[1]):
+            Xx[i,j] = X[i,j]['x']
+
+    Xdl = []
+    for i in range(X.shape[0]):
+        dx = []
+        for j in range(X.shape[1]):
+            dx.append(X[i,j])
+        Xdl.append(dx)
+
+
+    return X,Xx,Xerr,Xdl
+
+import math
+def mround(x,u):
+    n = np.floor(np.log10(x)+1)
+    dx = np.round(x / np.power(10.0, n), 2)
+    du = np.round(u / np.power(10.0, n), 2)
+    return dx * np.power(10, n), du * np.power(10.0,n)
+
diff --git a/build/lib/slider/DTU_Beamer_files/02450_beamer_preamble.tex b/build/lib/slider/DTU_Beamer_files/02450_beamer_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2dd8694d7ac59705810fe9deb9816ad20f034655
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/02450_beamer_preamble.tex
@@ -0,0 +1,93 @@
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage{pgfplots}
+\pgfplotsset{compat=newest}
+\usepackage{booktabs}
+\usepackage{siunitx}
+
+\usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
+\svgpath{osvgs/}
+
+\usepackage{url}
+\usepackage{pmboxdraw}
+\usepackage{amssymb}
+\usepackage{pgffor}
+	
+\usetheme[department=compute]{DTU}
+\newcommand{\tabitem}{{\color{dtured}$\bullet$} }
+\usepackage[absolute,overlay]{textpos}
+\textblockorigin{0mm}{0mm}
+
+\setlength{\TPHorizModule}{\paperwidth}
+\setlength{\TPVertModule}{\paperheight}
+
+% Latin Modern
+\usepackage{lmodern}
+\newcommand{\overlabel}[1]{ \begin{textblock}{1}(0,0) \url{#1} \end{textblock} }
+
+% Verdana font type
+%\usepackage{verdana}
+% Helvetica
+%\usepackage{helvet}
+% Times (text and math)
+%\usepackage{newtx, newtxmath}
+
+% \usetheme[department=compute]{DTU}
+
+\makeatletter
+
+\def\osvg{\@ifnextchar[{\@with}{\@without} }
+\def\@with[#1]#2{
+	\foreach[count=\n] \x in {#1}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf}{
+			\begin{textblock}{1}(0,0)
+				\includegraphics<\x>[width=1.0\linewidth]{osvgs/x_do_not_edit_#2-l\n_nofonts}
+			\end{textblock}
+			}{ File: \url{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf} does not exist; bad layer import? Check \url{osvgs/#2.svg} including layer information.
+			}
+		}
+	}
+	\olabel{#2}
+}
+\def\@without#1{
+	% Try to include first 10 layer files if they are there.
+	\foreach[count=\n] \x in {1,...,10}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#1-l\n_nofonts.pdf}{
+				\begin{textblock}{1}(0,0)
+					\includegraphics<\n->[width=1.0\linewidth]{osvgs/x_do_not_edit_#1-l\n_nofonts}
+				\end{textblock}
+			}{
+		}
+	}
+	}
+	\olabel{#1}
+}
+\newcommand{\olabel}[1]{
+	\iftoggle{overlabel_includelabels}{
+		\begin{textblock}{1}(0,0) \url{#1} \end{textblock}
+	}{ 
+	\begin{textblock}{1}(0,0) 	{\color{white} \url{#1} } \end{textblock}
+	}
+}
+
+\makeatother
+
+\makeatother
+\ifdefined\bluem
+% nothing.
+\else
+
+\newcommand\bluem[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{ #1 }}}
+\newcommand\redm[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{ #1 }}}
+\newcommand\greenm[1]{{\textcolor[HTML]{398E00}{ #1 }}}
+\newcommand\yellowm[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{ #1 }}}
+				
+\newcommand\bluet[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{\textbf{#1}}}}
+\newcommand\redt[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{\textbf{#1}}}}
+\newcommand\greent[1]{{\textcolor[HTML]{398E00}{\textbf{#1}}}}
+\newcommand\yellowt[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{\textbf{#1}}}}
+\fi
\ No newline at end of file
diff --git a/build/lib/slider/DTU_Beamer_files/02450_lectures_base.tex b/build/lib/slider/DTU_Beamer_files/02450_lectures_base.tex
new file mode 100644
index 0000000000000000000000000000000000000000..c8c834a522846e935a44878b7140c5f2d0a6ebfe
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/02450_lectures_base.tex
@@ -0,0 +1,25 @@
+\documentclass[aspectratio=43]{beamer}
+\usepackage{etoolbox}
+\newtoggle{overlabel_includesvgs}
+\newtoggle{overlabel_includelabels}
+
+\toggletrue{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+
+\input{02450_beamer_preamble}
+
+\IfFileExists{generated/slide1.tex}{ \input{generated/slide1} }{ }
+\begin{document}
+	\begin{frame}
+	\maketitle
+\end{frame}
+\begin{frame}
+\IfFileExists{generated/slide2.tex}{ \input{generated/slide2} }{ }
+\end{frame}
+\begin{frame}
+\IfFileExists{generated/slide3.tex}{ \input{generated/slide3} }{ }
+\end{frame}
+
+\input{svg_converted_slides}
+
+\end{document}
diff --git a/build/lib/slider/DTU_Beamer_files/beamer_slider_preamble.tex b/build/lib/slider/DTU_Beamer_files/beamer_slider_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2dd8694d7ac59705810fe9deb9816ad20f034655
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/beamer_slider_preamble.tex
@@ -0,0 +1,93 @@
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage{pgfplots}
+\pgfplotsset{compat=newest}
+\usepackage{booktabs}
+\usepackage{siunitx}
+
+\usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
+\svgpath{osvgs/}
+
+\usepackage{url}
+\usepackage{pmboxdraw}
+\usepackage{amssymb}
+\usepackage{pgffor}
+	
+\usetheme[department=compute]{DTU}
+\newcommand{\tabitem}{{\color{dtured}$\bullet$} }
+\usepackage[absolute,overlay]{textpos}
+\textblockorigin{0mm}{0mm}
+
+\setlength{\TPHorizModule}{\paperwidth}
+\setlength{\TPVertModule}{\paperheight}
+
+% Latin Modern
+\usepackage{lmodern}
+\newcommand{\overlabel}[1]{ \begin{textblock}{1}(0,0) \url{#1} \end{textblock} }
+
+% Verdana font type
+%\usepackage{verdana}
+% Helvetica
+%\usepackage{helvet}
+% Times (text and math)
+%\usepackage{newtx, newtxmath}
+
+% \usetheme[department=compute]{DTU}
+
+\makeatletter
+
+\def\osvg{\@ifnextchar[{\@with}{\@without} }
+\def\@with[#1]#2{
+	\foreach[count=\n] \x in {#1}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf}{
+			\begin{textblock}{1}(0,0)
+				\includegraphics<\x>[width=1.0\linewidth]{osvgs/x_do_not_edit_#2-l\n_nofonts}
+			\end{textblock}
+			}{ File: \url{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf} does not exist; bad layer import? Check \url{osvgs/#2.svg} including layer information.
+			}
+		}
+	}
+	\olabel{#2}
+}
+\def\@without#1{
+	% Try to include first 10 layer files if they are there.
+	\foreach[count=\n] \x in {1,...,10}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#1-l\n_nofonts.pdf}{
+				\begin{textblock}{1}(0,0)
+					\includegraphics<\n->[width=1.0\linewidth]{osvgs/x_do_not_edit_#1-l\n_nofonts}
+				\end{textblock}
+			}{
+		}
+	}
+	}
+	\olabel{#1}
+}
+\newcommand{\olabel}[1]{
+	\iftoggle{overlabel_includelabels}{
+		\begin{textblock}{1}(0,0) \url{#1} \end{textblock}
+	}{ 
+	\begin{textblock}{1}(0,0) 	{\color{white} \url{#1} } \end{textblock}
+	}
+}
+
+\makeatother
+
+\makeatother
+\ifdefined\bluem
+% nothing.
+\else
+
+\newcommand\bluem[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{ #1 }}}
+\newcommand\redm[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{ #1 }}}
+\newcommand\greenm[1]{{\textcolor[HTML]{398E00}{ #1 }}}
+\newcommand\yellowm[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{ #1 }}}
+				
+\newcommand\bluet[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{\textbf{#1}}}}
+\newcommand\redt[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{\textbf{#1}}}}
+\newcommand\greent[1]{{\textcolor[HTML]{398E00}{\textbf{#1}}}}
+\newcommand\yellowt[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{\textbf{#1}}}}
+\fi
\ No newline at end of file
diff --git a/build/lib/slider/DTU_Beamer_files/beamercolorthemeDTU.sty b/build/lib/slider/DTU_Beamer_files/beamercolorthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..8e406d195b7a016415ed00d0b0d42a0dd8b914bd
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/beamercolorthemeDTU.sty
@@ -0,0 +1,29 @@
+% beamercolorthemeDTU.sty
+% This file is a part of the DTU beamer package and makes sure that
+% the DTU colours are available. This file does neither redefine 
+% beamer settings, nor does it add new configurations. It has to be 
+% maintained for backward compatibility.
+%
+% Changelog
+% 2011-06-23 jowr Replaced the old colour definitions with the new ones from the design guide
+% 2011-07-05 jowr Added alternative colours for the graphs
+% 2011-08-16 jowr Moved colour definitions to resources folder, also used in poster class
+% 2014-09-27 jowr Added documentation and prepared merge to git repository
+%
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Load the file if it exists, throw a warning otherwise
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+\InputIfFileExists{dtucolours}{
+    \PackageInfo{dtubeamer}{Successfully loaded the DTU colours.}
+  }{
+    \PackageWarning{dtubeamer}{Could not load the colours from dtucolours.sty. This compilation is likely to fail.}
+  }%
+
+\mode<presentation>
+
+% The new design does not need any adaption here, black is 
+% the default colour. 
+
+\mode<all> 
\ No newline at end of file
diff --git a/build/lib/slider/DTU_Beamer_files/beamerfontthemeDTU.sty b/build/lib/slider/DTU_Beamer_files/beamerfontthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..49c4eab954b5f0d2e9abbbe1034921d212d260af
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/beamerfontthemeDTU.sty
@@ -0,0 +1,38 @@
+% Copyright 2014 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2014
+% DTU Official Presentation
+
+% For PDFLATEX
+\usefonttheme{professionalfonts}
+
+% Title font
+\setbeamerfont{title}{size=\large, series=\bfseries}
+\setbeamercolor{title}{fg=black}
+
+% Subtitle font
+\setbeamerfont{subtitle}{size=\small, series=\normalfont}
+
+% Author font
+\setbeamerfont{author}{size=\small, series=\normalfont}
+
+% Footline
+\setbeamerfont{framecounter in head/foot}{size=\tiny}
+\setbeamerfont{department in head/foot}{size=\tiny, series=\bfseries}
+\setbeamerfont{title in head/foot}{size=\tiny}
+\setbeamerfont{date in head/foot}{size=\tiny}
+
+% Frametitle
+\setbeamerfont{frametitle}{size=\large, series=\bfseries}
+\setbeamerfont{block body}{size=\small}
+\setbeamerfont{section title}{size=\small}
+\setbeamerfont{block body alerted}{size=\small}
+\setbeamerfont{block body example}{size=\small}
+\setbeamerfont{block title}{size=\large,parent={structure,block body}}
+\setbeamerfont{block title alerted}{parent={block title,alerted text}}
+\setbeamerfont{block title example}{parent={block title,example text}}
+\setbeamerfont{itemize/enumerate body}{size=\small}
+
+% Colors
+\setbeamercolor{frametitle}{fg=black}
+\setbeamercolor{structure}{fg=black}
\ No newline at end of file
diff --git a/build/lib/slider/DTU_Beamer_files/beamerinnerthemeDTU.sty b/build/lib/slider/DTU_Beamer_files/beamerinnerthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..9e464ffdc2be91d9a1d1ef8afc917d90fcf63f94
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/beamerinnerthemeDTU.sty
@@ -0,0 +1,52 @@
+% Copyright 2007 by Till Tantau
+% Copyright 2010 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2010
+% DTU Official Presentation
+
+
+\mode<presentation>
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Title page: DTU
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\defbeamertemplate*{title page}{DTU}[1][]
+{
+	% Set bInTitle to true to make sure the right footline is printed
+	\global\edef\bInTitle{true}
+	
+	\linespread{1.45}
+	% Content of the title page
+	
+	% Title + Subtitle
+	\vspace{\dimTitleOffset}
+	\begin{beamercolorbox}[left]{title box}
+		\usebeamerfont{title}\usebeamercolor[fg]{title}\inserttitle\par
+		\ifx\insertsubtitle\@empty
+		\else
+			\vspace{\dimSubtitleOffset}
+			{\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}
+		\fi
+	\end{beamercolorbox}
+	
+	\vspace{\dimAuthorOffset}
+	% Author
+	\begin{beamercolorbox}[left]{author box}
+		\usebeamerfont{author}\usebeamercolor[fg]{author}\insertauthor
+	\end{beamercolorbox}
+	
+	\vspace{\dimInstituteOffset}% Institute
+	\begin{beamercolorbox}[left]{institute box}
+		\usebeamerfont{institute}\usebeamercolor[fg]{author}\insertinstitute
+	\end{beamercolorbox}
+
+	% Title graphic
+	{\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
+	
+	% Fill the space till bottom
+	\vskip0pt plus 1filll
+}
+
+\mode
+<all> 
diff --git a/build/lib/slider/DTU_Beamer_files/beamerouterthemeDTU.sty b/build/lib/slider/DTU_Beamer_files/beamerouterthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..79b75f4c89cf835cdaf4fdd3ffc8a182d485a9cb
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/beamerouterthemeDTU.sty
@@ -0,0 +1,98 @@
+% Copyright 2014 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2014
+% DTU Official Presentation
+
+\mode<presentation>
+
+\setbeamercolor*{framecounter in head/foot}{parent=palette tertiary}
+\setbeamercolor*{department in head/foot}{parent=palette tertiary}
+\setbeamercolor*{title in head/foot}{parent=palette tertiary}
+\setbeamercolor*{date in head/foot}{parent=palette tertiary}
+
+% No navigation symbols
+\setbeamertemplate{navigation symbols}{} 
+
+% Header
+\setbeamertemplate{headline}
+{
+	\ifdefstring{\bDTUWhiteFrame}{true}
+	{
+		\insertFrameDTUWhiteLogo
+	}
+	{
+		\ifdefstring{\bInTitle}{true}
+		{
+			\insertTitleDTULogo
+		}
+		{
+			\insertFrameDTULogo
+		}
+	}
+}
+
+% Footer
+\setbeamertemplate{footline}
+{
+	\ifdefstring{\bInTitle}{true}
+	{
+		\vspace{-0.35\paperheight}
+		\begin{beamercolorbox}[wd=\paperwidth]{title bottom}
+			\vbox{%
+				\makebox[0pt][l]{\hspace{\dimDTUDepLogoXOffset}\insertdepartmentlogoA}%
+				\vbox{%
+					\hspace{\dimDTUFriseXOffset}%
+					\makebox[0pt][l]{\insertDTUFrise}%
+					\vspace{\dimDTUDepFriseOffset}%
+				}%
+			}%
+			\vspace{\dimDTUFriseYOffset}
+		\end{beamercolorbox}
+		\global\def\bInTitle{false}
+	}
+	{
+		\ifdefstring{\bDTUWhiteFrame}{true}
+		{
+		}
+		{ %
+			\hbox{ %
+				\hspace{\dimTextLeftMargin}\hspace{-1.5pt}\insertframenumber %
+				\setlength{\widthframenumber}{2em + \widthof{\insertframenumber}} %
+				\setlength{\widthdepartment}{1em + \widthof{\insertdepartmentandinstitute}} %
+				\setlength{\widthdate}{1em + \widthof{00 00000000 0000}} % Tue: Added extra 0's (2 to 7) to prevent wrap
+				\setlength{\widthtitle}{\textwidth-\widthframenumber-\widthdepartment-\widthdate-\dimTextLeftMargin-\dimTextLeftMargin} %
+				%\parbox[t]{\widthframenumber}{\insertframenumber} %
+				\parbox[t]{\widthdepartment}{\insertdepartmentandinstitute} %
+				\parbox[t]{\widthtitle}{\raggedleft\insertshorttitleinfooter} %
+				\parbox[t]{\widthdate}{\raggedleft\DTUDateFormat\insertdate} %
+				\vspace{\dimFootlineYOffset} %
+			}
+		}
+	}
+}
+
+% Position the frame title so that it would get into the headline
+\setbeamertemplate{frametitle}
+{
+	\vspace{\dimPlaceTitleInHeader}
+	\ifdefstring{\inShowSection}{true}
+	{
+			\usebeamerfont{section title}\color{black!20}%
+			\ifnumcomp{\thesection}{=}{0}{%
+				\ \par%
+			}
+			{%
+				\insertsection\par
+			}
+	}
+	{
+		\vspace{\dimFrameTitleOffset}
+	}
+	\vspace{-1pt}\usebeamerfont{frametitle}%
+	\ifdefstring{\bDTUWhiteFrame}{true}{\color{white}}{\color{black}}%
+	\insertframetitle
+	\vspace{\dimAfterFrameTitleOffset}
+}
+
+\mode
+<all>
diff --git a/build/lib/slider/DTU_Beamer_files/beamerthemeDTU.sty b/build/lib/slider/DTU_Beamer_files/beamerthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..d8841f692e3920f289df75f62fffc46c869113dc
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/beamerthemeDTU.sty
@@ -0,0 +1,255 @@
+% Copyright Remus Mihail Prunescu
+
+% LaTeX Support Group
+% DTU Official Presentation
+
+\mode<presentation>
+
+\RequirePackage{etoolbox}
+\RequirePackage{datetime}
+\RequirePackage{keyval}
+\RequirePackage{calc}
+
+% Enlarge slide size
+\beamer@paperwidth 1.09375\beamer@paperwidth%
+\beamer@paperheight 1.09375\beamer@paperheight%
+
+% Extra package
+\InputIfFileExists{departments}%
+	{\ClassInfo{}{The file departments.tex with department logo file naming has been loaded.}}%
+	{\ClassInfo{}{The file departments.tex is missing. Consult the manual.}%
+}%
+
+% Default values for options
+\newcommand{\inDepartmentShortName}{elektro}
+\newcommand{\inLanguage}{english}
+\newcommand{\inShowSection}{true}
+
+% Check language
+\@ifpackagewith{babel}{danish}{%
+	\renewcommand{\inLanguage}{danish}%
+}{}
+
+
+% Save options
+\DeclareOptionBeamer{department}{\renewcommand{\inDepartmentShortName}{#1}}
+\DeclareOptionBeamer{showsection}{\renewcommand{\inShowSection}{#1}}
+\ProcessOptionsBeamer
+
+% % % % % % % % % % % %
+% Define Dimensions
+% % % % % % % % % % % %
+
+\newcommand{\dimDTULogoWidth}{0.0394\paperwidth} % Percent
+\newcommand{\dimDTULogoHeight}{0.0777\paperheight} % Percent
+\newcommand{\dimDTULogoYOffset}{0.0404\paperheight} % Percent
+\newcommand{\dimDTULogoXOffset}{0.9176\paperwidth} % Percent
+
+\newcommand{\dimDTUDepLogoXOffset}{0.062\paperwidth} % Percent
+\newcommand{\dimDTUDepLogoHeight}{0.0897\paperheight} % Percent
+
+\newcommand{\dimDTUFriseYOffset}{0.03\paperheight} % Percent
+\newcommand{\dimDTUFriseXOffset}{0.418\paperwidth} % Percent
+\newcommand{\dimDTUFriseHeight}{0.3412\paperheight} % Percent
+\newcommand{\dimDTUDepFriseOffset}{0.018\paperheight} % Percent
+
+\newcommand{\dimTitleOffset}{0.148\paperheight}
+\newcommand{\dimSubtitleOffset}{0.0175\paperheight}
+\newcommand{\dimFrameTitleOffset}{0.033\paperheight}
+\newcommand{\dimAfterFrameTitleOffset}{-0.008\paperheight}
+\newcommand{\dimAuthorOffset}{0.06\paperheight}
+\newcommand{\dimInstituteOffset}{0.027\paperheight}
+
+\newcommand{\dimFootlineYOffset}{0.025\paperheight} % Tue: This was 0.0355 in original file
+
+\newcommand{\dimLeftMarginI}{0.02\paperwidth}
+\newcommand{\dimTextLeftMargin}{0.0669\paperwidth} % Percent
+
+\newcommand{\dimPlaceTitleInHeader}{-0.09\paperheight}
+
+
+\makeatletter
+\setbeamersize{text margin left=\dimTextLeftMargin, text margin right=\dimTextLeftMargin}
+\makeatother
+
+% % % % % % % % % % % %
+% End of Dimensions
+% % % % % % % % % % % %
+
+% New commands to be used in the DTU template
+%\newcommand{\insertdepartmentandinstitute}{\departmenttitle , \institutetitle}
+\newcommand{\insertdepartmentandinstitute}{\departmenttitle}
+\newcommand{\insertDTULogo}{\includegraphics[width=\dimDTULogoWidth]{tex_dtu_logo}}
+\newcommand{\insertDTUWhiteLogo}{}
+\newcommand{\inserttitlefootline}{}
+\newcommand{\inserttitleheadline}{}
+\newcommand{\institutetitle}{}
+
+% Internal variable to check if \titlepage was called: false by default
+\def\bInTitle{false}
+\def\bDTUWhiteFrame{false}
+
+% Process language
+% Is it DK or UK?
+\ifdefstring{\inLanguage}{danish}
+{
+	\renewcommand{\institutetitle}{Danmarks Tekniske Universitet}
+	\renewcommand{\insertDTUWhiteLogo}{\includegraphics[height=\dimDTULogoHeight]{tex_dtu_dk_a1_neg}}
+}
+{
+	\ifdefstring{\inLanguage}{english}
+	{
+		\renewcommand{\institutetitle}{Technical University of Denmark}
+		\renewcommand{\insertDTUWhiteLogo}{\includegraphics[height=\dimDTULogoHeight]{tex_dtu_uk_a1_neg}}
+	}
+	{
+		% Undefined language
+		% Default values are used
+	}
+}
+
+\ifcsdef{department@\inDepartmentShortName}
+{
+	\activateDepartmentInfo{\inLanguage}{\inDepartmentShortName}
+}
+{
+	\PackageError{DTU Beamer Template}{Department is undefined. Reverting to default (elektro).}{Check the user guide for defined departments. If you cannot find it then contact support group to add the department.}
+	\activateDepartmentInfo{\inLanguage}{elektro}
+}
+
+% Command for generating the department title
+\newcommand{\departmenttitle}{\thedepartmentNameText}
+% Command for inserting the department logo
+\newcommand{\insertdepartmentlogoA}{%
+	\ifdefstring{\inDepartmentShortName}{admin}
+	{
+	}
+	{
+		\includegraphics[height=\dimDTUDepLogoHeight]{\thedepartmentLogo}
+	}
+}
+% Command for inserting frise
+\newcommand{\insertDTUFrise}{\includegraphics[height=\dimDTUFriseHeight]{\thedepartmentFrise}}
+
+% Command used from frame DTU logo (headline)
+\newcommand{\insertFrameDTULogo}
+{
+	\vspace{\dimDTULogoYOffset}
+	\begin{beamercolorbox}[right]{logo in head/foot}%
+		\insertDTULogo\makebox[\dimDTULogoWidth][]{}
+	\end{beamercolorbox}
+}
+\newcommand{\insertFrameDTUWhiteLogo}
+{
+	\vspace{\dimDTULogoYOffset}
+	\begin{beamercolorbox}[right]{logo in head/foot}%
+		\insertDTUWhiteLogo\makebox[\dimDTULogoWidth][]{}
+	\end{beamercolorbox}
+}
+
+% Command used in title page for inserting the DTU logo in headline
+\newcommand{\insertTitleDTULogo}
+{
+	\insertFrameDTULogo
+}
+
+% Change themes
+\usefonttheme{DTU}
+\useoutertheme{DTU}
+\useinnertheme{DTU}
+\usecolortheme{DTU}
+
+% Left margin for list environment
+\setlength{\leftmargini}{\dimLeftMarginI}
+
+% Adjust bullets placement
+\setlength\labelsep{3pt}
+
+\setbeamersize{text margin left=\dimTextLeftMargin}
+
+% Itemize
+\setbeamertemplate{items}[circle]
+\setbeamercolor{itemize item}{fg=dtured}
+\setbeamercolor{itemize subitem}{fg=dtured}
+
+\setbeamerfont{section in toc}{size=\small}
+\setbeamerfont{subsection in toc}{size=\scriptsize}
+
+\setbeamertemplate{enumerate items}[circle]
+\setbeamercolor{item projected}{fg=white,bg=dtured}
+
+% Table of contents
+\setbeamertemplate{section in toc}{%
+	\color{dtured}$\bullet$  \inserttocsection \par}
+
+\setbeamertemplate{subsection in toc}{
+	\hskip1em{\color{dtured}$\bullet$} \inserttocsubsection \par}
+
+% Fix space between sections and subsections in toc
+\makeatletter
+\patchcmd{\beamer@sectionintoc}
+  {\vfill}
+  {\vskip\itemsep}
+  {}
+  {}
+\pretocmd{\beamer@subsectionintoc}
+  {\vskip0.5\itemsep}
+  {}
+  {}
+\makeatother 
+
+
+% Date format
+\newcommand{\DTUDateFormat}{\DTUDate}
+\newdateformat{DTUDate}{\THEDAY.\THEMONTH.\THEYEAR}
+
+% Customize blocks
+\setbeamertemplate{blocks}[rounded][shadow=true]
+\setbeamercolor{block title}{fg=white,bg=dtured}
+\setbeamerfont{block title}{series=\bfseries\small}
+\setbeamercolor{block body}{fg=black,bg=white}
+
+
+\newcommand{\defaultDTUFrameStyle}{
+	\setbeamertemplate{background}{}
+	\color{black}
+}
+
+% White DTU frame
+\makeatletter
+\define@key{beamerframe}{dtuwhitelogo}[true]{%
+	\global\def\bDTUWhiteFrame{true}
+	\color{white}
+}
+\define@key{beamerframe}{bgfilename}{%
+	\setbeamertemplate{background}{
+		\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{#1}
+	}
+}
+% Default framestyle
+\pretocmd{\beamer@@@@frame}
+{
+	\global\def\bDTUWhiteFrame{false}
+	\defaultDTUFrameStyle
+}
+{}{}
+\makeatother
+
+% Lengths for footer
+\newlength{\widthframenumber}
+\newlength{\widthdepartment}
+\newlength{\widthtitle}
+\newlength{\widthdate}
+
+% Short title for the footer
+\makeatletter
+\newcommand\insertshorttitleinfooter{%
+	\beamer@shorttitle%
+}
+\makeatother
+
+% Description list
+\setbeamercolor{description item}{fg=dtured}
+
+\mode
+<all>
diff --git a/build/lib/slider/DTU_Beamer_files/blank.png b/build/lib/slider/DTU_Beamer_files/blank.png
new file mode 100644
index 0000000000000000000000000000000000000000..082daebc2e8b00d950bcd22987c75a26f0349d97
Binary files /dev/null and b/build/lib/slider/DTU_Beamer_files/blank.png differ
diff --git a/build/lib/slider/DTU_Beamer_files/departments.tex b/build/lib/slider/DTU_Beamer_files/departments.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d248470b36886f1d90673adbb3acf3af777619d4
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/departments.tex
@@ -0,0 +1,130 @@
+% departments.tex
+% This file is a part of the DTU letter package and contains the file path for
+% the grahic file, and text name for the different departments.
+%
+% Changelog
+% 2010-04-07 Added % at the end of each line to make it possible to use the definitions in the documentation
+% 2010-04-09 Added the 5th mandatory argument (long text name)
+% 2010-04-23 Moved the new argument, #6, to #4 and added all info. However two graphic files are missing and I have therefore made a test: if the graphic file is missing the administration logo is used.  
+% 2013-02-11 Added compute and diplom department entries.  Added check to see that the department macros are defined, otherwise an error is printed.
+% 
+%\makeDepartmentInfo{<danish|english>}{<departmentname>}{<text graphic file name>}{<Big department logo file name>}{<department text name>}{<department long text name>}
+%
+
+\RequirePackage{etoolbox}
+
+\newcommand\setDepartmentNameLogo[1]{\def\@departmentNameLogo{#1}}%
+\newcommand\thedepartmentNameLogo{\@departmentNameLogo}%
+\newcommand\setDepartmentNameText[1]{\def\@departmentNameText{#1}}%
+\newcommand\thedepartmentNameText{\@departmentNameText}%
+\newcommand\setDepartmentLongNameText[1]{\def\@departmentLongNameText{#1}}%
+\newcommand\thedepartmentLongNameText{\@departmentLongNameText}%
+\newcommand\setDepartmentLogo[1]{\def\@departmentLogo{#1}}%
+\newcommand\thedepartmentLogo{\@departmentLogo}%
+\newcommand\setDepartmentFrise[1]{\def\@departmentFrise{#1}}%
+\newcommand\thedepartmentFrise{\@departmentFrise}%
+%
+\newcommand\createDepartment[1]{%
+\expandafter\def\csname department@#1\endcsname{#1}}%
+%
+\newcommand\aliasDepartment[2]{%
+\expandafter\def\csname department@#2\endcsname{#1}}%
+%
+\ifundef{\makeDepartmentInfo}{%
+	\newcommand\makeDepartmentInfo[7]{%
+		\def\@departmentcmd{\csname department@#2\endcsname}
+		\createDepartment{#2}
+		\expandafter\def\csname namelogo#1@\@departmentcmd\endcsname{\setDepartmentNameLogo{#3}}%
+		\expandafter\def\csname deplogo#1@\@departmentcmd\endcsname{\setDepartmentLogo{#4}}%
+		\expandafter\def\csname depfrise#1@\@departmentcmd\endcsname{\setDepartmentFrise{#5}}%
+		\expandafter\def\csname nametext#1@\@departmentcmd\endcsname{\setDepartmentNameText{#6}}%
+		\expandafter\def\csname namelongtext#1@\@departmentcmd\endcsname{\setDepartmentLongNameText{#7}}%
+		
+	}%
+}{}%
+%
+\newcommand\activateDepartmentInfo[2]{%
+	\ifcsname department@#2\endcsname%
+		\def\@departmentcmd{\csname department@#2\endcsname}%
+	\else%
+		\def\@departmentcmd{\department@admin}%
+	\fi%
+	\csname namelogo#1@\@departmentcmd\endcsname% TODO test if command exists before executing it
+	\csname nametext#1@\@departmentcmd\endcsname%
+	\csname namelongtext#1@\@departmentcmd\endcsname%
+	\csname deplogo#1@\@departmentcmd\endcsname%
+	\csname depfrise#1@\@departmentcmd\endcsname%
+	% \fromdepartment{\thedepartmentLongNameText}
+}%
+%
+\makeDepartmentInfo{danish} {aqua}{tex_aqua_dk}{tex_dtu_aqua_a}{tex_dtu_aqua_frise}{DTU Aqua}{Institut for Akvatiske Ressourcer}%
+\makeDepartmentInfo{english}{aqua}{tex_aqua_uk}{tex_dtu_aqua_a_uk}{tex_dtu_aqua_frise}{DTU Aqua}{National Institute of Aquatic Resources}%
+
+\makeDepartmentInfo{danish} {byg}{tex_byg_dk}{tex_dtu_byg_a}{tex_dtu_byg_frise}{DTU Byg}{Institut for Byggeri og Anl\ae g}%
+\makeDepartmentInfo{english}{byg}{tex_byg_uk}{tex_dtu_byg_a_uk}{tex_dtu_byg_frise}{DTU Civil Engineering}{Department of Civil Engineering}%
+
+\makeDepartmentInfo{danish}{compute}{tex_compute_uk}{tex_dtu_compute_a}{tex_dtu_frise}{DTU Compute}{Institut for Matematik og Computer Science}
+\makeDepartmentInfo{english}{compute}{tex_compute_uk}{tex_dtu_compute_a_uk}{tex_dtu_frise}{DTU Compute}{Department of Applied Mathematics and Computer Science}
+
+\makeDepartmentInfo{danish} {elektro}{tex_elektro_dk}{tex_dtu_elektro_a}{tex_dtu_frise}{DTU Elektro}{Institut for Elektroteknologi}
+\makeDepartmentInfo{english}{elektro}{tex_elektro_uk}{tex_dtu_elektro_a_uk}{tex_dtu_frise}{DTU Electrical Engineering}{Department of Electrical Engineering}
+
+\makeDepartmentInfo{danish} {energi}{tex_energikonvertering_dk}{tex_dtu_energi_a}{tex_dtu_energi_frise}{DTU Energi}{Institut for Energikonvertering og -lagring}
+\makeDepartmentInfo{english}{energi}{tex_energikonvertering_uk}{tex_dtu_energi_a_uk}{tex_dtu_energi_frise}{DTU Energy}{Department of Energy Conversion and Storage}
+
+\makeDepartmentInfo{danish} {fotonik}{tex_fotonik_dk}{tex_dtu_fotonik_a}{tex_dtu_frise}{DTU Fotonik}{Institut for Fotonik}
+\makeDepartmentInfo{english}{fotonik}{tex_fotonik_uk}{tex_dtu_fotonik_a_uk}{tex_dtu_frise}{DTU Fotonik}{Department of Photonics Engineering}
+
+\makeDepartmentInfo{danish} {fysik}{tex_fysik_dk}{tex_dtu_fysik_a}{tex_dtu_fysik_frise}{DTU Fysik}{Institut for Fysik}
+\makeDepartmentInfo{english}{fysik}{tex_fysik_uk}{tex_dtu_fysik_a_uk}{tex_dtu_fysik_frise}{DTU Physics}{Department of Physics}
+
+\makeDepartmentInfo{danish} {food}{tex_fodevareinstituttet_dk}{tex_dtu_fdevareinstituttet_a}{tex_dtu_frise}{DTU F\o devareinstituttet}{F\o devareinstituttet}
+\makeDepartmentInfo{english}{food}{tex_fodevareinstituttet_uk}{tex_dtu_fdevareinstituttet_a_uk}{tex_dtu_frise}{DTU Food}{National Food Institute}
+
+\makeDepartmentInfo{danish} {kemi}{tex_kemi_dk}{tex_dtu_kemi_a}{tex_dtu_kemi_frise}{DTU Kemi}{Institut for Kemi}
+\makeDepartmentInfo{english}{kemi}{tex_kemi_uk}{tex_dtu_kemi_a_uk}{tex_dtu_kemi_frise}{DTU Chemistry}{Department of Chemistry}
+
+\makeDepartmentInfo{danish} {kemiteknik}{tex_kemiteknik_dk}{tex_dtu_kemiteknik_a}{tex_dtu_kemiteknik_frise}{DTU Kemiteknik}{Institut for Kemiteknik}
+\makeDepartmentInfo{english}{kemiteknik}{tex_kemiteknik_uk}{tex_dtu_kemiteknik_a_uk}{tex_dtu_kemiteknik_frise}{DTU Chemical Engineering}{Department of Chemical and Biochemical Engineering}
+
+\makeDepartmentInfo{danish} {management}{tex_management_dk}{tex_dtu_management_a}{tex_dtu_frise}{DTU Management}{Institut for Systemer, Produktion og Ledelse}
+\makeDepartmentInfo{english}{management}{tex_management_uk}{tex_dtu_management_a_uk}{tex_dtu_frise}{DTU Management Engineering}{Department of Management Engineering}
+
+\makeDepartmentInfo{danish} {mekanik}{tex_mekanik_dk}{tex_dtu_mekanik_a}{tex_dtu_mek_frise}{DTU Mekanik}{Institut for Mekanisk Teknologi}
+\makeDepartmentInfo{english}{mekanik}{tex_mekanik_uk}{tex_dtu_mekanik_a_uk}{tex_dtu_mek_frise}{DTU Mechanical Engineering}{Department of Mechanical Engineering}
+
+\makeDepartmentInfo{danish} {miljo}{tex_miljo_dk}{tex_dtu_milj_a}{tex_dtu_miljoe_frise}{DTU Milj\o}{Institut for Vand og Milj\o teknologi}
+\makeDepartmentInfo{english}{environmentalEng}{tex_miljo_uk}{tex_dtu_milj_a_uk}{tex_dtu_miljoe_frise}{DTU Environment}{Department of Environmental Engineering}
+
+\makeDepartmentInfo{danish} {nanotek}{tex_nanotek_dk}{tex_dtu_nanotek_a}{tex_dtu_frise}{DTU Nanotek}{Institut for Mikro- og Nanoteknologi}
+\makeDepartmentInfo{english}{nanotek}{tex_nanotek_uk}{tex_dtu_nanotek_a_uk}{tex_dtu_frise}{DTU Nanotech}{Department of Micro- and Nanotechnology}
+
+\makeDepartmentInfo{danish} {space}{tex_space_dk}{tex_dtu_space_a}{tex_dtu_space_frise}{DTU Space}{Institut for Rumforskning og Rumteknologi}
+\makeDepartmentInfo{english}{space}{tex_space_uk}{tex_dtu_space_a_uk}{tex_dtu_space_frise}{DTU Space}{National Space Institute}
+
+\makeDepartmentInfo{danish} {systembiologi}{}{tex_dtu_systembiologi_a}{tex_dtu_frise}{DTU Systembiologi}{Institut for Systembiologi}
+\makeDepartmentInfo{english}{systembiologi}{}{tex_dtu_systembiologi_a_uk}{tex_dtu_frise}{DTU Systems Biology}{Department of Systems Biology}
+
+\makeDepartmentInfo{danish} {transport}{tex_transport_dk}{tex_dtu_transport_a}{tex_dtu_transport_frise}{DTU Transport}{Institut for Transport}
+\makeDepartmentInfo{english}{transport}{tex_transport_uk}{tex_dtu_transport_a_uk}{tex_dtu_transport_frise}{DTU Transport}{Department of Transport}
+
+\makeDepartmentInfo{danish} {vaterinaerinstituttet}{tex_veterinaertinstituttet_dk}{tex_dtu_veterinerinstituttet_a}{tex_dtu_vet_frise}{DTU Veterin\ae rinstituttet}{Veterin\ae rinstituttet}
+\makeDepartmentInfo{english}{vaterinaerinstituttet}{tex_veterinaertinstituttet_uk}{tex_dtu_veterinerinstituttet_a_uk}{tex_dtu_vet_frise}{DTU Vet}{National Veterinary Institute}
+
+\makeDepartmentInfo{danish} {vindenergi}{tex_vindenergi_dk}{tex_dtu_vindenergi_a}{tex_dtu_vindenergi_frise}{DTU Vindenergi}{Institut for Vindenergi}
+\makeDepartmentInfo{english}{vindenergi}{tex_vindenergi_uk}{tex_dtu_vindenergi_a_uk}{tex_dtu_vindenergi_frise}{DTU Wind Energy}{Department of Wind Energy}
+
+
+% Extra
+\makeDepartmentInfo{danish} {bibliotek}{tex_bibliotek_dk}{tex_dtu_bibliotek_a}{tex_dtu_bibliotek_frise}{DTU Bibliotek}{Danmarks Tekniske Informationcenter}%
+\makeDepartmentInfo{english}{bibliotek}{tex_bibliotek_uk}{tex_dtu_bibliotek_uk_a}{tex_dtu_bibliotek_frise}{DTU Library}{Technical Information Center of Denmark}%
+
+\makeDepartmentInfo{danish} {admin}{tex_dtu_navn_dk}{}{tex_dtu_frise}{Danmarks Tekniske Universitet}{}%
+\makeDepartmentInfo{english}{admin}{tex_dtu_navn_uk}{}{tex_dtu_frise}{Technical University of Denmark}{}%
+
+\makeDepartmentInfo{danish} {riso}{tex_riso_dk}{tex_ris_dtu_a}{tex_dtu_frise}{Ris\o\ DTU}{Nationallaboratoriet for B\ae redygtig Energi}
+\makeDepartmentInfo{english}{riso}{tex_riso_uk}{tex_ris_dtu_a_uk}{tex_dtu_frise}{Ris\o\ DTU}{National Laboratory for Sustainable Energy}
+
+\makeDepartmentInfo{danish}{diplom}{tex_diplom_dk}{tex_dtu_diplom_a}{tex_dtu_frise}{Center for Diplomingeni\o ruddannelse}{DTU Diplom}
+\makeDepartmentInfo{english}{diplom}{tex_diplom_dk}{tex_dtu_diplom_a_uk}{tex_dtu_frise}{Center for Diplomingeni\o ruddannelse}{DTU Diplom}
+
diff --git a/build/lib/slider/DTU_Beamer_files/dtu_slideshow_base.tex b/build/lib/slider/DTU_Beamer_files/dtu_slideshow_base.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5cc71c689f9c944f821bd47c1786c8543e412d86
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/dtu_slideshow_base.tex
@@ -0,0 +1,25 @@
+% This is the basic DTU slideshow file. Used when creating a new slideshow with slider
+\documentclass[aspectratio=43]{beamer}
+\usepackage{etoolbox}
+
+\input{02450_beamer_preamble}
+%\IfFileExists{generated/slide2.tex}{ \input{generated/slide2} }{ }
+\newtoggle{overlabel_includesvgs}
+\newtoggle{overlabel_includelabels}
+
+\toggletrue{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+
+\begin{document}
+\begin{frame}
+\maketitle
+\end{frame}
+
+\begin{frame} \osvg{osvg01}
+\frametitle{Example frame}
+\begin{enumerate}
+	\item Item 1	
+\end{enumerate}
+\end{frame}
+
+\end{document}
\ No newline at end of file
diff --git a/build/lib/slider/DTU_Beamer_files/dtucolours.tex b/build/lib/slider/DTU_Beamer_files/dtucolours.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cda2381d7225b0ec1879df97e258b805a3cc8511
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/dtucolours.tex
@@ -0,0 +1,83 @@
+% dtucolours.sty
+% This file has been a part of the DTU beamer package and is now
+% moved to the resources folder because there are other parts of the 
+% DTU package that need the colours as well.
+%
+% Changelog
+% 2011-06-23 jowr Replaced the old colour definitions with the new ones from the design guide
+% 2011-07-05 jowr Added alternative colours for the graphs
+% 2011-08-16 jowr Moved colour definitions to resources folder, also used in poster class
+% 2012-06-19 jowr Added colours for cooperation with IPU
+% 2014-09-27 jowr Replaced definecolor with providecolor, do not overwrite custom colour definitions
+%
+%
+\RequirePackage{xcolor}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define primary colours (designguide v2.3, page 13)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{dtured}       {rgb}{0.60, 0.00, 0.00} % Primærfarve 1 - CMYK:   0/ 91/ 72/ 23 - RGB: 153/  0/  0
+\providecolor{dtugrey}      {rgb}{0.60, 0.60, 0.60} % Primærfarve 2 - CMYK:   0/  0/  0/ 56 - RGB: 153/153/153
+% 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define secondary colours  (designguide v2.3, page 13)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Please note that dtured and dtubrown have the same rgb and hex values and only differ in cmyk and pms notation.
+\providecolor{dtuyellow}    {rgb}{1.00, 0.80, 0.00} % Sekundærfarve 12 - CMYK:   0/ 25/100/  0 - RGB: 255/204/  0 - HEX: FFCC00
+\providecolor{dtuorange}    {rgb}{1.00, 0.60, 0.00} % Sekundærfarve 1  - CMYK:   0/ 50/100/  0 - RGB: 255/153/  0 - HEX: FF9900
+\providecolor{dtulightred}  {rgb}{1.00, 0.00, 0.00} % Sekundærfarve 3  - CMYK:   0/100/100/  0 - RGB: 255/  0/  0 - HEX: FF0000
+\providecolor{dtubrown}     {rgb}{0.60, 0.00, 0.00} % Sekundærfarve 4  - CMYK:   0/100/100/ 50 - RGB: 153/  0/  0 - HEX: 990000
+\providecolor{dtupurple}    {rgb}{0.80, 0.20, 0.60} % Sekundærfarve 6  - CMYK:  25/100/  0/  0 - RGB: 204/ 51/153 - HEX: CC3399
+\providecolor{dtuviolet}    {rgb}{0.40, 0.00, 0.60} % Sekundærfarve 9  - CMYK:  75/ 75/  0/  0 - RGB: 102/  0/153 - HEX: 660099
+\providecolor{dtudarkblue}  {rgb}{0.20, 0.40, 0.80} % Sekundærfarve 13 - CMYK:  75/ 50/  0/  0 - RGB:  51/102/204 - HEX: 3366CC
+\providecolor{dtulightblue} {rgb}{0.20, 0.80, 1.00} % Sekundærfarve 10 - CMYK:  50/  0/  0/  0 - RGB:  51/204/255 - HEX: 33CCFF
+\providecolor{dtulightgreen}{rgb}{0.60, 0.80, 0.20} % Sekundærfarve 11 - CMYK:  25/  0/100/  0 - RGB: 153/204/ 51 - HEX: 99CC33
+\providecolor{dtudarkgreen} {rgb}{0.40, 0.80, 0.00} % Sekundærfarve 14 - CMYK:  50/  0/100/  0 - RGB: 102/204/  0 - HEX: 66CC00
+\providecolor{dtucoolgrey}  {rgb}{0.59, 0.58, 0.57} % Farve til poster - CMYK:   0/  1/  5/ 39 - RGB: 150/148/145 - HEX: 969491
+% 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define colours for drawings and graphs (designguide v2.3, page 14)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{graph01}{named}{dtuorange}
+\providecolor{graph02}{named}{dtupurple}
+\providecolor{graph03}{named}{dtulightblue}
+\providecolor{graph04}{named}{dtubrown}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define alternate colours for drawings and graphs 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define alternate colours for graphs, which are compatible with black 
+% and white printers. The initial set of colours makes it hard to distinguish 
+% between the two lighter and the two darker colours.
+\providecolor{graph01alt}{named}{dtuviolet}
+\providecolor{graph02alt}{named}{dtuyellow}
+\providecolor{graph03alt}{named}{dtulightred}
+\providecolor{graph04alt}{named}{dtulightgreen}
+\providecolor{graph05alt}{named}{dtugrey}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define colours for IPU related documents, from IPU Designguide (16.09.2008)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{ipugreen}     {rgb}{0.00, 0.40, 0.20} % Dark green, 1st  standard colour  - CMYK: 088/000/095/026 - RGB: 000/102/051
+\providecolor{ipugrey}      {rgb}{0.45, 0.47, 0.49} % Dark grey, 2nd standard colour    - CMYK: 015/000/000/075 - RGB: 114/121/126
+\providecolor{ipulightgreen}{rgb}{0.36, 0.67, 0.15} % Light green, 1sr secondary colour - CMYK: 070/000/100/000 - RGB: 091/172/038
+\providecolor{ipulightgrey} {rgb}{0.85, 0.86, 0.87} % Light grey, 2nd secondary colour  - CMYK: 003/000/003/020 - RGB: 217/220/222
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Old definitions
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% \providecolor{dtured}       {cmyk}{0.00, 0.95, 0.72, 0.27}
+% \providecolor{dtudarkgray}  {cmyk}{0.00, 0.00, 0.00, 0.56}
+% \providecolor{dtugray}      {cmyk}{0.00, 0.00, 0.00, 0.37}
+% \providecolor{dtulightgray} {cmyk}{0.00, 0.00, 0.00, 0.19}
+% \providecolor{dtudarkblue}  {cmyk}{1.00, 0.72, 0.00, 0.38}
+% \providecolor{dtublue}      {cmyk}{0.60, 0.44, 0.00, 0.24}
+% \providecolor{dtulightblue} {cmyk}{0.30, 0.22, 0.00, 0.12}
+% \providecolor{dtudarkgreen} {cmyk}{1.00, 0.00, 0.83, 0.47}
+% \providecolor{dtugreen}     {cmyk}{0.725,0.004,1.00, 0.004}
+% \providecolor{dtuyellow}    {cmyk}{0.00, 0.00, 1.00, 0.00}
+% \providecolor{dtuorange}    {cmyk}{0.00, 0.34, 0.91, 0.00}
+% \providecolor{dtudarkorange}{cmyk}{0.00, 0.51, 1.00, 0.00}
+% \providecolor{dtupurpur}    {cmyk}{0.00, 0.94, 0.00, 0.43}
+% \providecolor{dtupurple}    {cmyk}{0.83, 1.00, 0.00, 0.23}
+%
diff --git a/build/lib/slider/DTU_Beamer_files/tex_compute_uk.pdf b/build/lib/slider/DTU_Beamer_files/tex_compute_uk.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1488ea4bb66ad14ada91789909d4f3b9448e1103
Binary files /dev/null and b/build/lib/slider/DTU_Beamer_files/tex_compute_uk.pdf differ
diff --git a/build/lib/slider/DTU_Beamer_files/tex_dtu_compute_a_uk.pdf b/build/lib/slider/DTU_Beamer_files/tex_dtu_compute_a_uk.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d0d2f4efcdd8ace82a3d969627865501743c2671
Binary files /dev/null and b/build/lib/slider/DTU_Beamer_files/tex_dtu_compute_a_uk.pdf differ
diff --git a/build/lib/slider/DTU_Beamer_files/tex_dtu_frise.pdf b/build/lib/slider/DTU_Beamer_files/tex_dtu_frise.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a099312f58e8adc076799f45f00699408020fcc2
Binary files /dev/null and b/build/lib/slider/DTU_Beamer_files/tex_dtu_frise.pdf differ
diff --git a/build/lib/slider/DTU_Beamer_files/tex_dtu_logo.pdf b/build/lib/slider/DTU_Beamer_files/tex_dtu_logo.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..862fbcd41103ab0c721cdcf46f52131c89dfbe03
Binary files /dev/null and b/build/lib/slider/DTU_Beamer_files/tex_dtu_logo.pdf differ
diff --git a/build/lib/slider/DTU_Beamer_files/textext_preamble.tex b/build/lib/slider/DTU_Beamer_files/textext_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8f34c6d920f6d1c85472d72ed1d72cd4c672fc7b
--- /dev/null
+++ b/build/lib/slider/DTU_Beamer_files/textext_preamble.tex
@@ -0,0 +1,9 @@
+\usepackage{amsmath}
+\usepackage{amsfonts}
+\usepackage{color}
+\usepackage{bm}
+
+\newcommand{\m}[1]{\bm{ #1} }
+\newcommand{\mcal}[1]{\mathcal{ #1}}
+
+	
\ No newline at end of file
diff --git a/build/lib/slider/__init__.py b/build/lib/slider/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..fb32292b3d52a77c8627fe4a9e2038324c5d7e9a
--- /dev/null
+++ b/build/lib/slider/__init__.py
@@ -0,0 +1,2 @@
+# from jinjafy import execute_command
+from slider.latexutils import latexmk
\ No newline at end of file
diff --git a/build/lib/slider/__main__.py b/build/lib/slider/__main__.py
new file mode 100644
index 0000000000000000000000000000000000000000..cb45dfce01a724913a6d90172be0af8746ac0468
--- /dev/null
+++ b/build/lib/slider/__main__.py
@@ -0,0 +1,9 @@
+import clize
+
+def slider(a=123):
+    """" A docstring. Probably going to be shown as help?"""
+    print("A is", a)
+
+if __name__ == "__main__":
+    print("Welcome to the main module!")
+    clize.run(slider)
\ No newline at end of file
diff --git a/build/lib/slider/convert.py b/build/lib/slider/convert.py
new file mode 100644
index 0000000000000000000000000000000000000000..97d4c570d86d52bdd29402b5ee3f26667468857d
--- /dev/null
+++ b/build/lib/slider/convert.py
@@ -0,0 +1,124 @@
+from jinjafy import execute_command
+import os
+from bs4 import BeautifulSoup
+
+def svg2pdf(fin, fout=None, crop=True, text_to_path=False, export_area_page=True):
+    """
+     -C, --export-area-page                     Area to export is page
+       -T, --export-text-to-path                  Convert text to paths (PS/EPS/PDF/SVG)
+    """
+    # text_to_path = True
+    if fout is None:
+        fout = fin[:-4] + ".pdf"
+    cmd = ['inkscape']
+    if export_area_page:
+        cmd.append("-C")
+    if text_to_path: # Good idea for inkscape which seems to bungle the fonts (space in font names?)
+        cmd.append("-T")
+    cmd.append(fin)
+    cmd.append(f"--export-filename={fout}")
+    # '-C', '--without-gui', f'--file={fin}', f'--export-pdf={fout}']
+    # cmd = ['inkscape', '-C', '-T', '--without-gui', '--file=%s'%svg_fonts_layers[-1], '--export-pdf=%s' % pdf_nofonts_layers[-1]]
+    execute_command(cmd)
+    # cmd = f"pdftocairo {fout} -pdf {fout}"
+    # execute_command(cmd.split())
+
+    if crop:
+        cmd = ['pdfcrop', fout, fout]
+        execute_command(cmd)
+
+
+
+def pdf2svg(fin, fout, page_no=None):
+    '''
+    To remove fonts look at
+    https://tex.stackexchange.com/questions/23407/how-can-i-convert-text-to-paths-with-pdflatex
+    convert to ps and back to pdf
+    '''
+    if fout is None:
+        fout = fin[:-4] + ".svg"
+
+    '''
+    pdftocairo -svg C:/Users/tuhe/Documents/02465public/Lectures/Lecture_2/Latex/Lecture_2_NO_SVGS.pdf C:/Users/tuhe/Documents/02465public/Lectures/Lecture_2/Latex/osvgs/tmp/determpath.svg -f 2 -l 2
+    
+    '''
+    cmd = ['pdftocairo', '-svg', fin, fout]
+    if page_no is not None:
+        if not isinstance(page_no, str):
+            page_no = str(page_no)
+        cmd += ['-f', str(page_no), '-l', str(page_no)]
+
+    # print(" ".join(cmd))
+    execute_command(cmd)
+
+
+def pdf2png(fin, fout=None):
+    if fout is None:
+        fout = fin[:-4] + ".png"
+    fout = fout[:-4]
+    cmd = f"pdftocairo -png -singlefile {fin} {fout}"
+    execute_command(cmd.split())
+
+
+def pdfcrop(fin, fout=None):
+    if fout is None:
+        fout = fin
+    cmd = f"pdfcrop {fin} {fout}"
+    execute_command(cmd.split())
+
+
+
+def svg_edit_to_importable(svg_edit_file,verbose=False, keep_background_layer=True):
+    assert False
+    """
+    Take an inkscape file as input and split it into layers.
+    CODE NOT IN USE RIGHT NOW; MUST WORK OUT WHAT TO USE IT FOR.
+    """
+    odir = os.path.dirname(svg_edit_file)
+    fn = os.path.basename(svg_edit_file)[:-4]
+
+    pdf_nofonts_base = odir + "/x_do_not_edit_%s-l%s_nofonts.pdf"
+    svg_fonts_base =  odir + "/" + SVG_TEXINCLUDE_RELPATH + "/%s-l%s_fonts.svg"
+    if not os.path.exists(os.path.dirname(svg_fonts_base)):
+        os.mkdir(os.path.dirname(svg_fonts_base))
+
+    pdf_nofonts_layers = []
+    svg_fonts_layers = []
+
+    with open(svg_edit_file, 'r', encoding="UTF-8",errors="surrogateescape") as f:
+        soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+        for i in soup.findAll("image", {'id': 'image4444th'}):
+            i.extract()
+
+        layer_labels = []
+        for i in soup.findAll("g", {'inkscape:groupmode': 'layer'}):
+            if i['inkscape:label'] == "bg_layer":
+                #i.extract()
+                pass
+            else:
+                layer_labels.append(i['inkscape:label'])
+
+        for j in range(len(layer_labels)):
+            s2 = soup.__copy__()
+            for i in s2.findAll("g", {'inkscape:groupmode': 'layer'}):
+                if layer_labels[j] == i['inkscape:label'] or i['inkscape:label'] == "bg_layer":
+                    pass
+                else:
+                    i.extract()
+            # now you got an image only with this layer. save it.
+            layer_number = layer_labels[j].split(" ").pop()
+            pdf_nofonts_layers.append(pdf_nofonts_base%(fn,layer_number))
+            svg_fonts_layers.append(svg_fonts_base % (fn, layer_number))
+
+            with open(svg_fonts_layers[-1], 'bw') as f2:
+                f2.write(s2.encode("UTF-8"))
+
+            cmd = ['inkscape', '-C', '-T', '--without-gui', '--file=%s'%svg_fonts_layers[-1], '--export-pdf=%s' % pdf_nofonts_layers[-1]]
+            execute_command(cmd)
+
+    if verbose:
+        print("svg_edit_to_importable called. Converting svg file\n  > %s\nto files:"%svg_edit_file)
+        for s in pdf_nofonts_layers + svg_fonts_layers:
+            print("  > " + s)
+
+    return pdf_nofonts_layers, svg_fonts_layers
diff --git a/build/lib/slider/latexutils.py b/build/lib/slider/latexutils.py
new file mode 100644
index 0000000000000000000000000000000000000000..2e50e0978da7c792fd2d44a35209b4afdc3e7d71
--- /dev/null
+++ b/build/lib/slider/latexutils.py
@@ -0,0 +1,36 @@
+from jinjafy import execute_command
+import os
+import shutil
+
+def latexmk(texfile,pdf_out=None,shell=True,cleanup=False, Linux=False):
+    cdir = os.getcwd()
+    dname = os.path.dirname(texfile)
+    os.chdir(dname)
+    texfile = os.path.basename(texfile)
+    if Linux:
+        CMD = "latexmk -f -g -pdf -interaction=nonstopmode " + texfile
+        print("Running LaTeX command>> " + CMD)
+        s = execute_command(CMD.split(" "), shell=shell)
+    else:
+        CMD = "latexmk -f -g -pdf -shell-escape -interaction=nonstopmode " + texfile
+        print("Running LaTeX command>> " + CMD)
+        s = execute_command(CMD.split(" "),shell=shell)
+
+    if pdf_out:
+        shutil.copyfile(texfile[:-4]+".pdf", pdf_out)
+    else:
+        pdf_out = os.path.join(os.path.dirname(texfile), texfile[:-4]+".pdf")
+
+    if cleanup and os.path.exists(pdf_out):
+        bft = ['bbl', 'blg', 'fdb_latexmk', 'fls', 'aux', 'synctex.gz', 'log']
+        for ex in bft:
+            import glob
+            fl = glob.glob(dname + "/*."+ex)
+            for f in fl:
+                os.remove(f)
+
+    os.chdir(cdir)
+    return pdf_out
+
+
+
diff --git a/build/lib/slider/legacy_importer.py b/build/lib/slider/legacy_importer.py
new file mode 100644
index 0000000000000000000000000000000000000000..058a79ed579aea5f505f5d78fc45634b3c1779ac
--- /dev/null
+++ b/build/lib/slider/legacy_importer.py
@@ -0,0 +1,487 @@
+# Control import of slides from pdf to svg-editable format.
+# inkscape -z -f "Input.pdf" -l "Output.svg"
+# https://github.com/eea/odfpy
+import os
+import shutil
+from jinjafy import jinjafy_comment
+from bs4 import BeautifulSoup
+import glob
+from jinjafy import execute_command
+
+CDIR = os.path.dirname(os.path.realpath(__file__))
+CDIR = CDIR.replace('\\','/')
+
+SVG_EDIT_RELPATH = "osvgs" # files that are supposed to be edited goes here.
+SVG_TMP_RELPATH = "tmp" # various files that can be flat out deleted goes here
+SVG_TEXINCLUDE_RELPATH = "do_not_edit" # the no_fonts version and the pure (+fonts) versions goes here
+DTU_beamer_base = CDIR +"/DTU_Beamer_files"
+BLANK_PNG =DTU_beamer_base + "/blank.png"
+
+def ensure_dir(dname):
+    assert False
+    if not os.path.exists(dname):
+        os.mkdir(dname)
+
+def join_pdfs(slide_deck_pdf, outfile):
+    assert False
+    dn = os.path.dirname(slide_deck_pdf[0])
+    files = [os.path.relpath(os.path.dirname(pdf), start=dn) + "/" + os.path.basename(pdf) for pdf in slide_deck_pdf]
+    outf = os.path.relpath(os.path.dirname(outfile), start=dn) + "/" + os.path.basename(outfile)
+    cmd = "cd " + dn + " && pdftk " + " ".join(files) + " cat output " + outf
+    execute_command(cmd.split())
+
+
+def li_import(slide_deck_pdf, tex_output_path=None, num_to_take=None, force=False, svg_pfix="osvg", svg_height=743.75, svg_width=992.5,
+              svg_converted_slides="svg_converted_slides.tex"):
+    assert False
+    '''
+    svg_height and svg_width are used to scale the converted image. This is useful because otherwise the viewbox
+    will fail to match the DTU template. I.e. these numbers will generally change dependent on the LaTeX template.
+
+    :param slide_deck_pdf:
+    :param tex_output_path:
+    :param num_to_take:
+    :param force:
+    :param svg_pfix:
+    :param svg_height:
+    :param svg_width:
+    :return:
+    '''
+    # take this slide deck. Generate beamer, svg output.
+
+    if isinstance(slide_deck_pdf, list):
+        dn = os.path.dirname(slide_deck_pdf[0])
+        ofile = os.path.join(dn, "tmp.pdf")
+        join_pdfs(slide_deck_pdf, ofile)
+        slide_deck_pdf = ofile
+
+    if tex_output_path is None:
+        tex_output_path = slide_deck_pdf[:-4]+"_output.tex"
+
+    output_dir = os.path.dirname(tex_output_path)
+
+    # if output_dir is None:
+    #     output_dir = os.path.dirname(slide_deck_pdf)
+    assert(os.path.exists(output_dir))
+    svg_tmp_dir = output_dir + "/" + SVG_EDIT_RELPATH +"/" + SVG_TMP_RELPATH
+    svg_texinclude_dir = output_dir + "/" + SVG_EDIT_RELPATH +"/" +SVG_TEXINCLUDE_RELPATH
+    svg_edit_dir = output_dir + "/" +SVG_EDIT_RELPATH
+    tex_output_file = os.path.basename(tex_output_path)
+
+    print("Converting slides to output: " + tex_output_file)
+    if os.path.exists(output_dir + "/" + tex_output_file) or glob.glob(svg_edit_dir + "/*.svg"):
+        print("Non-empty output directory...")
+        if not force:
+            raise Exception("Non-empty output directory. Please clean")
+
+    ensure_dir(svg_edit_dir)
+    ensure_dir(svg_tmp_dir)
+    ensure_dir(svg_texinclude_dir)
+
+    if not output_dir:
+        raise Exception("Must specify output directory!")
+
+    lecture_tex_out = move_template_files(output_dir, tex_output_file)
+    osvgs_basename = []
+    print("Splitting slide deck into images...")
+
+    # slide_deck_split_svg = slidedeck_to_images(slide_deck_pdf, svg_tmp_dir + "/" + svg_pfix + "-%i.svg",
+    #                                            num_to_take=num_to_take)
+    slide_deck_split_svg = slidedeck_to_images(slide_deck_pdf, svg_tmp_dir+"/"+svg_pfix+"-%i.svg", num_to_take=num_to_take)
+    print("Converting svg to osvg..")
+    for i,osvg in enumerate(slide_deck_split_svg):
+        dosvg = raw_svg_to_osvg(osvg, overwrite_existing=True, height=svg_height, width=svg_width)
+        osvgs_basename.append(dosvg)
+
+    print("jinjafying and cleaning...")
+    # osvgs_basename = osvgs_basename[3:] # Drop first 3 slides; automatically generated.
+    data = {'osvgs_basename' : osvgs_basename}
+    s = jinjafy_comment(data, jinja_tag="jinja1")
+    with open(output_dir + "/%s"%svg_converted_slides, 'w') as f:
+        f.write(s)
+    return lecture_tex_out
+
+# <jinja1>
+# {% for sf in osvgs_basename %}
+# \begin{frame}\osvg{{"{"}}{{sf}}{{"}"}}
+# % add content here
+# \end{frame}
+# {% endfor %}
+# </jinja1>
+# \begin{textblock}{1}(0,0)
+# 	\includesvg[width=1.0\linewidth]{{"{"}}{{sf}}{{"}"}}
+# \end{textblock}\overlabel{ {{sf}} }
+# SVG editable file (i.e. with background image) to file which can be imported into
+# the .tex file.
+
+'''
+Take a raw svg in the tmp directory and compile it into the nice svg format with empty, white background.
+This can be used when importing a new slide deck or when inserting a new overlabel tag somewhere in a
+tex document.
+'''
+def raw_svg_to_osvg(raw_svg_file, overwrite_existing=False, height=None, width=None):
+    svg_tmp_dir = os.path.dirname(raw_svg_file)
+    svg_edit_dir = os.path.dirname(svg_tmp_dir)
+    ofile_edit = svg_edit_dir + "/" + os.path.basename(raw_svg_file)
+    # if height is not None and width is not None:
+    #     svg_set_hw_(raw_svg_file, raw_svg_file,height=height, width=width)
+
+    ofile_fonts_pure = rm_svg_bg(svg_input=raw_svg_file, svg_output=ofile_edit, height=height, width=width)
+    png_file = svg_tmp_dir + "/" + os.path.basename(ofile_fonts_pure)[:-4] + ".png"
+    shutil.copyfile(BLANK_PNG, png_file)
+    ofile_edit = add_png_background_to_svg(svg_input=ofile_fonts_pure, svg_output=None, png_file=png_file)
+    pdf_nofonts, svg_fonts = svg_edit_to_importable(ofile_edit)
+    osvgs_basename = os.path.basename(raw_svg_file)[:-4]
+    return osvgs_basename
+
+
+'''
+Related to li_import. 
+Set the width/height of an imported slide svg image in case it does not match the DTU template. 
+'''
+def svg_set_hw_(svg_in, svg_out, height, width):
+    assert False
+    print(f"HW fix [{height} {width}] > {svg_in} -> {svg_out}")
+
+    with open(svg_in, 'r', encoding="UTF-8") as f:
+        soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+        tags = soup.find_all("svg")
+        assert (len(tags) == 1)
+        tag = tags[0]
+        tag['height'] = str(height)
+        tag['width'] = str(width)
+        tag['viewBox'] = f"0 0 {height} {width}"
+    # print([svg_input, logo_rem, bg_rem, tx_rem])
+    with open(svg_out, 'bw') as f:
+        f.write(soup.encode("UTF-8"))
+    return
+    with open(svg_in, 'r', encoding="UTF-8", errors="surrogateescape") as f:
+        soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+        tags = soup.find_all("svg")
+        assert(len(tags) == 1)
+        tag = tags[0]
+        tag['height'] = str(height)
+        tag['width'] = str(width)
+        tag['viewBox'] = f"0 0 {height} {width}"
+        s2 = soup.__copy__()
+        # sout = s2.encode("UTF-8")
+    # f.close()
+    with open(svg_out, 'w', encoding="UTF-8") as f2:
+        f2.write(str(s2))
+
+def svg_check_background_layer(svg_edit_file, verbose=False):
+    assert False
+
+    # Check if svg background layer is pointing to the right .png file.
+    # this may not be the case sometimes because svg files are moved, etc. which overwrite the default
+    # background .png path.
+    with open(svg_edit_file, 'r', encoding="UTF-8",errors="surrogateescape") as f:
+        soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+        g = None
+        for i in soup.findAll("g", {'inkscape:groupmode': 'layer'}):
+            if i['inkscape:label'] == "bg_layer":
+                g = i
+                break
+        ok = True
+        bgim = g.find("image")
+        bg_png = bgim['xlink:href']
+        real_png = os.path.dirname(svg_edit_file) + "/" + SVG_TMP_RELPATH + "/" + os.path.basename(svg_edit_file)[:-4] + ".png"
+        real_png = os.path.relpath(real_png, start=os.path.dirname( svg_edit_file) )
+        bg_png = os.path.relpath(bg_png,start=os.path.dirname( svg_edit_file)  )
+        if real_png != bg_png:
+            print("slider:warning> Bungled background png image in " + svg_edit_file)
+            s = jinjafy_comment({'png_file': real_png}, jinja_tag="jinja3")
+            new_img = BeautifulSoup(s, "html.parser")
+            g.insert_after( new_img)
+            g.unwrap()
+            bgim.unwrap()
+
+            with open(svg_edit_file[:-4]+"_test.svg", "w") as f2:
+                f2.write(soup.prettify(formatter="xml"))
+
+# <jinja3>
+# <g inkscape:groupmode="layer" id="layer1" inkscape:label="bg_layer" style="display:inline" sodipodi:insensitive="true">
+#      <image
+#        xlink:href="{{png_file}}"
+#        width="100%"
+#        height="100%"
+#        preserveAspectRatio="none"
+#        style="image-rendering:optimizeQuality"
+#        id="image4444th"
+#        x="0"
+#        y="0" />
+#  </g>
+# </jinja3>
+
+
+
+def svg_edit_to_importable(svg_edit_file,verbose=False):
+    odir = os.path.dirname(svg_edit_file)
+    fn = os.path.basename(svg_edit_file)[:-4]
+
+    pdf_nofonts_base = odir + "/x_do_not_edit_%s-l%s_nofonts.pdf"
+    svg_fonts_base =  odir + "/" + SVG_TEXINCLUDE_RELPATH + "/%s-l%s_fonts.svg"
+    if not os.path.exists(os.path.dirname(svg_fonts_base)):
+        os.mkdir(os.path.dirname(svg_fonts_base))
+
+    pdf_nofonts_layers = []
+    svg_fonts_layers = []
+
+    with open(svg_edit_file, 'r', encoding="UTF-8",errors="surrogateescape") as f:
+        soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+
+        for i in soup.findAll("image", {'id': 'image4444th'}):
+            i.extract()
+
+        layer_labels = []
+        for i in soup.findAll("g", {'inkscape:groupmode': 'layer'}):
+            if i['inkscape:label'] == "bg_layer":
+                #i.extract()
+                pass
+            else:
+                layer_labels.append(i['inkscape:label'])
+
+        for j in range(len(layer_labels)):
+            s2 = soup.__copy__()
+            for i in s2.findAll("g", {'inkscape:groupmode': 'layer'}):
+                if layer_labels[j] == i['inkscape:label'] or i['inkscape:label'] == "bg_layer":
+                    pass
+                else:
+                    i.extract()
+            # now you got an image only with this layer. save it.
+            layer_number = layer_labels[j].split(" ").pop()
+            pdf_nofonts_layers.append(pdf_nofonts_base%(fn,layer_number))
+            svg_fonts_layers.append(svg_fonts_base % (fn, layer_number))
+
+            with open(svg_fonts_layers[-1], 'bw') as f2:
+                f2.write(s2.encode("UTF-8"))
+
+            from slider.convert import svg2pdf
+            svg2pdf(svg_fonts_layers[-1], fout=pdf_nofonts_layers[-1], crop=False, text_to_path=True, export_area_page=True)
+            # cmd = ['inkscape', '-C', '-T', '--without-gui', '--file=%s'%svg_fonts_layers[-1], '--export-pdf=%s' % pdf_nofonts_layers[-1]]
+
+    if verbose:
+        print("svg_edit_to_importable called. converted svg file\n  > %s\nto files:"%svg_edit_file)
+        for s in pdf_nofonts_layers + svg_fonts_layers:
+            print("  > " + s)
+
+    return pdf_nofonts_layers, svg_fonts_layers
+
+# <jinja2>
+# {{svg_start}}
+# <g inkscape:groupmode="layer" id="layer1" inkscape:label="bg_layer" style="display:inline" sodipodi:insensitive="true">
+#      <image
+#        xlink:href="{{png_file}}"
+#        width="100%"
+#        height="100%"
+#        preserveAspectRatio="none"
+#        style="image-rendering:optimizeQuality"
+#        id="image4444th"
+#        x="0"
+#        y="0" />
+#  </g>
+# <g inkscape:groupmode="layer"
+#     id="layer2"
+#     inkscape:label="Layer 1"
+#     style="display:inline">
+# {{svg_end}}
+# </g></svg>
+# </jinja2>
+def add_png_background_to_svg(svg_input, png_file, svg_output=None):
+    if not svg_output: svg_output = svg_input
+    rp = os.path.relpath(png_file, os.path.commonprefix([svg_output, png_file]))
+    rp = rp.replace("\\", "/")
+
+    with open(svg_input,'r', encoding="UTF-8") as f:
+        svg = f.read()
+    mds = "</metadata>"
+    mds_id = svg.find(mds)
+    if mds_id < 0:
+        # file has no meta data.
+        j = svg.find(">", svg.find("<svg"))
+        svg = svg[:j+1] + "<metadata></metadata>" +svg[j+1:]
+        mds_id = svg.find(mds)
+
+    mds_dex = mds_id+len(mds)
+
+    data = {'png_file' : rp, 'svg_start': svg[:mds_dex],'svg_end': svg[mds_dex:]}
+    svg = jinjafy_comment(data, jinja_tag="jinja2")
+
+    si = svg.find("<svg") + 4
+    dsvg = ' xmlns:sodipodi = "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"\n xmlns:inkscape = "http://www.inkscape.org/namespaces/inkscape" \n'
+    svg = svg[:si] + dsvg + svg[si:]
+
+    with open(svg_output, 'w',encoding="UTF-8") as f:
+        f.write(svg)
+    return svg_output
+
+
+def slidedeck_to_images(slide_deck_pdf, base_out_pattern, num_to_take=None):
+    assert False
+    if not os.path.exists(os.path.dirname(base_out_pattern)):
+        os.mkdir(os.path.dirname(base_out_pattern))
+    num_pages = num_pages_in_pdf(slide_deck_pdf)
+    opat = base_out_pattern[:-4] + "_tmp.pdf"
+    opat.replace("%i", '%d')
+    cmd = f"pdftk {slide_deck_pdf} burst output {opat} compress"
+    print("pdftk splitting into ", num_pages)
+
+    execute_command(cmd.split())
+    outfiles = []
+    slide_deck_split_pdf = [base_out_pattern[:-4] % (i + 1) + "_tmp.pdf" for i in range(num_pages)]
+    for i, opdf in enumerate(slide_deck_split_pdf):
+        print("convertion", i, opdf)
+        ofile = base_out_pattern %(i+1)
+        cmd = f"pdf2svg {opdf} {ofile}"
+        execute_command(cmd.split())
+        b = os.path.getsize(ofile)
+        # print(b)
+        if b == 0:
+            print("Skipping this file because it has size 0...")
+        else:
+            outfiles.append(ofile)
+
+    return outfiles
+
+def slidedeck_to_images_DEFUNCT(slide_deck_pdf, base_out_pattern, num_to_take=None):
+    assert False
+    if not os.path.exists(os.path.dirname(base_out_pattern)):
+        os.mkdir(os.path.dirname(base_out_pattern))
+
+    num_pages = num_pages_in_pdf(slide_deck_pdf)
+    slide_deck_split_pdf = [base_out_pattern[:-4] % (i + 1) + "_tmp.pdf" for i in range(num_pages)]
+    if num_to_take: slide_deck_split_pdf = slide_deck_split_pdf[0:num_to_take]
+
+    outfiles = []
+    for i, opdf in enumerate(slide_deck_split_pdf):
+        print("convertion", i, opdf)
+        ofile = base_out_pattern %(i+1)
+        slide_to_image(slide_deck_pdf, ofile, page_to_take=i+1)
+        outfiles.append(ofile)
+    return outfiles
+
+def num_pages_in_pdf(pdf_file):
+    assert False
+    cmd = ['pdftk', '%s' % pdf_file, 'dump_data']
+    ss = execute_command(cmd)[0].splitlines()
+    s = int([s for s in ss if 'NumberOfPages' in s].pop().split()[-1])
+    return s
+
+
+def slide_to_image(slide_deck_pdf, output, page_to_take=1, use_inkscape=True):
+    if not os.path.exists(os.path.dirname(output)):
+        os.mkdir(os.path.dirname(output))
+    slide_deck_split_pdf = output[:-4] + "_tmp.pdf"
+    ext = output[-3:]
+    if ext == "svg":
+        from slider.convert import pdf2svg
+        pdf2svg(slide_deck_pdf, fout=output, page_no=page_to_take)
+        # cmd = ['pdftk', '%s' % slide_deck_pdf, 'cat', '%i' % page_to_take, 'output', '%s' % slide_deck_split_pdf]
+        # # page_to_take = 1
+
+        # if use_inkscape:
+        #     cmd = ['inkscape', '-C', '--without-gui', '--file=%s' % slide_deck_split_pdf, '-l', '%s' % output]
+        # else:
+        #     cmd = ['pdf2svg', slide_deck_split_pdf, output]
+    else:
+        if os.path.exists(output):
+            os.remove(output)
+        cmd = ("pdftocairo -png -f %i -l %i"% (page_to_take, page_to_take)).split(" ") + [slide_deck_pdf, output]
+        execute_command(cmd)
+    if ext == "png":
+        png_with_postfix = glob.glob(output + "-*.png")
+        if not png_with_postfix:
+            print("WARNING! no png generated.")
+            print(output)
+        else:
+            png_with_postfix = png_with_postfix.pop()
+            shutil.move(png_with_postfix, output)
+
+    return output
+
+
+def move_template_files(output_dir="examples/output", output_tex_file=None):
+    files_to_move = ["tex_dtu_logo.pdf", "tex_dtu_compute_a_uk.pdf", "tex_dtu_frise.pdf", "dtucolours.tex",
+                     "beamerthemeDTU.sty", "beamerfontthemeDTU.sty","beamercolorthemeDTU.sty",
+                     "beamerinnerthemeDTU.sty", "beamerouterthemeDTU.sty", "departments.tex", "tex_compute_uk.pdf",
+                     "02450_beamer_preamble.tex",  # Deprecated.
+                     'beamer_slider_preamble.tex', # The current version.
+                     ]
+    sd = list( zip(files_to_move, files_to_move) )
+    if output_tex_file:
+        sd.append( ("02450_lectures_base.tex", output_tex_file))
+    for (source,dest) in sd:
+        shutil.copy(DTU_beamer_base + "/" + source, output_dir + "/" + dest)
+
+    if output_tex_file:
+        lecture_tex_out = output_dir + "/" + output_tex_file
+    else:
+        lecture_tex_out = None
+
+    return lecture_tex_out
+
+
+def rm_svg_bg(svg_input, svg_output=None, fix_bg=True, fix_txt=True, fix_logo=True, height=None, width=None):
+    logo_rem = 0
+    tx_rem = 0
+    bg_rem = 0
+    if not svg_output:
+        svg_output = svg_input
+
+    with open(svg_input, 'r', encoding="UTF-8") as f:
+        soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+        BG_white = ["fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none", "fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"]
+        for bgw in BG_white:
+            gg = soup.findAll("path", {"style" : bgw})
+            for g in gg:
+                if not fix_bg: break
+                g['style'] = bgw.replace("opacity:1", "opacity:0")
+                bg_rem += 1
+                if bg_rem >= 2: break
+
+        dtulogo = soup.findAll("image")
+        for i in dtulogo:
+            if "iVBORw0KGgoAAAANSUhEUgAABawAAAFcCAYAAAAkg" in i['xlink:href'] and fix_logo:
+                i.extract()
+                logo_rem += 1
+
+        btx = ["font-variant:normal;font-weight:bold;font-size:8px;font-family:Verdana;-inkscape-font-specification:Verdana-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none",
+               "font-variant:normal;font-weight:normal;font-size:9px;font-family:Verdana;-inkscape-font-specification:Verdana;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none",
+               "font-variant:normal;font-weight:bold;font-size:9px;font-family:Verdana;-inkscape-font-specification:Verdana-Bold;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none",
+               "font-variant:normal;font-weight:bold;font-size:8px;font-family:Arial;-inkscape-font-specification:Arial-BoldMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none",
+               "font-variant:normal;font-weight:normal;font-size:9px;font-family:Arial;-inkscape-font-specification:ArialMT;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"]
+
+        for j,style in enumerate(btx):
+            if not fix_txt:
+                break
+            for tx in soup.findAll("text", {"style": style}):
+                tx.extract()
+                tx_rem += 1
+
+        # soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+        if height is not None and width is not None:
+            ''' 
+            We are doing this if the svg is being imported and the height/width might not match the DTU template viewbox. 
+                        
+            '''
+            tags = soup.find_all("svg")
+            if len(tags) != 1:
+                a = 1234
+
+            assert (len(tags) == 1)
+            tag = tags[0]
+            tag['height'] = str(height)
+            tag['width'] = str(width)
+            tag['viewBox'] = f"0 0 {height} {width}"
+
+
+    print([svg_input, logo_rem, bg_rem, tx_rem])
+    with open(svg_output, 'bw') as f:
+        f.write(soup.encode("UTF-8"))
+    return svg_output
+
+
+if __name__ == "__main__":
+    print("operating...")
+    lecture_tex_out = li_import("examples/ex1/Lecture11.pdf", output_dir="examples/output", num_to_take=3)
+    print("Wrote new main file: " + lecture_tex_out)
\ No newline at end of file
diff --git a/src/slider/slider.py b/build/lib/slider/slide.py
similarity index 92%
rename from src/slider/slider.py
rename to build/lib/slider/slide.py
index fbb6f5439987b2c1b92851596d9a440a145aae89..64598728e8fb05f68af3fef5ae0c4751b6978df6 100644
--- a/src/slider/slider.py
+++ b/build/lib/slider/slide.py
@@ -1,12 +1,18 @@
-from slider import legacy_importer
+#!python
+# The above makes the script executable.
+
+import slider.legacy_importer
 import PyPDF2
 import os
 from jinjafy import execute_command
-from slider.legacy_importer import SVG_EDIT_RELPATH, SVG_TMP_RELPATH, move_template_files, DTU_beamer_base
+# from slider import slide
+from slider import legacy_importer
+from slider.legacy_importer import SVG_EDIT_RELPATH, SVG_TMP_RELPATH, move_template_files, DTU_beamer_base, svg_edit_to_importable
 from jinjafy.cache import cache_update_str, cache_contains_str, cache_contains_file, cache_update_file
 import shutil
 from slider.slide_fixer import check_svg_file_and_fix_if_broken
-from slider import latexmk
+from slider.latexutils import latexmk
+import clize
 import glob
 
 dc = "\\documentclass"
@@ -27,11 +33,15 @@ def set_svg_background_images(lecture_tex, verbose=False,
                               clean_temporary_files=False,
                               copy_template_resource_files=True,
                               force_recompile=False,
-                                force_fix_broken_osvg_files = None,
+                              force_fix_broken_osvg_files = None,
                               ):
     '''
     Main file for fixing/setting osvg background images in the given lecture .pdf.
-    :param lecture_tex:ui
+    Usage:
+
+    > slider <text-file-to-convert>
+
+    :param lecture_tex: File to set background image in.
     :return:
     '''
     MAIN_TEX_DIR = os.path.dirname(lecture_tex)
@@ -39,7 +49,6 @@ def set_svg_background_images(lecture_tex, verbose=False,
     SVG_OSVG_DIR = MAIN_TEX_DIR + "/" + SVG_EDIT_RELPATH
     force_fix_broken_osvg_files = [] if force_fix_broken_osvg_files is None else force_fix_broken_osvg_files
 
-
     print("Slider is setting the background images for the .tex. file\n>  %s" % os.path.abspath(lecture_tex))
     if copy_template_resource_files:
         move_template_files(output_dir=MAIN_TEX_DIR, output_tex_file=None)
@@ -181,6 +190,7 @@ def set_svg_background_images(lecture_tex, verbose=False,
                     os.remove(v)
 
 def slide_no_by_text(pdf_file, text):
+    assert False
     # Make .png background images.
     if os.path.exists(pdf_file):
         with open(pdf_file, 'rb') as f:
@@ -192,7 +202,7 @@ def slide_no_by_text(pdf_file, text):
                 if text in content:
                     return i+1
     else:
-        print("Warning: slider.py() -> slide_no_by_text(): PDF file not found " + pdf_file)
+        print("Warning: slide.py() -> slide_no_by_text(): PDF file not found " + pdf_file)
     return -1
     # raise Exception()
 
@@ -243,6 +253,7 @@ def recursive_tex_apply(doc, fun=None, current_output=None):
     return current_output
 
 def recursive_tex_collect(doc):
+    assert False
     sdict = recursive_tex_apply(doc)
     def gathersub(file):
         lines = []
@@ -270,15 +281,6 @@ def recursive_tex_collect(doc):
     return "\n".join(lines)
 
 
-if __name__ == "__main__":
-    if False:
-        print("Converting slides...")
-        ## Uncomment this line to do (hard) reset of the lecture.pdf
-        lecture_tex_out = li_import("examples/ex1/Lecture11.pdf", output_dir="examples/output", num_to_take=3)
-        print("Wrote new main file: " + lecture_tex_out)
-    # Example of setting background images in the given example.pdf file.
-    lecture_tex_out = 'examples/output/Lecture11.tex'
-    #set_svg_background_images(lecture_tex_out,verbose=True)
-    ## 
-    set_svg_background_images(lecture_tex_out, verbose=True)
-
+import  clize
+def slider_cli():
+    clize.run(set_svg_background_images)
\ No newline at end of file
diff --git a/build/lib/slider/slide_fixer.py b/build/lib/slider/slide_fixer.py
new file mode 100644
index 0000000000000000000000000000000000000000..3ca3f50ad5b9c32345121abc3a6f169468f6c337
--- /dev/null
+++ b/build/lib/slider/slide_fixer.py
@@ -0,0 +1,140 @@
+"""
+Fix broken issues in osvg files.
+for instance, you copy a random file, and it has the wrong dimensions, etc.
+Need some fairly serious checking I guess...
+
+Example of a good file:
+
+inkscape:groupmode="layer"
+     id="layer1"
+     inkscape:label="bg_layer"
+     style="display:inline"
+     sodipodi:insensitive="true">
+"""
+
+
+good_file = """<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns:sodipodi = "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape = "http://www.inkscape.org/namespaces/inkscape"
+ height="297.638pt" version="1.2" viewBox="0 0 396.85 297.638" width="396.85pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><metadata></metadata>
+<g inkscape:groupmode="layer" id="layer1" inkscape:label="bg_layer" style="display:inline" sodipodi:insensitive="true">
+<image
+xlink:href="{0}"
+width="100%"
+height="100%"
+preserveAspectRatio="none"
+style="image-rendering:optimizeQuality"
+id="image4444th"
+x="0"
+y="0" />
+</g>
+<g inkscape:groupmode="layer"
+id="layer2"
+inkscape:label="Layer 1"
+style="display:inline">
+</svg>
+"""
+
+""""
+First idea would be to simply load files, replace the tmp-stuff, and check if they agree.
+"""
+from bs4 import BeautifulSoup
+import os
+
+def check_svg_file_and_fix_if_broken(osvg_file, verbose=True):
+    assert False
+    '''
+    Sanity check the given file. Does the slide appears to be in okay shape? Is it broken?
+    if it is, fix it.
+    '''
+    # print(osvg_file)
+    png_ = "tmp/" + os.path.basename(osvg_file)[:-4] + ".png"
+
+    ID = 'image4444th'
+    to_save = None
+    with open(osvg_file, 'r', encoding="UTF-8",errors="surrogateescape") as f:
+        soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
+
+        bg_tags = soup.findAll("image", {'id': ID})
+
+        if len(bg_tags) == 0:
+            print("uh oh. No background image found in", osvg_file)
+
+        g = None
+        is_file_ok = True
+        for i in soup.findAll("g", {'inkscape:groupmode': 'layer'}):
+            if i['inkscape:label'] == "bg_layer":
+                g = i
+        if g is not None:
+            bgim = g.find("image")
+            if bgim['id'] == ID:
+                # We have a BG image, it has the right ID. Also check if the path matches.
+                bg_png = bgim['xlink:href']
+
+                if bg_png != png_:
+                    print("Mismatching background PNGs", osvg_file)
+                    print(bg_png, png_)
+                    bgim['xlink:href'] = png_
+                    to_save = soup.prettify(formatter="xml")
+
+            else:
+                print("We found the bg_layer tag, but it has no image in it. SVG is broken", osvg_file)
+                is_file_ok = False
+        else:
+            is_file_ok = False
+
+        if is_file_ok:
+            # Do sanity check of svg height property.
+            height = soup.find('svg')['height']
+            if height.find("pt") > 0:
+                height = height[:-2]
+            height = float(height)
+            # float(soup.find('svg')['height'])
+            if abs(height - 297.638) > 5:
+                is_file_ok = False
+
+    if to_save is not None:
+        # raise Exception("asdfsdaf", osvg_file)
+        with open(osvg_file, 'w', encoding="UTF-8", errors="surrogateescape") as f:
+            f.write(to_save)
+        return
+
+    if not is_file_ok:
+        # raise Exception("Broken file", osvg_file)
+        # File is not ok. We have to fix it. But how?
+
+        gsoup = BeautifulSoup(good_file, 'xml', from_encoding="UTF-8")
+        bstag = BeautifulSoup(str(gsoup.svg.g).format(png_), 'lxml', from_encoding="UTF-8")
+        g_bg = str(bstag.g)
+        with open(osvg_file, 'r', encoding="UTF-8", errors="surrogateescape") as f:
+            s = f.read()
+            soup = BeautifulSoup(s, 'xml', from_encoding="UTF-8")
+            print("Finding all tags")
+            # c = 0
+            for j in soup.svg.find_all(recursive=False):
+                IL= "inkscape:label"
+                if IL in j.attrs and j[IL] == "bg_layer":
+                    # gsoup = BeautifulSoup(good_file, 'xml', from_encoding="UTF-8")
+                    j.replaceWith(bstag.g)
+                    # print( j['inkscape:label']  )
+                    break
+                    # print("FOUND")
+                # print(j)
+                # c += 1
+                # print(c, "-----")
+                # if c == 4:
+                #     break
+
+            soup.svg.attrs = gsoup.svg.attrs
+            s = str(soup)
+            # j = s.find("<defs")
+            # print("Found defs at j", j)
+            # s = good_file.format( png_) + "\n" + s[j:]
+        # import time
+        # time.sleep(0.1)
+        # print(s[:4000])
+        # soup2 = BeautifulSoup(s, 'xml', from_encoding="UTF-8")
+
+        with open(osvg_file, 'w', encoding="UTF-8", errors="surrogateescape") as f:
+            f.write(s)
+    a = 234
\ No newline at end of file
diff --git a/dist/beamer-slider-0.1.1.tar.gz b/dist/beamer-slider-0.1.1.tar.gz
new file mode 100644
index 0000000000000000000000000000000000000000..ffa7bb5958d82950f5a2b48b49cea5f9e393e6b0
Binary files /dev/null and b/dist/beamer-slider-0.1.1.tar.gz differ
diff --git a/dist/beamer-slider-0.1.2.tar.gz b/dist/beamer-slider-0.1.2.tar.gz
new file mode 100644
index 0000000000000000000000000000000000000000..54e42034655ad4046a5c2b565a3ddf9a528acfb6
Binary files /dev/null and b/dist/beamer-slider-0.1.2.tar.gz differ
diff --git a/dist/beamer-slider-0.1.3.tar.gz b/dist/beamer-slider-0.1.3.tar.gz
new file mode 100644
index 0000000000000000000000000000000000000000..88c9b913fe047dc5ccdbe443339b008e0783385c
Binary files /dev/null and b/dist/beamer-slider-0.1.3.tar.gz differ
diff --git a/dist/beamer-slider-0.1.4.tar.gz b/dist/beamer-slider-0.1.4.tar.gz
new file mode 100644
index 0000000000000000000000000000000000000000..8cc4c677db0a3c054128ddb89e9bff0aa1ea6fdc
Binary files /dev/null and b/dist/beamer-slider-0.1.4.tar.gz differ
diff --git a/dist/beamer-slider-0.1.5.tar.gz b/dist/beamer-slider-0.1.5.tar.gz
new file mode 100644
index 0000000000000000000000000000000000000000..e39d13e33a68f228adb9528cc3208c9756536ffb
Binary files /dev/null and b/dist/beamer-slider-0.1.5.tar.gz differ
diff --git a/dist/beamer_slider-0.1.1-py3-none-any.whl b/dist/beamer_slider-0.1.1-py3-none-any.whl
new file mode 100644
index 0000000000000000000000000000000000000000..67de3649996bffeffa639dd4d6a68e6e2ff7780e
Binary files /dev/null and b/dist/beamer_slider-0.1.1-py3-none-any.whl differ
diff --git a/dist/beamer_slider-0.1.3-py3-none-any.whl b/dist/beamer_slider-0.1.3-py3-none-any.whl
new file mode 100644
index 0000000000000000000000000000000000000000..a7ccf62feaf543dcb511f50912cf7762e01d0f89
Binary files /dev/null and b/dist/beamer_slider-0.1.3-py3-none-any.whl differ
diff --git a/dist/beamer_slider-0.1.4-py3-none-any.whl b/dist/beamer_slider-0.1.4-py3-none-any.whl
new file mode 100644
index 0000000000000000000000000000000000000000..3418f993ef843c7dc0afe9ee3ee3f15552803b24
Binary files /dev/null and b/dist/beamer_slider-0.1.4-py3-none-any.whl differ
diff --git a/dist/beamer_slider-0.1.5-py3-none-any.whl b/dist/beamer_slider-0.1.5-py3-none-any.whl
new file mode 100644
index 0000000000000000000000000000000000000000..6bf4251b207eb54d02271c8b045db17ab930c870
Binary files /dev/null and b/dist/beamer_slider-0.1.5-py3-none-any.whl differ
diff --git a/dist/beamer_slider-0.1.5-py3.8.egg b/dist/beamer_slider-0.1.5-py3.8.egg
new file mode 100644
index 0000000000000000000000000000000000000000..4bddb157b977ca86f2f8bcff3710569aa31c5a7e
Binary files /dev/null and b/dist/beamer_slider-0.1.5-py3.8.egg differ
diff --git a/docs/README.jinja.md b/docs/README.jinja.md
new file mode 100644
index 0000000000000000000000000000000000000000..fcadf729e5a7e490bff3d773431c3dead48f45fd
--- /dev/null
+++ b/docs/README.jinja.md
@@ -0,0 +1,43 @@
+# Slider
+
+Slide overlay software based on beamer and inkscape. This project is currently used in DTU coursebox.
+## What it does
+Slider allows you to combine free-hand drawing with a standard LaTeX beamer slideshow. It allows you to insert a special `\osvg{label}` tag in your beamer slides:
+```latex
+\begin{frame}\osvg{label}
+Various standard latex stuff
+\end{frame}
+```
+Then by running the `slider` command (see below) this will automatically create a transparent `.svg` file placed "above" the LaTeX contents 
+which allows you to do free-hand drawing. While you could do this manually, slider has the advantage it maintains the **LaTeX** contents as a non-editable background layer in the `.svg` file so you can do absolute positioning etc. Naturally, you can insert new `\osvg` tags (and keep them updated) at any point by just running the `slider` command. 
+
+### Install:
+Simple pip-install the package and you should be all set.
+```terminal
+pip install beamer-slider
+```
+You can import the package using `import slider`. 
+
+
+# Use and examples
+Go to an empty directory where you want to start a slideshow and run the command:
+```terminal
+python -m slider index.tex
+```
+This will start a small beamer project and populate it with the (few) necesary files to make the framework work. You can see the 
+generated files in the `/examples/new_project` folder. The main `LaTeX` file looks like this:
+```latex
+{{basic0_tex}}
+```
+And the generated PDF file looks like this:
+
+![alt text](docs/new_project_nup.png)
+
+
+
+to start a beamer project. Edit index.tex (see how you add overlays in the file) and after you edit the overlay `.svg` files, run
+```terminal
+slider.py index.tex
+```
+to update the overlays. Note the overlay `.svg` files by default contains all the text in the slide they are imported from. This is helpful 
+if you want to move elements around. You can always add new overlays by using the '\osvg{my_label}' command in LaTeX.
\ No newline at end of file
diff --git a/docs/build_docs.py b/docs/build_docs.py
new file mode 100644
index 0000000000000000000000000000000000000000..b84ef6aa08bb264525544f4ec2e8bc62dd94f5c0
--- /dev/null
+++ b/docs/build_docs.py
@@ -0,0 +1,60 @@
+import slider.convert
+from slider.beamer_nup import beamer_nup
+import jinja2
+from slider import convert
+import os
+import shutil
+from slider.slider_cli import slider_cli
+
+
+if __name__ == "__main__":
+    EX_BASE = "../examples"
+    np = EX_BASE + "/new_project"
+
+    # if os.path.isdir(np):
+    #     shutil.rmtree(np)
+    # os.makedirs(np)
+    # slider_cli(latexfile=f"{np}/index.tex", force=True)
+    np_basic1 = EX_BASE + "/basic1"
+    # if os.path.isdir(np_basic1):
+    #     shutil.rmtree(np_basic1)
+    # shutil.copytree(np, np_basic1)
+    # shutil.copyfile("myoverlay.svg", np_basic1 +"/osvgs/myoverlay.svg")
+    # slider_cli(latexfile=f"{np_basic1}/index.tex")
+
+
+    def my_nup(path):
+        dir = os.path.dirname(path)
+        base = os.path.basename(dir)
+
+        out = beamer_nup(path, output="./" + base + "_nup.pdf", nup=2)
+        out_png = convert.pdf2png(out)
+        print(out_png)
+
+        a =234
+        pass
+
+    my_nup(np + "/index.pdf")
+
+    convert.pdf2png(np + "/index.pdf", "./index0.png")
+
+
+    output = np +"/index_2up.pdf"
+
+
+
+
+
+    data = {}
+    with open(np + "/index.tex", 'r') as f:
+        data['basic0_tex'] = f.read()
+
+    # Build the docs.
+    with open("README.jinja.md", 'r') as f:
+        s = jinja2.Environment().from_string(f.read()).render(data)
+    with open("../README.md",'w') as f:
+        f.write(s)
+
+
+
+    pass
\ No newline at end of file
diff --git a/docs/index0.png b/docs/index0.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbdd9834de66cdd6936ccf8de14ca98cb7bf53ae
Binary files /dev/null and b/docs/index0.png differ
diff --git a/docs/index2.png b/docs/index2.png
new file mode 100644
index 0000000000000000000000000000000000000000..405ca49aff4f4c910fad6d697d6cece6401e8bd8
Binary files /dev/null and b/docs/index2.png differ
diff --git a/docs/inkscape.png b/docs/inkscape.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c3c4052d48cb052eb482230859decbb7c2d31c7
Binary files /dev/null and b/docs/inkscape.png differ
diff --git a/docs/myoverlay.svg b/docs/myoverlay.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cd1a52fdc854253db3c624e6fb719ace99c1015d
--- /dev/null
+++ b/docs/myoverlay.svg
@@ -0,0 +1,738 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="297.638pt"
+   version="1.2"
+   viewBox="0 0 396.85 297.638"
+   width="396.85pt"
+   id="svg353"
+   sodipodi:docname="myoverlay.svg"
+   inkscape:version="1.0.2-2 (e86c870879, 2021-01-15)">
+  <defs
+     id="defs357" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2411"
+     inkscape:window-height="1351"
+     id="namedview355"
+     showgrid="false"
+     inkscape:zoom="1.8520821"
+     inkscape:cx="264.49219"
+     inkscape:cy="198.47288"
+     inkscape:window-x="145"
+     inkscape:window-y="71"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="layer2" />
+  <metadata
+     id="metadata2">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer1"
+     inkscape:label="bg_layer"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <image
+       sodipodi:absref="C:\Users\tuhe\Documents\slider\examples\new_project\osvgs\tmp\myoverlay.png"
+       xlink:href="tmp/myoverlay.png"
+       y="0"
+       x="0"
+       id="image4444th"
+       style="image-rendering:optimizeQuality"
+       preserveAspectRatio="none"
+       height="100%"
+       width="100%" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="Layer 1"
+     style="display:inline">
+    <defs
+       id="defs179">
+      <g
+         id="g153">
+        <symbol
+           id="glyph0-0"
+           overflow="visible">
+          <path
+             d=""
+             style="stroke:none;"
+             id="path6" />
+        </symbol>
+        <symbol
+           id="glyph0-1"
+           overflow="visible">
+          <path
+             d="M 7.015625 -6.78125 L 7.015625 -7.5 L 0.390625 -7.5 L 0.390625 -6.78125 L 1.84375 -6.78125 C 1.984375 -6.78125 2.109375 -6.796875 2.25 -6.796875 L 3.21875 -6.796875 L 3.21875 0 L 4.1875 0 L 4.1875 -6.796875 L 5.15625 -6.796875 C 5.296875 -6.796875 5.421875 -6.78125 5.546875 -6.78125 Z M 7.015625 -6.78125 "
+             style="stroke:none;"
+             id="path9" />
+        </symbol>
+        <symbol
+           id="glyph0-2"
+           overflow="visible">
+          <path
+             d="M 4.734375 0 L 4.734375 -3.25 C 4.734375 -3.96875 4.578125 -4.953125 3.25 -4.953125 C 2.5625 -4.953125 2.046875 -4.625 1.703125 -4.171875 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.390625 2 -4.296875 2.828125 -4.296875 C 3.875 -4.296875 3.890625 -3.515625 3.890625 -3.171875 L 3.890625 0 Z M 4.734375 0 "
+             style="stroke:none;"
+             id="path12" />
+        </symbol>
+        <symbol
+           id="glyph0-3"
+           overflow="visible">
+          <path
+             d="M 1.703125 0 L 1.703125 -4.828125 L 0.875 -4.828125 L 0.875 0 Z M 1.78125 -6.171875 L 1.78125 -7.140625 L 0.8125 -7.140625 L 0.8125 -6.171875 Z M 1.78125 -6.171875 "
+             style="stroke:none;"
+             id="path15" />
+        </symbol>
+        <symbol
+           id="glyph0-4"
+           overflow="visible">
+          <path
+             d="M 3.921875 -1.390625 C 3.921875 -2 3.515625 -2.359375 3.5 -2.390625 C 3.078125 -2.78125 2.78125 -2.84375 2.234375 -2.9375 C 1.640625 -3.0625 1.125 -3.171875 1.125 -3.703125 C 1.125 -4.375 1.921875 -4.375 2.0625 -4.375 C 2.40625 -4.375 2.984375 -4.328125 3.609375 -3.96875 L 3.734375 -4.671875 C 3.171875 -4.9375 2.71875 -5.015625 2.171875 -5.015625 C 1.890625 -5.015625 0.359375 -5.015625 0.359375 -3.59375 C 0.359375 -3.0625 0.671875 -2.71875 0.953125 -2.5 C 1.28125 -2.265625 1.53125 -2.21875 2.125 -2.109375 C 2.515625 -2.03125 3.140625 -1.890625 3.140625 -1.3125 C 3.140625 -0.5625 2.28125 -0.5625 2.125 -0.5625 C 1.234375 -0.5625 0.625 -0.96875 0.4375 -1.09375 L 0.3125 -0.359375 C 0.65625 -0.1875 1.25 0.125 2.140625 0.125 C 2.328125 0.125 2.921875 0.125 3.390625 -0.234375 C 3.734375 -0.484375 3.921875 -0.921875 3.921875 -1.390625 Z M 3.921875 -1.390625 "
+             style="stroke:none;"
+             id="path18" />
+        </symbol>
+        <symbol
+           id="glyph0-5"
+           overflow="visible">
+          <path
+             d="M 5.109375 -2.390625 C 5.109375 -3.859375 4.015625 -5.015625 2.71875 -5.015625 C 1.390625 -5.015625 0.328125 -3.828125 0.328125 -2.390625 C 0.328125 -0.953125 1.4375 0.125 2.71875 0.125 C 4.015625 0.125 5.109375 -0.984375 5.109375 -2.390625 Z M 4.265625 -2.5 C 4.265625 -1.21875 3.515625 -0.578125 2.71875 -0.578125 C 1.953125 -0.578125 1.171875 -1.1875 1.171875 -2.5 C 1.171875 -3.828125 2 -4.359375 2.71875 -4.359375 C 3.46875 -4.359375 4.265625 -3.796875 4.265625 -2.5 Z M 4.265625 -2.5 "
+             style="stroke:none;"
+             id="path21" />
+        </symbol>
+        <symbol
+           id="glyph0-6"
+           overflow="visible">
+          <path
+             d="M 7.765625 0 L 7.765625 -3.25 C 7.765625 -3.96875 7.59375 -4.953125 6.265625 -4.953125 C 5.625 -4.953125 5.046875 -4.65625 4.65625 -4.0625 C 4.359375 -4.890625 3.609375 -4.953125 3.25 -4.953125 C 2.46875 -4.953125 1.953125 -4.515625 1.671875 -4.109375 L 1.671875 -4.90625 L 0.875 -4.90625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.40625 2.03125 -4.296875 2.828125 -4.296875 C 3.84375 -4.296875 3.90625 -3.578125 3.90625 -3.171875 L 3.90625 0 L 4.75 0 L 4.75 -2.671875 C 4.75 -3.40625 5.046875 -4.296875 5.84375 -4.296875 C 6.859375 -4.296875 6.921875 -3.578125 6.921875 -3.171875 L 6.921875 0 Z M 7.765625 0 "
+             style="stroke:none;"
+             id="path24" />
+        </symbol>
+        <symbol
+           id="glyph0-7"
+           overflow="visible">
+          <path
+             d="M 4.515625 -2.390625 C 4.515625 -2.75 4.5 -3.578125 4.078125 -4.21875 C 3.625 -4.90625 2.96875 -5.015625 2.5625 -5.015625 C 1.359375 -5.015625 0.375 -3.859375 0.375 -2.46875 C 0.375 -1.03125 1.421875 0.125 2.734375 0.125 C 3.421875 0.125 4.046875 -0.140625 4.46875 -0.453125 L 4.40625 -1.15625 C 3.71875 -0.59375 3 -0.546875 2.75 -0.546875 C 1.875 -0.546875 1.171875 -1.3125 1.140625 -2.390625 Z M 3.890625 -2.984375 L 1.203125 -2.984375 C 1.375 -3.8125 1.953125 -4.359375 2.5625 -4.359375 C 3.140625 -4.359375 3.75 -3.984375 3.890625 -2.984375 Z M 3.890625 -2.984375 "
+             style="stroke:none;"
+             id="path27" />
+        </symbol>
+        <symbol
+           id="glyph0-8"
+           overflow="visible">
+          <path
+             d="M 5.015625 0 L 2.828125 -2.5 L 4.828125 -4.828125 L 3.9375 -4.828125 L 2.46875 -3.03125 L 0.96875 -4.828125 L 0.0625 -4.828125 L 2.109375 -2.5 L 0 0 L 0.890625 0 L 2.46875 -2.046875 L 4.109375 0 Z M 5.015625 0 "
+             style="stroke:none;"
+             id="path30" />
+        </symbol>
+        <symbol
+           id="glyph0-9"
+           overflow="visible">
+          <path
+             d="M 4.453125 0 L 4.453125 -3.140625 C 4.453125 -4.265625 3.65625 -5.015625 2.65625 -5.015625 C 1.953125 -5.015625 1.453125 -4.84375 0.953125 -4.546875 L 1.015625 -3.828125 C 1.578125 -4.234375 2.125 -4.375 2.65625 -4.375 C 3.171875 -4.375 3.609375 -3.9375 3.609375 -3.140625 L 3.609375 -2.671875 C 1.96875 -2.640625 0.59375 -2.1875 0.59375 -1.234375 C 0.59375 -0.765625 0.875 0.125 1.828125 0.125 C 1.984375 0.125 3 0.09375 3.640625 -0.390625 L 3.640625 0 Z M 3.609375 -1.4375 C 3.609375 -1.234375 3.609375 -0.953125 3.234375 -0.75 C 2.921875 -0.5625 2.5 -0.546875 2.390625 -0.546875 C 1.859375 -0.546875 1.375 -0.796875 1.375 -1.25 C 1.375 -2.015625 3.140625 -2.09375 3.609375 -2.109375 Z M 3.609375 -1.4375 "
+             style="stroke:none;"
+             id="path33" />
+        </symbol>
+        <symbol
+           id="glyph0-10"
+           overflow="visible">
+          <path
+             d="M 5.234375 -2.421875 C 5.234375 -3.734375 4.546875 -4.953125 3.5 -4.953125 C 2.84375 -4.953125 2.203125 -4.734375 1.703125 -4.296875 L 1.703125 -4.828125 L 0.890625 -4.828125 L 0.890625 2.109375 L 1.75 2.109375 L 1.75 -0.5 C 2.078125 -0.1875 2.5625 0.125 3.21875 0.125 C 4.265625 0.125 5.234375 -0.953125 5.234375 -2.421875 Z M 4.375 -2.421875 C 4.375 -1.3125 3.609375 -0.546875 2.78125 -0.546875 C 2.359375 -0.546875 2.0625 -0.765625 1.84375 -1.0625 C 1.75 -1.21875 1.75 -1.234375 1.75 -1.4375 L 1.75 -3.625 C 2 -4 2.421875 -4.265625 2.890625 -4.265625 C 3.71875 -4.265625 4.375 -3.4375 4.375 -2.421875 Z M 4.375 -2.421875 "
+             style="stroke:none;"
+             id="path36" />
+        </symbol>
+        <symbol
+           id="glyph0-11"
+           overflow="visible">
+          <path
+             d="M 1.703125 0 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 Z M 1.703125 0 "
+             style="stroke:none;"
+             id="path39" />
+        </symbol>
+        <symbol
+           id="glyph0-12"
+           overflow="visible">
+          <path
+             d="M 3.609375 -0.296875 L 3.4375 -0.9375 C 3.15625 -0.703125 2.8125 -0.578125 2.46875 -0.578125 C 2.0625 -0.578125 1.90625 -0.90625 1.90625 -1.484375 L 1.90625 -4.203125 L 3.4375 -4.203125 L 3.4375 -4.828125 L 1.90625 -4.828125 L 1.90625 -6.21875 L 1.15625 -6.21875 L 1.15625 -4.828125 L 0.203125 -4.828125 L 0.203125 -4.203125 L 1.125 -4.203125 L 1.125 -1.296875 C 1.125 -0.640625 1.28125 0.125 2.03125 0.125 C 2.78125 0.125 3.34375 -0.15625 3.609375 -0.296875 Z M 3.609375 -0.296875 "
+             style="stroke:none;"
+             id="path42" />
+        </symbol>
+        <symbol
+           id="glyph0-13"
+           overflow="visible">
+          <path
+             d="M 2.1875 -7.5625 L 1.28125 -7.5625 L 1.375 -2.375 L 1.375 -1.90625 L 2.109375 -1.90625 L 2.109375 -2.375 Z M 2.1875 0 L 2.1875 -0.90625 L 1.28125 -0.90625 L 1.28125 0 Z M 2.1875 0 "
+             style="stroke:none;"
+             id="path45" />
+        </symbol>
+        <symbol
+           id="glyph1-0"
+           overflow="visible">
+          <path
+             d=""
+             style="stroke:none;"
+             id="path48" />
+        </symbol>
+        <symbol
+           id="glyph1-1"
+           overflow="visible">
+          <path
+             d="M 2.84375 0 L 2.84375 -0.453125 L 1.6875 -0.453125 C 1.625 -0.453125 1.546875 -0.453125 1.46875 -0.453125 L 0.796875 -0.453125 L 1.71875 -1.265625 C 1.828125 -1.359375 2.125 -1.59375 2.234375 -1.6875 C 2.5 -1.921875 2.84375 -2.234375 2.84375 -2.75 C 2.84375 -3.421875 2.34375 -4.046875 1.5 -4.046875 C 0.859375 -4.046875 0.46875 -3.703125 0.265625 -3.09375 L 0.546875 -2.734375 C 0.6875 -3.234375 0.890625 -3.625 1.40625 -3.625 C 1.90625 -3.625 2.296875 -3.28125 2.296875 -2.734375 C 2.296875 -2.25 2 -1.96875 1.640625 -1.625 C 1.515625 -1.5 1.203125 -1.234375 1.078125 -1.109375 C 0.90625 -0.96875 0.484375 -0.5625 0.3125 -0.40625 L 0.3125 0 Z M 2.84375 0 "
+             style="stroke:none;"
+             id="path51" />
+        </symbol>
+        <symbol
+           id="glyph1-2"
+           overflow="visible">
+          <path
+             d="M 4.21875 -2.03125 C 4.21875 -3.203125 3.34375 -4.140625 2.28125 -4.140625 L 0.578125 -4.140625 L 0.578125 0 L 2.28125 0 C 3.359375 0 4.21875 -0.90625 4.21875 -2.03125 Z M 3.640625 -2.046875 C 3.640625 -0.9375 2.90625 -0.359375 2.125 -0.359375 L 1.171875 -0.359375 L 1.171875 -3.796875 L 2.125 -3.796875 C 2.9375 -3.796875 3.640625 -3.140625 3.640625 -2.046875 Z M 3.640625 -2.046875 "
+             style="stroke:none;"
+             id="path54" />
+        </symbol>
+        <symbol
+           id="glyph1-3"
+           overflow="visible">
+          <path
+             d="M 4.09375 -3.6875 L 4.09375 -4.09375 L 0.234375 -4.09375 L 0.234375 -3.6875 L 1.09375 -3.6875 C 1.15625 -3.6875 1.234375 -3.6875 1.296875 -3.6875 L 1.859375 -3.6875 L 1.859375 0 L 2.46875 0 L 2.46875 -3.6875 L 3.03125 -3.6875 C 3.09375 -3.6875 3.171875 -3.6875 3.234375 -3.6875 Z M 4.09375 -3.6875 "
+             style="stroke:none;"
+             id="path57" />
+        </symbol>
+        <symbol
+           id="glyph1-4"
+           overflow="visible">
+          <path
+             d="M 3.765625 -1.390625 L 3.765625 -4.140625 L 3.25 -4.140625 L 3.25 -1.390625 C 3.25 -0.59375 2.703125 -0.234375 2.203125 -0.234375 C 1.6875 -0.234375 1.1875 -0.59375 1.1875 -1.390625 L 1.1875 -4.140625 L 0.578125 -4.140625 L 0.578125 -1.390625 C 0.578125 -0.515625 1.328125 0.125 2.1875 0.125 C 3.046875 0.125 3.765625 -0.53125 3.765625 -1.390625 Z M 3.765625 -1.390625 "
+             style="stroke:none;"
+             id="path60" />
+        </symbol>
+        <symbol
+           id="glyph1-5"
+           overflow="visible">
+          <path
+             d="M 3.71875 -0.28125 L 3.6875 -0.734375 C 3.5 -0.609375 3.3125 -0.484375 3.09375 -0.421875 C 2.890625 -0.359375 2.671875 -0.359375 2.453125 -0.359375 C 2.0625 -0.359375 1.6875 -0.546875 1.421875 -0.859375 C 1.140625 -1.1875 1 -1.625 1 -2.078125 C 1 -2.515625 1.140625 -2.953125 1.421875 -3.28125 C 1.6875 -3.59375 2.0625 -3.796875 2.453125 -3.796875 C 2.65625 -3.796875 2.84375 -3.765625 3.03125 -3.71875 C 3.21875 -3.65625 3.390625 -3.5625 3.5625 -3.453125 L 3.65625 -4 C 3.46875 -4.0625 3.265625 -4.125 3.0625 -4.15625 C 2.859375 -4.203125 2.65625 -4.203125 2.453125 -4.203125 C 1.90625 -4.203125 1.390625 -3.96875 1 -3.578125 C 0.609375 -3.171875 0.40625 -2.625 0.40625 -2.078125 C 0.40625 -1.515625 0.609375 -0.96875 1 -0.5625 C 1.390625 -0.171875 1.90625 0.0625 2.453125 0.0625 C 2.6875 0.0625 2.90625 0.046875 3.109375 0 C 3.328125 -0.0625 3.53125 -0.15625 3.71875 -0.28125 Z M 3.71875 -0.28125 "
+             style="stroke:none;"
+             id="path63" />
+        </symbol>
+        <symbol
+           id="glyph1-6"
+           overflow="visible">
+          <path
+             d="M 2.984375 -1.3125 C 2.984375 -2.09375 2.359375 -2.734375 1.578125 -2.734375 C 0.8125 -2.734375 0.171875 -2.09375 0.171875 -1.3125 C 0.171875 -0.546875 0.8125 0.0625 1.578125 0.0625 C 2.359375 0.0625 2.984375 -0.546875 2.984375 -1.3125 Z M 2.46875 -1.375 C 2.46875 -0.6875 2.046875 -0.359375 1.578125 -0.359375 C 1.109375 -0.359375 0.703125 -0.703125 0.703125 -1.375 C 0.703125 -2.046875 1.140625 -2.34375 1.578125 -2.34375 C 2.03125 -2.34375 2.46875 -2.03125 2.46875 -1.375 Z M 2.46875 -1.375 "
+             style="stroke:none;"
+             id="path66" />
+        </symbol>
+        <symbol
+           id="glyph1-7"
+           overflow="visible">
+          <path
+             d="M 4.53125 0 L 4.53125 -1.765625 C 4.53125 -2.234375 4.40625 -2.703125 3.671875 -2.703125 C 3.15625 -2.703125 2.859375 -2.421875 2.703125 -2.21875 C 2.65625 -2.390625 2.5 -2.703125 1.90625 -2.703125 C 1.5625 -2.703125 1.234375 -2.578125 0.96875 -2.25 L 0.96875 -2.6875 L 0.5 -2.6875 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 L 2.78125 0 L 2.78125 -1.453125 C 2.78125 -1.84375 2.9375 -2.3125 3.40625 -2.3125 C 4.015625 -2.3125 4.015625 -1.890625 4.015625 -1.71875 L 4.015625 0 Z M 4.53125 0 "
+             style="stroke:none;"
+             id="path69" />
+        </symbol>
+        <symbol
+           id="glyph1-8"
+           overflow="visible">
+          <path
+             d="M 3.0625 -1.328125 C 3.0625 -2.046875 2.65625 -2.703125 2.078125 -2.703125 C 1.796875 -2.703125 1.359375 -2.625 1.015625 -2.359375 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 1.15625 L 1.03125 1.15625 L 1.03125 -0.28125 C 1.34375 0 1.6875 0.0625 1.890625 0.0625 C 2.515625 0.0625 3.0625 -0.546875 3.0625 -1.328125 Z M 2.53125 -1.328125 C 2.53125 -0.734375 2.09375 -0.328125 1.625 -0.328125 C 1.53125 -0.328125 1.390625 -0.34375 1.234375 -0.46875 C 1.046875 -0.609375 1.03125 -0.703125 1.03125 -0.8125 L 1.03125 -1.984375 C 1.15625 -2.15625 1.390625 -2.296875 1.6875 -2.296875 C 2.15625 -2.296875 2.53125 -1.859375 2.53125 -1.328125 Z M 2.53125 -1.328125 "
+             style="stroke:none;"
+             id="path72" />
+        </symbol>
+        <symbol
+           id="glyph1-9"
+           overflow="visible">
+          <path
+             d="M 2.78125 0 L 2.78125 -2.65625 L 2.25 -2.65625 L 2.25 -0.921875 C 2.25 -0.4375 1.84375 -0.296875 1.5 -0.296875 C 1.0625 -0.296875 1.015625 -0.40625 1.015625 -0.6875 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 -0.65625 C 0.5 -0.125 0.734375 0.0625 1.140625 0.0625 C 1.390625 0.0625 1.921875 0.015625 2.28125 -0.28125 L 2.28125 0 Z M 2.78125 0 "
+             style="stroke:none;"
+             id="path75" />
+        </symbol>
+        <symbol
+           id="glyph1-10"
+           overflow="visible">
+          <path
+             d="M 2.109375 -0.15625 L 2.015625 -0.546875 C 1.8125 -0.40625 1.609375 -0.359375 1.4375 -0.359375 C 1.1875 -0.359375 1.125 -0.59375 1.125 -0.875 L 1.125 -2.28125 L 2 -2.28125 L 2 -2.65625 L 1.125 -2.65625 L 1.125 -3.40625 L 0.65625 -3.40625 L 0.65625 -2.65625 L 0.125 -2.65625 L 0.125 -2.28125 L 0.640625 -2.28125 L 0.640625 -0.765625 C 0.640625 -0.359375 0.75 0.0625 1.171875 0.0625 C 1.609375 0.0625 1.9375 -0.078125 2.109375 -0.15625 Z M 2.109375 -0.15625 "
+             style="stroke:none;"
+             id="path78" />
+        </symbol>
+        <symbol
+           id="glyph1-11"
+           overflow="visible">
+          <path
+             d="M 2.625 -1.3125 C 2.625 -1.578125 2.59375 -1.984375 2.359375 -2.328125 C 2.15625 -2.625 1.796875 -2.734375 1.5 -2.734375 C 0.765625 -2.734375 0.203125 -2.09375 0.203125 -1.34375 C 0.203125 -0.578125 0.8125 0.0625 1.59375 0.0625 C 1.9375 0.0625 2.296875 -0.046875 2.609375 -0.234375 L 2.5625 -0.65625 C 2.234375 -0.40625 1.859375 -0.328125 1.59375 -0.328125 C 1.078125 -0.328125 0.6875 -0.765625 0.671875 -1.3125 Z M 2.265625 -1.671875 L 0.703125 -1.671875 C 0.84375 -2.140625 1.203125 -2.34375 1.5 -2.34375 C 1.765625 -2.34375 2.15625 -2.21875 2.265625 -1.671875 Z M 2.265625 -1.671875 "
+             style="stroke:none;"
+             id="path81" />
+        </symbol>
+        <symbol
+           id="glyph1-12"
+           overflow="visible">
+          <path
+             d="M 3.53125 0 L 3.53125 -0.46875 L 3 -0.46875 L 1.5 -0.453125 L 1.1875 -0.453125 L 1.1875 -1.953125 L 3.265625 -1.953125 L 3.265625 -2.34375 L 1.1875 -2.34375 L 1.1875 -3.71875 L 2.046875 -3.71875 C 2.125 -3.71875 2.203125 -3.703125 2.265625 -3.703125 L 3.4375 -3.703125 L 3.4375 -4.125 L 0.578125 -4.125 L 0.578125 0 Z M 3.53125 0 "
+             style="stroke:none;"
+             id="path84" />
+        </symbol>
+        <symbol
+           id="glyph1-13"
+           overflow="visible">
+          <path
+             d="M 2.921875 0 L 1.65625 -1.359375 L 2.8125 -2.65625 L 2.28125 -2.65625 L 1.4375 -1.671875 L 0.578125 -2.65625 L 0.03125 -2.65625 L 1.234375 -1.359375 L 0 0 L 0.53125 0 L 1.4375 -1.125 L 2.375 0 Z M 2.921875 0 "
+             style="stroke:none;"
+             id="path87" />
+        </symbol>
+        <symbol
+           id="glyph1-14"
+           overflow="visible">
+          <path
+             d="M 2.609375 0 L 2.609375 -1.71875 C 2.609375 -2.328125 2.140625 -2.734375 1.546875 -2.734375 C 1.171875 -2.734375 0.890625 -2.65625 0.546875 -2.484375 L 0.578125 -2.046875 C 0.78125 -2.171875 1.078125 -2.359375 1.546875 -2.359375 C 1.8125 -2.359375 2.078125 -2.15625 2.078125 -1.71875 L 2.078125 -1.46875 C 1.203125 -1.4375 0.328125 -1.265625 0.328125 -0.703125 C 0.328125 -0.40625 0.53125 0.0625 1.0625 0.0625 C 1.3125 0.0625 1.78125 0 2.09375 -0.234375 L 2.09375 0 Z M 2.078125 -0.84375 C 2.078125 -0.734375 2.078125 -0.578125 1.875 -0.453125 C 1.6875 -0.34375 1.453125 -0.328125 1.390625 -0.328125 C 1.0625 -0.328125 0.8125 -0.484375 0.8125 -0.703125 C 0.8125 -1.09375 1.8125 -1.125 2.078125 -1.140625 Z M 2.078125 -0.84375 "
+             style="stroke:none;"
+             id="path90" />
+        </symbol>
+        <symbol
+           id="glyph1-15"
+           overflow="visible">
+          <path
+             d="M 1 0 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 Z M 1 0 "
+             style="stroke:none;"
+             id="path93" />
+        </symbol>
+        <symbol
+           id="glyph1-16"
+           overflow="visible">
+          <path
+             d="M 2.28125 -0.78125 C 2.28125 -0.890625 2.28125 -1.109375 2.015625 -1.34375 C 1.796875 -1.546875 1.59375 -1.578125 1.296875 -1.640625 C 0.953125 -1.703125 0.671875 -1.75 0.671875 -2.015625 C 0.671875 -2.359375 1.109375 -2.359375 1.203125 -2.359375 C 1.546875 -2.359375 1.796875 -2.28125 2.09375 -2.125 L 2.171875 -2.546875 C 1.765625 -2.71875 1.46875 -2.734375 1.265625 -2.734375 C 1.109375 -2.734375 0.203125 -2.734375 0.203125 -1.953125 C 0.203125 -1.671875 0.359375 -1.515625 0.4375 -1.4375 C 0.65625 -1.234375 0.90625 -1.1875 1.21875 -1.125 C 1.5 -1.0625 1.828125 -1.015625 1.828125 -0.71875 C 1.828125 -0.34375 1.328125 -0.34375 1.234375 -0.34375 C 0.859375 -0.34375 0.5 -0.484375 0.265625 -0.65625 L 0.171875 -0.203125 C 0.375 -0.09375 0.75 0.0625 1.234375 0.0625 C 1.515625 0.0625 1.765625 0.015625 2 -0.140625 C 2.21875 -0.3125 2.28125 -0.578125 2.28125 -0.78125 Z M 2.28125 -0.78125 "
+             style="stroke:none;"
+             id="path96" />
+        </symbol>
+        <symbol
+           id="glyph1-17"
+           overflow="visible">
+          <path
+             d="M 1 0 L 1 -2.65625 L 0.5 -2.65625 L 0.5 0 Z M 1.0625 -3.34375 L 1.0625 -3.953125 L 0.453125 -3.953125 L 0.453125 -3.34375 Z M 1.0625 -3.34375 "
+             style="stroke:none;"
+             id="path99" />
+        </symbol>
+        <symbol
+           id="glyph1-18"
+           overflow="visible">
+          <path
+             d="M 2.765625 0 L 2.765625 -4.140625 L 2.265625 -4.140625 L 2.265625 -2.390625 C 1.875 -2.671875 1.5 -2.703125 1.3125 -2.703125 C 0.6875 -2.703125 0.21875 -2.078125 0.21875 -1.328125 C 0.21875 -0.5625 0.6875 0.0625 1.296875 0.0625 C 1.671875 0.0625 2.015625 -0.109375 2.25 -0.3125 L 2.25 0 Z M 2.25 -0.734375 C 2.09375 -0.5 1.875 -0.328125 1.578125 -0.328125 C 1.15625 -0.328125 0.734375 -0.625 0.734375 -1.3125 C 0.734375 -2.0625 1.234375 -2.3125 1.640625 -2.3125 C 1.890625 -2.3125 2.09375 -2.21875 2.25 -2.015625 Z M 2.25 -0.734375 "
+             style="stroke:none;"
+             id="path102" />
+        </symbol>
+        <symbol
+           id="glyph1-19"
+           overflow="visible">
+          <path
+             d="M 2.78125 0 L 2.78125 -1.765625 C 2.78125 -2.234375 2.640625 -2.703125 1.90625 -2.703125 C 1.390625 -2.703125 1.109375 -2.40625 1 -2.28125 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 Z M 2.78125 0 "
+             style="stroke:none;"
+             id="path105" />
+        </symbol>
+        <symbol
+           id="glyph1-20"
+           overflow="visible">
+          <path
+             d="M 4.234375 -2.65625 L 3.765625 -2.65625 L 3.203125 -0.859375 C 3.15625 -0.6875 3.09375 -0.484375 3.078125 -0.359375 L 3.0625 -0.359375 C 3.03125 -0.59375 2.828125 -1.234375 2.8125 -1.28125 L 2.375 -2.65625 L 1.921875 -2.65625 C 1.75 -2.140625 1.296875 -0.796875 1.25 -0.359375 L 1.234375 -0.359375 C 1.1875 -0.78125 0.75 -2.109375 0.65625 -2.390625 C 0.609375 -2.53125 0.609375 -2.546875 0.578125 -2.65625 L 0.09375 -2.65625 L 0.96875 0 L 1.46875 0 L 1.84375 -1.15625 C 1.921875 -1.453125 2.109375 -2.015625 2.140625 -2.28125 L 2.140625 -2.296875 C 2.15625 -2.171875 2.1875 -2.03125 2.234375 -1.890625 L 2.359375 -1.4375 L 2.8125 0 L 3.359375 0 Z M 4.234375 -2.65625 "
+             style="stroke:none;"
+             id="path108" />
+        </symbol>
+        <symbol
+           id="glyph1-21"
+           overflow="visible">
+          <path
+             d="M 2.984375 -1 L 2.984375 -1.390625 L 2.359375 -1.390625 L 2.359375 -3.921875 L 1.765625 -3.921875 L 0.171875 -1.390625 L 0.171875 -1 L 1.84375 -1 L 1.84375 0 L 2.359375 0 L 2.359375 -1 Z M 1.890625 -1.390625 L 0.6875 -1.390625 C 0.859375 -1.671875 1.890625 -3.265625 1.890625 -3.625 Z M 1.890625 -1.390625 "
+             style="stroke:none;"
+             id="path111" />
+        </symbol>
+        <symbol
+           id="glyph1-22"
+           overflow="visible">
+          <path
+             d="M 1.140625 0 L 1.140625 -0.53125 L 0.609375 -0.53125 L 0.609375 0 Z M 1.140625 0 "
+             style="stroke:none;"
+             id="path114" />
+        </symbol>
+        <symbol
+           id="glyph1-23"
+           overflow="visible">
+          <path
+             d="M 2.90625 -2 C 2.90625 -3.625 2.171875 -4.046875 1.609375 -4.046875 C 1.078125 -4.046875 0.828125 -3.796875 0.65625 -3.609375 C 0.28125 -3.234375 0.265625 -2.8125 0.265625 -2.578125 C 0.265625 -1.8125 0.6875 -1.15625 1.265625 -1.15625 C 1.9375 -1.15625 2.3125 -1.59375 2.34375 -1.640625 C 2.25 -0.6875 1.796875 -0.265625 1.296875 -0.265625 C 0.984375 -0.265625 0.796875 -0.375 0.65625 -0.5 L 0.453125 -0.15625 C 0.75 0.0625 1.015625 0.125 1.296875 0.125 C 2.140625 0.125 2.90625 -0.71875 2.90625 -2 Z M 2.328125 -2.453125 C 2.328125 -2.015625 2.0625 -1.546875 1.546875 -1.546875 C 1.3125 -1.546875 1.140625 -1.609375 0.984375 -1.859375 C 0.828125 -2.09375 0.8125 -2.3125 0.8125 -2.578125 C 0.8125 -2.8125 0.8125 -3.078125 1 -3.34375 C 1.125 -3.53125 1.296875 -3.671875 1.59375 -3.671875 C 2.171875 -3.671875 2.296875 -2.96875 2.328125 -2.59375 C 2.328125 -2.546875 2.328125 -2.5 2.328125 -2.453125 Z M 2.328125 -2.453125 "
+             style="stroke:none;"
+             id="path117" />
+        </symbol>
+        <symbol
+           id="glyph1-24"
+           overflow="visible">
+          <path
+             d="M 2.90625 -1.9375 C 2.90625 -2.21875 2.90625 -2.921875 2.625 -3.421875 C 2.328125 -3.953125 1.875 -4.046875 1.578125 -4.046875 C 1.3125 -4.046875 0.84375 -3.953125 0.546875 -3.4375 C 0.265625 -2.96875 0.25 -2.3125 0.25 -1.9375 C 0.25 -1.5 0.28125 -0.953125 0.53125 -0.5 C 0.78125 -0.015625 1.234375 0.125 1.578125 0.125 C 2.171875 0.125 2.5 -0.21875 2.6875 -0.59375 C 2.890625 -1.015625 2.90625 -1.5625 2.90625 -1.9375 Z M 2.390625 -2.015625 C 2.390625 -1.625 2.390625 -1.171875 2.25 -0.796875 C 2.078125 -0.359375 1.78125 -0.265625 1.578125 -0.265625 C 1.328125 -0.265625 1.046875 -0.40625 0.890625 -0.84375 C 0.78125 -1.203125 0.765625 -1.578125 0.765625 -2.015625 C 0.765625 -2.5625 0.765625 -3.640625 1.578125 -3.640625 C 2.390625 -3.640625 2.390625 -2.5625 2.390625 -2.015625 Z M 2.390625 -2.015625 "
+             style="stroke:none;"
+             id="path120" />
+        </symbol>
+        <symbol
+           id="glyph1-25"
+           overflow="visible">
+          <path
+             d="M 2.703125 0 L 2.703125 -0.375 L 1.921875 -0.375 L 1.921875 -4.046875 L 1.78125 -4.046875 C 1.390625 -3.6875 0.90625 -3.65625 0.546875 -3.640625 L 0.546875 -3.265625 C 0.78125 -3.28125 1.078125 -3.28125 1.375 -3.40625 L 1.375 -0.375 L 0.578125 -0.375 L 0.578125 0 Z M 2.703125 0 "
+             style="stroke:none;"
+             id="path123" />
+        </symbol>
+        <symbol
+           id="glyph2-0"
+           overflow="visible">
+          <path
+             d=""
+             style="stroke:none;"
+             id="path126" />
+        </symbol>
+        <symbol
+           id="glyph2-1"
+           overflow="visible">
+          <path
+             d="M 5.625 -0.328125 C 5.625 -0.671875 5.390625 -0.671875 5 -0.671875 L 5 -3.296875 C 5 -3.515625 5 -4.765625 4.03125 -4.765625 C 3.703125 -4.765625 3.25 -4.625 2.953125 -4.1875 C 2.78125 -4.5625 2.484375 -4.765625 2.125 -4.765625 C 1.78125 -4.765625 1.453125 -4.609375 1.1875 -4.359375 C 1.171875 -4.6875 0.953125 -4.6875 0.75 -4.6875 L 0.40625 -4.6875 C 0.234375 -4.6875 -0.046875 -4.6875 -0.046875 -4.359375 C -0.046875 -4.03125 0.1875 -4.03125 0.578125 -4.03125 L 0.578125 -0.671875 C 0.1875 -0.671875 -0.046875 -0.671875 -0.046875 -0.328125 C -0.046875 0 0.25 0 0.40625 0 L 1.359375 0 C 1.53125 0 1.8125 0 1.8125 -0.328125 C 1.8125 -0.671875 1.578125 -0.671875 1.1875 -0.671875 L 1.1875 -2.609375 C 1.1875 -3.578125 1.640625 -4.09375 2.078125 -4.09375 C 2.328125 -4.09375 2.484375 -3.90625 2.484375 -3.203125 L 2.484375 -0.671875 C 2.28125 -0.671875 2 -0.671875 2 -0.328125 C 2 0 2.296875 0 2.453125 0 L 3.265625 0 C 3.4375 0 3.71875 0 3.71875 -0.328125 C 3.71875 -0.671875 3.484375 -0.671875 3.09375 -0.671875 L 3.09375 -2.609375 C 3.09375 -3.578125 3.546875 -4.09375 3.984375 -4.09375 C 4.234375 -4.09375 4.390625 -3.90625 4.390625 -3.203125 L 4.390625 -0.671875 C 4.1875 -0.671875 3.90625 -0.671875 3.90625 -0.328125 C 3.90625 0 4.203125 0 4.359375 0 L 5.171875 0 C 5.34375 0 5.625 0 5.625 -0.328125 Z M 5.625 -0.328125 "
+             style="stroke:none;"
+             id="path129" />
+        </symbol>
+        <symbol
+           id="glyph2-2"
+           overflow="visible">
+          <path
+             d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 3.25 -1.703125 C 3.109375 -1.3125 3.046875 -1.109375 2.96875 -0.765625 C 2.90625 -0.984375 2.8125 -1.203125 2.734375 -1.421875 L 1.71875 -4.03125 L 2 -4.03125 C 2.15625 -4.03125 2.421875 -4.03125 2.421875 -4.359375 C 2.421875 -4.6875 2.171875 -4.6875 2 -4.6875 L 0.71875 -4.6875 C 0.546875 -4.6875 0.28125 -4.6875 0.28125 -4.359375 C 0.28125 -4.03125 0.5625 -4.03125 0.71875 -4.03125 L 1.0625 -4.03125 L 2.609375 -0.140625 C 2.640625 -0.03125 2.640625 0 2.640625 0 C 2.640625 0 2.375 0.921875 2.234375 1.1875 C 1.921875 1.78125 1.53125 1.8125 1.359375 1.8125 C 1.359375 1.8125 1.421875 1.71875 1.421875 1.578125 C 1.421875 1.3125 1.21875 1.109375 0.953125 1.109375 C 0.65625 1.109375 0.46875 1.3125 0.46875 1.59375 C 0.46875 2.046875 0.84375 2.484375 1.375 2.484375 C 2.46875 2.484375 2.953125 1.046875 3 0.921875 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 "
+             style="stroke:none;"
+             id="path132" />
+        </symbol>
+        <symbol
+           id="glyph2-3"
+           overflow="visible">
+          <path
+             d="M 5.09375 -2.359375 C 5.09375 -3.71875 4.078125 -4.796875 2.859375 -4.796875 C 1.640625 -4.796875 0.625 -3.71875 0.625 -2.359375 C 0.625 -0.96875 1.65625 0.0625 2.859375 0.0625 C 4.046875 0.0625 5.09375 -0.984375 5.09375 -2.359375 Z M 4.328125 -2.421875 C 4.328125 -1.421875 3.65625 -0.59375 2.859375 -0.59375 C 2.046875 -0.59375 1.375 -1.421875 1.375 -2.421875 C 1.375 -3.421875 2.078125 -4.125 2.859375 -4.125 C 3.640625 -4.125 4.328125 -3.421875 4.328125 -2.421875 Z M 4.328125 -2.421875 "
+             style="stroke:none;"
+             id="path135" />
+        </symbol>
+        <symbol
+           id="glyph2-4"
+           overflow="visible">
+          <path
+             d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 2.859375 -0.515625 L 1.671875 -4.03125 L 1.96875 -4.03125 C 2.140625 -4.03125 2.40625 -4.03125 2.40625 -4.359375 C 2.40625 -4.6875 2.140625 -4.6875 1.96875 -4.6875 L 0.703125 -4.6875 C 0.515625 -4.6875 0.265625 -4.6875 0.265625 -4.359375 C 0.265625 -4.03125 0.53125 -4.03125 0.703125 -4.03125 L 1.03125 -4.03125 L 2.28125 -0.328125 C 2.40625 0.046875 2.625 0.046875 2.859375 0.046875 C 3.0625 0.046875 3.3125 0.046875 3.4375 -0.3125 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 "
+             style="stroke:none;"
+             id="path138" />
+        </symbol>
+        <symbol
+           id="glyph2-5"
+           overflow="visible">
+          <path
+             d="M 5.046875 -1.1875 C 5.046875 -1.484375 4.734375 -1.484375 4.671875 -1.484375 C 4.46875 -1.484375 4.390625 -1.453125 4.3125 -1.25 C 4.078125 -0.703125 3.484375 -0.59375 3.1875 -0.59375 C 2.359375 -0.59375 1.546875 -1.140625 1.375 -2.078125 L 4.625 -2.078125 C 4.84375 -2.078125 5.046875 -2.078125 5.046875 -2.484375 C 5.046875 -3.71875 4.359375 -4.796875 2.9375 -4.796875 C 1.640625 -4.796875 0.59375 -3.703125 0.59375 -2.359375 C 0.59375 -1.03125 1.703125 0.0625 3.109375 0.0625 C 4.546875 0.0625 5.046875 -0.921875 5.046875 -1.1875 Z M 4.28125 -2.734375 L 1.390625 -2.734375 C 1.53125 -3.53125 2.171875 -4.125 2.9375 -4.125 C 3.5 -4.125 4.1875 -3.859375 4.28125 -2.734375 Z M 4.28125 -2.734375 "
+             style="stroke:none;"
+             id="path141" />
+        </symbol>
+        <symbol
+           id="glyph2-6"
+           overflow="visible">
+          <path
+             d="M 5.296875 -4.078125 C 5.296875 -4.296875 5.171875 -4.765625 4.265625 -4.765625 C 3.71875 -4.765625 3.015625 -4.5625 2.421875 -3.875 L 2.421875 -4.25 C 2.421875 -4.578125 2.359375 -4.6875 1.984375 -4.6875 L 0.78125 -4.6875 C 0.625 -4.6875 0.34375 -4.6875 0.34375 -4.359375 C 0.34375 -4.03125 0.609375 -4.03125 0.78125 -4.03125 L 1.671875 -4.03125 L 1.671875 -0.671875 L 0.78125 -0.671875 C 0.625 -0.671875 0.34375 -0.671875 0.34375 -0.34375 C 0.34375 0 0.609375 0 0.78125 0 L 3.625 0 C 3.796875 0 4.078125 0 4.078125 -0.328125 C 4.078125 -0.671875 3.796875 -0.671875 3.625 -0.671875 L 2.421875 -0.671875 L 2.421875 -2.03125 C 2.421875 -3.046875 3.0625 -4.09375 4.375 -4.09375 C 4.390625 -3.828125 4.578125 -3.609375 4.84375 -3.609375 C 5.09375 -3.609375 5.296875 -3.796875 5.296875 -4.078125 Z M 5.296875 -4.078125 "
+             style="stroke:none;"
+             id="path144" />
+        </symbol>
+        <symbol
+           id="glyph2-7"
+           overflow="visible">
+          <path
+             d="M 5.09375 -0.328125 C 5.09375 -0.671875 4.828125 -0.671875 4.65625 -0.671875 L 3.234375 -0.671875 L 3.234375 -6.203125 C 3.234375 -6.546875 3.171875 -6.65625 2.796875 -6.65625 L 1.078125 -6.65625 C 0.90625 -6.65625 0.625 -6.65625 0.625 -6.3125 C 0.625 -5.984375 0.921875 -5.984375 1.0625 -5.984375 L 2.484375 -5.984375 L 2.484375 -0.671875 L 1.078125 -0.671875 C 0.90625 -0.671875 0.625 -0.671875 0.625 -0.328125 C 0.625 0 0.921875 0 1.0625 0 L 4.65625 0 C 4.8125 0 5.09375 0 5.09375 -0.328125 Z M 5.09375 -0.328125 "
+             style="stroke:none;"
+             id="path147" />
+        </symbol>
+        <symbol
+           id="glyph2-8"
+           overflow="visible">
+          <path
+             d="M 5.65625 -0.34375 C 5.65625 -0.671875 5.375 -0.671875 5.21875 -0.671875 C 4.765625 -0.671875 4.65625 -0.71875 4.5625 -0.75 L 4.5625 -3.109375 C 4.5625 -3.875 3.96875 -4.796875 2.40625 -4.796875 C 1.9375 -4.796875 0.828125 -4.796875 0.828125 -4 C 0.828125 -3.671875 1.0625 -3.5 1.3125 -3.5 C 1.484375 -3.5 1.78125 -3.59375 1.796875 -4 C 1.796875 -4.078125 1.8125 -4.09375 2.03125 -4.109375 C 2.171875 -4.125 2.3125 -4.125 2.421875 -4.125 C 3.25 -4.125 3.8125 -3.796875 3.8125 -3.015625 C 1.890625 -2.984375 0.546875 -2.4375 0.546875 -1.390625 C 0.546875 -0.640625 1.234375 0.0625 2.34375 0.0625 C 2.75 0.0625 3.421875 -0.015625 3.9375 -0.34375 C 4.171875 -0.015625 4.6875 0 5.109375 0 C 5.40625 0 5.65625 0 5.65625 -0.34375 Z M 3.8125 -1.453125 C 3.8125 -1.203125 3.8125 -0.984375 3.390625 -0.78125 C 3 -0.59375 2.5 -0.59375 2.421875 -0.59375 C 1.75 -0.59375 1.296875 -0.96875 1.296875 -1.390625 C 1.296875 -1.921875 2.234375 -2.328125 3.8125 -2.375 Z M 3.8125 -1.453125 "
+             style="stroke:none;"
+             id="path150" />
+        </symbol>
+      </g>
+      <clipPath
+         id="clip1">
+        <path
+           d="M 0.167969 0 L 396.535156 0 L 396.535156 297.277344 L 0.167969 297.277344 Z M 0.167969 0 "
+           id="path155" />
+      </clipPath>
+      <clipPath
+         id="clip3">
+        <path
+           d="M 1 0.0117188 L 15.917969 0.0117188 L 15.917969 9 L 1 9 Z M 1 0.0117188 "
+           id="path158" />
+      </clipPath>
+      <clipPath
+         id="clip4">
+        <path
+           d="M 0.300781 10 L 15.917969 10 L 15.917969 22.789063 L 0.300781 22.789063 Z M 0.300781 10 "
+           id="path161" />
+      </clipPath>
+      <clipPath
+         id="clip2">
+        <rect
+           height="23"
+           width="16"
+           x="0"
+           y="0"
+           id="rect164" />
+      </clipPath>
+      <g
+         clip-path="url(#clip2)"
+         id="surface5">
+        <g
+           clip-path="url(#clip3)"
+           clip-rule="nonzero"
+           id="g169">
+          <path
+             d="M 1.308594 0.0117188 C 1.246094 0.0117188 1.207031 0.03125 1.179688 0.0585938 C 1.152344 0.0859375 1.132813 0.121094 1.132813 0.1875 L 1.132813 8.109375 C 1.132813 8.171875 1.152344 8.210938 1.179688 8.238281 C 1.207031 8.265625 1.246094 8.285156 1.308594 8.285156 L 3.378906 8.285156 C 4.1875 8.285156 4.675781 8.101563 4.972656 7.714844 C 5.414063 7.1875 5.429688 6.339844 5.429688 5.035156 L 5.429688 3.257813 C 5.429688 1.957031 5.414063 1.109375 4.972656 0.578125 C 4.675781 0.195313 4.1875 0.0117188 3.378906 0.0117188 Z M 2.449219 0.976563 L 3.179688 0.976563 C 3.503906 0.976563 3.695313 1.03125 3.84375 1.210938 C 4.074219 1.484375 4.09375 2.042969 4.09375 3.167969 L 4.09375 5.128906 C 4.09375 6.25 4.074219 6.808594 3.84375 7.085938 C 3.695313 7.261719 3.503906 7.316406 3.179688 7.316406 L 2.449219 7.316406 Z M 15.039063 0.1875 C 15.039063 0.121094 15.019531 0.0859375 14.996094 0.0585938 C 14.964844 0.03125 14.929688 0.0117188 14.867188 0.0117188 L 13.898438 0.0117188 C 13.835938 0.0117188 13.796875 0.03125 13.769531 0.0585938 C 13.742188 0.0859375 13.722656 0.121094 13.722656 0.1875 L 13.722656 6.035156 C 13.722656 6.644531 13.675781 7.007813 13.480469 7.226563 C 13.34375 7.375 13.15625 7.445313 12.890625 7.445313 C 12.644531 7.445313 12.464844 7.382813 12.320313 7.226563 C 12.136719 7.019531 12.078125 6.667969 12.078125 6.035156 L 12.078125 0.1875 C 12.078125 0.121094 12.058594 0.0859375 12.03125 0.0546875 C 12.003906 0.03125 11.96875 0.0117188 11.902344 0.0117188 L 10.933594 0.0117188 C 10.875 0.0117188 10.835938 0.03125 10.808594 0.0546875 C 10.78125 0.0859375 10.761719 0.121094 10.761719 0.1875 L 10.761719 6.035156 C 10.761719 6.890625 10.878906 7.421875 11.214844 7.796875 C 11.566406 8.183594 12.101563 8.386719 12.90625 8.386719 C 13.722656 8.386719 14.246094 8.167969 14.566406 7.792969 C 14.949219 7.355469 15.039063 6.828125 15.039063 6.035156 Z M 8.785156 8.109375 C 8.785156 8.171875 8.765625 8.210938 8.738281 8.238281 C 8.710938 8.265625 8.671875 8.285156 8.613281 8.285156 L 7.550781 8.285156 C 7.488281 8.285156 7.453125 8.265625 7.425781 8.238281 C 7.398438 8.210938 7.378906 8.171875 7.378906 8.109375 L 7.378906 1.058594 L 6.132813 1.058594 C 6.070313 1.058594 6.035156 1.039063 6.007813 1.011719 C 5.976563 0.984375 5.960938 0.945313 5.960938 0.882813 L 5.960938 0.1875 C 5.960938 0.121094 5.976563 0.0859375 6.007813 0.0585938 C 6.035156 0.03125 6.070313 0.0117188 6.132813 0.0117188 L 10.027344 0.0117188 C 10.09375 0.0117188 10.128906 0.03125 10.15625 0.0585938 C 10.183594 0.0859375 10.203125 0.121094 10.203125 0.1875 L 10.203125 0.882813 C 10.203125 0.945313 10.183594 0.984375 10.15625 1.011719 C 10.128906 1.039063 10.09375 1.058594 10.027344 1.058594 L 8.785156 1.058594 L 8.785156 8.109375 "
+             style=" stroke:none;fill-rule:nonzero;fill:rgb(43.920898%,43.920898%,43.920898%);fill-opacity:1;"
+             id="path167" />
+        </g>
+        <g
+           clip-path="url(#clip4)"
+           clip-rule="nonzero"
+           id="g173">
+          <path
+             d="M 15.917969 12.421875 L 12.59375 14.167969 C 8.289063 12.496094 7.929688 12.496094 3.625 14.167969 L 0.300781 12.421875 L 3.625 10.675781 C 7.929688 12.351563 8.289063 12.351563 12.59375 10.675781 Z M 15.917969 16.734375 L 12.59375 18.480469 C 8.289063 16.804688 7.929688 16.804688 3.625 18.480469 L 0.300781 16.734375 L 3.625 14.988281 C 7.929688 16.664063 8.289063 16.664063 12.59375 14.988281 Z M 15.917969 21.046875 L 12.59375 22.789063 C 8.289063 21.117188 7.929688 21.117188 3.625 22.789063 L 0.300781 21.046875 L 3.625 19.300781 C 7.929688 20.976563 8.289063 20.976563 12.59375 19.300781 L 15.917969 21.046875 "
+             style=" stroke:none;fill-rule:nonzero;fill:rgb(59.999084%,0%,0%);fill-opacity:1;"
+             id="path171" />
+        </g>
+      </g>
+      <clipPath
+         id="clip5">
+        <path
+           d="M 0.167969 0 L 52 0 L 52 10 L 0.167969 10 Z M 0.167969 0 "
+           id="path176" />
+      </clipPath>
+    </defs>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g195"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="26.680883"
+         xlink:href="#glyph0-1"
+         y="140.37027"
+         id="use187"
+         width="100%"
+         height="100%" />
+      <use
+         x="34.096596"
+         xlink:href="#glyph0-2"
+         y="140.37027"
+         id="use189"
+         width="100%"
+         height="100%" />
+      <use
+         x="39.726482"
+         xlink:href="#glyph0-3"
+         y="140.37027"
+         id="use191"
+         width="100%"
+         height="100%" />
+      <use
+         x="42.329498"
+         xlink:href="#glyph0-4"
+         y="140.37027"
+         id="use193"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g201"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="50.134193"
+         xlink:href="#glyph0-3"
+         y="140.37027"
+         id="use197"
+         width="100%"
+         height="100%" />
+      <use
+         x="52.737213"
+         xlink:href="#glyph0-4"
+         y="140.37027"
+         id="use199"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g211"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="60.552807"
+         xlink:href="#glyph0-4"
+         y="140.37027"
+         id="use203"
+         width="100%"
+         height="100%" />
+      <use
+         x="64.729187"
+         xlink:href="#glyph0-5"
+         y="140.37027"
+         id="use205"
+         width="100%"
+         height="100%" />
+      <use
+         x="70.177109"
+         xlink:href="#glyph0-6"
+         y="140.37027"
+         id="use207"
+         width="100%"
+         height="100%" />
+      <use
+         x="78.833862"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use209"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g227"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="87.305382"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use213"
+         width="100%"
+         height="100%" />
+      <use
+         x="92.148582"
+         xlink:href="#glyph0-8"
+         y="140.37027"
+         id="use215"
+         width="100%"
+         height="100%" />
+      <use
+         x="97.172661"
+         xlink:href="#glyph0-9"
+         y="140.37027"
+         id="use217"
+         width="100%"
+         height="100%" />
+      <use
+         x="102.4092"
+         xlink:href="#glyph0-6"
+         y="140.37027"
+         id="use219"
+         width="100%"
+         height="100%" />
+      <use
+         x="111.06596"
+         xlink:href="#glyph0-10"
+         y="140.37027"
+         id="use221"
+         width="100%"
+         height="100%" />
+      <use
+         x="116.69584"
+         xlink:href="#glyph0-11"
+         y="140.37027"
+         id="use223"
+         width="100%"
+         height="100%" />
+      <use
+         x="119.29886"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use225"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g239"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="127.77038"
+         xlink:href="#glyph0-12"
+         y="140.37027"
+         id="use229"
+         width="100%"
+         height="100%" />
+      <use
+         x="131.70486"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use231"
+         width="100%"
+         height="100%" />
+      <use
+         x="136.54808"
+         xlink:href="#glyph0-8"
+         y="140.37027"
+         id="use233"
+         width="100%"
+         height="100%" />
+      <use
+         x="141.57216"
+         xlink:href="#glyph0-12"
+         y="140.37027"
+         id="use235"
+         width="100%"
+         height="100%" />
+      <use
+         x="145.50664"
+         xlink:href="#glyph0-13"
+         y="140.37027"
+         id="use237"
+         width="100%"
+         height="100%" />
+    </g>
+    <rect
+       style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3"
+       id="rect1267"
+       width="52.643456"
+       height="37.660316"
+       x="168.864"
+       y="98.807709" />
+    <rect
+       style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3"
+       id="rect1269"
+       width="89.088921"
+       height="68.436493"
+       x="58.717697"
+       y="175.74815" />
+    <rect
+       style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3"
+       id="rect1271"
+       width="63.172146"
+       height="59.527596"
+       x="282.65485"
+       y="45.354359" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:30px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75"
+       x="170.48381"
+       y="202.87978"
+       id="text1275"><tspan
+         sodipodi:role="line"
+         id="tspan1273"
+         x="170.48381"
+         y="202.87978"
+         style="stroke-width:0.75">Awesome!</tspan></text>
+  </g>
+</svg>
diff --git a/docs/new_project_nup.pdf b/docs/new_project_nup.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..97d43b3079011acb097f539d136038da2ecd15dc
Binary files /dev/null and b/docs/new_project_nup.pdf differ
diff --git a/docs/new_project_nup.png b/docs/new_project_nup.png
new file mode 100644
index 0000000000000000000000000000000000000000..405ca49aff4f4c910fad6d697d6cece6401e8bd8
Binary files /dev/null and b/docs/new_project_nup.png differ
diff --git a/examples/basic1/02450_beamer_preamble.tex b/examples/basic1/02450_beamer_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2dd8694d7ac59705810fe9deb9816ad20f034655
--- /dev/null
+++ b/examples/basic1/02450_beamer_preamble.tex
@@ -0,0 +1,93 @@
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage{pgfplots}
+\pgfplotsset{compat=newest}
+\usepackage{booktabs}
+\usepackage{siunitx}
+
+\usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
+\svgpath{osvgs/}
+
+\usepackage{url}
+\usepackage{pmboxdraw}
+\usepackage{amssymb}
+\usepackage{pgffor}
+	
+\usetheme[department=compute]{DTU}
+\newcommand{\tabitem}{{\color{dtured}$\bullet$} }
+\usepackage[absolute,overlay]{textpos}
+\textblockorigin{0mm}{0mm}
+
+\setlength{\TPHorizModule}{\paperwidth}
+\setlength{\TPVertModule}{\paperheight}
+
+% Latin Modern
+\usepackage{lmodern}
+\newcommand{\overlabel}[1]{ \begin{textblock}{1}(0,0) \url{#1} \end{textblock} }
+
+% Verdana font type
+%\usepackage{verdana}
+% Helvetica
+%\usepackage{helvet}
+% Times (text and math)
+%\usepackage{newtx, newtxmath}
+
+% \usetheme[department=compute]{DTU}
+
+\makeatletter
+
+\def\osvg{\@ifnextchar[{\@with}{\@without} }
+\def\@with[#1]#2{
+	\foreach[count=\n] \x in {#1}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf}{
+			\begin{textblock}{1}(0,0)
+				\includegraphics<\x>[width=1.0\linewidth]{osvgs/x_do_not_edit_#2-l\n_nofonts}
+			\end{textblock}
+			}{ File: \url{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf} does not exist; bad layer import? Check \url{osvgs/#2.svg} including layer information.
+			}
+		}
+	}
+	\olabel{#2}
+}
+\def\@without#1{
+	% Try to include first 10 layer files if they are there.
+	\foreach[count=\n] \x in {1,...,10}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#1-l\n_nofonts.pdf}{
+				\begin{textblock}{1}(0,0)
+					\includegraphics<\n->[width=1.0\linewidth]{osvgs/x_do_not_edit_#1-l\n_nofonts}
+				\end{textblock}
+			}{
+		}
+	}
+	}
+	\olabel{#1}
+}
+\newcommand{\olabel}[1]{
+	\iftoggle{overlabel_includelabels}{
+		\begin{textblock}{1}(0,0) \url{#1} \end{textblock}
+	}{ 
+	\begin{textblock}{1}(0,0) 	{\color{white} \url{#1} } \end{textblock}
+	}
+}
+
+\makeatother
+
+\makeatother
+\ifdefined\bluem
+% nothing.
+\else
+
+\newcommand\bluem[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{ #1 }}}
+\newcommand\redm[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{ #1 }}}
+\newcommand\greenm[1]{{\textcolor[HTML]{398E00}{ #1 }}}
+\newcommand\yellowm[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{ #1 }}}
+				
+\newcommand\bluet[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{\textbf{#1}}}}
+\newcommand\redt[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{\textbf{#1}}}}
+\newcommand\greent[1]{{\textcolor[HTML]{398E00}{\textbf{#1}}}}
+\newcommand\yellowt[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{\textbf{#1}}}}
+\fi
\ No newline at end of file
diff --git a/examples/basic1/beamer_slider_preamble.tex b/examples/basic1/beamer_slider_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2dd8694d7ac59705810fe9deb9816ad20f034655
--- /dev/null
+++ b/examples/basic1/beamer_slider_preamble.tex
@@ -0,0 +1,93 @@
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage{pgfplots}
+\pgfplotsset{compat=newest}
+\usepackage{booktabs}
+\usepackage{siunitx}
+
+\usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
+\svgpath{osvgs/}
+
+\usepackage{url}
+\usepackage{pmboxdraw}
+\usepackage{amssymb}
+\usepackage{pgffor}
+	
+\usetheme[department=compute]{DTU}
+\newcommand{\tabitem}{{\color{dtured}$\bullet$} }
+\usepackage[absolute,overlay]{textpos}
+\textblockorigin{0mm}{0mm}
+
+\setlength{\TPHorizModule}{\paperwidth}
+\setlength{\TPVertModule}{\paperheight}
+
+% Latin Modern
+\usepackage{lmodern}
+\newcommand{\overlabel}[1]{ \begin{textblock}{1}(0,0) \url{#1} \end{textblock} }
+
+% Verdana font type
+%\usepackage{verdana}
+% Helvetica
+%\usepackage{helvet}
+% Times (text and math)
+%\usepackage{newtx, newtxmath}
+
+% \usetheme[department=compute]{DTU}
+
+\makeatletter
+
+\def\osvg{\@ifnextchar[{\@with}{\@without} }
+\def\@with[#1]#2{
+	\foreach[count=\n] \x in {#1}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf}{
+			\begin{textblock}{1}(0,0)
+				\includegraphics<\x>[width=1.0\linewidth]{osvgs/x_do_not_edit_#2-l\n_nofonts}
+			\end{textblock}
+			}{ File: \url{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf} does not exist; bad layer import? Check \url{osvgs/#2.svg} including layer information.
+			}
+		}
+	}
+	\olabel{#2}
+}
+\def\@without#1{
+	% Try to include first 10 layer files if they are there.
+	\foreach[count=\n] \x in {1,...,10}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#1-l\n_nofonts.pdf}{
+				\begin{textblock}{1}(0,0)
+					\includegraphics<\n->[width=1.0\linewidth]{osvgs/x_do_not_edit_#1-l\n_nofonts}
+				\end{textblock}
+			}{
+		}
+	}
+	}
+	\olabel{#1}
+}
+\newcommand{\olabel}[1]{
+	\iftoggle{overlabel_includelabels}{
+		\begin{textblock}{1}(0,0) \url{#1} \end{textblock}
+	}{ 
+	\begin{textblock}{1}(0,0) 	{\color{white} \url{#1} } \end{textblock}
+	}
+}
+
+\makeatother
+
+\makeatother
+\ifdefined\bluem
+% nothing.
+\else
+
+\newcommand\bluem[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{ #1 }}}
+\newcommand\redm[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{ #1 }}}
+\newcommand\greenm[1]{{\textcolor[HTML]{398E00}{ #1 }}}
+\newcommand\yellowm[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{ #1 }}}
+				
+\newcommand\bluet[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{\textbf{#1}}}}
+\newcommand\redt[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{\textbf{#1}}}}
+\newcommand\greent[1]{{\textcolor[HTML]{398E00}{\textbf{#1}}}}
+\newcommand\yellowt[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{\textbf{#1}}}}
+\fi
\ No newline at end of file
diff --git a/examples/basic1/beamercolorthemeDTU.sty b/examples/basic1/beamercolorthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..8e406d195b7a016415ed00d0b0d42a0dd8b914bd
--- /dev/null
+++ b/examples/basic1/beamercolorthemeDTU.sty
@@ -0,0 +1,29 @@
+% beamercolorthemeDTU.sty
+% This file is a part of the DTU beamer package and makes sure that
+% the DTU colours are available. This file does neither redefine 
+% beamer settings, nor does it add new configurations. It has to be 
+% maintained for backward compatibility.
+%
+% Changelog
+% 2011-06-23 jowr Replaced the old colour definitions with the new ones from the design guide
+% 2011-07-05 jowr Added alternative colours for the graphs
+% 2011-08-16 jowr Moved colour definitions to resources folder, also used in poster class
+% 2014-09-27 jowr Added documentation and prepared merge to git repository
+%
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Load the file if it exists, throw a warning otherwise
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+\InputIfFileExists{dtucolours}{
+    \PackageInfo{dtubeamer}{Successfully loaded the DTU colours.}
+  }{
+    \PackageWarning{dtubeamer}{Could not load the colours from dtucolours.sty. This compilation is likely to fail.}
+  }%
+
+\mode<presentation>
+
+% The new design does not need any adaption here, black is 
+% the default colour. 
+
+\mode<all> 
\ No newline at end of file
diff --git a/examples/basic1/beamerfontthemeDTU.sty b/examples/basic1/beamerfontthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..49c4eab954b5f0d2e9abbbe1034921d212d260af
--- /dev/null
+++ b/examples/basic1/beamerfontthemeDTU.sty
@@ -0,0 +1,38 @@
+% Copyright 2014 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2014
+% DTU Official Presentation
+
+% For PDFLATEX
+\usefonttheme{professionalfonts}
+
+% Title font
+\setbeamerfont{title}{size=\large, series=\bfseries}
+\setbeamercolor{title}{fg=black}
+
+% Subtitle font
+\setbeamerfont{subtitle}{size=\small, series=\normalfont}
+
+% Author font
+\setbeamerfont{author}{size=\small, series=\normalfont}
+
+% Footline
+\setbeamerfont{framecounter in head/foot}{size=\tiny}
+\setbeamerfont{department in head/foot}{size=\tiny, series=\bfseries}
+\setbeamerfont{title in head/foot}{size=\tiny}
+\setbeamerfont{date in head/foot}{size=\tiny}
+
+% Frametitle
+\setbeamerfont{frametitle}{size=\large, series=\bfseries}
+\setbeamerfont{block body}{size=\small}
+\setbeamerfont{section title}{size=\small}
+\setbeamerfont{block body alerted}{size=\small}
+\setbeamerfont{block body example}{size=\small}
+\setbeamerfont{block title}{size=\large,parent={structure,block body}}
+\setbeamerfont{block title alerted}{parent={block title,alerted text}}
+\setbeamerfont{block title example}{parent={block title,example text}}
+\setbeamerfont{itemize/enumerate body}{size=\small}
+
+% Colors
+\setbeamercolor{frametitle}{fg=black}
+\setbeamercolor{structure}{fg=black}
\ No newline at end of file
diff --git a/examples/basic1/beamerinnerthemeDTU.sty b/examples/basic1/beamerinnerthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..9e464ffdc2be91d9a1d1ef8afc917d90fcf63f94
--- /dev/null
+++ b/examples/basic1/beamerinnerthemeDTU.sty
@@ -0,0 +1,52 @@
+% Copyright 2007 by Till Tantau
+% Copyright 2010 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2010
+% DTU Official Presentation
+
+
+\mode<presentation>
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Title page: DTU
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\defbeamertemplate*{title page}{DTU}[1][]
+{
+	% Set bInTitle to true to make sure the right footline is printed
+	\global\edef\bInTitle{true}
+	
+	\linespread{1.45}
+	% Content of the title page
+	
+	% Title + Subtitle
+	\vspace{\dimTitleOffset}
+	\begin{beamercolorbox}[left]{title box}
+		\usebeamerfont{title}\usebeamercolor[fg]{title}\inserttitle\par
+		\ifx\insertsubtitle\@empty
+		\else
+			\vspace{\dimSubtitleOffset}
+			{\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}
+		\fi
+	\end{beamercolorbox}
+	
+	\vspace{\dimAuthorOffset}
+	% Author
+	\begin{beamercolorbox}[left]{author box}
+		\usebeamerfont{author}\usebeamercolor[fg]{author}\insertauthor
+	\end{beamercolorbox}
+	
+	\vspace{\dimInstituteOffset}% Institute
+	\begin{beamercolorbox}[left]{institute box}
+		\usebeamerfont{institute}\usebeamercolor[fg]{author}\insertinstitute
+	\end{beamercolorbox}
+
+	% Title graphic
+	{\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
+	
+	% Fill the space till bottom
+	\vskip0pt plus 1filll
+}
+
+\mode
+<all> 
diff --git a/examples/basic1/beamerouterthemeDTU.sty b/examples/basic1/beamerouterthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..79b75f4c89cf835cdaf4fdd3ffc8a182d485a9cb
--- /dev/null
+++ b/examples/basic1/beamerouterthemeDTU.sty
@@ -0,0 +1,98 @@
+% Copyright 2014 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2014
+% DTU Official Presentation
+
+\mode<presentation>
+
+\setbeamercolor*{framecounter in head/foot}{parent=palette tertiary}
+\setbeamercolor*{department in head/foot}{parent=palette tertiary}
+\setbeamercolor*{title in head/foot}{parent=palette tertiary}
+\setbeamercolor*{date in head/foot}{parent=palette tertiary}
+
+% No navigation symbols
+\setbeamertemplate{navigation symbols}{} 
+
+% Header
+\setbeamertemplate{headline}
+{
+	\ifdefstring{\bDTUWhiteFrame}{true}
+	{
+		\insertFrameDTUWhiteLogo
+	}
+	{
+		\ifdefstring{\bInTitle}{true}
+		{
+			\insertTitleDTULogo
+		}
+		{
+			\insertFrameDTULogo
+		}
+	}
+}
+
+% Footer
+\setbeamertemplate{footline}
+{
+	\ifdefstring{\bInTitle}{true}
+	{
+		\vspace{-0.35\paperheight}
+		\begin{beamercolorbox}[wd=\paperwidth]{title bottom}
+			\vbox{%
+				\makebox[0pt][l]{\hspace{\dimDTUDepLogoXOffset}\insertdepartmentlogoA}%
+				\vbox{%
+					\hspace{\dimDTUFriseXOffset}%
+					\makebox[0pt][l]{\insertDTUFrise}%
+					\vspace{\dimDTUDepFriseOffset}%
+				}%
+			}%
+			\vspace{\dimDTUFriseYOffset}
+		\end{beamercolorbox}
+		\global\def\bInTitle{false}
+	}
+	{
+		\ifdefstring{\bDTUWhiteFrame}{true}
+		{
+		}
+		{ %
+			\hbox{ %
+				\hspace{\dimTextLeftMargin}\hspace{-1.5pt}\insertframenumber %
+				\setlength{\widthframenumber}{2em + \widthof{\insertframenumber}} %
+				\setlength{\widthdepartment}{1em + \widthof{\insertdepartmentandinstitute}} %
+				\setlength{\widthdate}{1em + \widthof{00 00000000 0000}} % Tue: Added extra 0's (2 to 7) to prevent wrap
+				\setlength{\widthtitle}{\textwidth-\widthframenumber-\widthdepartment-\widthdate-\dimTextLeftMargin-\dimTextLeftMargin} %
+				%\parbox[t]{\widthframenumber}{\insertframenumber} %
+				\parbox[t]{\widthdepartment}{\insertdepartmentandinstitute} %
+				\parbox[t]{\widthtitle}{\raggedleft\insertshorttitleinfooter} %
+				\parbox[t]{\widthdate}{\raggedleft\DTUDateFormat\insertdate} %
+				\vspace{\dimFootlineYOffset} %
+			}
+		}
+	}
+}
+
+% Position the frame title so that it would get into the headline
+\setbeamertemplate{frametitle}
+{
+	\vspace{\dimPlaceTitleInHeader}
+	\ifdefstring{\inShowSection}{true}
+	{
+			\usebeamerfont{section title}\color{black!20}%
+			\ifnumcomp{\thesection}{=}{0}{%
+				\ \par%
+			}
+			{%
+				\insertsection\par
+			}
+	}
+	{
+		\vspace{\dimFrameTitleOffset}
+	}
+	\vspace{-1pt}\usebeamerfont{frametitle}%
+	\ifdefstring{\bDTUWhiteFrame}{true}{\color{white}}{\color{black}}%
+	\insertframetitle
+	\vspace{\dimAfterFrameTitleOffset}
+}
+
+\mode
+<all>
diff --git a/examples/basic1/beamerthemeDTU.sty b/examples/basic1/beamerthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..d8841f692e3920f289df75f62fffc46c869113dc
--- /dev/null
+++ b/examples/basic1/beamerthemeDTU.sty
@@ -0,0 +1,255 @@
+% Copyright Remus Mihail Prunescu
+
+% LaTeX Support Group
+% DTU Official Presentation
+
+\mode<presentation>
+
+\RequirePackage{etoolbox}
+\RequirePackage{datetime}
+\RequirePackage{keyval}
+\RequirePackage{calc}
+
+% Enlarge slide size
+\beamer@paperwidth 1.09375\beamer@paperwidth%
+\beamer@paperheight 1.09375\beamer@paperheight%
+
+% Extra package
+\InputIfFileExists{departments}%
+	{\ClassInfo{}{The file departments.tex with department logo file naming has been loaded.}}%
+	{\ClassInfo{}{The file departments.tex is missing. Consult the manual.}%
+}%
+
+% Default values for options
+\newcommand{\inDepartmentShortName}{elektro}
+\newcommand{\inLanguage}{english}
+\newcommand{\inShowSection}{true}
+
+% Check language
+\@ifpackagewith{babel}{danish}{%
+	\renewcommand{\inLanguage}{danish}%
+}{}
+
+
+% Save options
+\DeclareOptionBeamer{department}{\renewcommand{\inDepartmentShortName}{#1}}
+\DeclareOptionBeamer{showsection}{\renewcommand{\inShowSection}{#1}}
+\ProcessOptionsBeamer
+
+% % % % % % % % % % % %
+% Define Dimensions
+% % % % % % % % % % % %
+
+\newcommand{\dimDTULogoWidth}{0.0394\paperwidth} % Percent
+\newcommand{\dimDTULogoHeight}{0.0777\paperheight} % Percent
+\newcommand{\dimDTULogoYOffset}{0.0404\paperheight} % Percent
+\newcommand{\dimDTULogoXOffset}{0.9176\paperwidth} % Percent
+
+\newcommand{\dimDTUDepLogoXOffset}{0.062\paperwidth} % Percent
+\newcommand{\dimDTUDepLogoHeight}{0.0897\paperheight} % Percent
+
+\newcommand{\dimDTUFriseYOffset}{0.03\paperheight} % Percent
+\newcommand{\dimDTUFriseXOffset}{0.418\paperwidth} % Percent
+\newcommand{\dimDTUFriseHeight}{0.3412\paperheight} % Percent
+\newcommand{\dimDTUDepFriseOffset}{0.018\paperheight} % Percent
+
+\newcommand{\dimTitleOffset}{0.148\paperheight}
+\newcommand{\dimSubtitleOffset}{0.0175\paperheight}
+\newcommand{\dimFrameTitleOffset}{0.033\paperheight}
+\newcommand{\dimAfterFrameTitleOffset}{-0.008\paperheight}
+\newcommand{\dimAuthorOffset}{0.06\paperheight}
+\newcommand{\dimInstituteOffset}{0.027\paperheight}
+
+\newcommand{\dimFootlineYOffset}{0.025\paperheight} % Tue: This was 0.0355 in original file
+
+\newcommand{\dimLeftMarginI}{0.02\paperwidth}
+\newcommand{\dimTextLeftMargin}{0.0669\paperwidth} % Percent
+
+\newcommand{\dimPlaceTitleInHeader}{-0.09\paperheight}
+
+
+\makeatletter
+\setbeamersize{text margin left=\dimTextLeftMargin, text margin right=\dimTextLeftMargin}
+\makeatother
+
+% % % % % % % % % % % %
+% End of Dimensions
+% % % % % % % % % % % %
+
+% New commands to be used in the DTU template
+%\newcommand{\insertdepartmentandinstitute}{\departmenttitle , \institutetitle}
+\newcommand{\insertdepartmentandinstitute}{\departmenttitle}
+\newcommand{\insertDTULogo}{\includegraphics[width=\dimDTULogoWidth]{tex_dtu_logo}}
+\newcommand{\insertDTUWhiteLogo}{}
+\newcommand{\inserttitlefootline}{}
+\newcommand{\inserttitleheadline}{}
+\newcommand{\institutetitle}{}
+
+% Internal variable to check if \titlepage was called: false by default
+\def\bInTitle{false}
+\def\bDTUWhiteFrame{false}
+
+% Process language
+% Is it DK or UK?
+\ifdefstring{\inLanguage}{danish}
+{
+	\renewcommand{\institutetitle}{Danmarks Tekniske Universitet}
+	\renewcommand{\insertDTUWhiteLogo}{\includegraphics[height=\dimDTULogoHeight]{tex_dtu_dk_a1_neg}}
+}
+{
+	\ifdefstring{\inLanguage}{english}
+	{
+		\renewcommand{\institutetitle}{Technical University of Denmark}
+		\renewcommand{\insertDTUWhiteLogo}{\includegraphics[height=\dimDTULogoHeight]{tex_dtu_uk_a1_neg}}
+	}
+	{
+		% Undefined language
+		% Default values are used
+	}
+}
+
+\ifcsdef{department@\inDepartmentShortName}
+{
+	\activateDepartmentInfo{\inLanguage}{\inDepartmentShortName}
+}
+{
+	\PackageError{DTU Beamer Template}{Department is undefined. Reverting to default (elektro).}{Check the user guide for defined departments. If you cannot find it then contact support group to add the department.}
+	\activateDepartmentInfo{\inLanguage}{elektro}
+}
+
+% Command for generating the department title
+\newcommand{\departmenttitle}{\thedepartmentNameText}
+% Command for inserting the department logo
+\newcommand{\insertdepartmentlogoA}{%
+	\ifdefstring{\inDepartmentShortName}{admin}
+	{
+	}
+	{
+		\includegraphics[height=\dimDTUDepLogoHeight]{\thedepartmentLogo}
+	}
+}
+% Command for inserting frise
+\newcommand{\insertDTUFrise}{\includegraphics[height=\dimDTUFriseHeight]{\thedepartmentFrise}}
+
+% Command used from frame DTU logo (headline)
+\newcommand{\insertFrameDTULogo}
+{
+	\vspace{\dimDTULogoYOffset}
+	\begin{beamercolorbox}[right]{logo in head/foot}%
+		\insertDTULogo\makebox[\dimDTULogoWidth][]{}
+	\end{beamercolorbox}
+}
+\newcommand{\insertFrameDTUWhiteLogo}
+{
+	\vspace{\dimDTULogoYOffset}
+	\begin{beamercolorbox}[right]{logo in head/foot}%
+		\insertDTUWhiteLogo\makebox[\dimDTULogoWidth][]{}
+	\end{beamercolorbox}
+}
+
+% Command used in title page for inserting the DTU logo in headline
+\newcommand{\insertTitleDTULogo}
+{
+	\insertFrameDTULogo
+}
+
+% Change themes
+\usefonttheme{DTU}
+\useoutertheme{DTU}
+\useinnertheme{DTU}
+\usecolortheme{DTU}
+
+% Left margin for list environment
+\setlength{\leftmargini}{\dimLeftMarginI}
+
+% Adjust bullets placement
+\setlength\labelsep{3pt}
+
+\setbeamersize{text margin left=\dimTextLeftMargin}
+
+% Itemize
+\setbeamertemplate{items}[circle]
+\setbeamercolor{itemize item}{fg=dtured}
+\setbeamercolor{itemize subitem}{fg=dtured}
+
+\setbeamerfont{section in toc}{size=\small}
+\setbeamerfont{subsection in toc}{size=\scriptsize}
+
+\setbeamertemplate{enumerate items}[circle]
+\setbeamercolor{item projected}{fg=white,bg=dtured}
+
+% Table of contents
+\setbeamertemplate{section in toc}{%
+	\color{dtured}$\bullet$  \inserttocsection \par}
+
+\setbeamertemplate{subsection in toc}{
+	\hskip1em{\color{dtured}$\bullet$} \inserttocsubsection \par}
+
+% Fix space between sections and subsections in toc
+\makeatletter
+\patchcmd{\beamer@sectionintoc}
+  {\vfill}
+  {\vskip\itemsep}
+  {}
+  {}
+\pretocmd{\beamer@subsectionintoc}
+  {\vskip0.5\itemsep}
+  {}
+  {}
+\makeatother 
+
+
+% Date format
+\newcommand{\DTUDateFormat}{\DTUDate}
+\newdateformat{DTUDate}{\THEDAY.\THEMONTH.\THEYEAR}
+
+% Customize blocks
+\setbeamertemplate{blocks}[rounded][shadow=true]
+\setbeamercolor{block title}{fg=white,bg=dtured}
+\setbeamerfont{block title}{series=\bfseries\small}
+\setbeamercolor{block body}{fg=black,bg=white}
+
+
+\newcommand{\defaultDTUFrameStyle}{
+	\setbeamertemplate{background}{}
+	\color{black}
+}
+
+% White DTU frame
+\makeatletter
+\define@key{beamerframe}{dtuwhitelogo}[true]{%
+	\global\def\bDTUWhiteFrame{true}
+	\color{white}
+}
+\define@key{beamerframe}{bgfilename}{%
+	\setbeamertemplate{background}{
+		\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{#1}
+	}
+}
+% Default framestyle
+\pretocmd{\beamer@@@@frame}
+{
+	\global\def\bDTUWhiteFrame{false}
+	\defaultDTUFrameStyle
+}
+{}{}
+\makeatother
+
+% Lengths for footer
+\newlength{\widthframenumber}
+\newlength{\widthdepartment}
+\newlength{\widthtitle}
+\newlength{\widthdate}
+
+% Short title for the footer
+\makeatletter
+\newcommand\insertshorttitleinfooter{%
+	\beamer@shorttitle%
+}
+\makeatother
+
+% Description list
+\setbeamercolor{description item}{fg=dtured}
+
+\mode
+<all>
diff --git a/examples/basic1/cache.pkl b/examples/basic1/cache.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..88e2da21726febfc424a8b823c759229ef411416
Binary files /dev/null and b/examples/basic1/cache.pkl differ
diff --git a/examples/basic1/departments.tex b/examples/basic1/departments.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d248470b36886f1d90673adbb3acf3af777619d4
--- /dev/null
+++ b/examples/basic1/departments.tex
@@ -0,0 +1,130 @@
+% departments.tex
+% This file is a part of the DTU letter package and contains the file path for
+% the grahic file, and text name for the different departments.
+%
+% Changelog
+% 2010-04-07 Added % at the end of each line to make it possible to use the definitions in the documentation
+% 2010-04-09 Added the 5th mandatory argument (long text name)
+% 2010-04-23 Moved the new argument, #6, to #4 and added all info. However two graphic files are missing and I have therefore made a test: if the graphic file is missing the administration logo is used.  
+% 2013-02-11 Added compute and diplom department entries.  Added check to see that the department macros are defined, otherwise an error is printed.
+% 
+%\makeDepartmentInfo{<danish|english>}{<departmentname>}{<text graphic file name>}{<Big department logo file name>}{<department text name>}{<department long text name>}
+%
+
+\RequirePackage{etoolbox}
+
+\newcommand\setDepartmentNameLogo[1]{\def\@departmentNameLogo{#1}}%
+\newcommand\thedepartmentNameLogo{\@departmentNameLogo}%
+\newcommand\setDepartmentNameText[1]{\def\@departmentNameText{#1}}%
+\newcommand\thedepartmentNameText{\@departmentNameText}%
+\newcommand\setDepartmentLongNameText[1]{\def\@departmentLongNameText{#1}}%
+\newcommand\thedepartmentLongNameText{\@departmentLongNameText}%
+\newcommand\setDepartmentLogo[1]{\def\@departmentLogo{#1}}%
+\newcommand\thedepartmentLogo{\@departmentLogo}%
+\newcommand\setDepartmentFrise[1]{\def\@departmentFrise{#1}}%
+\newcommand\thedepartmentFrise{\@departmentFrise}%
+%
+\newcommand\createDepartment[1]{%
+\expandafter\def\csname department@#1\endcsname{#1}}%
+%
+\newcommand\aliasDepartment[2]{%
+\expandafter\def\csname department@#2\endcsname{#1}}%
+%
+\ifundef{\makeDepartmentInfo}{%
+	\newcommand\makeDepartmentInfo[7]{%
+		\def\@departmentcmd{\csname department@#2\endcsname}
+		\createDepartment{#2}
+		\expandafter\def\csname namelogo#1@\@departmentcmd\endcsname{\setDepartmentNameLogo{#3}}%
+		\expandafter\def\csname deplogo#1@\@departmentcmd\endcsname{\setDepartmentLogo{#4}}%
+		\expandafter\def\csname depfrise#1@\@departmentcmd\endcsname{\setDepartmentFrise{#5}}%
+		\expandafter\def\csname nametext#1@\@departmentcmd\endcsname{\setDepartmentNameText{#6}}%
+		\expandafter\def\csname namelongtext#1@\@departmentcmd\endcsname{\setDepartmentLongNameText{#7}}%
+		
+	}%
+}{}%
+%
+\newcommand\activateDepartmentInfo[2]{%
+	\ifcsname department@#2\endcsname%
+		\def\@departmentcmd{\csname department@#2\endcsname}%
+	\else%
+		\def\@departmentcmd{\department@admin}%
+	\fi%
+	\csname namelogo#1@\@departmentcmd\endcsname% TODO test if command exists before executing it
+	\csname nametext#1@\@departmentcmd\endcsname%
+	\csname namelongtext#1@\@departmentcmd\endcsname%
+	\csname deplogo#1@\@departmentcmd\endcsname%
+	\csname depfrise#1@\@departmentcmd\endcsname%
+	% \fromdepartment{\thedepartmentLongNameText}
+}%
+%
+\makeDepartmentInfo{danish} {aqua}{tex_aqua_dk}{tex_dtu_aqua_a}{tex_dtu_aqua_frise}{DTU Aqua}{Institut for Akvatiske Ressourcer}%
+\makeDepartmentInfo{english}{aqua}{tex_aqua_uk}{tex_dtu_aqua_a_uk}{tex_dtu_aqua_frise}{DTU Aqua}{National Institute of Aquatic Resources}%
+
+\makeDepartmentInfo{danish} {byg}{tex_byg_dk}{tex_dtu_byg_a}{tex_dtu_byg_frise}{DTU Byg}{Institut for Byggeri og Anl\ae g}%
+\makeDepartmentInfo{english}{byg}{tex_byg_uk}{tex_dtu_byg_a_uk}{tex_dtu_byg_frise}{DTU Civil Engineering}{Department of Civil Engineering}%
+
+\makeDepartmentInfo{danish}{compute}{tex_compute_uk}{tex_dtu_compute_a}{tex_dtu_frise}{DTU Compute}{Institut for Matematik og Computer Science}
+\makeDepartmentInfo{english}{compute}{tex_compute_uk}{tex_dtu_compute_a_uk}{tex_dtu_frise}{DTU Compute}{Department of Applied Mathematics and Computer Science}
+
+\makeDepartmentInfo{danish} {elektro}{tex_elektro_dk}{tex_dtu_elektro_a}{tex_dtu_frise}{DTU Elektro}{Institut for Elektroteknologi}
+\makeDepartmentInfo{english}{elektro}{tex_elektro_uk}{tex_dtu_elektro_a_uk}{tex_dtu_frise}{DTU Electrical Engineering}{Department of Electrical Engineering}
+
+\makeDepartmentInfo{danish} {energi}{tex_energikonvertering_dk}{tex_dtu_energi_a}{tex_dtu_energi_frise}{DTU Energi}{Institut for Energikonvertering og -lagring}
+\makeDepartmentInfo{english}{energi}{tex_energikonvertering_uk}{tex_dtu_energi_a_uk}{tex_dtu_energi_frise}{DTU Energy}{Department of Energy Conversion and Storage}
+
+\makeDepartmentInfo{danish} {fotonik}{tex_fotonik_dk}{tex_dtu_fotonik_a}{tex_dtu_frise}{DTU Fotonik}{Institut for Fotonik}
+\makeDepartmentInfo{english}{fotonik}{tex_fotonik_uk}{tex_dtu_fotonik_a_uk}{tex_dtu_frise}{DTU Fotonik}{Department of Photonics Engineering}
+
+\makeDepartmentInfo{danish} {fysik}{tex_fysik_dk}{tex_dtu_fysik_a}{tex_dtu_fysik_frise}{DTU Fysik}{Institut for Fysik}
+\makeDepartmentInfo{english}{fysik}{tex_fysik_uk}{tex_dtu_fysik_a_uk}{tex_dtu_fysik_frise}{DTU Physics}{Department of Physics}
+
+\makeDepartmentInfo{danish} {food}{tex_fodevareinstituttet_dk}{tex_dtu_fdevareinstituttet_a}{tex_dtu_frise}{DTU F\o devareinstituttet}{F\o devareinstituttet}
+\makeDepartmentInfo{english}{food}{tex_fodevareinstituttet_uk}{tex_dtu_fdevareinstituttet_a_uk}{tex_dtu_frise}{DTU Food}{National Food Institute}
+
+\makeDepartmentInfo{danish} {kemi}{tex_kemi_dk}{tex_dtu_kemi_a}{tex_dtu_kemi_frise}{DTU Kemi}{Institut for Kemi}
+\makeDepartmentInfo{english}{kemi}{tex_kemi_uk}{tex_dtu_kemi_a_uk}{tex_dtu_kemi_frise}{DTU Chemistry}{Department of Chemistry}
+
+\makeDepartmentInfo{danish} {kemiteknik}{tex_kemiteknik_dk}{tex_dtu_kemiteknik_a}{tex_dtu_kemiteknik_frise}{DTU Kemiteknik}{Institut for Kemiteknik}
+\makeDepartmentInfo{english}{kemiteknik}{tex_kemiteknik_uk}{tex_dtu_kemiteknik_a_uk}{tex_dtu_kemiteknik_frise}{DTU Chemical Engineering}{Department of Chemical and Biochemical Engineering}
+
+\makeDepartmentInfo{danish} {management}{tex_management_dk}{tex_dtu_management_a}{tex_dtu_frise}{DTU Management}{Institut for Systemer, Produktion og Ledelse}
+\makeDepartmentInfo{english}{management}{tex_management_uk}{tex_dtu_management_a_uk}{tex_dtu_frise}{DTU Management Engineering}{Department of Management Engineering}
+
+\makeDepartmentInfo{danish} {mekanik}{tex_mekanik_dk}{tex_dtu_mekanik_a}{tex_dtu_mek_frise}{DTU Mekanik}{Institut for Mekanisk Teknologi}
+\makeDepartmentInfo{english}{mekanik}{tex_mekanik_uk}{tex_dtu_mekanik_a_uk}{tex_dtu_mek_frise}{DTU Mechanical Engineering}{Department of Mechanical Engineering}
+
+\makeDepartmentInfo{danish} {miljo}{tex_miljo_dk}{tex_dtu_milj_a}{tex_dtu_miljoe_frise}{DTU Milj\o}{Institut for Vand og Milj\o teknologi}
+\makeDepartmentInfo{english}{environmentalEng}{tex_miljo_uk}{tex_dtu_milj_a_uk}{tex_dtu_miljoe_frise}{DTU Environment}{Department of Environmental Engineering}
+
+\makeDepartmentInfo{danish} {nanotek}{tex_nanotek_dk}{tex_dtu_nanotek_a}{tex_dtu_frise}{DTU Nanotek}{Institut for Mikro- og Nanoteknologi}
+\makeDepartmentInfo{english}{nanotek}{tex_nanotek_uk}{tex_dtu_nanotek_a_uk}{tex_dtu_frise}{DTU Nanotech}{Department of Micro- and Nanotechnology}
+
+\makeDepartmentInfo{danish} {space}{tex_space_dk}{tex_dtu_space_a}{tex_dtu_space_frise}{DTU Space}{Institut for Rumforskning og Rumteknologi}
+\makeDepartmentInfo{english}{space}{tex_space_uk}{tex_dtu_space_a_uk}{tex_dtu_space_frise}{DTU Space}{National Space Institute}
+
+\makeDepartmentInfo{danish} {systembiologi}{}{tex_dtu_systembiologi_a}{tex_dtu_frise}{DTU Systembiologi}{Institut for Systembiologi}
+\makeDepartmentInfo{english}{systembiologi}{}{tex_dtu_systembiologi_a_uk}{tex_dtu_frise}{DTU Systems Biology}{Department of Systems Biology}
+
+\makeDepartmentInfo{danish} {transport}{tex_transport_dk}{tex_dtu_transport_a}{tex_dtu_transport_frise}{DTU Transport}{Institut for Transport}
+\makeDepartmentInfo{english}{transport}{tex_transport_uk}{tex_dtu_transport_a_uk}{tex_dtu_transport_frise}{DTU Transport}{Department of Transport}
+
+\makeDepartmentInfo{danish} {vaterinaerinstituttet}{tex_veterinaertinstituttet_dk}{tex_dtu_veterinerinstituttet_a}{tex_dtu_vet_frise}{DTU Veterin\ae rinstituttet}{Veterin\ae rinstituttet}
+\makeDepartmentInfo{english}{vaterinaerinstituttet}{tex_veterinaertinstituttet_uk}{tex_dtu_veterinerinstituttet_a_uk}{tex_dtu_vet_frise}{DTU Vet}{National Veterinary Institute}
+
+\makeDepartmentInfo{danish} {vindenergi}{tex_vindenergi_dk}{tex_dtu_vindenergi_a}{tex_dtu_vindenergi_frise}{DTU Vindenergi}{Institut for Vindenergi}
+\makeDepartmentInfo{english}{vindenergi}{tex_vindenergi_uk}{tex_dtu_vindenergi_a_uk}{tex_dtu_vindenergi_frise}{DTU Wind Energy}{Department of Wind Energy}
+
+
+% Extra
+\makeDepartmentInfo{danish} {bibliotek}{tex_bibliotek_dk}{tex_dtu_bibliotek_a}{tex_dtu_bibliotek_frise}{DTU Bibliotek}{Danmarks Tekniske Informationcenter}%
+\makeDepartmentInfo{english}{bibliotek}{tex_bibliotek_uk}{tex_dtu_bibliotek_uk_a}{tex_dtu_bibliotek_frise}{DTU Library}{Technical Information Center of Denmark}%
+
+\makeDepartmentInfo{danish} {admin}{tex_dtu_navn_dk}{}{tex_dtu_frise}{Danmarks Tekniske Universitet}{}%
+\makeDepartmentInfo{english}{admin}{tex_dtu_navn_uk}{}{tex_dtu_frise}{Technical University of Denmark}{}%
+
+\makeDepartmentInfo{danish} {riso}{tex_riso_dk}{tex_ris_dtu_a}{tex_dtu_frise}{Ris\o\ DTU}{Nationallaboratoriet for B\ae redygtig Energi}
+\makeDepartmentInfo{english}{riso}{tex_riso_uk}{tex_ris_dtu_a_uk}{tex_dtu_frise}{Ris\o\ DTU}{National Laboratory for Sustainable Energy}
+
+\makeDepartmentInfo{danish}{diplom}{tex_diplom_dk}{tex_dtu_diplom_a}{tex_dtu_frise}{Center for Diplomingeni\o ruddannelse}{DTU Diplom}
+\makeDepartmentInfo{english}{diplom}{tex_diplom_dk}{tex_dtu_diplom_a_uk}{tex_dtu_frise}{Center for Diplomingeni\o ruddannelse}{DTU Diplom}
+
diff --git a/examples/basic1/dtucolours.tex b/examples/basic1/dtucolours.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cda2381d7225b0ec1879df97e258b805a3cc8511
--- /dev/null
+++ b/examples/basic1/dtucolours.tex
@@ -0,0 +1,83 @@
+% dtucolours.sty
+% This file has been a part of the DTU beamer package and is now
+% moved to the resources folder because there are other parts of the 
+% DTU package that need the colours as well.
+%
+% Changelog
+% 2011-06-23 jowr Replaced the old colour definitions with the new ones from the design guide
+% 2011-07-05 jowr Added alternative colours for the graphs
+% 2011-08-16 jowr Moved colour definitions to resources folder, also used in poster class
+% 2012-06-19 jowr Added colours for cooperation with IPU
+% 2014-09-27 jowr Replaced definecolor with providecolor, do not overwrite custom colour definitions
+%
+%
+\RequirePackage{xcolor}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define primary colours (designguide v2.3, page 13)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{dtured}       {rgb}{0.60, 0.00, 0.00} % Primærfarve 1 - CMYK:   0/ 91/ 72/ 23 - RGB: 153/  0/  0
+\providecolor{dtugrey}      {rgb}{0.60, 0.60, 0.60} % Primærfarve 2 - CMYK:   0/  0/  0/ 56 - RGB: 153/153/153
+% 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define secondary colours  (designguide v2.3, page 13)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Please note that dtured and dtubrown have the same rgb and hex values and only differ in cmyk and pms notation.
+\providecolor{dtuyellow}    {rgb}{1.00, 0.80, 0.00} % Sekundærfarve 12 - CMYK:   0/ 25/100/  0 - RGB: 255/204/  0 - HEX: FFCC00
+\providecolor{dtuorange}    {rgb}{1.00, 0.60, 0.00} % Sekundærfarve 1  - CMYK:   0/ 50/100/  0 - RGB: 255/153/  0 - HEX: FF9900
+\providecolor{dtulightred}  {rgb}{1.00, 0.00, 0.00} % Sekundærfarve 3  - CMYK:   0/100/100/  0 - RGB: 255/  0/  0 - HEX: FF0000
+\providecolor{dtubrown}     {rgb}{0.60, 0.00, 0.00} % Sekundærfarve 4  - CMYK:   0/100/100/ 50 - RGB: 153/  0/  0 - HEX: 990000
+\providecolor{dtupurple}    {rgb}{0.80, 0.20, 0.60} % Sekundærfarve 6  - CMYK:  25/100/  0/  0 - RGB: 204/ 51/153 - HEX: CC3399
+\providecolor{dtuviolet}    {rgb}{0.40, 0.00, 0.60} % Sekundærfarve 9  - CMYK:  75/ 75/  0/  0 - RGB: 102/  0/153 - HEX: 660099
+\providecolor{dtudarkblue}  {rgb}{0.20, 0.40, 0.80} % Sekundærfarve 13 - CMYK:  75/ 50/  0/  0 - RGB:  51/102/204 - HEX: 3366CC
+\providecolor{dtulightblue} {rgb}{0.20, 0.80, 1.00} % Sekundærfarve 10 - CMYK:  50/  0/  0/  0 - RGB:  51/204/255 - HEX: 33CCFF
+\providecolor{dtulightgreen}{rgb}{0.60, 0.80, 0.20} % Sekundærfarve 11 - CMYK:  25/  0/100/  0 - RGB: 153/204/ 51 - HEX: 99CC33
+\providecolor{dtudarkgreen} {rgb}{0.40, 0.80, 0.00} % Sekundærfarve 14 - CMYK:  50/  0/100/  0 - RGB: 102/204/  0 - HEX: 66CC00
+\providecolor{dtucoolgrey}  {rgb}{0.59, 0.58, 0.57} % Farve til poster - CMYK:   0/  1/  5/ 39 - RGB: 150/148/145 - HEX: 969491
+% 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define colours for drawings and graphs (designguide v2.3, page 14)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{graph01}{named}{dtuorange}
+\providecolor{graph02}{named}{dtupurple}
+\providecolor{graph03}{named}{dtulightblue}
+\providecolor{graph04}{named}{dtubrown}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define alternate colours for drawings and graphs 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define alternate colours for graphs, which are compatible with black 
+% and white printers. The initial set of colours makes it hard to distinguish 
+% between the two lighter and the two darker colours.
+\providecolor{graph01alt}{named}{dtuviolet}
+\providecolor{graph02alt}{named}{dtuyellow}
+\providecolor{graph03alt}{named}{dtulightred}
+\providecolor{graph04alt}{named}{dtulightgreen}
+\providecolor{graph05alt}{named}{dtugrey}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define colours for IPU related documents, from IPU Designguide (16.09.2008)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{ipugreen}     {rgb}{0.00, 0.40, 0.20} % Dark green, 1st  standard colour  - CMYK: 088/000/095/026 - RGB: 000/102/051
+\providecolor{ipugrey}      {rgb}{0.45, 0.47, 0.49} % Dark grey, 2nd standard colour    - CMYK: 015/000/000/075 - RGB: 114/121/126
+\providecolor{ipulightgreen}{rgb}{0.36, 0.67, 0.15} % Light green, 1sr secondary colour - CMYK: 070/000/100/000 - RGB: 091/172/038
+\providecolor{ipulightgrey} {rgb}{0.85, 0.86, 0.87} % Light grey, 2nd secondary colour  - CMYK: 003/000/003/020 - RGB: 217/220/222
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Old definitions
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% \providecolor{dtured}       {cmyk}{0.00, 0.95, 0.72, 0.27}
+% \providecolor{dtudarkgray}  {cmyk}{0.00, 0.00, 0.00, 0.56}
+% \providecolor{dtugray}      {cmyk}{0.00, 0.00, 0.00, 0.37}
+% \providecolor{dtulightgray} {cmyk}{0.00, 0.00, 0.00, 0.19}
+% \providecolor{dtudarkblue}  {cmyk}{1.00, 0.72, 0.00, 0.38}
+% \providecolor{dtublue}      {cmyk}{0.60, 0.44, 0.00, 0.24}
+% \providecolor{dtulightblue} {cmyk}{0.30, 0.22, 0.00, 0.12}
+% \providecolor{dtudarkgreen} {cmyk}{1.00, 0.00, 0.83, 0.47}
+% \providecolor{dtugreen}     {cmyk}{0.725,0.004,1.00, 0.004}
+% \providecolor{dtuyellow}    {cmyk}{0.00, 0.00, 1.00, 0.00}
+% \providecolor{dtuorange}    {cmyk}{0.00, 0.34, 0.91, 0.00}
+% \providecolor{dtudarkorange}{cmyk}{0.00, 0.51, 1.00, 0.00}
+% \providecolor{dtupurpur}    {cmyk}{0.00, 0.94, 0.00, 0.43}
+% \providecolor{dtupurple}    {cmyk}{0.83, 1.00, 0.00, 0.23}
+%
diff --git a/examples/basic1/index.aux b/examples/basic1/index.aux
new file mode 100644
index 0000000000000000000000000000000000000000..bf24296eba99000a64412a47963f238227a552fb
--- /dev/null
+++ b/examples/basic1/index.aux
@@ -0,0 +1,33 @@
+\relax 
+\providecommand\hyper@newdestlabel[2]{}
+\providecommand{\transparent@use}[1]{}
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper@anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper@last\relax 
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField@AuxAddToFields[1]{}
+\providecommand\HyField@AuxAddToCoFields[2]{}
+\providecommand\babel@aux[2]{}
+\@nameuse{bbl@beforestart}
+\babel@aux{english}{}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {1}{1}}}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {2}{2}}}
+\@writefile{nav}{\headcommand {\beamer@partpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@sectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@documentpages {2}}}
+\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {2}}}
+\gdef\svg@ink@ver@settings{{\m@ne }{inkscape}{1}}
+\gdef \@abspage@last{2}
diff --git a/examples/basic1/index.fdb_latexmk b/examples/basic1/index.fdb_latexmk
new file mode 100644
index 0000000000000000000000000000000000000000..86e16676f90f9f87a31c67d5f165528cf2f6dfec
--- /dev/null
+++ b/examples/basic1/index.fdb_latexmk
@@ -0,0 +1,314 @@
+# Fdb version 3
+["pdflatex"] 1630760854 "index.tex" "index.pdf" "index" 1630760862
+  "C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc" 1254938640 2375 baa924870cfb487815765f9094cf3728 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/jknappen/ec/ecss1095.tfm" 993062234 3188 1aa640cd974697c5d1d4a3c92172a829 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1233955454 916 f87d7c45f9c908e672703b83b72241a3 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1233955454 928 2dc8d444221b7a635bb58038579b861a ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1233955454 908 2921f8a10601f252058503cc6570e581 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1233955454 940 228d6584342e91276bf566bcf9716b83 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr10.tfm" 1136768653 1296 45809c5a464d5f32c8f98ba97c1bb47f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmss10.tfm" 1136768653 1316 b636689f1933f24d1294acdf6041daaa ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss10.tfm" 1254938640 11176 53ebf7a171df1f9447b387b178768bb5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss12.tfm" 1254938640 11232 955a7245396175d9219648eadc654ac9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss8.tfm" 1254938640 11180 705632ac6b4fb69204ad970192cdf4e5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmssbx10.tfm" 1254938640 11168 06d87f5698fd1b642d96449b7c8d90b0 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmtt10.tfm" 1254938640 1372 2ef2c2b492b3c4cd7879fe083abbb061 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmex10.tfm" 1254938640 992 ce925c9346c7613270a79afbee98c070 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi10.tfm" 1254938640 1528 6d36b2385e0ca062a654de6ac59cb34f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi6.tfm" 1254938640 1512 94a3fd88c6f27dbd9ecb46987e297a4e ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi8.tfm" 1254938640 1520 a3fe5596932db2db2cbda300920dd4e9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy10.tfm" 1254938640 1308 02cc510f9dd6012e5815d0c0ffbf6869 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy6.tfm" 1254938640 1300 b0605d44c16c22d99dc001808e4f24ea ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy8.tfm" 1254938640 1304 cdc9a17df9ef0d2dc320eff37bbab1c4 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr10.tfm" 1254938640 11868 4f81e9b6033c032bdaf9884f4d7ef412 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr6.tfm" 1254938640 11836 e3b6ce3e601aec94f64a536e7f4224d5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr8.tfm" 1254938640 11864 309fd7f43e4a0ba39f6f7644d76e8edf ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss10.pfb" 1254938640 97408 f595704ec2a07246c2d6f7b602587452 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss8.pfb" 1254938640 94400 e33ecfb646a9f148e2e53da01a9168fe ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb" 1254938640 119663 1a3a2206591ddc98c6d6c6271a282516 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb" 1254938640 113227 d3d1adc024746ff57b20efba82c6d365 ""
+  "C:/Program Files/MiKTeX/tex/context/base/mkii/supp-pdf.mkii" 1580393758 71627 94eb9990bed73c364d7f53f960cc8c5b ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.def" 1626972176 123985 95be6f36f6c54070fdcb3cb50663eed2 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.sty" 1626972176 35620 c595f681ebc251caa49596c63048c363 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/txtbabel.def" 1626972176 5233 a89961f969f72563cb59411e9dc4ae8e ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifluatex.sty" 1583527000 492 1994775aa15b0d1289725a0b1bbc2d4c ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifpdf.sty" 1583527000 480 5778104efadad304ced77548ca2184b1 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/iftex.sty" 1583527000 6501 4011d89d9621e0b0901138815ba5ff29 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifvtex.sty" 1583527000 1057 525c2192b5febbd8c1f662c9468335bb ""
+  "C:/Program Files/MiKTeX/tex/generic/pdftexcmds/pdftexcmds.sty" 1623005277 20089 80423eac55aa175305d35b49e04fe23b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1621073245 992 855ff26741653ab54814101ca36e153c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1621073245 43820 1fef971b75380574ab35a0d37fd92608 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1621073245 19324 f4e4c6403dd0f1605fd20ed22fa79dea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1621073245 6038 ccb406740cc3f03bbfb58ad504fe8c27 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1621073245 6944 e12f8f7a7364ddf66f93ba30fb3a3742 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1621073245 4883 42daaf41e27c3735286e23e48d2d7af9 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1621073245 2544 8c06d2a7f0f469616ac9e13db6d2f842 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1621073245 44195 5e390c414de027626ca5e2df888fa68d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1621073245 17311 2ef6b2e29e2fc6a2fc8d6d652176e257 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1621073245 21302 788a79944eb22192a4929e46963a3067 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1621073245 9690 01feb7cde25d4293ef36eef45123eb80 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1621073245 33335 dd1fa4814d4e51f18be97d88bf0da60c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1621073245 2965 4c2b1f4e0826925746439038172e5d6f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1621073245 5196 2cc249e0ee7e03da5f5f6589257b1e5b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1621073245 20726 d4c8db1e2e53b72721d29916314a22ea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1621073245 35249 abd4adf948f960299a4b3d27c5dddf46 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1621073245 21989 fdc867d05d228316de137a9fc5ec3bbe ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1621073245 8893 e851de2175338fdf7c17f3e091d94618 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1621073245 5493 23e371e6fe3e7e42533d6d6c15662e0d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex" 1621073245 321 cdd11262840e01e25374a2d458f15e99 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex" 1621073245 1319 0b2de5126c6cbc295f0eb77f7344b34d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex" 1621073245 325 36322b0789619b270aec5993d5a9ed08 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1621073245 11518 738408f795261b70ce8dd47459171309 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1621073245 186007 6e7dfe0bd57520fd5f91641aa72dcac8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex" 1621073245 8843 5533436db3e30fbad1e0440db6027dac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex" 1621073245 7474 f05a7223b140f230922562ac6a9fede5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryfpu.code.tex" 1621073245 85938 8e4ba97c5906e1c0d158aea81fe29af7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1621073245 32995 ac577023e12c0e4bd8aa420b2e852d1a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex" 1621073245 14524 e1074042dc8f19d631452e43073ea3ba ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfint.code.tex" 1621073245 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmath.code.tex" 1621073245 521 8e224a7af69b7fee4451d1bf76b46654 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathcalc.code.tex" 1621073245 13391 84d29568c13bdce4133ab4a214711112 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfloat.code.tex" 1621073245 104935 184ed87524e76d4957860df4ce0cd1c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1621073245 10165 cec5fa73d49da442e56efc2d605ef154 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1621073245 28178 41c17713108e0795aac6fef3d275fbca ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1621073245 9989 c55967bf45126ff9b061fa2ca0c4694f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1621073245 3865 ac538ab80c5cf82b345016e474786549 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1621073245 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1621073245 11024 0179538121bc2dba172013a3ef89519f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1621073245 7854 4176998eeefd8745ac6d2d4bd9c98451 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1621073245 3379 781797a101f647bab82741a99944a229 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1621073245 92405 f515f31275db273f97b9d8f52e1b0736 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathparser.code.tex" 1621073245 37376 11cd75aac3da1c1b152b2848f30adc14 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathutil.code.tex" 1621073245 8471 c2883569d03f69e8e1cabfef4999cfd7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1621073245 71722 aa25655703db0306f6401798e312b7b8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1621073245 21201 08d231a2386e2b61d64641c50dc15abd ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1621073245 16121 346f9013d34804439f7436ff6786cef7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1621073245 44784 cedaa399d15f95e68e22906e2cc09ef8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/pgf.revision.tex" 1621073264 465 d68603f8b820ea4a08cce534944db581 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgf.cfg" 1621073245 926 2963ea0dcf6cc6c0a770b69ec46a477b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1621073245 5546 f3f24d7898386cb7daac70bdd2c4d6dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-luatex.def" 1621073245 13244 6674e4de0678d77c2d7465acc4ea20d7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1621073245 12601 4786e597516eddd82097506db7cfa098 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1621073245 61163 9b2eefc24e021323e0fc140e9826d016 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1621073245 1896 b8e0ca0ac371d74c0ca05583f6313c91 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1621073245 7778 53c8b5623d80238f6a20aa1df1868e63 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgffor.code.tex" 1621073245 23997 a4bed72405fa644418bea7eac2887006 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeys.code.tex" 1621073245 37060 797782f0eb50075c9bc952374d9a659a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1621073245 37431 9abe862035de1b29c7a677f3205e3d9f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfrcs.code.tex" 1621073245 4494 af17fb7efeafe423710479858e42fa7e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1621073245 7251 fb18c67117e09c64de82267e12cd8aa4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common.tex" 1621073245 29274 e15c5b7157d21523bd9c9f1dfa146b8e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-latex.def" 1621073245 6825 a2b0ea5b539dda0625e99dd15785ab59 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex" 1621075461 22701 5fab7b8ebb90b053dc067d1bd37e43c2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex" 1621075461 3047 aa82404aec57311271f4991c44bd71dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.code.tex" 1621075461 2931 5d52092da9e839accd7c9026062fe5c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex" 1621075461 23537 54be8160344d894595f6d145b1311658 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex" 1621075461 4288 b8d6247899b21e3bb66bb11b24d30f2c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex" 1621075461 13828 11d1b09335a4a8baa693dd1e6cac3edf ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex" 1621075461 24373 6544c1554e5da33118301011eb03058d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex" 1621075461 18861 7dc35832c8ccea3aa73cdcd75ec0a60b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex" 1621075461 83469 f77a7d8a23834d4c2472f8dba8e67bff ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex" 1621075461 12347 43d867ea29e34d528123d9ef750aa146 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.code.tex" 1621075461 485274 aafeb7052fbed4c8aba6fcc36c94ea72 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.errorbars.code.tex" 1621075461 22428 72578a4c9324bc5dfafe23fe64f64024 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.markers.code.tex" 1621075461 12489 859c23df41fb9067128ef5a64b01c0a4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.paths.code.tex" 1621075461 3533 973f376afa5a4526f16b11630b9931b4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.revision.tex" 1621075461 520 2a55e10851bbb34fb49a8e1d6b50a09b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.scaling.code.tex" 1621075461 123680 d33fda4929d7200c3e6f0ec83c006aef ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex" 1621075461 367035 be5ad6faf030b5e07b899b712359f9d2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscore.code.tex" 1621075461 19944 7957349fbe31c4e8dea9de4cd41cb086 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex" 1621075461 133871 7247b31742a2240343a6739cb76d6821 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex" 1621075461 25239 bf1615252744653354985789b73e7404 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsplothandlers.code.tex" 1621075461 120954 bdf135670013db80411b2fb0f95876ac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsstackedplots.code.tex" 1621075461 26393 a7d9bbecdd0db20d652c909dac892e25 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsticks.code.tex" 1621075461 91244 1a0e9e49b7a2d10d1b1a610306ba4f8c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def" 1621075461 5907 9dc460712c23e5b3338820499d47608c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex" 1621075461 3095 c82d281b748902a65be2ccca97360b11 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.code.tex" 1621075461 23050 a369aa910ef860a3621fe0459faa335c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex" 1621075461 26859 7a4ee9d206fb0a0daa0d3108445afb57 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolor.code.tex" 1621075461 23958 1b96260863091af1669c3a38b1c4c9af ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolormap.code.tex" 1621075461 88956 018b2512ef27998e97af72e8b1dcdbd5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.code.tex" 1621075461 71792 dba1b75b15201895eb36f142f13b3238 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex" 1621075461 3286 c17079ba50483e1ac1721268ea016041 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkeyval.tex" 1623005690 19231 3cbf682090baecad8e17a66b7a271ed1 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkvutils.tex" 1623005690 7677 cf3e6aa6a8d444f55327f61df80bfa0c ""
+  "C:/Program Files/MiKTeX/tex/latex/00miktex/epstopdf-sys.cfg" 1616070885 584 2a1075dd71571459f59146da9f7502ad ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amsfonts.sty" 1358201372 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amssymb.sty" 1358201372 13829 94730e64147574077f8ecfea9bb69af4 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsa.fd" 1358201372 961 6518c6525a34feb5e8250ffa91731cff ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsb.fd" 1358201372 961 d02606146ba5601b5645f987c92e6193 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsbsy.sty" 1622999195 2222 da905dc1db75412efd2d8f67739f0596 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsgen.sty" 1622999196 4173 bc0410bcccdff806d6132d3c1ef35481 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsmath.sty" 1622999197 87375 a806706bbc32b3e8482f6d87aeffbf76 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsopn.sty" 1622999197 4128 c11da5c2df397f39d5783fc9307689d0 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amstext.sty" 1622999197 2444 b015525572ea0d0165d6ce81ba5e5259 ""
+  "C:/Program Files/MiKTeX/tex/latex/arabi/bblopts.cfg" 1139965200 902 c30e5c373bc58bde21f8f63a3091626f ""
+  "C:/Program Files/MiKTeX/tex/latex/babel-english/english.ldf" 1623001666 7008 9ff5fdcc865b01beca2b0fe4a46231d4 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atbegshi-ltx.sty" 1623741700 3034 7076a43c47446700860d2aebb65ebed5 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atveryend-ltx.sty" 1623741700 2459 f9456a3cd988c2865f64e327cdb6f7a0 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/fontenc.sty" 1623741700 4946 461cc78f6f26901410d9f1d725079cc6 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/ifthen.sty" 1623741700 5157 f308c7c04889e16c588e78aa42599fae ""
+  "C:/Program Files/MiKTeX/tex/latex/base/inputenc.sty" 1623741700 5049 969aec05d5f39c43f8005910498fcf90 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/size11.clo" 1623741700 8464 efc3cbec9b4f1a5665635866ad7e7dba ""
+  "C:/Program Files/MiKTeX/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1623003186 13886 d1306dcf79a944f6988e688c1785f9ce ""
+  "C:/Program Files/MiKTeX/tex/latex/etoolbox/etoolbox.sty" 1601897756 46845 3b58f70c6e861a13d927bff09d35ecbc ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/color.cfg" 1465894292 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/graphics.cfg" 1465894292 1224 978390e9c2234eab29404bc21b268d1e ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-def/pdftex.def" 1622562294 19103 48d29b6e2a64cb717117ef65f107b404 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/color.sty" 1623003325 7153 17c23e5e586ebbdf5d269e7867e53cef ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphics.sty" 1623003325 18399 7e40f80366dffb22c0e7b70517db5cb4 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphicx.sty" 1623003325 7972 81ea1752666dc7c1e93f0b4c10665ca1 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/keyval.sty" 1623003325 2671 4de6781a30211fe0ea4c672e4a2a8166 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/trig.sty" 1623003325 4007 3bccccf8f35e1bc1ef0f7c55ceeb7713 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hpdftex.def" 1623057842 49890 0bb76a5b745d92e86aed6f3f93e334f0 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref-langpatches.def" 1623057842 1777 940b1aa83773bc035eb882e8d6842769 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref.sty" 1623057842 230915 97a8817f13de4e61bbc3592cb2caa995 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/nameref.sty" 1623057842 13242 133e617c5eebffdd05e421624022b267 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/pd1enc.def" 1623057842 14132 c9404e8e78123ef0d1007c34d1d6da51 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/puenc.def" 1623057842 117004 86586f287ddfad919a0a4bd68934277a ""
+  "C:/Program Files/MiKTeX/tex/latex/l3backend/l3backend-pdftex.def" 1628077986 27662 df2ac0cbce6c3f309d48d78e7c627ccb ""
+  "C:/Program Files/MiKTeX/tex/latex/l3kernel/expl3.sty" 1630067590 6208 18ab2eb39b7f1285bd1aa7af7abc9309 ""
+  "C:/Program Files/MiKTeX/tex/latex/l3packages/l3keys2e/l3keys2e.sty" 1630067846 4674 6b86bef38e2fe7ec813292623122d584 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/lmodern.sty" 1256933040 1606 c17281c7cff2bbd7ff0173e1433487ec ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omllmm.fd" 1256933040 888 44447a3a3af84a22454ef89500942d93 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omslmsy.fd" 1256933040 805 af340a8260c447aa315cfc740ff0152f ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omxlmex.fd" 1256933040 566 a94661f7b66063f191960bb7935b6ba2 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/ot1lmr.fd" 1256933040 1880 bae7b659316f7344a86218ad38b01d91 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmss.fd" 1256933040 1639 ba1c66ef577aa5cadc2c0fdc691a26ee ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmtt.fd" 1256933040 2681 354015af3b61e7be30009f084986375a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgf.sty" 1621073245 1090 bae35ef70b3168089ef166db3e66f5b2 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgfcore.sty" 1621073245 410 615550c46f918fcbee37641b02a862d9 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1621073245 21013 f4ff83d25bb56552493b030f27c075ae ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1621073245 989 c49c8ae06d96f8b15869da7428047b1e ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/frontendlayer/tikz.sty" 1621073245 339 c2e180022e3afdb99c7d0ea5ce469b7d ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/math/pgfmath.sty" 1621073245 306 c56a323ca5bf9242f54474ced10fca71 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/systemlayer/pgfsys.sty" 1621073245 443 8c872229db56122037e86bcda49e14f3 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgffor.sty" 1621073245 348 ee405e64380c11319f0e249fed57e6c5 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfkeys.sty" 1621073245 274 5ae372b7df79135d240456a1c6f2cf9a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfrcs.sty" 1621073245 325 f9f16d12354225b7dd52a3321f085955 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/xxcolor.sty" 1621073245 2232 b9a67bccba736ed334b4b1a860a85c6f ""
+  "C:/Program Files/MiKTeX/tex/latex/pgfplots/pgfplots.sty" 1621075461 4904 ee78b44e85d6fccf08cd99370557481e ""
+  "C:/Program Files/MiKTeX/tex/latex/trimspaces/trimspaces.sty" 1253169183 1380 971a51b00a14503ddf754cab24c3f209 ""
+  "C:/Program Files/MiKTeX/tex/latex/url/url.sty" 1388494052 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
+  "C:/Program Files/MiKTeX/tex/latex/xcolor/xcolor.sty" 1623005660 55589 34128738f682d033422ca125f82e5d62 ""
+  "C:/Program Files/MiKTeX/tex/latex/xkeyval/xkeyval.sty" 1623005690 4902 efb3d66683a2da2a232f71e3a571a899 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/miktex/data/le/pdftex/pdflatex.fmt" 1630675792 9705560 728cc408e60df926a3a0636891efdcb2 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map" 1630675864 126230 526afa0532fa5c6556c0eded8671d5fa ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/atbegshi/atbegshi.sty" 1575574700 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bigintcalc/bigintcalc.sty" 1576437202 40635 c40361e206be584d448876bba8a64a3b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bitset/bitset.sty" 1575930176 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/catchfile/catchfile.sty" 1575964050 8622 63834878edeb14dd71d58d8f22bc3e06 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/etexcmds/etexcmds.sty" 1576437238 7734 b98cbb34c81f667027c1e3ebdbfce34b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/gettitlestring/gettitlestring.sty" 1576437266 8371 9d55b8bd010bc717624922fb3477d92e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/infwarerr/infwarerr.sty" 1575403108 8356 7bbb2c2373aa810be568c29e333da8ed ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/intcalc/intcalc.sty" 1576437364 31769 002a487f55041f8e805cfbf6385ffd97 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576766904 5412 d5a2436094cd7be85769db90f29250a6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvsetkeys/kvsetkeys.sty" 1576437420 13807 952b0226d4efca026f0e19dd266dcc22 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/ltxcmds/ltxcmds.sty" 1601735609 18568 4409f8f50cd365c68e684407e5350b1b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/pdfescape/pdfescape.sty" 1575930300 19007 15924f7228aca6c6d184b115f4baa231 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/uniquecounter/uniquecounter.sty" 1576437612 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/amscls/amsthm.sty" 1591023609 12594 0d51ac3a545aaaa555021326ff22a6cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/atveryend/atveryend.sty" 1576104710 19336 ce7ae9438967282886b3b036cfad1e4d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/auxhook/auxhook.sty" 1576542332 3935 57aa3c3e203a5c2effb4d2bd2efbc323 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamer.cls" 1622051514 11627 a0fc556fe6cad325c6652484e44780b5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseauxtemplates.sty" 1622051514 23769 e04557111db90d816c3a0d6ce21958f3 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseboxes.sty" 1612974572 6954 d9eb3846e78d9008aaac86cd82372855 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecolor.sty" 1607691110 12834 a2e2edcc4215056529fd4e140e2ed26a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecompatibility.sty" 1622040986 25555 5b57fd426df33caa3567584eed3ebb7e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasedecode.sty" 1606395924 9407 98317d4428bbbc4430035c0c0e3898d5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasefont.sty" 1609348962 13626 5a8efa954e5cf512c91c80f637cbf1f1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframe.sty" 1606395924 25162 9e33f2887dc316e20c319466b078d6eb ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframecomponents.sty" 1606395924 11898 264f0ae03dbfa791611c1821393bc0b9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframesize.sty" 1606395924 8800 544bcf1a583ad768d77d8b1d8f18a993 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaselocalstructure.sty" 1612869926 17622 85760d86f730e8faf1f7378f6e67e409 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemisc.sty" 1606395924 8313 358d4bb860bd9098eb24099f36b27af1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemodes.sty" 1616158010 7574 6d0e29b16443d86a896479ec2aabff07 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenavigation.sty" 1606395924 29020 6cae2187b2d2bc4f39b6bb5bddbcf031 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenotes.sty" 1606395924 5595 c0c140ec41fa3c9299aa6df19444c391 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoptions.sty" 1606395924 1753 c10ec1df45e4b4c7ee05e306d23f95d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoverlay.sty" 1606395924 27425 7f090822023c1cb57d609b70b5e7cc42 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaserequires.sty" 1606395924 1593 48c3729494fa250d34789fd6af677f99 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasesection.sty" 1616158010 13527 6266cecef9dcaa294ba1dc5ff2d8a798 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetemplates.sty" 1606395924 5753 fbf8c2f7c7d6d5d1d2b900c353f094e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasethemes.sty" 1606395924 1140 cdaff8d445bd2a4e7afdec5190a758c0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetheorems.sty" 1606395924 4548 cdde9ae4b614ce5ea4cf7a232ceeb6a8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetitle.sty" 1606395924 5356 d32dea458460fce4541d4f9aa765b876 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetoc.sty" 1622040910 7840 84c578534b1233d3bfaae1d8a1ddf9b0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetranslator.sty" 1606395924 637 685bd3d40aca2fa87965a39bc31aca7f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetwoscreens.sty" 1606395924 1808 098e1772761e9b4a016e74f1a4c1cb74 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseverbatim.sty" 1606395924 4026 1ba2c6a2acf275d63cb85d60d8597fe8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamercolorthemedefault.sty" 1606395924 7089 c34bc77851d46db7348b94bd5e51168a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemedefault.sty" 1606395924 4236 21e590075d6781cc58fee783316ee268 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemeprofessionalfonts.sty" 1606395924 333 48f83c1a5bf00cbab1ca9013199d6da1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.20.pdf" 1606395924 2958 4e0c4a6e994e5c4d9da11c477e927f0f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.pdf" 1606395924 2936 6cc3ef0682cbb62be8aa1b19f0a84ed6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.20.pdf" 1606395924 2734 0bcf939051dd2a936cdfe5982f7c233b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.pdf" 1606395924 2667 7624351b441ffe4bd2d14e08fbcf063d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.20.pdf" 1606395924 24451 195d2c060e84f339954bc6d9b52131d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.pdf" 1606395924 24611 df07010540266b2b205b492a4d02e7e1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerinnerthemedefault.sty" 1606395924 13031 a33a15e4b12bfa976c11f59131636ea9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerouterthemedefault.sty" 1606395924 6630 9731ba35f4c7921e311abc957adf446b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerthemedefault.sty" 1606395924 355 75c98e7b8f427eb7c625ed391b140c5b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/booktabs/booktabs.sty" 1579097235 6253 f1cb470c9199e7110a27851508ed7a5c ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime-defaults.sty" 1429537382 4215 4c80eaed8cd4f9a80cc6244c0adeb81f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime.sty" 1429537382 28417 b023ffe1328fa89e7f133201d87029de ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fc-english.def" 1582574640 14870 f66b7dd28616119c2519cd5cc4dcae14 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcnumparser.sty" 1582574640 12791 43a81443714469abac77ce09f44ad2e2 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcprefix.sty" 1582574640 12519 5c732241af77b5f0e56e640b7d538395 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fmtcount.sty" 1582574640 32021 ed70d543c537f19c96fc753321f1c3cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.cfg" 1578057145 1104 7ac475a4e3466b0b43e138e9356bda83 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.sty" 1578057145 42759 9cf6c5257b1bc7af01a58859749dd37a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/hycolor/hycolor.sty" 1580384392 18571 4c28a13fc3d975e6e81c9bea1d697276 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/ifplatform/ifplatform.sty" 1507925536 3910 e04f6a6d983bdbdb024917b7ccc80262 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrbase.sty" 1624609552 99856 4c890d8af16075567cef0c4d8b9c3ec9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile-hook.sty" 1624609552 10422 be2f2c878190558e80a5e4c1c3689505 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile.sty" 1624609552 3128 d39f124aed9b6ba4fe0283d303003d75 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlogo.sty" 1624609552 1954 0b0e5fd43ad7d1c55d1d6bb21484aa01 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/kvoptions/kvoptions.sty" 1602228096 22521 d2fceb764a442a2001d257ef11db7618 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/letltxmacro/letltxmacro.sty" 1575403136 5766 13a9e8766c47f30327caf893ece86ac8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdraw.sty" 1575574858 85722 674bb1bdd5ee2d78383a11e280d8251f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdrawenc.dfu" 1575574858 7980 7af90c90876992fc604543eb1fde4107 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/refcount/refcount.sty" 1576437552 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1575574882 9715 b051d5b493d9fe5f4bc251462d039e5f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/sansmathaccent/sansmathaccent.sty" 1580511864 4282 5d27280ace1239baaa4a225df16125ff ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/siunitx/siunitx.sty" 1630063268 272816 5c96b394eaddb491648148af990b767a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/svg/svg.sty" 1607185656 43468 671ae75b3a15019004495eff4c0911e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/textpos/textpos.sty" 1601744683 13250 212c11575fd736fdcf1f0fd8e72900f5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/array.sty" 1622550326 12689 a1a7b2795918756dcb9c9cbfacc4d9c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/calc.sty" 1622550326 10214 00ce62e730d0cfe22b35e8f1c84949c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/enumerate.sty" 1622550326 3468 068d84ef9735e15f11c5a120c0a1a139 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/shellesc.sty" 1622550326 4118 0f286eca74ee36b7743ff20320e5479f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/dicts/translations-basic-dictionary-english.trsl" 1610894760 5594 3103bf139c05c0eeb5842dfa5e147511 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/translations.sty" 1610894760 44057 b43a7c4927b669cd6ab13bb97942d706 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-basic-dictionary-English.dict" 1622471510 3535 7dc96051305a7e943219126c49c44cd6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-bibliography-dictionary-English.dict" 1622471508 903 c6d17f0656e9e1abb172b4faebabd617 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-environment-dictionary-English.dict" 1622471508 433 bfb8d1c2c020defd2de8e5c276710094 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-months-dictionary-English.dict" 1622471508 1337 9a6c05e8f0c8b3c5f27cbd0e455cf475 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-numbers-dictionary-English.dict" 1622471508 1638 2bf1a1dea98f8a4d28033fce76e9cc67 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-theorem-dictionary-English.dict" 1622471508 3523 1f9d9b91f7d78b73e74c7e97bca30fb0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator.sty" 1622471510 8765 56d370785f0143111ff9898b5adfe08e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/transparent/transparent.sty" 1575063484 4155 541de118e0abc42fce3317addc90afb0 ""
+  "beamer_slider_preamble.tex" 1630760848 2728 d36ea79be7cec10b3559a5660f2decaf ""
+  "beamercolorthemeDTU.sty" 1630760848 1181 417d2554e23179f8340453c73a028d75 ""
+  "beamerfontthemeDTU.sty" 1630760848 1259 f9c0e548315549e6c866364392c7263a ""
+  "beamerinnerthemeDTU.sty" 1630760848 1413 3c6129d12554e64ce93d7736032738c2 ""
+  "beamerouterthemeDTU.sty" 1630760848 2587 358e933cfccc5eaeb88326ddfaea4d6c ""
+  "beamerthemeDTU.sty" 1630760848 7254 70ddaf2cca3bafac859919a109938477 ""
+  "departments.tex" 1630760848 9638 1234d2d6a2d0975403246bb7c181706b ""
+  "dtucolours.tex" 1630760848 5683 501994c6596e5a9d67cce52d20165e38 ""
+  "index.aux" 1630760861 1412 2d0a9582e28c65e3f8629db6ea0ea185 "pdflatex"
+  "index.nav" 1630760861 395 640a03f4d3f0f705896c1d8375ddfa75 "pdflatex"
+  "index.out" 1630760861 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
+  "index.tex" 1630760801 599 21a506b34b06f41c78a071d0307c2bb4 ""
+  "osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf" 1630760852 7434 31e9e90a71d566d327e88e34e5a866c6 ""
+  "tex_dtu_compute_a_uk.pdf" 1630760848 13504 7ae3ecb9b649001643f902e32d3a8cca ""
+  "tex_dtu_frise.pdf" 1630760848 32488 57c0f48ec5395d976ac1e57718922c22 ""
+  "tex_dtu_logo.pdf" 1630760848 1830 e452da49133969a7656f3882c11e9b04 ""
+  (generated)
+  "index.snm"
+  "index.nav"
+  "index.toc"
+  "index.aux"
+  "index.pdf"
+  "index.out"
+  "index.log"
diff --git a/examples/basic1/index.fls b/examples/basic1/index.fls
new file mode 100644
index 0000000000000000000000000000000000000000..c73d69e99a3c4bdc963e813129b0308951b20370
--- /dev/null
+++ b/examples/basic1/index.fls
@@ -0,0 +1,1898 @@
+PWD C:\Users\tuhe\Documents\slider\examples\basic1
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\miktex\data\le\pdftex\pdflatex.fmt
+INPUT index.tex
+OUTPUT index.log
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common-lists.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-latex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeysfiltered.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgf.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathcalc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathparser.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.basic.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.trigonometric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.random.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.comparison.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.base.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.round.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.misc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.integerarithmetics.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfloat.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfint.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathconstruct.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathusage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoregraphicstate.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransformations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorequick.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreobjects.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreexternal.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransparency.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepatterns.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorerdf.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmss10.tfm
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+OUTPUT index.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\jknappen\ec\ecss1095.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.def
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\txtbabel.def
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleshapes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleplot.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmodulematrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgfplotssysgeneric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgfplotslibrary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\oldpgfcompatib\pgfplotsoldpgfsupp_loader.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructure.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructureext.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsarray.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsmatrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\numtable\pgfplotstableshared.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsdeque.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.data.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.verb.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgflibrarypgfplots.surfshading.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolormap.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsstackedplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplothandler.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplotimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.scaling.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscoordprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.errorbars.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.markers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsticks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.paths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduledecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\color.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT nul:.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkeyval.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkvutils.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT .\index.aux
+INPUT index.aux
+INPUT index.aux
+OUTPUT index.aux
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT .\index.out
+OUTPUT index.out
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT .\index.nav
+INPUT index.nav
+INPUT index.nav
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss12.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmssbx10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\pdftex\config\pdftex.map
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmtt10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmex10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam7.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm7.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+OUTPUT index.nav
+OUTPUT index.toc
+OUTPUT index.snm
+INPUT index.aux
+INPUT .\index.out
+INPUT .\index.out
+INPUT C:\Program Files\MiKTeX\fonts\enc\dvips\lm\lm-ec.enc
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
diff --git a/examples/basic1/index.log b/examples/basic1/index.log
new file mode 100644
index 0000000000000000000000000000000000000000..3da1ea4fe066900326b10b2258feba06be36683f
--- /dev/null
+++ b/examples/basic1/index.log
@@ -0,0 +1,1523 @@
+This is pdfTeX, Version 3.141592653-2.6-1.40.23 (MiKTeX 21.8) (preloaded format=pdflatex 2021.9.3)  4 SEP 2021 15:07
+entering extended mode
+**./index.tex
+(index.tex
+LaTeX2e <2021-06-01> patch level 1
+L3 programming layer <2021-08-27>
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamer.cls
+Document Class: beamer 2021/05/26 v3.63 A class for typesetting presentations
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemodes.sty
+(C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty
+Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
+\etb@tempcnta=\count182
+)
+\beamer@tempbox=\box50
+\beamer@tempcount=\count183
+\c@beamerpauses=\count184
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasedecode.sty
+\beamer@slideinframe=\count185
+\beamer@minimum=\count186
+\beamer@decode@box=\box51
+)
+\beamer@commentbox=\box52
+\beamer@modecount=\count187
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifpdf.sty
+Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty
+Package: iftex 2020/03/06 v1.0d TeX engine tests
+))
+\headdp=\dimen138
+\footheight=\dimen139
+\sidebarheight=\dimen140
+\beamer@tempdim=\dimen141
+\beamer@finalheight=\dimen142
+\beamer@animht=\dimen143
+\beamer@animdp=\dimen144
+\beamer@animwd=\dimen145
+\beamer@leftmargin=\dimen146
+\beamer@rightmargin=\dimen147
+\beamer@leftsidebar=\dimen148
+\beamer@rightsidebar=\dimen149
+\beamer@boxsize=\dimen150
+\beamer@vboxoffset=\dimen151
+\beamer@descdefault=\dimen152
+\beamer@descriptionwidth=\dimen153
+\beamer@lastskip=\skip47
+\beamer@areabox=\box53
+\beamer@animcurrent=\box54
+\beamer@animshowbox=\box55
+\beamer@sectionbox=\box56
+\beamer@logobox=\box57
+\beamer@linebox=\box58
+\beamer@sectioncount=\count188
+\beamer@subsubsectionmax=\count189
+\beamer@subsectionmax=\count190
+\beamer@sectionmax=\count191
+\beamer@totalheads=\count192
+\beamer@headcounter=\count193
+\beamer@partstartpage=\count194
+\beamer@sectionstartpage=\count195
+\beamer@subsectionstartpage=\count196
+\beamer@animationtempa=\count197
+\beamer@animationtempb=\count198
+\beamer@xpos=\count199
+\beamer@ypos=\count266
+\beamer@ypos@offset=\count267
+\beamer@showpartnumber=\count268
+\beamer@currentsubsection=\count269
+\beamer@coveringdepth=\count270
+\beamer@sectionadjust=\count271
+\beamer@toclastsection=\count272
+\beamer@tocsectionnumber=\count273
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoptions.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty
+Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
+\KV@toks@=\toks16
+))
+\beamer@paperwidth=\skip48
+\beamer@paperheight=\skip49
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.sty
+Package: geometry 2020/01/02 v5.9 Page Geometry
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifvtex.sty
+Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
+)
+\Gm@cnth=\count274
+\Gm@cntv=\count275
+\c@Gm@tempcnt=\count276
+\Gm@bindingoffset=\dimen154
+\Gm@wd@mp=\dimen155
+\Gm@odd@mp=\dimen156
+\Gm@even@mp=\dimen157
+\Gm@layoutwidth=\dimen158
+\Gm@layoutheight=\dimen159
+\Gm@layouthoffset=\dimen160
+\Gm@layoutvoffset=\dimen161
+\Gm@dimlist=\toks17
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.cfg))
+(C:\Program Files\MiKTeX\tex/latex/base\size11.clo
+File: size11.clo 2021/02/12 v1.4n Standard LaTeX file (size option)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgfcore.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty
+Package: graphicx 2020/12/05 v1.2c Enhanced LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty
+Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty
+Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
+File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
+)
+Package graphics Info: Driver file: pdftex.def on input line 107.
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-def\pdftex.def
+File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
+))
+\Gin@req@height=\dimen162
+\Gin@req@width=\dimen163
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/systemlayer\pgfsys.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfrcs.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common.tex
+\pgfutil@everybye=\toks18
+\pgfutil@tempdima=\dimen164
+\pgfutil@tempdimb=\dimen165
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common-lists.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-latex.def
+\pgfutil@abb=\box59
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfrcs.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf\pgf.revision.tex)
+Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys.code.tex
+Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex
+\pgfkeys@pathtoks=\toks19
+\pgfkeys@temptoks=\toks20
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeysfiltered.code.tex
+\pgfkeys@tmptoks=\toks21
+))
+\pgf@x=\dimen166
+\pgf@y=\dimen167
+\pgf@xa=\dimen168
+\pgf@ya=\dimen169
+\pgf@xb=\dimen170
+\pgf@yb=\dimen171
+\pgf@xc=\dimen172
+\pgf@yc=\dimen173
+\pgf@xd=\dimen174
+\pgf@yd=\dimen175
+\w@pgf@writea=\write3
+\r@pgf@reada=\read2
+\c@pgf@counta=\count277
+\c@pgf@countb=\count278
+\c@pgf@countc=\count279
+\c@pgf@countd=\count280
+\t@pgf@toka=\toks22
+\t@pgf@tokb=\toks23
+\t@pgf@tokc=\toks24
+\pgf@sys@id@count=\count281
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgf.cfg
+File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a)
+)
+Driver file for pgf: pgfsys-pdftex.def
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-pdftex.def
+File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-common-pdf.def
+File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsyssoftpath.code.tex
+File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfsyssoftpath@smallbuffer@items=\count282
+\pgfsyssoftpath@bigbuffer@items=\count283
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsysprotocol.code.tex
+File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/latex/xcolor\xcolor.sty
+Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
+File: color.cfg 2016/01/02 v1.6 sample color configuration
+)
+Package xcolor Info: Driver file: pdftex.def on input line 225.
+Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
+Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
+Package xcolor Info: Model `RGB' extended on input line 1364.
+Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
+Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
+Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
+Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
+Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
+Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcore.code.tex
+Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathcalc.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathutil.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathparser.code.tex
+\pgfmath@dimen=\dimen176
+\pgfmath@count=\count284
+\pgfmath@box=\box60
+\pgfmath@toks=\toks25
+\pgfmath@stack@operand=\toks26
+\pgfmath@stack@operation=\toks27
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.basic.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.trigonometric.co
+de.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.random.code.tex)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.comparison.code.
+tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.base.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.round.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.misc.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.integerarithmeti
+cs.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfloat.code.tex
+\c@pgfmathroundto@lastzeros=\count285
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfint.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepoints.code.tex
+File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@picminx=\dimen177
+\pgf@picmaxx=\dimen178
+\pgf@picminy=\dimen179
+\pgf@picmaxy=\dimen180
+\pgf@pathminx=\dimen181
+\pgf@pathmaxx=\dimen182
+\pgf@pathminy=\dimen183
+\pgf@pathmaxy=\dimen184
+\pgf@xx=\dimen185
+\pgf@xy=\dimen186
+\pgf@yx=\dimen187
+\pgf@yy=\dimen188
+\pgf@zx=\dimen189
+\pgf@zy=\dimen190
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathconstruct.code.t
+ex
+File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@path@lastx=\dimen191
+\pgf@path@lasty=\dimen192
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathusage.code.tex
+File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@shorten@end@additional=\dimen193
+\pgf@shorten@start@additional=\dimen194
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorescopes.code.tex
+File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfpic=\box61
+\pgf@hbox=\box62
+\pgf@layerbox@main=\box63
+\pgf@picture@serial@count=\count286
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoregraphicstate.code.te
+x
+File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgflinewidth=\dimen195
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransformations.code
+.tex
+File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@pt@x=\dimen196
+\pgf@pt@y=\dimen197
+\pgf@pt@temp=\dimen198
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorequick.code.tex
+File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreobjects.code.tex
+File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathprocessing.code.
+tex
+File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorearrows.code.tex
+File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfarrowsep=\dimen199
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreshade.code.tex
+File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@max=\dimen256
+\pgf@sys@shading@range@num=\count287
+\pgf@shadingcount=\count288
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreimage.code.tex
+File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreexternal.code.tex
+File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfexternal@startupbox=\box64
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorelayers.code.tex
+File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransparency.code.te
+x
+File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepatterns.code.tex
+File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorerdf.code.tex
+File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\xxcolor.sty
+Package: xxcolor 2003/10/24 ver 0.1
+\XC@nummixins=\count289
+\XC@countmixins=\count290
+)
+(C:\Program Files\MiKTeX\tex/latex/base\atbegshi-ltx.sty
+Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
+package with kernel methods
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref.sty
+Package: hyperref 2021-06-07 v7.00m Hypertext links for LaTeX
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
+Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
+Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
+)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/infwarerr\infwarerr.sty
+Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
+)
+Package pdftexcmds Info: \pdf@primitive is available.
+Package pdftexcmds Info: \pdf@ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvsetkeys\kvsetkeys.sty
+Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/pdfescape\pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/hycolor\hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/auxhook\auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/kvoptions\kvoptions.sty
+Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
+)
+\@linkdim=\dimen257
+\Hy@linkcounter=\count291
+\Hy@pagecounter=\count292
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\pd1enc.def
+File: pd1enc.def 2021-06-07 v7.00m Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref-langpatches.def
+File: hyperref-langpatches.def 2021-06-07 v7.00m Hyperref: patches for babel la
+nguages
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/intcalc\intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/etexcmds\etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count293
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\puenc.def
+File: puenc.def 2021-06-07 v7.00m Hyperref: PDF Unicode definition (HO)
+Now handling font encoding PU ...
+... no UTF-8 mapping file for font encoding PU
+)
+Package hyperref Info: Option `bookmarks' set `true' on input line 4073.
+Package hyperref Info: Option `bookmarksopen' set `true' on input line 4073.
+Package hyperref Info: Option `implicit' set `false' on input line 4073.
+Package hyperref Info: Hyper figures OFF on input line 4192.
+Package hyperref Info: Link nesting OFF on input line 4197.
+Package hyperref Info: Hyper index ON on input line 4200.
+Package hyperref Info: Plain pages OFF on input line 4207.
+Package hyperref Info: Backreferencing OFF on input line 4212.
+Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
+Package hyperref Info: Bookmarks ON on input line 4445.
+\c@Hy@tempcnt=\count294
+
+(C:\Program Files\MiKTeX\tex/latex/url\url.sty
+\Urlmuskip=\muskip16
+Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4804.
+\XeTeXLinkMargin=\dimen258
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bitset\bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
+)
+))
+\Fld@menulength=\count295
+\Field@Width=\dimen259
+\Fld@charsize=\dimen260
+Package hyperref Info: Hyper figures OFF on input line 6076.
+Package hyperref Info: Link nesting OFF on input line 6081.
+Package hyperref Info: Hyper index ON on input line 6084.
+Package hyperref Info: backreferencing OFF on input line 6091.
+Package hyperref Info: Link coloring OFF on input line 6096.
+Package hyperref Info: Link coloring with OCG OFF on input line 6101.
+Package hyperref Info: PDF/A mode OFF on input line 6106.
+LaTeX Info: Redefining \ref on input line 6146.
+LaTeX Info: Redefining \pageref on input line 6150.
+\Hy@abspage=\count296
+
+
+Package hyperref Message: Stopped early.
+
+)
+Package hyperref Info: Driver (autodetected): hpdftex.
+ (C:\Program Files\MiKTeX\tex/latex/hyperref\hpdftex.def
+File: hpdftex.def 2021-06-07 v7.00m Hyperref driver for pdfTeX
+
+(C:\Program Files\MiKTeX\tex/latex/base\atveryend-ltx.sty
+Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
+e
+with kernel methods
+)
+\Fld@listcount=\count297
+\c@bookmark@seq@number=\count298
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.s
+ty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/uniquecounter\uniquecounter.s
+ty
+Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
+)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+86.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaserequires.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecompatibility.
+sty) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasefont.sty
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amssymb.sty
+Package: amssymb 2013/01/14 v3.01 AMS font symbols
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amsfonts.sty
+Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
+\@emptytoks=\toks28
+\symAMSa=\mathgroup4
+\symAMSb=\mathgroup5
+LaTeX Font Info:    Redeclaring math symbol \hbar on input line 98.
+LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
+(Font)                  U/euf/m/n --> U/euf/b/n on input line 106.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/sansmathaccent\sansmathaccent.s
+ty
+Package: sansmathaccent 2020/01/31
+ (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile.sty
+Package: scrlfile 2021/06/25 v3.34 KOMA-Script package (file load hooks)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile-hook.sty
+Package: scrlfile-hook 2021/06/25 v3.34 KOMA-Script package (using LaTeX hooks)
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlogo.sty
+Package: scrlogo 2021/06/25 v3.34 KOMA-Script package (logo)
+)))))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetranslator.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator.sty
+Package: translator 2021-05-31 v1.12d Easy translation of strings in LaTeX
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemisc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetwoscreens.sty
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoverlay.sty
+\beamer@argscount=\count299
+\beamer@lastskipcover=\skip50
+\beamer@trivlistdepth=\count300
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetitle.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasesection.sty
+\c@lecture=\count301
+\c@part=\count302
+\c@section=\count303
+\c@subsection=\count304
+\c@subsubsection=\count305
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframe.sty
+\beamer@framebox=\box65
+\beamer@frametitlebox=\box66
+\beamer@zoombox=\box67
+\beamer@zoomcount=\count306
+\beamer@zoomframecount=\count307
+\beamer@frametextheight=\dimen261
+\c@subsectionslide=\count308
+\beamer@frametopskip=\skip51
+\beamer@framebottomskip=\skip52
+\beamer@frametopskipautobreak=\skip53
+\beamer@framebottomskipautobreak=\skip54
+\beamer@envbody=\toks29
+\framewidth=\dimen262
+\c@framenumber=\count309
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseverbatim.sty
+\beamer@verbatimfileout=\write4
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframesize.sty
+\beamer@splitbox=\box68
+\beamer@autobreakcount=\count310
+\beamer@autobreaklastheight=\dimen263
+\beamer@frametitletoks=\toks30
+\beamer@framesubtitletoks=\toks31
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframecomponent
+s.sty
+\beamer@footins=\box69
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecolor.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenotes.sty
+\beamer@frameboxcopy=\box70
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetoc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetemplates.sty
+\beamer@sbttoks=\toks32
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseauxtemplates.s
+ty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseboxes.sty
+\bmb@box=\box71
+\bmb@colorbox=\box72
+\bmb@boxwidth=\dimen264
+\bmb@boxheight=\dimen265
+\bmb@prevheight=\dimen266
+\bmb@temp=\dimen267
+\bmb@dima=\dimen268
+\bmb@dimb=\dimen269
+\bmb@prevheight=\dimen270
+)
+\beamer@blockheadheight=\dimen271
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaselocalstructure
+.sty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\enumerate.sty
+Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
+\@enLab=\toks33
+)
+\beamer@bibiconwidth=\skip55
+\c@figure=\count311
+\c@table=\count312
+\abovecaptionskip=\skip56
+\belowcaptionskip=\skip57
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenavigation.sty
+\beamer@section@min@dim=\dimen272
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetheorems.sty
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsmath.sty
+Package: amsmath 2021/04/20 v2.17j AMS math features
+\@mathmargin=\skip58
+
+For additional information on amsmath, use the `?' option.
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amstext.sty
+Package: amstext 2000/06/29 v2.01 AMS text
+
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0 generic functions
+\@emptytoks=\toks34
+\ex@=\dimen273
+))
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d Bold Symbols
+\pmbraise@=\dimen274
+)
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsopn.sty
+Package: amsopn 2016/03/08 v2.02 operator names
+)
+\inf@bad=\count313
+LaTeX Info: Redefining \frac on input line 234.
+\uproot@=\count314
+\leftroot@=\count315
+LaTeX Info: Redefining \overline on input line 399.
+\classnum@=\count316
+\DOTSCASE@=\count317
+LaTeX Info: Redefining \ldots on input line 496.
+LaTeX Info: Redefining \dots on input line 499.
+LaTeX Info: Redefining \cdots on input line 620.
+\Mathstrutbox@=\box73
+\strutbox@=\box74
+\big@size=\dimen275
+LaTeX Font Info:    Redeclaring font encoding OML on input line 743.
+LaTeX Font Info:    Redeclaring font encoding OMS on input line 744.
+\macc@depth=\count318
+\c@MaxMatrixCols=\count319
+\dotsspace@=\muskip17
+\c@parentequation=\count320
+\dspbrk@lvl=\count321
+\tag@help=\toks35
+\row@=\count322
+\column@=\count323
+\maxfields@=\count324
+\andhelp@=\toks36
+\eqnshift@=\dimen276
+\alignsep@=\dimen277
+\tagshift@=\dimen278
+\tagwidth@=\dimen279
+\totwidth@=\dimen280
+\lineht@=\dimen281
+\@envbody=\toks37
+\multlinegap=\skip59
+\multlinetaggap=\skip60
+\mathdisplay@stack=\toks38
+LaTeX Info: Redefining \[ on input line 2923.
+LaTeX Info: Redefining \] on input line 2924.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/amscls\amsthm.sty
+Package: amsthm 2020/05/29 v2.20.6
+\thm@style=\toks39
+\thm@bodyfont=\toks40
+\thm@headfont=\toks41
+\thm@notefont=\toks42
+\thm@headpunct=\toks43
+\thm@preskip=\skip61
+\thm@postskip=\skip62
+\thm@headsep=\skip63
+\dth@everypar=\toks44
+)
+\c@theorem=\count325
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasethemes.sty))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerthemedefault.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemedefault.s
+ty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamercolorthemedefault.
+sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerinnerthemedefault.
+sty
+\beamer@dima=\dimen282
+\beamer@dimb=\dimen283
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerouterthemedefault.
+sty))) (beamer_slider_preamble.tex
+(C:\Program Files\MiKTeX\tex/latex/base\fontenc.sty
+Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
+)
+(C:\Program Files\MiKTeX\tex/latex/base\inputenc.sty
+Package: inputenc 2021/02/14 v1.3d Input encoding file
+\inpenc@prehook=\toks45
+\inpenc@posthook=\toks46
+)
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.sty
+Package: babel 2021/07/22 3.63 The Babel package
+
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.def
+File: babel.def 2021/07/22 3.63 Babel common definitions
+\babel@savecnt=\count326
+\U@D=\dimen284
+\l@unhyphenated=\language79
+
+(C:\Program Files\MiKTeX\tex/generic/babel\txtbabel.def)
+\bbl@readstream=\read3
+)
+LaTeX Info: Redefining \textlatin on input line 730.
+\bbl@dirlevel=\count327
+
+*************************************
+* Local config file bblopts.cfg used
+*
+(C:\Program Files\MiKTeX\tex/latex/arabi\bblopts.cfg
+File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
+ babel
+)
+(C:\Program Files\MiKTeX\tex/latex/babel-english\english.ldf
+Language: english 2017/06/06 v3.3r English support from the babel system
+Package babel Info: Hyphen rules for 'canadian' set to \l@english
+(babel)             (\language0). Reported on input line 102.
+Package babel Info: Hyphen rules for 'australian' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 105.
+Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 108.
+))
+(C:\Program Files\MiKTeX\tex/latex/pgfplots\pgfplots.sty
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.revision.tex)
+Package: pgfplots 2021/05/15 v1.18.1 Data Visualization (1.18.1)
+
+(C:\Program Files\MiKTeX\tex/latex/pgf/frontendlayer\tikz.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgf.sty
+Package: pgf 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleshapes.code.tex
+File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfnodeparttextbox=\box75
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleplot.code.tex
+File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-0-65.sty
+Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@nodesepstart=\dimen285
+\pgf@nodesepend=\dimen286
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-1-18.sty
+Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a)
+)) (C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgffor.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfkeys.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex))
+(C:\Program Files\MiKTeX\tex/latex/pgf/math\pgfmath.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgffor.code.tex
+Package: pgffor 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex)
+\pgffor@iter=\dimen287
+\pgffor@skip=\dimen288
+\pgffor@stack=\toks47
+\pgffor@toks=\toks48
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz\tikz.code.tex
+Package: tikz 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplothandlers.code.
+tex
+File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@plot@mark@count=\count328
+\pgfplotmarksize=\dimen289
+)
+\tikz@lastx=\dimen290
+\tikz@lasty=\dimen291
+\tikz@lastxsaved=\dimen292
+\tikz@lastysaved=\dimen293
+\tikz@lastmovetox=\dimen294
+\tikz@lastmovetoy=\dimen295
+\tikzleveldistance=\dimen296
+\tikzsiblingdistance=\dimen297
+\tikz@figbox=\box76
+\tikz@figbox@bg=\box77
+\tikz@tempbox=\box78
+\tikz@tempbox@bg=\box79
+\tikztreelevel=\count329
+\tikznumberofchildren=\count330
+\tikznumberofcurrentchild=\count331
+\tikz@fig@count=\count332
+ (C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmodulematrix.code.tex
+File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfmatrixcurrentrow=\count333
+\pgfmatrixcurrentcolumn=\count334
+\pgf@matrix@numberofcolumns=\count335
+)
+\tikz@expandcount=\count336
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rytopaths.code.tex
+File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscore.code.tex
+\t@pgfplots@toka=\toks49
+\t@pgfplots@tokb=\toks50
+\t@pgfplots@tokc=\toks51
+\pgfplots@tmpa=\dimen298
+\c@pgfplots@coordindex=\count337
+\c@pgfplots@scanlineindex=\count338
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgfplotssysgeneric.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgfplotslibrary.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/oldpgfcompatib\pgfplotsoldpgfsupp
+_loader.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryfpu.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+re.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+reext.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsarray.code.
+tex
+\c@pgfplotsarray@tmp=\count339
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsmatrix.code
+.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/numtable\pgfplotstableshared.code
+.tex
+\c@pgfplotstable@counta=\count340
+\t@pgfplotstable@a=\toks52
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsdeque.code.
+tex) (C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.code.tex
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.data.code.tex
+))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.verb.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgflibrarypgfplots.surfshadi
+ng.code.tex
+\c@pgfplotslibrarysurf@no=\count341
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgflibrarypgfplots.surfshadin
+g.pgfsys-pdftex.def)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolormap.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolor.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsstackedplots.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsplothandlers.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplothandler.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplotimage.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.scaling.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscoordprocessing.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.errorbars.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.markers.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsticks.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.paths.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduledecorations.code.tex
+\pgfdecoratedcompleteddistance=\dimen299
+\pgfdecoratedremainingdistance=\dimen300
+\pgfdecoratedinputsegmentcompleteddistance=\dimen301
+\pgfdecoratedinputsegmentremainingdistance=\dimen302
+\pgf@decorate@distancetomove=\dimen303
+\pgf@decorate@repeatstate=\count342
+\pgfdecorationsegmentamplitude=\dimen304
+\pgfdecorationsegmentlength=\dimen305
+)
+\tikz@lib@dec@box=\box80
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathmorphing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathmorphing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathreplacing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathreplacing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\tikzlibrarypgfplots.contourl
+ua.code.tex)
+\pgfplots@numplots=\count343
+\pgfplots@xmin@reg=\dimen306
+\pgfplots@xmax@reg=\dimen307
+\pgfplots@ymin@reg=\dimen308
+\pgfplots@ymax@reg=\dimen309
+\pgfplots@zmin@reg=\dimen310
+\pgfplots@zmax@reg=\dimen311
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+ryplotmarks.code.tex
+File: tikzlibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplotmarks.code.tex
+File: pgflibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/booktabs\booktabs.sty
+Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
+\heavyrulewidth=\dimen312
+\lightrulewidth=\dimen313
+\cmidrulewidth=\dimen314
+\belowrulesep=\dimen315
+\belowbottomsep=\dimen316
+\aboverulesep=\dimen317
+\abovetopsep=\dimen318
+\cmidrulesep=\dimen319
+\cmidrulekern=\dimen320
+\defaultaddspace=\dimen321
+\@cmidla=\count344
+\@cmidlb=\count345
+\@aboverulesep=\dimen322
+\@belowrulesep=\dimen323
+\@thisruleclass=\count346
+\@lastruleclass=\count347
+\@thisrulewidth=\dimen324
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/siunitx\siunitx.sty
+Package: siunitx 2021-08-27 v3.0.28 A comprehensive (SI) units package
+\l__siunitx_angle_tmp_dim=\dimen325
+\l__siunitx_angle_marker_box=\box81
+\l__siunitx_angle_unit_box=\box82
+\l__siunitx_compound_count_int=\count348
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations\translations.sty
+Package: translations 2021/01/17 v1.10a internationalization of LaTeX2e package
+s (CN)
+)
+\l__siunitx_number_exponent_fixed_int=\count349
+\l__siunitx_number_min_decimal_int=\count350
+\l__siunitx_number_min_integer_int=\count351
+\l__siunitx_number_round_precision_int=\count352
+\l__siunitx_number_group_minimum_int=\count353
+\l__siunitx_table_tmp_box=\box83
+\l__siunitx_table_tmp_dim=\dimen326
+\l__siunitx_table_column_width_dim=\dimen327
+\l__siunitx_table_integer_box=\box84
+\l__siunitx_table_decimal_box=\box85
+\l__siunitx_table_before_box=\box86
+\l__siunitx_table_after_box=\box87
+\l__siunitx_table_before_dim=\dimen328
+\l__siunitx_table_carry_dim=\dimen329
+\l__siunitx_unit_tmp_int=\count354
+\l__siunitx_unit_position_int=\count355
+\l__siunitx_unit_total_int=\count356
+
+(C:\Program Files\MiKTeX\tex/latex/l3packages/l3keys2e\l3keys2e.sty
+(C:\Program Files\MiKTeX\tex/latex/l3kernel\expl3.sty
+Package: expl3 2021-08-27 L3 programming layer (loader) 
+
+(C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-pdftex.def
+File: l3backend-pdftex.def 2021-08-04 L3 backend support: PDF output (pdfTeX)
+\l__color_backend_stack_int=\count357
+\l__pdf_internal_box=\box88
+))
+Package: l3keys2e 2021-08-27 LaTeX2e option processing using LaTeX3 keys
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\array.sty
+Package: array 2021/04/20 v2.5e Tabular extension package (FMi)
+\col@sep=\dimen330
+\ar@mcellbox=\box89
+\extrarowheight=\dimen331
+\NC@list=\toks53
+\extratabsurround=\skip64
+\backup@length=\skip65
+\ar@cellbox=\box90
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/svg\svg.sty
+Package: svg 2020/11/26 v2.02k (include SVG pictures)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrbase.sty
+Package: scrbase 2021/06/25 v3.34 KOMA-Script package (KOMA-Script-independent 
+basics and keyval usage)
+Applying: [2021/05/01] Usage of raw or classic option list on input line 252.
+Already applied: [0000/00/00] Usage of raw or classic option list on input line
+ 368.
+)
+(C:\Program Files\MiKTeX\tex/latex/trimspaces\trimspaces.sty
+Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\shellesc.sty
+Package: shellesc 2019/11/08 v1.0c unified shell escape interface for LaTeX
+Package shellesc Info: Unrestricted shell escape enabled on input line 75.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/ifplatform\ifplatform.sty
+Package: ifplatform 2017/10/13 v0.4a Testing for the operating system
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/catchfile\catchfile.sty
+Package: catchfile 2019/12/09 v1.8 Catch the contents of a file (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifluatex.sty
+Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
+))
+\c@svg@param@lastpage=\count358
+\svg@box=\box91
+\c@svg@param@currpage=\count359
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/transparent\transparent.sty
+Package: transparent 2019/11/29 v1.4 Transparency via pdfTeX's color stack (HO)
+
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdraw.sty
+Package: pmboxdraw 2019/12/05 v1.4 Poor man's box drawing characters (HO)
+Now handling font encoding pmboxdraw ...
+... processing UTF-8 mapping file for font encoding pmboxdraw
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdrawenc.dfu
+File: pmboxdrawenc.dfu 2019/12/05 v1.4 UTF-8 support for box drawing characters
+
+   defining Unicode char U+2500 (decimal 9472)
+   defining Unicode char U+2501 (decimal 9473)
+   defining Unicode char U+2502 (decimal 9474)
+   defining Unicode char U+2503 (decimal 9475)
+   defining Unicode char U+250C (decimal 9484)
+   defining Unicode char U+250D (decimal 9485)
+   defining Unicode char U+250E (decimal 9486)
+   defining Unicode char U+250F (decimal 9487)
+   defining Unicode char U+2510 (decimal 9488)
+   defining Unicode char U+2511 (decimal 9489)
+   defining Unicode char U+2512 (decimal 9490)
+   defining Unicode char U+2513 (decimal 9491)
+   defining Unicode char U+2514 (decimal 9492)
+   defining Unicode char U+2515 (decimal 9493)
+   defining Unicode char U+2516 (decimal 9494)
+   defining Unicode char U+2517 (decimal 9495)
+   defining Unicode char U+2518 (decimal 9496)
+   defining Unicode char U+2519 (decimal 9497)
+   defining Unicode char U+251A (decimal 9498)
+   defining Unicode char U+251B (decimal 9499)
+   defining Unicode char U+251C (decimal 9500)
+   defining Unicode char U+251D (decimal 9501)
+   defining Unicode char U+251E (decimal 9502)
+   defining Unicode char U+251F (decimal 9503)
+   defining Unicode char U+2520 (decimal 9504)
+   defining Unicode char U+2521 (decimal 9505)
+   defining Unicode char U+2522 (decimal 9506)
+   defining Unicode char U+2523 (decimal 9507)
+   defining Unicode char U+2524 (decimal 9508)
+   defining Unicode char U+252C (decimal 9516)
+   defining Unicode char U+252D (decimal 9517)
+   defining Unicode char U+252E (decimal 9518)
+   defining Unicode char U+252F (decimal 9519)
+   defining Unicode char U+2530 (decimal 9520)
+   defining Unicode char U+2531 (decimal 9521)
+   defining Unicode char U+2532 (decimal 9522)
+   defining Unicode char U+2533 (decimal 9523)
+   defining Unicode char U+2534 (decimal 9524)
+   defining Unicode char U+2535 (decimal 9525)
+   defining Unicode char U+2536 (decimal 9526)
+   defining Unicode char U+2537 (decimal 9527)
+   defining Unicode char U+2538 (decimal 9528)
+   defining Unicode char U+2539 (decimal 9529)
+   defining Unicode char U+253A (decimal 9530)
+   defining Unicode char U+253B (decimal 9531)
+   defining Unicode char U+253C (decimal 9532)
+   defining Unicode char U+253D (decimal 9533)
+   defining Unicode char U+253E (decimal 9534)
+   defining Unicode char U+253F (decimal 9535)
+   defining Unicode char U+2540 (decimal 9536)
+   defining Unicode char U+2541 (decimal 9537)
+   defining Unicode char U+2542 (decimal 9538)
+   defining Unicode char U+2543 (decimal 9539)
+   defining Unicode char U+2544 (decimal 9540)
+   defining Unicode char U+2545 (decimal 9541)
+   defining Unicode char U+2546 (decimal 9542)
+   defining Unicode char U+2547 (decimal 9543)
+   defining Unicode char U+2548 (decimal 9544)
+   defining Unicode char U+2549 (decimal 9545)
+   defining Unicode char U+254A (decimal 9546)
+   defining Unicode char U+254B (decimal 9547)
+   defining Unicode char U+2550 (decimal 9552)
+   defining Unicode char U+2551 (decimal 9553)
+   defining Unicode char U+2552 (decimal 9554)
+   defining Unicode char U+2553 (decimal 9555)
+   defining Unicode char U+2554 (decimal 9556)
+   defining Unicode char U+2555 (decimal 9557)
+   defining Unicode char U+2556 (decimal 9558)
+   defining Unicode char U+2557 (decimal 9559)
+   defining Unicode char U+2558 (decimal 9560)
+   defining Unicode char U+2559 (decimal 9561)
+   defining Unicode char U+255A (decimal 9562)
+   defining Unicode char U+255B (decimal 9563)
+   defining Unicode char U+255C (decimal 9564)
+   defining Unicode char U+255D (decimal 9565)
+   defining Unicode char U+255E (decimal 9566)
+   defining Unicode char U+255F (decimal 9567)
+   defining Unicode char U+2560 (decimal 9568)
+   defining Unicode char U+2561 (decimal 9569)
+   defining Unicode char U+2562 (decimal 9570)
+   defining Unicode char U+2563 (decimal 9571)
+   defining Unicode char U+2564 (decimal 9572)
+   defining Unicode char U+2565 (decimal 9573)
+   defining Unicode char U+2566 (decimal 9574)
+   defining Unicode char U+2567 (decimal 9575)
+   defining Unicode char U+2568 (decimal 9576)
+   defining Unicode char U+2569 (decimal 9577)
+   defining Unicode char U+256A (decimal 9578)
+   defining Unicode char U+256B (decimal 9579)
+   defining Unicode char U+256C (decimal 9580)
+   defining Unicode char U+2574 (decimal 9588)
+   defining Unicode char U+2575 (decimal 9589)
+   defining Unicode char U+2576 (decimal 9590)
+   defining Unicode char U+2577 (decimal 9591)
+   defining Unicode char U+2578 (decimal 9592)
+   defining Unicode char U+2579 (decimal 9593)
+   defining Unicode char U+257A (decimal 9594)
+   defining Unicode char U+257B (decimal 9595)
+   defining Unicode char U+257C (decimal 9596)
+   defining Unicode char U+257D (decimal 9597)
+   defining Unicode char U+257E (decimal 9598)
+   defining Unicode char U+257F (decimal 9599)
+   defining Unicode char U+2580 (decimal 9600)
+   defining Unicode char U+2581 (decimal 9601)
+   defining Unicode char U+2582 (decimal 9602)
+   defining Unicode char U+2583 (decimal 9603)
+   defining Unicode char U+2584 (decimal 9604)
+   defining Unicode char U+2585 (decimal 9605)
+   defining Unicode char U+2586 (decimal 9606)
+   defining Unicode char U+2587 (decimal 9607)
+   defining Unicode char U+2588 (decimal 9608)
+   defining Unicode char U+2589 (decimal 9609)
+   defining Unicode char U+258A (decimal 9610)
+   defining Unicode char U+258B (decimal 9611)
+   defining Unicode char U+258C (decimal 9612)
+   defining Unicode char U+258D (decimal 9613)
+   defining Unicode char U+258E (decimal 9614)
+   defining Unicode char U+258F (decimal 9615)
+   defining Unicode char U+2590 (decimal 9616)
+   defining Unicode char U+2591 (decimal 9617)
+   defining Unicode char U+2592 (decimal 9618)
+   defining Unicode char U+2593 (decimal 9619)
+   defining Unicode char U+2594 (decimal 9620)
+   defining Unicode char U+2595 (decimal 9621)
+   defining Unicode char U+2596 (decimal 9622)
+   defining Unicode char U+2597 (decimal 9623)
+   defining Unicode char U+2598 (decimal 9624)
+   defining Unicode char U+2599 (decimal 9625)
+   defining Unicode char U+259A (decimal 9626)
+   defining Unicode char U+259B (decimal 9627)
+   defining Unicode char U+259C (decimal 9628)
+   defining Unicode char U+259D (decimal 9629)
+   defining Unicode char U+259E (decimal 9630)
+   defining Unicode char U+259F (decimal 9631)
+)
+\pmbd@W=\dimen332
+\pmbd@H=\dimen333
+\pmbd@L=\dimen334
+\pmbd@Thin=\dimen335
+\pmbd@Thick=\dimen336
+\pmbd@Sep=\dimen337
+)
+(beamerthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime.sty
+Package: datetime 2015/03/20 v2.60 Date Time Package
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fmtcount.sty
+Package: fmtcount 2020/01/30 v3.07
+
+(C:\Program Files\MiKTeX\tex/latex/base\ifthen.sty
+Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/xkeyval\xkeyval.sty
+Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
+
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkeyval.tex
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkvutils.tex
+\XKV@toks=\toks54
+\XKV@tempa@toks=\toks55
+)
+\XKV@depth=\count360
+File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcprefix.sty
+Package: fcprefix 2012/09/28
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcnumparser.sty
+Package: fcnumparser 2017/06/15
+\fc@digit@counter=\count361
+))
+\c@padzeroesN=\count362
+\fc@tmpcatcode=\count363
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fc-english.def
+File: fc-english.def 2016/01/12
+)
+\@DT@modctr=\count364
+\@ordinalctr=\count365
+\@orgargctr=\count366
+\@strctr=\count367
+\@tmpstrctr=\count368
+\@DT@loopN=\count369
+\@DT@X=\count370
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime-defaults.sty
+Package: datetime-defaults 2013/09/10
+)
+\@day=\count371
+\@month=\count372
+\@year=\count373
+\c@HOUR=\count374
+\c@HOURXII=\count375
+\c@MINUTE=\count376
+\c@TOHOUR=\count377
+\c@TOMINUTE=\count378
+\c@SECOND=\count379
+\currenthour=\count380
+\currentminute=\count381
+\currentsecond=\count382
+Package datetime Info: No datetime.cfg file found, using default settings on in
+put line 308.
+\@dtctr=\count383
+\dayofyear=\count384
+\dayofweek=\count385
+LaTeX Info: Redefining \today on input line 736.
+\dt@a=\toks56
+\dt@b=\toks57
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\calc.sty
+Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
+\calc@Acount=\count386
+\calc@Bcount=\count387
+\calc@Adimen=\dimen338
+\calc@Bdimen=\dimen339
+\calc@Askip=\skip66
+\calc@Bskip=\skip67
+LaTeX Info: Redefining \setlength on input line 80.
+LaTeX Info: Redefining \addtolength on input line 81.
+\calc@Ccount=\count388
+\calc@Cskip=\skip68
+)
+Class  Info: The file departments.tex with department logo file naming has been
+ loaded. on input line 21.
+
+(departments.tex) (beamerfontthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemeprofessio
+nalfonts.sty)) (beamerouterthemeDTU.sty) (beamerinnerthemeDTU.sty)
+(beamercolorthemeDTU.sty
+Package dtubeamer Info: Successfully loaded the DTU colours. on input line 22.
+ (dtucolours.tex))
+\widthframenumber=\skip69
+\widthdepartment=\skip70
+\widthtitle=\skip71
+\widthdate=\skip72
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/textpos\textpos.sty
+Package: textpos 2020/09/26 v1.10
+
+Package: textpos 2020/09/26 1.10, absolute positioning of text on the page
+Package textpos Info: choosing support for LaTeX3 on input line 61.
+\TP@textbox=\box92
+\TP@holdbox=\box93
+\TPHorizModule=\dimen340
+\TPVertModule=\dimen341
+\TP@margin=\dimen342
+\TP@absmargin=\dimen343
+Grid set 16 x 16 = 24.89616pt x 18.67212pt
+\TPboxrulesize=\dimen344
+\TP@ox=\dimen345
+\TP@oy=\dimen346
+\TP@tbargs=\toks58
+TextBlockOrigin set to 0pt x 0pt
+)
+TextBlockOrigin set to 0mm x 0mm
+(C:\Program Files\MiKTeX\tex/latex/lm\lmodern.sty
+Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
+LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
+(Font)                  OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `normal'
+(Font)                  OML/cmm/m/it --> OML/lmm/m/it on input line 23.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `normal'
+(Font)                  OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `normal'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
+LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `bold'
+(Font)                  OML/cmm/b/it --> OML/lmm/b/it on input line 27.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `bold'
+(Font)                  OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `bold'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
+(Font)                  OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
+(Font)                  OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
+(Font)                  OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
+(Font)                  OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
+))
+LaTeX Font Info:    Trying to load font information for T1+lmss on input line 1
+2.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\t1lmss.fd
+File: t1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
+) (index.aux)
+\openout1 = `index.aux'.
+
+LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for pmboxdraw/pmboxdraw/m/n on input line
+ 12.
+LaTeX Font Info:    ... okay on input line 12.
+
+*geometry* driver: auto-detecting
+*geometry* detected driver: pdftex
+*geometry* verbose mode - [ preamble ] result:
+* driver: pdftex
+* paper: custom
+* layout: <same size as paper>
+* layoutoffset:(h,v)=(0.0pt,0.0pt)
+* modes: includehead includefoot 
+* h-part:(L,W,R)=(26.64667pt, 347.32933pt, 24.36267pt)
+* v-part:(T,H,B)=(0.0pt, 298.7541pt, 0.0pt)
+* \paperwidth=398.33867pt
+* \paperheight=298.7541pt
+* \textwidth=347.32933pt
+* \textheight=270.30138pt
+* \oddsidemargin=-45.62332pt
+* \evensidemargin=-45.62332pt
+* \topmargin=-72.26999pt
+* \headheight=14.22636pt
+* \headsep=0.0pt
+* \topskip=11.0pt
+* \footskip=14.22636pt
+* \marginparwidth=4.0pt
+* \marginparsep=10.0pt
+* \columnsep=10.0pt
+* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
+* \hoffset=0.0pt
+* \voffset=0.0pt
+* \mag=1000
+* \@twocolumnfalse
+* \@twosidefalse
+* \@mparswitchfalse
+* \@reversemarginfalse
+* (1in=72.27pt=25.4mm, 1cm=28.453pt)
+
+(C:\Program Files\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+\scratchcounter=\count389
+\scratchdimen=\dimen347
+\scratchbox=\box94
+\nofMPsegments=\count390
+\nofMParguments=\count391
+\everyMPshowfont=\toks59
+\MPscratchCnt=\count392
+\MPscratchDim=\dimen348
+\MPnumerator=\count393
+\makeMPintoPDFobject=\count394
+\everyMPtoPDFconversion=\toks60
+) (C:\Program Files\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-base.sty
+Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
+Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
+85.
+
+(C:\Program Files\MiKTeX\tex/latex/00miktex\epstopdf-sys.cfg
+File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
+))
+Package hyperref Info: Link coloring OFF on input line 12.
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\nameref.sty
+Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/refcount\refcount.sty
+Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/gettitlestring\gettitlestring
+.sty
+Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
+)
+\c@section@level=\count395
+)
+LaTeX Info: Redefining \ref on input line 12.
+LaTeX Info: Redefining \pageref on input line 12.
+LaTeX Info: Redefining \nameref on input line 12.
+ (index.out) (index.out)
+\@outlinefile=\write5
+\openout5 = `index.out'.
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-basic-dic
+tionary-English.dict
+Dictionary: translator-basic-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-bibliogra
+phy-dictionary-English.dict
+Dictionary: translator-bibliography-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-environme
+nt-dictionary-English.dict
+Dictionary: translator-environment-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-months-di
+ctionary-English.dict
+Dictionary: translator-months-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-numbers-d
+ictionary-English.dict
+Dictionary: translator-numbers-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-theorem-d
+ictionary-English.dict
+Dictionary: translator-theorem-dictionary, Language: English 
+)
+Package pgfplots notification 'compat/show suggested version=true': document ha
+s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations/dicts\translations
+-basic-dictionary-english.trsl
+File: translations-basic-dictionary-english.trsl (english translation file `tra
+nslations-basic-dictionary')
+)
+Package translations Info: loading dictionary `translations-basic-dictionary' f
+or `english'. on input line 12.
+ (index.nav)
+<tex_dtu_logo.pdf, id=12, 38.98967pt x 56.87248pt>
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 12.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 15.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+<tex_dtu_compute_a_uk.pdf, id=13, 309.17804pt x 36.72722pt>
+File: tex_dtu_compute_a_uk.pdf Graphic file (type pdf)
+<use tex_dtu_compute_a_uk.pdf>
+Package pdftex.def Info: tex_dtu_compute_a_uk.pdf  used on input line 15.
+(pdftex.def)             Requested size: 225.61316pt x 26.80016pt.
+<tex_dtu_frise.pdf, id=14, 959.585pt x 353.32pt>
+File: tex_dtu_frise.pdf Graphic file (type pdf)
+<use tex_dtu_frise.pdf>
+Package pdftex.def Info: tex_dtu_frise.pdf  used on input line 15.
+(pdftex.def)             Requested size: 276.85223pt x 101.93542pt.
+ [1
+
+{C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map} <./tex_dtu_logo.p
+df> <./tex_dtu_compute_a_uk.pdf
+
+pdfTeX warning: pdflatex (file ./tex_dtu_compute_a_uk.pdf): PDF inclusion: mult
+iple pdfs with page group included in a single page
+> <./tex_dtu_frise.pdf>]
+<osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf, id=29, 398.3382pt x 298.75415pt>
+
+File: osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf Graphic file (type pdf)
+<use osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf>
+Package pdftex.def Info: osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf  used on 
+input line 20.
+(pdftex.def)             Requested size: 398.33867pt x 298.77165pt.
+LaTeX Font Info:    Trying to load font information for T1+lmtt on input line 2
+0.
+ (C:\Program Files\MiKTeX\tex/latex/lm\t1lmtt.fd
+File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OT1+lmr on input line 2
+0.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\ot1lmr.fd
+File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OML+lmm on input line 2
+0.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omllmm.fd
+File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMS+lmsy on input line 
+20.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omslmsy.fd
+File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMX+lmex on input line 
+20.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omxlmex.fd
+File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <10.95> on input line 20.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <8> on input line 20.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <6> on input line 20.
+LaTeX Font Info:    Trying to load font information for U+msa on input line 20.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsa.fd
+File: umsa.fd 2013/01/14 v3.01 AMS symbols A
+)
+LaTeX Font Info:    Trying to load font information for U+msb on input line 20.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsb.fd
+File: umsb.fd 2013/01/14 v3.01 AMS symbols B
+)
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 20.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+ [2
+
+ <./osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf>]
+\tf@nav=\write6
+\openout6 = `index.nav'.
+
+\tf@toc=\write7
+\openout7 = `index.toc'.
+
+\tf@snm=\write8
+\openout8 = `index.snm'.
+
+ (index.aux)
+Package rerunfilecheck Info: File `index.out' has not changed.
+(rerunfilecheck)             Checksum: D41D8CD98F00B204E9800998ECF8427E;0.
+ ) 
+Here is how much of TeX's memory you used:
+ 41055 strings out of 478927
+ 964610 string characters out of 2862359
+ 1366802 words of memory out of 3000000
+ 58099 multiletter control sequences out of 15000+600000
+ 436788 words of font info for 54 fonts, out of 8000000 for 9000
+ 1141 hyphenation exceptions out of 8191
+ 128i,21n,124p,2111b,763s stack positions out of 5000i,500n,10000p,200000b,80000s
+{C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc}<C:/Program Files/MiKTe
+X/fonts/type1/public/lm/lmss10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/
+lm/lmss8.pfb><C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb><C:/Pr
+ogram Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb>
+Output written on index.pdf (2 pages, 128310 bytes).
+PDF statistics:
+ 59 PDF objects out of 1000 (max. 8388607)
+ 5 named destinations out of 1000 (max. 500000)
+ 63 words of extra memory for PDF output out of 10000 (max. 10000000)
+
diff --git a/examples/basic1/index.nav b/examples/basic1/index.nav
new file mode 100644
index 0000000000000000000000000000000000000000..9033d8ba0cd2afbd30fe6ab857d8374468715862
--- /dev/null
+++ b/examples/basic1/index.nav
@@ -0,0 +1,9 @@
+\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}
+\headcommand {\beamer@framepages {1}{1}}
+\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}
+\headcommand {\beamer@framepages {2}{2}}
+\headcommand {\beamer@partpages {1}{2}}
+\headcommand {\beamer@subsectionpages {1}{2}}
+\headcommand {\beamer@sectionpages {1}{2}}
+\headcommand {\beamer@documentpages {2}}
+\headcommand {\gdef \inserttotalframenumber {2}}
diff --git a/examples/basic1/index.out b/examples/basic1/index.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/basic1/index.pdf b/examples/basic1/index.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..049adfd234aa3530251a638340da13357a6d7998
Binary files /dev/null and b/examples/basic1/index.pdf differ
diff --git a/examples/basic1/index.snm b/examples/basic1/index.snm
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/basic1/index.tex b/examples/basic1/index.tex
new file mode 100644
index 0000000000000000000000000000000000000000..dcd0e237c2e5e970c83e189a63894f6390b823f7
--- /dev/null
+++ b/examples/basic1/index.tex
@@ -0,0 +1,22 @@
+ 
+\documentclass[aspectratio=43]{beamer}
+\usepackage{etoolbox}
+\newtoggle{overlabel_includesvgs}
+\newtoggle{overlabel_includelabels}
+\toggletrue{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+\input{beamer_slider_preamble.tex}
+
+\title{Example slide show}
+\author{Tue Herlau}
+\begin{document}
+\begin{frame}
+\maketitle
+\end{frame}
+
+\begin{frame}\osvg{myoverlay} % Use the \osvg{labelname} - tag to create new overlays. Run slider and check the ./osvgs directory for the svg files!
+\title{Slide with an overlay}
+This is some example text!
+\end{frame}
+
+\end{document}
diff --git a/examples/basic1/index.toc b/examples/basic1/index.toc
new file mode 100644
index 0000000000000000000000000000000000000000..9fbdd18a8c9adf55ec0285e8532d13207dc20bf7
--- /dev/null
+++ b/examples/basic1/index.toc
@@ -0,0 +1 @@
+\babel@toc {english}{}\relax 
diff --git a/examples/basic1/index_NO_SVGS.aux b/examples/basic1/index_NO_SVGS.aux
new file mode 100644
index 0000000000000000000000000000000000000000..bf24296eba99000a64412a47963f238227a552fb
--- /dev/null
+++ b/examples/basic1/index_NO_SVGS.aux
@@ -0,0 +1,33 @@
+\relax 
+\providecommand\hyper@newdestlabel[2]{}
+\providecommand{\transparent@use}[1]{}
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper@anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper@last\relax 
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField@AuxAddToFields[1]{}
+\providecommand\HyField@AuxAddToCoFields[2]{}
+\providecommand\babel@aux[2]{}
+\@nameuse{bbl@beforestart}
+\babel@aux{english}{}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {1}{1}}}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {2}{2}}}
+\@writefile{nav}{\headcommand {\beamer@partpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@sectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@documentpages {2}}}
+\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {2}}}
+\gdef\svg@ink@ver@settings{{\m@ne }{inkscape}{1}}
+\gdef \@abspage@last{2}
diff --git a/examples/basic1/index_NO_SVGS.fdb_latexmk b/examples/basic1/index_NO_SVGS.fdb_latexmk
new file mode 100644
index 0000000000000000000000000000000000000000..4e29aaade5ccc73ec0d804faf1cf311704c5f436
--- /dev/null
+++ b/examples/basic1/index_NO_SVGS.fdb_latexmk
@@ -0,0 +1,313 @@
+# Fdb version 3
+["pdflatex"] 1630760813 "index_NO_SVGS.tex" "index_NO_SVGS.pdf" "index_NO_SVGS" 1630760849
+  "C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc" 1254938640 2375 baa924870cfb487815765f9094cf3728 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/jknappen/ec/ecss1095.tfm" 993062234 3188 1aa640cd974697c5d1d4a3c92172a829 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1233955454 916 f87d7c45f9c908e672703b83b72241a3 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1233955454 928 2dc8d444221b7a635bb58038579b861a ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1233955454 908 2921f8a10601f252058503cc6570e581 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1233955454 940 228d6584342e91276bf566bcf9716b83 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr10.tfm" 1136768653 1296 45809c5a464d5f32c8f98ba97c1bb47f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmss10.tfm" 1136768653 1316 b636689f1933f24d1294acdf6041daaa ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss10.tfm" 1254938640 11176 53ebf7a171df1f9447b387b178768bb5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss12.tfm" 1254938640 11232 955a7245396175d9219648eadc654ac9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss8.tfm" 1254938640 11180 705632ac6b4fb69204ad970192cdf4e5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmssbx10.tfm" 1254938640 11168 06d87f5698fd1b642d96449b7c8d90b0 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmtt10.tfm" 1254938640 1372 2ef2c2b492b3c4cd7879fe083abbb061 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmex10.tfm" 1254938640 992 ce925c9346c7613270a79afbee98c070 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi10.tfm" 1254938640 1528 6d36b2385e0ca062a654de6ac59cb34f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi6.tfm" 1254938640 1512 94a3fd88c6f27dbd9ecb46987e297a4e ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi8.tfm" 1254938640 1520 a3fe5596932db2db2cbda300920dd4e9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy10.tfm" 1254938640 1308 02cc510f9dd6012e5815d0c0ffbf6869 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy6.tfm" 1254938640 1300 b0605d44c16c22d99dc001808e4f24ea ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy8.tfm" 1254938640 1304 cdc9a17df9ef0d2dc320eff37bbab1c4 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr10.tfm" 1254938640 11868 4f81e9b6033c032bdaf9884f4d7ef412 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr6.tfm" 1254938640 11836 e3b6ce3e601aec94f64a536e7f4224d5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr8.tfm" 1254938640 11864 309fd7f43e4a0ba39f6f7644d76e8edf ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss10.pfb" 1254938640 97408 f595704ec2a07246c2d6f7b602587452 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss8.pfb" 1254938640 94400 e33ecfb646a9f148e2e53da01a9168fe ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb" 1254938640 119663 1a3a2206591ddc98c6d6c6271a282516 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb" 1254938640 113227 d3d1adc024746ff57b20efba82c6d365 ""
+  "C:/Program Files/MiKTeX/tex/context/base/mkii/supp-pdf.mkii" 1580393758 71627 94eb9990bed73c364d7f53f960cc8c5b ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.def" 1626972176 123985 95be6f36f6c54070fdcb3cb50663eed2 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.sty" 1626972176 35620 c595f681ebc251caa49596c63048c363 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/txtbabel.def" 1626972176 5233 a89961f969f72563cb59411e9dc4ae8e ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifluatex.sty" 1583527000 492 1994775aa15b0d1289725a0b1bbc2d4c ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifpdf.sty" 1583527000 480 5778104efadad304ced77548ca2184b1 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/iftex.sty" 1583527000 6501 4011d89d9621e0b0901138815ba5ff29 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifvtex.sty" 1583527000 1057 525c2192b5febbd8c1f662c9468335bb ""
+  "C:/Program Files/MiKTeX/tex/generic/pdftexcmds/pdftexcmds.sty" 1623005277 20089 80423eac55aa175305d35b49e04fe23b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1621073245 992 855ff26741653ab54814101ca36e153c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1621073245 43820 1fef971b75380574ab35a0d37fd92608 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1621073245 19324 f4e4c6403dd0f1605fd20ed22fa79dea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1621073245 6038 ccb406740cc3f03bbfb58ad504fe8c27 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1621073245 6944 e12f8f7a7364ddf66f93ba30fb3a3742 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1621073245 4883 42daaf41e27c3735286e23e48d2d7af9 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1621073245 2544 8c06d2a7f0f469616ac9e13db6d2f842 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1621073245 44195 5e390c414de027626ca5e2df888fa68d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1621073245 17311 2ef6b2e29e2fc6a2fc8d6d652176e257 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1621073245 21302 788a79944eb22192a4929e46963a3067 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1621073245 9690 01feb7cde25d4293ef36eef45123eb80 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1621073245 33335 dd1fa4814d4e51f18be97d88bf0da60c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1621073245 2965 4c2b1f4e0826925746439038172e5d6f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1621073245 5196 2cc249e0ee7e03da5f5f6589257b1e5b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1621073245 20726 d4c8db1e2e53b72721d29916314a22ea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1621073245 35249 abd4adf948f960299a4b3d27c5dddf46 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1621073245 21989 fdc867d05d228316de137a9fc5ec3bbe ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1621073245 8893 e851de2175338fdf7c17f3e091d94618 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1621073245 5493 23e371e6fe3e7e42533d6d6c15662e0d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex" 1621073245 321 cdd11262840e01e25374a2d458f15e99 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex" 1621073245 1319 0b2de5126c6cbc295f0eb77f7344b34d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex" 1621073245 325 36322b0789619b270aec5993d5a9ed08 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1621073245 11518 738408f795261b70ce8dd47459171309 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1621073245 186007 6e7dfe0bd57520fd5f91641aa72dcac8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex" 1621073245 8843 5533436db3e30fbad1e0440db6027dac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex" 1621073245 7474 f05a7223b140f230922562ac6a9fede5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryfpu.code.tex" 1621073245 85938 8e4ba97c5906e1c0d158aea81fe29af7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1621073245 32995 ac577023e12c0e4bd8aa420b2e852d1a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex" 1621073245 14524 e1074042dc8f19d631452e43073ea3ba ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfint.code.tex" 1621073245 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmath.code.tex" 1621073245 521 8e224a7af69b7fee4451d1bf76b46654 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathcalc.code.tex" 1621073245 13391 84d29568c13bdce4133ab4a214711112 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfloat.code.tex" 1621073245 104935 184ed87524e76d4957860df4ce0cd1c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1621073245 10165 cec5fa73d49da442e56efc2d605ef154 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1621073245 28178 41c17713108e0795aac6fef3d275fbca ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1621073245 9989 c55967bf45126ff9b061fa2ca0c4694f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1621073245 3865 ac538ab80c5cf82b345016e474786549 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1621073245 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1621073245 11024 0179538121bc2dba172013a3ef89519f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1621073245 7854 4176998eeefd8745ac6d2d4bd9c98451 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1621073245 3379 781797a101f647bab82741a99944a229 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1621073245 92405 f515f31275db273f97b9d8f52e1b0736 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathparser.code.tex" 1621073245 37376 11cd75aac3da1c1b152b2848f30adc14 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathutil.code.tex" 1621073245 8471 c2883569d03f69e8e1cabfef4999cfd7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1621073245 71722 aa25655703db0306f6401798e312b7b8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1621073245 21201 08d231a2386e2b61d64641c50dc15abd ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1621073245 16121 346f9013d34804439f7436ff6786cef7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1621073245 44784 cedaa399d15f95e68e22906e2cc09ef8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/pgf.revision.tex" 1621073264 465 d68603f8b820ea4a08cce534944db581 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgf.cfg" 1621073245 926 2963ea0dcf6cc6c0a770b69ec46a477b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1621073245 5546 f3f24d7898386cb7daac70bdd2c4d6dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-luatex.def" 1621073245 13244 6674e4de0678d77c2d7465acc4ea20d7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1621073245 12601 4786e597516eddd82097506db7cfa098 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1621073245 61163 9b2eefc24e021323e0fc140e9826d016 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1621073245 1896 b8e0ca0ac371d74c0ca05583f6313c91 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1621073245 7778 53c8b5623d80238f6a20aa1df1868e63 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgffor.code.tex" 1621073245 23997 a4bed72405fa644418bea7eac2887006 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeys.code.tex" 1621073245 37060 797782f0eb50075c9bc952374d9a659a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1621073245 37431 9abe862035de1b29c7a677f3205e3d9f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfrcs.code.tex" 1621073245 4494 af17fb7efeafe423710479858e42fa7e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1621073245 7251 fb18c67117e09c64de82267e12cd8aa4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common.tex" 1621073245 29274 e15c5b7157d21523bd9c9f1dfa146b8e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-latex.def" 1621073245 6825 a2b0ea5b539dda0625e99dd15785ab59 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex" 1621075461 22701 5fab7b8ebb90b053dc067d1bd37e43c2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex" 1621075461 3047 aa82404aec57311271f4991c44bd71dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.code.tex" 1621075461 2931 5d52092da9e839accd7c9026062fe5c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex" 1621075461 23537 54be8160344d894595f6d145b1311658 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex" 1621075461 4288 b8d6247899b21e3bb66bb11b24d30f2c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex" 1621075461 13828 11d1b09335a4a8baa693dd1e6cac3edf ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex" 1621075461 24373 6544c1554e5da33118301011eb03058d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex" 1621075461 18861 7dc35832c8ccea3aa73cdcd75ec0a60b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex" 1621075461 83469 f77a7d8a23834d4c2472f8dba8e67bff ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex" 1621075461 12347 43d867ea29e34d528123d9ef750aa146 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.code.tex" 1621075461 485274 aafeb7052fbed4c8aba6fcc36c94ea72 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.errorbars.code.tex" 1621075461 22428 72578a4c9324bc5dfafe23fe64f64024 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.markers.code.tex" 1621075461 12489 859c23df41fb9067128ef5a64b01c0a4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.paths.code.tex" 1621075461 3533 973f376afa5a4526f16b11630b9931b4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.revision.tex" 1621075461 520 2a55e10851bbb34fb49a8e1d6b50a09b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.scaling.code.tex" 1621075461 123680 d33fda4929d7200c3e6f0ec83c006aef ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex" 1621075461 367035 be5ad6faf030b5e07b899b712359f9d2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscore.code.tex" 1621075461 19944 7957349fbe31c4e8dea9de4cd41cb086 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex" 1621075461 133871 7247b31742a2240343a6739cb76d6821 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex" 1621075461 25239 bf1615252744653354985789b73e7404 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsplothandlers.code.tex" 1621075461 120954 bdf135670013db80411b2fb0f95876ac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsstackedplots.code.tex" 1621075461 26393 a7d9bbecdd0db20d652c909dac892e25 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsticks.code.tex" 1621075461 91244 1a0e9e49b7a2d10d1b1a610306ba4f8c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def" 1621075461 5907 9dc460712c23e5b3338820499d47608c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex" 1621075461 3095 c82d281b748902a65be2ccca97360b11 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.code.tex" 1621075461 23050 a369aa910ef860a3621fe0459faa335c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex" 1621075461 26859 7a4ee9d206fb0a0daa0d3108445afb57 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolor.code.tex" 1621075461 23958 1b96260863091af1669c3a38b1c4c9af ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolormap.code.tex" 1621075461 88956 018b2512ef27998e97af72e8b1dcdbd5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.code.tex" 1621075461 71792 dba1b75b15201895eb36f142f13b3238 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex" 1621075461 3286 c17079ba50483e1ac1721268ea016041 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkeyval.tex" 1623005690 19231 3cbf682090baecad8e17a66b7a271ed1 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkvutils.tex" 1623005690 7677 cf3e6aa6a8d444f55327f61df80bfa0c ""
+  "C:/Program Files/MiKTeX/tex/latex/00miktex/epstopdf-sys.cfg" 1616070885 584 2a1075dd71571459f59146da9f7502ad ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amsfonts.sty" 1358201372 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amssymb.sty" 1358201372 13829 94730e64147574077f8ecfea9bb69af4 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsa.fd" 1358201372 961 6518c6525a34feb5e8250ffa91731cff ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsb.fd" 1358201372 961 d02606146ba5601b5645f987c92e6193 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsbsy.sty" 1622999195 2222 da905dc1db75412efd2d8f67739f0596 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsgen.sty" 1622999196 4173 bc0410bcccdff806d6132d3c1ef35481 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsmath.sty" 1622999197 87375 a806706bbc32b3e8482f6d87aeffbf76 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsopn.sty" 1622999197 4128 c11da5c2df397f39d5783fc9307689d0 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amstext.sty" 1622999197 2444 b015525572ea0d0165d6ce81ba5e5259 ""
+  "C:/Program Files/MiKTeX/tex/latex/arabi/bblopts.cfg" 1139965200 902 c30e5c373bc58bde21f8f63a3091626f ""
+  "C:/Program Files/MiKTeX/tex/latex/babel-english/english.ldf" 1623001666 7008 9ff5fdcc865b01beca2b0fe4a46231d4 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atbegshi-ltx.sty" 1623741700 3034 7076a43c47446700860d2aebb65ebed5 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atveryend-ltx.sty" 1623741700 2459 f9456a3cd988c2865f64e327cdb6f7a0 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/fontenc.sty" 1623741700 4946 461cc78f6f26901410d9f1d725079cc6 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/ifthen.sty" 1623741700 5157 f308c7c04889e16c588e78aa42599fae ""
+  "C:/Program Files/MiKTeX/tex/latex/base/inputenc.sty" 1623741700 5049 969aec05d5f39c43f8005910498fcf90 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/size11.clo" 1623741700 8464 efc3cbec9b4f1a5665635866ad7e7dba ""
+  "C:/Program Files/MiKTeX/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1623003186 13886 d1306dcf79a944f6988e688c1785f9ce ""
+  "C:/Program Files/MiKTeX/tex/latex/etoolbox/etoolbox.sty" 1601897756 46845 3b58f70c6e861a13d927bff09d35ecbc ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/color.cfg" 1465894292 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/graphics.cfg" 1465894292 1224 978390e9c2234eab29404bc21b268d1e ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-def/pdftex.def" 1622562294 19103 48d29b6e2a64cb717117ef65f107b404 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/color.sty" 1623003325 7153 17c23e5e586ebbdf5d269e7867e53cef ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphics.sty" 1623003325 18399 7e40f80366dffb22c0e7b70517db5cb4 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphicx.sty" 1623003325 7972 81ea1752666dc7c1e93f0b4c10665ca1 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/keyval.sty" 1623003325 2671 4de6781a30211fe0ea4c672e4a2a8166 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/trig.sty" 1623003325 4007 3bccccf8f35e1bc1ef0f7c55ceeb7713 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hpdftex.def" 1623057842 49890 0bb76a5b745d92e86aed6f3f93e334f0 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref-langpatches.def" 1623057842 1777 940b1aa83773bc035eb882e8d6842769 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref.sty" 1623057842 230915 97a8817f13de4e61bbc3592cb2caa995 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/nameref.sty" 1623057842 13242 133e617c5eebffdd05e421624022b267 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/pd1enc.def" 1623057842 14132 c9404e8e78123ef0d1007c34d1d6da51 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/puenc.def" 1623057842 117004 86586f287ddfad919a0a4bd68934277a ""
+  "C:/Program Files/MiKTeX/tex/latex/l3backend/l3backend-pdftex.def" 1628077986 27662 df2ac0cbce6c3f309d48d78e7c627ccb ""
+  "C:/Program Files/MiKTeX/tex/latex/l3kernel/expl3.sty" 1630067590 6208 18ab2eb39b7f1285bd1aa7af7abc9309 ""
+  "C:/Program Files/MiKTeX/tex/latex/l3packages/l3keys2e/l3keys2e.sty" 1630067846 4674 6b86bef38e2fe7ec813292623122d584 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/lmodern.sty" 1256933040 1606 c17281c7cff2bbd7ff0173e1433487ec ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omllmm.fd" 1256933040 888 44447a3a3af84a22454ef89500942d93 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omslmsy.fd" 1256933040 805 af340a8260c447aa315cfc740ff0152f ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omxlmex.fd" 1256933040 566 a94661f7b66063f191960bb7935b6ba2 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/ot1lmr.fd" 1256933040 1880 bae7b659316f7344a86218ad38b01d91 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmss.fd" 1256933040 1639 ba1c66ef577aa5cadc2c0fdc691a26ee ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmtt.fd" 1256933040 2681 354015af3b61e7be30009f084986375a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgf.sty" 1621073245 1090 bae35ef70b3168089ef166db3e66f5b2 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgfcore.sty" 1621073245 410 615550c46f918fcbee37641b02a862d9 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1621073245 21013 f4ff83d25bb56552493b030f27c075ae ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1621073245 989 c49c8ae06d96f8b15869da7428047b1e ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/frontendlayer/tikz.sty" 1621073245 339 c2e180022e3afdb99c7d0ea5ce469b7d ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/math/pgfmath.sty" 1621073245 306 c56a323ca5bf9242f54474ced10fca71 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/systemlayer/pgfsys.sty" 1621073245 443 8c872229db56122037e86bcda49e14f3 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgffor.sty" 1621073245 348 ee405e64380c11319f0e249fed57e6c5 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfkeys.sty" 1621073245 274 5ae372b7df79135d240456a1c6f2cf9a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfrcs.sty" 1621073245 325 f9f16d12354225b7dd52a3321f085955 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/xxcolor.sty" 1621073245 2232 b9a67bccba736ed334b4b1a860a85c6f ""
+  "C:/Program Files/MiKTeX/tex/latex/pgfplots/pgfplots.sty" 1621075461 4904 ee78b44e85d6fccf08cd99370557481e ""
+  "C:/Program Files/MiKTeX/tex/latex/trimspaces/trimspaces.sty" 1253169183 1380 971a51b00a14503ddf754cab24c3f209 ""
+  "C:/Program Files/MiKTeX/tex/latex/url/url.sty" 1388494052 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
+  "C:/Program Files/MiKTeX/tex/latex/xcolor/xcolor.sty" 1623005660 55589 34128738f682d033422ca125f82e5d62 ""
+  "C:/Program Files/MiKTeX/tex/latex/xkeyval/xkeyval.sty" 1623005690 4902 efb3d66683a2da2a232f71e3a571a899 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/miktex/data/le/pdftex/pdflatex.fmt" 1630675792 9705560 728cc408e60df926a3a0636891efdcb2 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map" 1630675864 126230 526afa0532fa5c6556c0eded8671d5fa ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/atbegshi/atbegshi.sty" 1575574700 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bigintcalc/bigintcalc.sty" 1576437202 40635 c40361e206be584d448876bba8a64a3b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bitset/bitset.sty" 1575930176 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/catchfile/catchfile.sty" 1575964050 8622 63834878edeb14dd71d58d8f22bc3e06 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/etexcmds/etexcmds.sty" 1576437238 7734 b98cbb34c81f667027c1e3ebdbfce34b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/gettitlestring/gettitlestring.sty" 1576437266 8371 9d55b8bd010bc717624922fb3477d92e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/infwarerr/infwarerr.sty" 1575403108 8356 7bbb2c2373aa810be568c29e333da8ed ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/intcalc/intcalc.sty" 1576437364 31769 002a487f55041f8e805cfbf6385ffd97 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576766904 5412 d5a2436094cd7be85769db90f29250a6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvsetkeys/kvsetkeys.sty" 1576437420 13807 952b0226d4efca026f0e19dd266dcc22 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/ltxcmds/ltxcmds.sty" 1601735609 18568 4409f8f50cd365c68e684407e5350b1b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/pdfescape/pdfescape.sty" 1575930300 19007 15924f7228aca6c6d184b115f4baa231 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/uniquecounter/uniquecounter.sty" 1576437612 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/amscls/amsthm.sty" 1591023609 12594 0d51ac3a545aaaa555021326ff22a6cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/atveryend/atveryend.sty" 1576104710 19336 ce7ae9438967282886b3b036cfad1e4d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/auxhook/auxhook.sty" 1576542332 3935 57aa3c3e203a5c2effb4d2bd2efbc323 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamer.cls" 1622051514 11627 a0fc556fe6cad325c6652484e44780b5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseauxtemplates.sty" 1622051514 23769 e04557111db90d816c3a0d6ce21958f3 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseboxes.sty" 1612974572 6954 d9eb3846e78d9008aaac86cd82372855 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecolor.sty" 1607691110 12834 a2e2edcc4215056529fd4e140e2ed26a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecompatibility.sty" 1622040986 25555 5b57fd426df33caa3567584eed3ebb7e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasedecode.sty" 1606395924 9407 98317d4428bbbc4430035c0c0e3898d5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasefont.sty" 1609348962 13626 5a8efa954e5cf512c91c80f637cbf1f1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframe.sty" 1606395924 25162 9e33f2887dc316e20c319466b078d6eb ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframecomponents.sty" 1606395924 11898 264f0ae03dbfa791611c1821393bc0b9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframesize.sty" 1606395924 8800 544bcf1a583ad768d77d8b1d8f18a993 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaselocalstructure.sty" 1612869926 17622 85760d86f730e8faf1f7378f6e67e409 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemisc.sty" 1606395924 8313 358d4bb860bd9098eb24099f36b27af1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemodes.sty" 1616158010 7574 6d0e29b16443d86a896479ec2aabff07 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenavigation.sty" 1606395924 29020 6cae2187b2d2bc4f39b6bb5bddbcf031 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenotes.sty" 1606395924 5595 c0c140ec41fa3c9299aa6df19444c391 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoptions.sty" 1606395924 1753 c10ec1df45e4b4c7ee05e306d23f95d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoverlay.sty" 1606395924 27425 7f090822023c1cb57d609b70b5e7cc42 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaserequires.sty" 1606395924 1593 48c3729494fa250d34789fd6af677f99 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasesection.sty" 1616158010 13527 6266cecef9dcaa294ba1dc5ff2d8a798 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetemplates.sty" 1606395924 5753 fbf8c2f7c7d6d5d1d2b900c353f094e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasethemes.sty" 1606395924 1140 cdaff8d445bd2a4e7afdec5190a758c0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetheorems.sty" 1606395924 4548 cdde9ae4b614ce5ea4cf7a232ceeb6a8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetitle.sty" 1606395924 5356 d32dea458460fce4541d4f9aa765b876 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetoc.sty" 1622040910 7840 84c578534b1233d3bfaae1d8a1ddf9b0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetranslator.sty" 1606395924 637 685bd3d40aca2fa87965a39bc31aca7f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetwoscreens.sty" 1606395924 1808 098e1772761e9b4a016e74f1a4c1cb74 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseverbatim.sty" 1606395924 4026 1ba2c6a2acf275d63cb85d60d8597fe8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamercolorthemedefault.sty" 1606395924 7089 c34bc77851d46db7348b94bd5e51168a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemedefault.sty" 1606395924 4236 21e590075d6781cc58fee783316ee268 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemeprofessionalfonts.sty" 1606395924 333 48f83c1a5bf00cbab1ca9013199d6da1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.20.pdf" 1606395924 2958 4e0c4a6e994e5c4d9da11c477e927f0f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.pdf" 1606395924 2936 6cc3ef0682cbb62be8aa1b19f0a84ed6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.20.pdf" 1606395924 2734 0bcf939051dd2a936cdfe5982f7c233b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.pdf" 1606395924 2667 7624351b441ffe4bd2d14e08fbcf063d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.20.pdf" 1606395924 24451 195d2c060e84f339954bc6d9b52131d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.pdf" 1606395924 24611 df07010540266b2b205b492a4d02e7e1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerinnerthemedefault.sty" 1606395924 13031 a33a15e4b12bfa976c11f59131636ea9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerouterthemedefault.sty" 1606395924 6630 9731ba35f4c7921e311abc957adf446b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerthemedefault.sty" 1606395924 355 75c98e7b8f427eb7c625ed391b140c5b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/booktabs/booktabs.sty" 1579097235 6253 f1cb470c9199e7110a27851508ed7a5c ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime-defaults.sty" 1429537382 4215 4c80eaed8cd4f9a80cc6244c0adeb81f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime.sty" 1429537382 28417 b023ffe1328fa89e7f133201d87029de ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fc-english.def" 1582574640 14870 f66b7dd28616119c2519cd5cc4dcae14 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcnumparser.sty" 1582574640 12791 43a81443714469abac77ce09f44ad2e2 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcprefix.sty" 1582574640 12519 5c732241af77b5f0e56e640b7d538395 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fmtcount.sty" 1582574640 32021 ed70d543c537f19c96fc753321f1c3cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.cfg" 1578057145 1104 7ac475a4e3466b0b43e138e9356bda83 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.sty" 1578057145 42759 9cf6c5257b1bc7af01a58859749dd37a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/hycolor/hycolor.sty" 1580384392 18571 4c28a13fc3d975e6e81c9bea1d697276 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/ifplatform/ifplatform.sty" 1507925536 3910 e04f6a6d983bdbdb024917b7ccc80262 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrbase.sty" 1624609552 99856 4c890d8af16075567cef0c4d8b9c3ec9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile-hook.sty" 1624609552 10422 be2f2c878190558e80a5e4c1c3689505 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile.sty" 1624609552 3128 d39f124aed9b6ba4fe0283d303003d75 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlogo.sty" 1624609552 1954 0b0e5fd43ad7d1c55d1d6bb21484aa01 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/kvoptions/kvoptions.sty" 1602228096 22521 d2fceb764a442a2001d257ef11db7618 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/letltxmacro/letltxmacro.sty" 1575403136 5766 13a9e8766c47f30327caf893ece86ac8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdraw.sty" 1575574858 85722 674bb1bdd5ee2d78383a11e280d8251f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdrawenc.dfu" 1575574858 7980 7af90c90876992fc604543eb1fde4107 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/refcount/refcount.sty" 1576437552 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1575574882 9715 b051d5b493d9fe5f4bc251462d039e5f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/sansmathaccent/sansmathaccent.sty" 1580511864 4282 5d27280ace1239baaa4a225df16125ff ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/siunitx/siunitx.sty" 1630063268 272816 5c96b394eaddb491648148af990b767a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/svg/svg.sty" 1607185656 43468 671ae75b3a15019004495eff4c0911e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/textpos/textpos.sty" 1601744683 13250 212c11575fd736fdcf1f0fd8e72900f5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/array.sty" 1622550326 12689 a1a7b2795918756dcb9c9cbfacc4d9c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/calc.sty" 1622550326 10214 00ce62e730d0cfe22b35e8f1c84949c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/enumerate.sty" 1622550326 3468 068d84ef9735e15f11c5a120c0a1a139 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/shellesc.sty" 1622550326 4118 0f286eca74ee36b7743ff20320e5479f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/dicts/translations-basic-dictionary-english.trsl" 1610894760 5594 3103bf139c05c0eeb5842dfa5e147511 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/translations.sty" 1610894760 44057 b43a7c4927b669cd6ab13bb97942d706 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-basic-dictionary-English.dict" 1622471510 3535 7dc96051305a7e943219126c49c44cd6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-bibliography-dictionary-English.dict" 1622471508 903 c6d17f0656e9e1abb172b4faebabd617 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-environment-dictionary-English.dict" 1622471508 433 bfb8d1c2c020defd2de8e5c276710094 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-months-dictionary-English.dict" 1622471508 1337 9a6c05e8f0c8b3c5f27cbd0e455cf475 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-numbers-dictionary-English.dict" 1622471508 1638 2bf1a1dea98f8a4d28033fce76e9cc67 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-theorem-dictionary-English.dict" 1622471508 3523 1f9d9b91f7d78b73e74c7e97bca30fb0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator.sty" 1622471510 8765 56d370785f0143111ff9898b5adfe08e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/transparent/transparent.sty" 1575063484 4155 541de118e0abc42fce3317addc90afb0 ""
+  "beamer_slider_preamble.tex" 1630760848 2728 d36ea79be7cec10b3559a5660f2decaf ""
+  "beamercolorthemeDTU.sty" 1630760848 1181 417d2554e23179f8340453c73a028d75 ""
+  "beamerfontthemeDTU.sty" 1630760848 1259 f9c0e548315549e6c866364392c7263a ""
+  "beamerinnerthemeDTU.sty" 1630760848 1413 3c6129d12554e64ce93d7736032738c2 ""
+  "beamerouterthemeDTU.sty" 1630760848 2587 358e933cfccc5eaeb88326ddfaea4d6c ""
+  "beamerthemeDTU.sty" 1630760848 7254 70ddaf2cca3bafac859919a109938477 ""
+  "departments.tex" 1630760848 9638 1234d2d6a2d0975403246bb7c181706b ""
+  "dtucolours.tex" 1630760848 5683 501994c6596e5a9d67cce52d20165e38 ""
+  "index_NO_SVGS.aux" 1630760819 1412 2d0a9582e28c65e3f8629db6ea0ea185 "pdflatex"
+  "index_NO_SVGS.nav" 1630760819 395 640a03f4d3f0f705896c1d8375ddfa75 "pdflatex"
+  "index_NO_SVGS.out" 1630760818 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
+  "index_NO_SVGS.tex" 1630760848 685 bbde1cea7b8c90f367439acde6c917b0 ""
+  "tex_dtu_compute_a_uk.pdf" 1630760848 13504 7ae3ecb9b649001643f902e32d3a8cca ""
+  "tex_dtu_frise.pdf" 1630760848 32488 57c0f48ec5395d976ac1e57718922c22 ""
+  "tex_dtu_logo.pdf" 1630760848 1830 e452da49133969a7656f3882c11e9b04 ""
+  (generated)
+  "index_NO_SVGS.pdf"
+  "index_NO_SVGS.out"
+  "index_NO_SVGS.nav"
+  "index_NO_SVGS.snm"
+  "index_NO_SVGS.aux"
+  "index_NO_SVGS.log"
+  "index_NO_SVGS.toc"
diff --git a/examples/basic1/index_NO_SVGS.fls b/examples/basic1/index_NO_SVGS.fls
new file mode 100644
index 0000000000000000000000000000000000000000..b78d3b11c044594cda2ea4c9049c85bdbdb83c79
--- /dev/null
+++ b/examples/basic1/index_NO_SVGS.fls
@@ -0,0 +1,1891 @@
+PWD C:\Users\tuhe\Documents\slider\examples\new_project
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\miktex\data\le\pdftex\pdflatex.fmt
+INPUT index_NO_SVGS.tex
+OUTPUT index_NO_SVGS.log
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common-lists.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-latex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeysfiltered.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgf.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathcalc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathparser.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.basic.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.trigonometric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.random.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.comparison.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.base.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.round.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.misc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.integerarithmetics.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfloat.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfint.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathconstruct.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathusage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoregraphicstate.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransformations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorequick.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreobjects.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreexternal.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransparency.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepatterns.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorerdf.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmss10.tfm
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+OUTPUT index_NO_SVGS.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\jknappen\ec\ecss1095.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.def
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\txtbabel.def
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleshapes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleplot.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmodulematrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgfplotssysgeneric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgfplotslibrary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\oldpgfcompatib\pgfplotsoldpgfsupp_loader.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructure.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructureext.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsarray.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsmatrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\numtable\pgfplotstableshared.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsdeque.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.data.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.verb.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgflibrarypgfplots.surfshading.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolormap.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsstackedplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplothandler.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplotimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.scaling.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscoordprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.errorbars.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.markers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsticks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.paths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduledecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\color.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT nul:.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkeyval.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkvutils.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT .\index_NO_SVGS.aux
+INPUT index_NO_SVGS.aux
+INPUT index_NO_SVGS.aux
+OUTPUT index_NO_SVGS.aux
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+OUTPUT index_NO_SVGS.out
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT .\index_NO_SVGS.nav
+INPUT index_NO_SVGS.nav
+INPUT index_NO_SVGS.nav
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss12.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmssbx10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\pdftex\config\pdftex.map
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmtt10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmex10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam7.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm7.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+OUTPUT index_NO_SVGS.nav
+OUTPUT index_NO_SVGS.toc
+OUTPUT index_NO_SVGS.snm
+INPUT index_NO_SVGS.aux
+INPUT .\index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT C:\Program Files\MiKTeX\fonts\enc\dvips\lm\lm-ec.enc
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
diff --git a/examples/basic1/index_NO_SVGS.log b/examples/basic1/index_NO_SVGS.log
new file mode 100644
index 0000000000000000000000000000000000000000..9187b2d5f42da72946acf4cf5008e6159f3b6c3d
--- /dev/null
+++ b/examples/basic1/index_NO_SVGS.log
@@ -0,0 +1,1516 @@
+This is pdfTeX, Version 3.141592653-2.6-1.40.23 (MiKTeX 21.8) (preloaded format=pdflatex 2021.9.3)  4 SEP 2021 15:06
+entering extended mode
+**./index_NO_SVGS.tex
+(index_NO_SVGS.tex
+LaTeX2e <2021-06-01> patch level 1
+L3 programming layer <2021-08-27>
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamer.cls
+Document Class: beamer 2021/05/26 v3.63 A class for typesetting presentations
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemodes.sty
+(C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty
+Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
+\etb@tempcnta=\count182
+)
+\beamer@tempbox=\box50
+\beamer@tempcount=\count183
+\c@beamerpauses=\count184
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasedecode.sty
+\beamer@slideinframe=\count185
+\beamer@minimum=\count186
+\beamer@decode@box=\box51
+)
+\beamer@commentbox=\box52
+\beamer@modecount=\count187
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifpdf.sty
+Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty
+Package: iftex 2020/03/06 v1.0d TeX engine tests
+))
+\headdp=\dimen138
+\footheight=\dimen139
+\sidebarheight=\dimen140
+\beamer@tempdim=\dimen141
+\beamer@finalheight=\dimen142
+\beamer@animht=\dimen143
+\beamer@animdp=\dimen144
+\beamer@animwd=\dimen145
+\beamer@leftmargin=\dimen146
+\beamer@rightmargin=\dimen147
+\beamer@leftsidebar=\dimen148
+\beamer@rightsidebar=\dimen149
+\beamer@boxsize=\dimen150
+\beamer@vboxoffset=\dimen151
+\beamer@descdefault=\dimen152
+\beamer@descriptionwidth=\dimen153
+\beamer@lastskip=\skip47
+\beamer@areabox=\box53
+\beamer@animcurrent=\box54
+\beamer@animshowbox=\box55
+\beamer@sectionbox=\box56
+\beamer@logobox=\box57
+\beamer@linebox=\box58
+\beamer@sectioncount=\count188
+\beamer@subsubsectionmax=\count189
+\beamer@subsectionmax=\count190
+\beamer@sectionmax=\count191
+\beamer@totalheads=\count192
+\beamer@headcounter=\count193
+\beamer@partstartpage=\count194
+\beamer@sectionstartpage=\count195
+\beamer@subsectionstartpage=\count196
+\beamer@animationtempa=\count197
+\beamer@animationtempb=\count198
+\beamer@xpos=\count199
+\beamer@ypos=\count266
+\beamer@ypos@offset=\count267
+\beamer@showpartnumber=\count268
+\beamer@currentsubsection=\count269
+\beamer@coveringdepth=\count270
+\beamer@sectionadjust=\count271
+\beamer@toclastsection=\count272
+\beamer@tocsectionnumber=\count273
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoptions.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty
+Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
+\KV@toks@=\toks16
+))
+\beamer@paperwidth=\skip48
+\beamer@paperheight=\skip49
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.sty
+Package: geometry 2020/01/02 v5.9 Page Geometry
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifvtex.sty
+Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
+)
+\Gm@cnth=\count274
+\Gm@cntv=\count275
+\c@Gm@tempcnt=\count276
+\Gm@bindingoffset=\dimen154
+\Gm@wd@mp=\dimen155
+\Gm@odd@mp=\dimen156
+\Gm@even@mp=\dimen157
+\Gm@layoutwidth=\dimen158
+\Gm@layoutheight=\dimen159
+\Gm@layouthoffset=\dimen160
+\Gm@layoutvoffset=\dimen161
+\Gm@dimlist=\toks17
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.cfg))
+(C:\Program Files\MiKTeX\tex/latex/base\size11.clo
+File: size11.clo 2021/02/12 v1.4n Standard LaTeX file (size option)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgfcore.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty
+Package: graphicx 2020/12/05 v1.2c Enhanced LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty
+Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty
+Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
+File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
+)
+Package graphics Info: Driver file: pdftex.def on input line 107.
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-def\pdftex.def
+File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
+))
+\Gin@req@height=\dimen162
+\Gin@req@width=\dimen163
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/systemlayer\pgfsys.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfrcs.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common.tex
+\pgfutil@everybye=\toks18
+\pgfutil@tempdima=\dimen164
+\pgfutil@tempdimb=\dimen165
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common-lists.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-latex.def
+\pgfutil@abb=\box59
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfrcs.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf\pgf.revision.tex)
+Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys.code.tex
+Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex
+\pgfkeys@pathtoks=\toks19
+\pgfkeys@temptoks=\toks20
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeysfiltered.code.tex
+\pgfkeys@tmptoks=\toks21
+))
+\pgf@x=\dimen166
+\pgf@y=\dimen167
+\pgf@xa=\dimen168
+\pgf@ya=\dimen169
+\pgf@xb=\dimen170
+\pgf@yb=\dimen171
+\pgf@xc=\dimen172
+\pgf@yc=\dimen173
+\pgf@xd=\dimen174
+\pgf@yd=\dimen175
+\w@pgf@writea=\write3
+\r@pgf@reada=\read2
+\c@pgf@counta=\count277
+\c@pgf@countb=\count278
+\c@pgf@countc=\count279
+\c@pgf@countd=\count280
+\t@pgf@toka=\toks22
+\t@pgf@tokb=\toks23
+\t@pgf@tokc=\toks24
+\pgf@sys@id@count=\count281
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgf.cfg
+File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a)
+)
+Driver file for pgf: pgfsys-pdftex.def
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-pdftex.def
+File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-common-pdf.def
+File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsyssoftpath.code.tex
+File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfsyssoftpath@smallbuffer@items=\count282
+\pgfsyssoftpath@bigbuffer@items=\count283
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsysprotocol.code.tex
+File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/latex/xcolor\xcolor.sty
+Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
+File: color.cfg 2016/01/02 v1.6 sample color configuration
+)
+Package xcolor Info: Driver file: pdftex.def on input line 225.
+Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
+Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
+Package xcolor Info: Model `RGB' extended on input line 1364.
+Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
+Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
+Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
+Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
+Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
+Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcore.code.tex
+Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathcalc.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathutil.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathparser.code.tex
+\pgfmath@dimen=\dimen176
+\pgfmath@count=\count284
+\pgfmath@box=\box60
+\pgfmath@toks=\toks25
+\pgfmath@stack@operand=\toks26
+\pgfmath@stack@operation=\toks27
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.basic.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.trigonometric.co
+de.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.random.code.tex)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.comparison.code.
+tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.base.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.round.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.misc.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.integerarithmeti
+cs.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfloat.code.tex
+\c@pgfmathroundto@lastzeros=\count285
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfint.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepoints.code.tex
+File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@picminx=\dimen177
+\pgf@picmaxx=\dimen178
+\pgf@picminy=\dimen179
+\pgf@picmaxy=\dimen180
+\pgf@pathminx=\dimen181
+\pgf@pathmaxx=\dimen182
+\pgf@pathminy=\dimen183
+\pgf@pathmaxy=\dimen184
+\pgf@xx=\dimen185
+\pgf@xy=\dimen186
+\pgf@yx=\dimen187
+\pgf@yy=\dimen188
+\pgf@zx=\dimen189
+\pgf@zy=\dimen190
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathconstruct.code.t
+ex
+File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@path@lastx=\dimen191
+\pgf@path@lasty=\dimen192
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathusage.code.tex
+File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@shorten@end@additional=\dimen193
+\pgf@shorten@start@additional=\dimen194
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorescopes.code.tex
+File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfpic=\box61
+\pgf@hbox=\box62
+\pgf@layerbox@main=\box63
+\pgf@picture@serial@count=\count286
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoregraphicstate.code.te
+x
+File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgflinewidth=\dimen195
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransformations.code
+.tex
+File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@pt@x=\dimen196
+\pgf@pt@y=\dimen197
+\pgf@pt@temp=\dimen198
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorequick.code.tex
+File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreobjects.code.tex
+File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathprocessing.code.
+tex
+File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorearrows.code.tex
+File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfarrowsep=\dimen199
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreshade.code.tex
+File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@max=\dimen256
+\pgf@sys@shading@range@num=\count287
+\pgf@shadingcount=\count288
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreimage.code.tex
+File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreexternal.code.tex
+File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfexternal@startupbox=\box64
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorelayers.code.tex
+File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransparency.code.te
+x
+File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepatterns.code.tex
+File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorerdf.code.tex
+File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\xxcolor.sty
+Package: xxcolor 2003/10/24 ver 0.1
+\XC@nummixins=\count289
+\XC@countmixins=\count290
+)
+(C:\Program Files\MiKTeX\tex/latex/base\atbegshi-ltx.sty
+Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
+package with kernel methods
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref.sty
+Package: hyperref 2021-06-07 v7.00m Hypertext links for LaTeX
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
+Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
+Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
+)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/infwarerr\infwarerr.sty
+Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
+)
+Package pdftexcmds Info: \pdf@primitive is available.
+Package pdftexcmds Info: \pdf@ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvsetkeys\kvsetkeys.sty
+Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/pdfescape\pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/hycolor\hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/auxhook\auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/kvoptions\kvoptions.sty
+Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
+)
+\@linkdim=\dimen257
+\Hy@linkcounter=\count291
+\Hy@pagecounter=\count292
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\pd1enc.def
+File: pd1enc.def 2021-06-07 v7.00m Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref-langpatches.def
+File: hyperref-langpatches.def 2021-06-07 v7.00m Hyperref: patches for babel la
+nguages
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/intcalc\intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/etexcmds\etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count293
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\puenc.def
+File: puenc.def 2021-06-07 v7.00m Hyperref: PDF Unicode definition (HO)
+Now handling font encoding PU ...
+... no UTF-8 mapping file for font encoding PU
+)
+Package hyperref Info: Option `bookmarks' set `true' on input line 4073.
+Package hyperref Info: Option `bookmarksopen' set `true' on input line 4073.
+Package hyperref Info: Option `implicit' set `false' on input line 4073.
+Package hyperref Info: Hyper figures OFF on input line 4192.
+Package hyperref Info: Link nesting OFF on input line 4197.
+Package hyperref Info: Hyper index ON on input line 4200.
+Package hyperref Info: Plain pages OFF on input line 4207.
+Package hyperref Info: Backreferencing OFF on input line 4212.
+Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
+Package hyperref Info: Bookmarks ON on input line 4445.
+\c@Hy@tempcnt=\count294
+
+(C:\Program Files\MiKTeX\tex/latex/url\url.sty
+\Urlmuskip=\muskip16
+Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4804.
+\XeTeXLinkMargin=\dimen258
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bitset\bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
+)
+))
+\Fld@menulength=\count295
+\Field@Width=\dimen259
+\Fld@charsize=\dimen260
+Package hyperref Info: Hyper figures OFF on input line 6076.
+Package hyperref Info: Link nesting OFF on input line 6081.
+Package hyperref Info: Hyper index ON on input line 6084.
+Package hyperref Info: backreferencing OFF on input line 6091.
+Package hyperref Info: Link coloring OFF on input line 6096.
+Package hyperref Info: Link coloring with OCG OFF on input line 6101.
+Package hyperref Info: PDF/A mode OFF on input line 6106.
+LaTeX Info: Redefining \ref on input line 6146.
+LaTeX Info: Redefining \pageref on input line 6150.
+\Hy@abspage=\count296
+
+
+Package hyperref Message: Stopped early.
+
+)
+Package hyperref Info: Driver (autodetected): hpdftex.
+ (C:\Program Files\MiKTeX\tex/latex/hyperref\hpdftex.def
+File: hpdftex.def 2021-06-07 v7.00m Hyperref driver for pdfTeX
+
+(C:\Program Files\MiKTeX\tex/latex/base\atveryend-ltx.sty
+Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
+e
+with kernel methods
+)
+\Fld@listcount=\count297
+\c@bookmark@seq@number=\count298
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.s
+ty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/uniquecounter\uniquecounter.s
+ty
+Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
+)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+86.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaserequires.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecompatibility.
+sty) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasefont.sty
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amssymb.sty
+Package: amssymb 2013/01/14 v3.01 AMS font symbols
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amsfonts.sty
+Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
+\@emptytoks=\toks28
+\symAMSa=\mathgroup4
+\symAMSb=\mathgroup5
+LaTeX Font Info:    Redeclaring math symbol \hbar on input line 98.
+LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
+(Font)                  U/euf/m/n --> U/euf/b/n on input line 106.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/sansmathaccent\sansmathaccent.s
+ty
+Package: sansmathaccent 2020/01/31
+ (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile.sty
+Package: scrlfile 2021/06/25 v3.34 KOMA-Script package (file load hooks)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile-hook.sty
+Package: scrlfile-hook 2021/06/25 v3.34 KOMA-Script package (using LaTeX hooks)
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlogo.sty
+Package: scrlogo 2021/06/25 v3.34 KOMA-Script package (logo)
+)))))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetranslator.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator.sty
+Package: translator 2021-05-31 v1.12d Easy translation of strings in LaTeX
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemisc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetwoscreens.sty
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoverlay.sty
+\beamer@argscount=\count299
+\beamer@lastskipcover=\skip50
+\beamer@trivlistdepth=\count300
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetitle.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasesection.sty
+\c@lecture=\count301
+\c@part=\count302
+\c@section=\count303
+\c@subsection=\count304
+\c@subsubsection=\count305
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframe.sty
+\beamer@framebox=\box65
+\beamer@frametitlebox=\box66
+\beamer@zoombox=\box67
+\beamer@zoomcount=\count306
+\beamer@zoomframecount=\count307
+\beamer@frametextheight=\dimen261
+\c@subsectionslide=\count308
+\beamer@frametopskip=\skip51
+\beamer@framebottomskip=\skip52
+\beamer@frametopskipautobreak=\skip53
+\beamer@framebottomskipautobreak=\skip54
+\beamer@envbody=\toks29
+\framewidth=\dimen262
+\c@framenumber=\count309
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseverbatim.sty
+\beamer@verbatimfileout=\write4
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframesize.sty
+\beamer@splitbox=\box68
+\beamer@autobreakcount=\count310
+\beamer@autobreaklastheight=\dimen263
+\beamer@frametitletoks=\toks30
+\beamer@framesubtitletoks=\toks31
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframecomponent
+s.sty
+\beamer@footins=\box69
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecolor.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenotes.sty
+\beamer@frameboxcopy=\box70
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetoc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetemplates.sty
+\beamer@sbttoks=\toks32
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseauxtemplates.s
+ty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseboxes.sty
+\bmb@box=\box71
+\bmb@colorbox=\box72
+\bmb@boxwidth=\dimen264
+\bmb@boxheight=\dimen265
+\bmb@prevheight=\dimen266
+\bmb@temp=\dimen267
+\bmb@dima=\dimen268
+\bmb@dimb=\dimen269
+\bmb@prevheight=\dimen270
+)
+\beamer@blockheadheight=\dimen271
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaselocalstructure
+.sty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\enumerate.sty
+Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
+\@enLab=\toks33
+)
+\beamer@bibiconwidth=\skip55
+\c@figure=\count311
+\c@table=\count312
+\abovecaptionskip=\skip56
+\belowcaptionskip=\skip57
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenavigation.sty
+\beamer@section@min@dim=\dimen272
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetheorems.sty
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsmath.sty
+Package: amsmath 2021/04/20 v2.17j AMS math features
+\@mathmargin=\skip58
+
+For additional information on amsmath, use the `?' option.
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amstext.sty
+Package: amstext 2000/06/29 v2.01 AMS text
+
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0 generic functions
+\@emptytoks=\toks34
+\ex@=\dimen273
+))
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d Bold Symbols
+\pmbraise@=\dimen274
+)
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsopn.sty
+Package: amsopn 2016/03/08 v2.02 operator names
+)
+\inf@bad=\count313
+LaTeX Info: Redefining \frac on input line 234.
+\uproot@=\count314
+\leftroot@=\count315
+LaTeX Info: Redefining \overline on input line 399.
+\classnum@=\count316
+\DOTSCASE@=\count317
+LaTeX Info: Redefining \ldots on input line 496.
+LaTeX Info: Redefining \dots on input line 499.
+LaTeX Info: Redefining \cdots on input line 620.
+\Mathstrutbox@=\box73
+\strutbox@=\box74
+\big@size=\dimen275
+LaTeX Font Info:    Redeclaring font encoding OML on input line 743.
+LaTeX Font Info:    Redeclaring font encoding OMS on input line 744.
+\macc@depth=\count318
+\c@MaxMatrixCols=\count319
+\dotsspace@=\muskip17
+\c@parentequation=\count320
+\dspbrk@lvl=\count321
+\tag@help=\toks35
+\row@=\count322
+\column@=\count323
+\maxfields@=\count324
+\andhelp@=\toks36
+\eqnshift@=\dimen276
+\alignsep@=\dimen277
+\tagshift@=\dimen278
+\tagwidth@=\dimen279
+\totwidth@=\dimen280
+\lineht@=\dimen281
+\@envbody=\toks37
+\multlinegap=\skip59
+\multlinetaggap=\skip60
+\mathdisplay@stack=\toks38
+LaTeX Info: Redefining \[ on input line 2923.
+LaTeX Info: Redefining \] on input line 2924.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/amscls\amsthm.sty
+Package: amsthm 2020/05/29 v2.20.6
+\thm@style=\toks39
+\thm@bodyfont=\toks40
+\thm@headfont=\toks41
+\thm@notefont=\toks42
+\thm@headpunct=\toks43
+\thm@preskip=\skip61
+\thm@postskip=\skip62
+\thm@headsep=\skip63
+\dth@everypar=\toks44
+)
+\c@theorem=\count325
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasethemes.sty))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerthemedefault.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemedefault.s
+ty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamercolorthemedefault.
+sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerinnerthemedefault.
+sty
+\beamer@dima=\dimen282
+\beamer@dimb=\dimen283
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerouterthemedefault.
+sty))) (beamer_slider_preamble.tex
+(C:\Program Files\MiKTeX\tex/latex/base\fontenc.sty
+Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
+)
+(C:\Program Files\MiKTeX\tex/latex/base\inputenc.sty
+Package: inputenc 2021/02/14 v1.3d Input encoding file
+\inpenc@prehook=\toks45
+\inpenc@posthook=\toks46
+)
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.sty
+Package: babel 2021/07/22 3.63 The Babel package
+
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.def
+File: babel.def 2021/07/22 3.63 Babel common definitions
+\babel@savecnt=\count326
+\U@D=\dimen284
+\l@unhyphenated=\language79
+
+(C:\Program Files\MiKTeX\tex/generic/babel\txtbabel.def)
+\bbl@readstream=\read3
+)
+LaTeX Info: Redefining \textlatin on input line 730.
+\bbl@dirlevel=\count327
+
+*************************************
+* Local config file bblopts.cfg used
+*
+(C:\Program Files\MiKTeX\tex/latex/arabi\bblopts.cfg
+File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
+ babel
+)
+(C:\Program Files\MiKTeX\tex/latex/babel-english\english.ldf
+Language: english 2017/06/06 v3.3r English support from the babel system
+Package babel Info: Hyphen rules for 'canadian' set to \l@english
+(babel)             (\language0). Reported on input line 102.
+Package babel Info: Hyphen rules for 'australian' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 105.
+Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 108.
+))
+(C:\Program Files\MiKTeX\tex/latex/pgfplots\pgfplots.sty
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.revision.tex)
+Package: pgfplots 2021/05/15 v1.18.1 Data Visualization (1.18.1)
+
+(C:\Program Files\MiKTeX\tex/latex/pgf/frontendlayer\tikz.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgf.sty
+Package: pgf 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleshapes.code.tex
+File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfnodeparttextbox=\box75
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleplot.code.tex
+File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-0-65.sty
+Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@nodesepstart=\dimen285
+\pgf@nodesepend=\dimen286
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-1-18.sty
+Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a)
+)) (C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgffor.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfkeys.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex))
+(C:\Program Files\MiKTeX\tex/latex/pgf/math\pgfmath.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgffor.code.tex
+Package: pgffor 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex)
+\pgffor@iter=\dimen287
+\pgffor@skip=\dimen288
+\pgffor@stack=\toks47
+\pgffor@toks=\toks48
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz\tikz.code.tex
+Package: tikz 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplothandlers.code.
+tex
+File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@plot@mark@count=\count328
+\pgfplotmarksize=\dimen289
+)
+\tikz@lastx=\dimen290
+\tikz@lasty=\dimen291
+\tikz@lastxsaved=\dimen292
+\tikz@lastysaved=\dimen293
+\tikz@lastmovetox=\dimen294
+\tikz@lastmovetoy=\dimen295
+\tikzleveldistance=\dimen296
+\tikzsiblingdistance=\dimen297
+\tikz@figbox=\box76
+\tikz@figbox@bg=\box77
+\tikz@tempbox=\box78
+\tikz@tempbox@bg=\box79
+\tikztreelevel=\count329
+\tikznumberofchildren=\count330
+\tikznumberofcurrentchild=\count331
+\tikz@fig@count=\count332
+ (C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmodulematrix.code.tex
+File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfmatrixcurrentrow=\count333
+\pgfmatrixcurrentcolumn=\count334
+\pgf@matrix@numberofcolumns=\count335
+)
+\tikz@expandcount=\count336
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rytopaths.code.tex
+File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscore.code.tex
+\t@pgfplots@toka=\toks49
+\t@pgfplots@tokb=\toks50
+\t@pgfplots@tokc=\toks51
+\pgfplots@tmpa=\dimen298
+\c@pgfplots@coordindex=\count337
+\c@pgfplots@scanlineindex=\count338
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgfplotssysgeneric.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgfplotslibrary.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/oldpgfcompatib\pgfplotsoldpgfsupp
+_loader.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryfpu.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+re.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+reext.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsarray.code.
+tex
+\c@pgfplotsarray@tmp=\count339
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsmatrix.code
+.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/numtable\pgfplotstableshared.code
+.tex
+\c@pgfplotstable@counta=\count340
+\t@pgfplotstable@a=\toks52
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsdeque.code.
+tex) (C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.code.tex
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.data.code.tex
+))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.verb.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgflibrarypgfplots.surfshadi
+ng.code.tex
+\c@pgfplotslibrarysurf@no=\count341
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgflibrarypgfplots.surfshadin
+g.pgfsys-pdftex.def)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolormap.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolor.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsstackedplots.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsplothandlers.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplothandler.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplotimage.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.scaling.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscoordprocessing.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.errorbars.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.markers.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsticks.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.paths.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduledecorations.code.tex
+\pgfdecoratedcompleteddistance=\dimen299
+\pgfdecoratedremainingdistance=\dimen300
+\pgfdecoratedinputsegmentcompleteddistance=\dimen301
+\pgfdecoratedinputsegmentremainingdistance=\dimen302
+\pgf@decorate@distancetomove=\dimen303
+\pgf@decorate@repeatstate=\count342
+\pgfdecorationsegmentamplitude=\dimen304
+\pgfdecorationsegmentlength=\dimen305
+)
+\tikz@lib@dec@box=\box80
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathmorphing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathmorphing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathreplacing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathreplacing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\tikzlibrarypgfplots.contourl
+ua.code.tex)
+\pgfplots@numplots=\count343
+\pgfplots@xmin@reg=\dimen306
+\pgfplots@xmax@reg=\dimen307
+\pgfplots@ymin@reg=\dimen308
+\pgfplots@ymax@reg=\dimen309
+\pgfplots@zmin@reg=\dimen310
+\pgfplots@zmax@reg=\dimen311
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+ryplotmarks.code.tex
+File: tikzlibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplotmarks.code.tex
+File: pgflibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/booktabs\booktabs.sty
+Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
+\heavyrulewidth=\dimen312
+\lightrulewidth=\dimen313
+\cmidrulewidth=\dimen314
+\belowrulesep=\dimen315
+\belowbottomsep=\dimen316
+\aboverulesep=\dimen317
+\abovetopsep=\dimen318
+\cmidrulesep=\dimen319
+\cmidrulekern=\dimen320
+\defaultaddspace=\dimen321
+\@cmidla=\count344
+\@cmidlb=\count345
+\@aboverulesep=\dimen322
+\@belowrulesep=\dimen323
+\@thisruleclass=\count346
+\@lastruleclass=\count347
+\@thisrulewidth=\dimen324
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/siunitx\siunitx.sty
+Package: siunitx 2021-08-27 v3.0.28 A comprehensive (SI) units package
+\l__siunitx_angle_tmp_dim=\dimen325
+\l__siunitx_angle_marker_box=\box81
+\l__siunitx_angle_unit_box=\box82
+\l__siunitx_compound_count_int=\count348
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations\translations.sty
+Package: translations 2021/01/17 v1.10a internationalization of LaTeX2e package
+s (CN)
+)
+\l__siunitx_number_exponent_fixed_int=\count349
+\l__siunitx_number_min_decimal_int=\count350
+\l__siunitx_number_min_integer_int=\count351
+\l__siunitx_number_round_precision_int=\count352
+\l__siunitx_number_group_minimum_int=\count353
+\l__siunitx_table_tmp_box=\box83
+\l__siunitx_table_tmp_dim=\dimen326
+\l__siunitx_table_column_width_dim=\dimen327
+\l__siunitx_table_integer_box=\box84
+\l__siunitx_table_decimal_box=\box85
+\l__siunitx_table_before_box=\box86
+\l__siunitx_table_after_box=\box87
+\l__siunitx_table_before_dim=\dimen328
+\l__siunitx_table_carry_dim=\dimen329
+\l__siunitx_unit_tmp_int=\count354
+\l__siunitx_unit_position_int=\count355
+\l__siunitx_unit_total_int=\count356
+
+(C:\Program Files\MiKTeX\tex/latex/l3packages/l3keys2e\l3keys2e.sty
+(C:\Program Files\MiKTeX\tex/latex/l3kernel\expl3.sty
+Package: expl3 2021-08-27 L3 programming layer (loader) 
+
+(C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-pdftex.def
+File: l3backend-pdftex.def 2021-08-04 L3 backend support: PDF output (pdfTeX)
+\l__color_backend_stack_int=\count357
+\l__pdf_internal_box=\box88
+))
+Package: l3keys2e 2021-08-27 LaTeX2e option processing using LaTeX3 keys
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\array.sty
+Package: array 2021/04/20 v2.5e Tabular extension package (FMi)
+\col@sep=\dimen330
+\ar@mcellbox=\box89
+\extrarowheight=\dimen331
+\NC@list=\toks53
+\extratabsurround=\skip64
+\backup@length=\skip65
+\ar@cellbox=\box90
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/svg\svg.sty
+Package: svg 2020/11/26 v2.02k (include SVG pictures)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrbase.sty
+Package: scrbase 2021/06/25 v3.34 KOMA-Script package (KOMA-Script-independent 
+basics and keyval usage)
+Applying: [2021/05/01] Usage of raw or classic option list on input line 252.
+Already applied: [0000/00/00] Usage of raw or classic option list on input line
+ 368.
+)
+(C:\Program Files\MiKTeX\tex/latex/trimspaces\trimspaces.sty
+Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\shellesc.sty
+Package: shellesc 2019/11/08 v1.0c unified shell escape interface for LaTeX
+Package shellesc Info: Unrestricted shell escape enabled on input line 75.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/ifplatform\ifplatform.sty
+Package: ifplatform 2017/10/13 v0.4a Testing for the operating system
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/catchfile\catchfile.sty
+Package: catchfile 2019/12/09 v1.8 Catch the contents of a file (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifluatex.sty
+Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
+))
+\c@svg@param@lastpage=\count358
+\svg@box=\box91
+\c@svg@param@currpage=\count359
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/transparent\transparent.sty
+Package: transparent 2019/11/29 v1.4 Transparency via pdfTeX's color stack (HO)
+
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdraw.sty
+Package: pmboxdraw 2019/12/05 v1.4 Poor man's box drawing characters (HO)
+Now handling font encoding pmboxdraw ...
+... processing UTF-8 mapping file for font encoding pmboxdraw
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdrawenc.dfu
+File: pmboxdrawenc.dfu 2019/12/05 v1.4 UTF-8 support for box drawing characters
+
+   defining Unicode char U+2500 (decimal 9472)
+   defining Unicode char U+2501 (decimal 9473)
+   defining Unicode char U+2502 (decimal 9474)
+   defining Unicode char U+2503 (decimal 9475)
+   defining Unicode char U+250C (decimal 9484)
+   defining Unicode char U+250D (decimal 9485)
+   defining Unicode char U+250E (decimal 9486)
+   defining Unicode char U+250F (decimal 9487)
+   defining Unicode char U+2510 (decimal 9488)
+   defining Unicode char U+2511 (decimal 9489)
+   defining Unicode char U+2512 (decimal 9490)
+   defining Unicode char U+2513 (decimal 9491)
+   defining Unicode char U+2514 (decimal 9492)
+   defining Unicode char U+2515 (decimal 9493)
+   defining Unicode char U+2516 (decimal 9494)
+   defining Unicode char U+2517 (decimal 9495)
+   defining Unicode char U+2518 (decimal 9496)
+   defining Unicode char U+2519 (decimal 9497)
+   defining Unicode char U+251A (decimal 9498)
+   defining Unicode char U+251B (decimal 9499)
+   defining Unicode char U+251C (decimal 9500)
+   defining Unicode char U+251D (decimal 9501)
+   defining Unicode char U+251E (decimal 9502)
+   defining Unicode char U+251F (decimal 9503)
+   defining Unicode char U+2520 (decimal 9504)
+   defining Unicode char U+2521 (decimal 9505)
+   defining Unicode char U+2522 (decimal 9506)
+   defining Unicode char U+2523 (decimal 9507)
+   defining Unicode char U+2524 (decimal 9508)
+   defining Unicode char U+252C (decimal 9516)
+   defining Unicode char U+252D (decimal 9517)
+   defining Unicode char U+252E (decimal 9518)
+   defining Unicode char U+252F (decimal 9519)
+   defining Unicode char U+2530 (decimal 9520)
+   defining Unicode char U+2531 (decimal 9521)
+   defining Unicode char U+2532 (decimal 9522)
+   defining Unicode char U+2533 (decimal 9523)
+   defining Unicode char U+2534 (decimal 9524)
+   defining Unicode char U+2535 (decimal 9525)
+   defining Unicode char U+2536 (decimal 9526)
+   defining Unicode char U+2537 (decimal 9527)
+   defining Unicode char U+2538 (decimal 9528)
+   defining Unicode char U+2539 (decimal 9529)
+   defining Unicode char U+253A (decimal 9530)
+   defining Unicode char U+253B (decimal 9531)
+   defining Unicode char U+253C (decimal 9532)
+   defining Unicode char U+253D (decimal 9533)
+   defining Unicode char U+253E (decimal 9534)
+   defining Unicode char U+253F (decimal 9535)
+   defining Unicode char U+2540 (decimal 9536)
+   defining Unicode char U+2541 (decimal 9537)
+   defining Unicode char U+2542 (decimal 9538)
+   defining Unicode char U+2543 (decimal 9539)
+   defining Unicode char U+2544 (decimal 9540)
+   defining Unicode char U+2545 (decimal 9541)
+   defining Unicode char U+2546 (decimal 9542)
+   defining Unicode char U+2547 (decimal 9543)
+   defining Unicode char U+2548 (decimal 9544)
+   defining Unicode char U+2549 (decimal 9545)
+   defining Unicode char U+254A (decimal 9546)
+   defining Unicode char U+254B (decimal 9547)
+   defining Unicode char U+2550 (decimal 9552)
+   defining Unicode char U+2551 (decimal 9553)
+   defining Unicode char U+2552 (decimal 9554)
+   defining Unicode char U+2553 (decimal 9555)
+   defining Unicode char U+2554 (decimal 9556)
+   defining Unicode char U+2555 (decimal 9557)
+   defining Unicode char U+2556 (decimal 9558)
+   defining Unicode char U+2557 (decimal 9559)
+   defining Unicode char U+2558 (decimal 9560)
+   defining Unicode char U+2559 (decimal 9561)
+   defining Unicode char U+255A (decimal 9562)
+   defining Unicode char U+255B (decimal 9563)
+   defining Unicode char U+255C (decimal 9564)
+   defining Unicode char U+255D (decimal 9565)
+   defining Unicode char U+255E (decimal 9566)
+   defining Unicode char U+255F (decimal 9567)
+   defining Unicode char U+2560 (decimal 9568)
+   defining Unicode char U+2561 (decimal 9569)
+   defining Unicode char U+2562 (decimal 9570)
+   defining Unicode char U+2563 (decimal 9571)
+   defining Unicode char U+2564 (decimal 9572)
+   defining Unicode char U+2565 (decimal 9573)
+   defining Unicode char U+2566 (decimal 9574)
+   defining Unicode char U+2567 (decimal 9575)
+   defining Unicode char U+2568 (decimal 9576)
+   defining Unicode char U+2569 (decimal 9577)
+   defining Unicode char U+256A (decimal 9578)
+   defining Unicode char U+256B (decimal 9579)
+   defining Unicode char U+256C (decimal 9580)
+   defining Unicode char U+2574 (decimal 9588)
+   defining Unicode char U+2575 (decimal 9589)
+   defining Unicode char U+2576 (decimal 9590)
+   defining Unicode char U+2577 (decimal 9591)
+   defining Unicode char U+2578 (decimal 9592)
+   defining Unicode char U+2579 (decimal 9593)
+   defining Unicode char U+257A (decimal 9594)
+   defining Unicode char U+257B (decimal 9595)
+   defining Unicode char U+257C (decimal 9596)
+   defining Unicode char U+257D (decimal 9597)
+   defining Unicode char U+257E (decimal 9598)
+   defining Unicode char U+257F (decimal 9599)
+   defining Unicode char U+2580 (decimal 9600)
+   defining Unicode char U+2581 (decimal 9601)
+   defining Unicode char U+2582 (decimal 9602)
+   defining Unicode char U+2583 (decimal 9603)
+   defining Unicode char U+2584 (decimal 9604)
+   defining Unicode char U+2585 (decimal 9605)
+   defining Unicode char U+2586 (decimal 9606)
+   defining Unicode char U+2587 (decimal 9607)
+   defining Unicode char U+2588 (decimal 9608)
+   defining Unicode char U+2589 (decimal 9609)
+   defining Unicode char U+258A (decimal 9610)
+   defining Unicode char U+258B (decimal 9611)
+   defining Unicode char U+258C (decimal 9612)
+   defining Unicode char U+258D (decimal 9613)
+   defining Unicode char U+258E (decimal 9614)
+   defining Unicode char U+258F (decimal 9615)
+   defining Unicode char U+2590 (decimal 9616)
+   defining Unicode char U+2591 (decimal 9617)
+   defining Unicode char U+2592 (decimal 9618)
+   defining Unicode char U+2593 (decimal 9619)
+   defining Unicode char U+2594 (decimal 9620)
+   defining Unicode char U+2595 (decimal 9621)
+   defining Unicode char U+2596 (decimal 9622)
+   defining Unicode char U+2597 (decimal 9623)
+   defining Unicode char U+2598 (decimal 9624)
+   defining Unicode char U+2599 (decimal 9625)
+   defining Unicode char U+259A (decimal 9626)
+   defining Unicode char U+259B (decimal 9627)
+   defining Unicode char U+259C (decimal 9628)
+   defining Unicode char U+259D (decimal 9629)
+   defining Unicode char U+259E (decimal 9630)
+   defining Unicode char U+259F (decimal 9631)
+)
+\pmbd@W=\dimen332
+\pmbd@H=\dimen333
+\pmbd@L=\dimen334
+\pmbd@Thin=\dimen335
+\pmbd@Thick=\dimen336
+\pmbd@Sep=\dimen337
+)
+(beamerthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime.sty
+Package: datetime 2015/03/20 v2.60 Date Time Package
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fmtcount.sty
+Package: fmtcount 2020/01/30 v3.07
+
+(C:\Program Files\MiKTeX\tex/latex/base\ifthen.sty
+Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/xkeyval\xkeyval.sty
+Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
+
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkeyval.tex
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkvutils.tex
+\XKV@toks=\toks54
+\XKV@tempa@toks=\toks55
+)
+\XKV@depth=\count360
+File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcprefix.sty
+Package: fcprefix 2012/09/28
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcnumparser.sty
+Package: fcnumparser 2017/06/15
+\fc@digit@counter=\count361
+))
+\c@padzeroesN=\count362
+\fc@tmpcatcode=\count363
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fc-english.def
+File: fc-english.def 2016/01/12
+)
+\@DT@modctr=\count364
+\@ordinalctr=\count365
+\@orgargctr=\count366
+\@strctr=\count367
+\@tmpstrctr=\count368
+\@DT@loopN=\count369
+\@DT@X=\count370
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime-defaults.sty
+Package: datetime-defaults 2013/09/10
+)
+\@day=\count371
+\@month=\count372
+\@year=\count373
+\c@HOUR=\count374
+\c@HOURXII=\count375
+\c@MINUTE=\count376
+\c@TOHOUR=\count377
+\c@TOMINUTE=\count378
+\c@SECOND=\count379
+\currenthour=\count380
+\currentminute=\count381
+\currentsecond=\count382
+Package datetime Info: No datetime.cfg file found, using default settings on in
+put line 308.
+\@dtctr=\count383
+\dayofyear=\count384
+\dayofweek=\count385
+LaTeX Info: Redefining \today on input line 736.
+\dt@a=\toks56
+\dt@b=\toks57
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\calc.sty
+Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
+\calc@Acount=\count386
+\calc@Bcount=\count387
+\calc@Adimen=\dimen338
+\calc@Bdimen=\dimen339
+\calc@Askip=\skip66
+\calc@Bskip=\skip67
+LaTeX Info: Redefining \setlength on input line 80.
+LaTeX Info: Redefining \addtolength on input line 81.
+\calc@Ccount=\count388
+\calc@Cskip=\skip68
+)
+Class  Info: The file departments.tex with department logo file naming has been
+ loaded. on input line 21.
+
+(departments.tex) (beamerfontthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemeprofessio
+nalfonts.sty)) (beamerouterthemeDTU.sty) (beamerinnerthemeDTU.sty)
+(beamercolorthemeDTU.sty
+Package dtubeamer Info: Successfully loaded the DTU colours. on input line 22.
+ (dtucolours.tex))
+\widthframenumber=\skip69
+\widthdepartment=\skip70
+\widthtitle=\skip71
+\widthdate=\skip72
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/textpos\textpos.sty
+Package: textpos 2020/09/26 v1.10
+
+Package: textpos 2020/09/26 1.10, absolute positioning of text on the page
+Package textpos Info: choosing support for LaTeX3 on input line 61.
+\TP@textbox=\box92
+\TP@holdbox=\box93
+\TPHorizModule=\dimen340
+\TPVertModule=\dimen341
+\TP@margin=\dimen342
+\TP@absmargin=\dimen343
+Grid set 16 x 16 = 24.89616pt x 18.67212pt
+\TPboxrulesize=\dimen344
+\TP@ox=\dimen345
+\TP@oy=\dimen346
+\TP@tbargs=\toks58
+TextBlockOrigin set to 0pt x 0pt
+)
+TextBlockOrigin set to 0mm x 0mm
+(C:\Program Files\MiKTeX\tex/latex/lm\lmodern.sty
+Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
+LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
+(Font)                  OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `normal'
+(Font)                  OML/cmm/m/it --> OML/lmm/m/it on input line 23.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `normal'
+(Font)                  OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `normal'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
+LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `bold'
+(Font)                  OML/cmm/b/it --> OML/lmm/b/it on input line 27.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `bold'
+(Font)                  OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `bold'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
+(Font)                  OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
+(Font)                  OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
+(Font)                  OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
+(Font)                  OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
+))
+LaTeX Font Info:    Trying to load font information for T1+lmss on input line 1
+5.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\t1lmss.fd
+File: t1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
+) (index_NO_SVGS.aux)
+\openout1 = `index_NO_SVGS.aux'.
+
+LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for pmboxdraw/pmboxdraw/m/n on input line
+ 15.
+LaTeX Font Info:    ... okay on input line 15.
+
+*geometry* driver: auto-detecting
+*geometry* detected driver: pdftex
+*geometry* verbose mode - [ preamble ] result:
+* driver: pdftex
+* paper: custom
+* layout: <same size as paper>
+* layoutoffset:(h,v)=(0.0pt,0.0pt)
+* modes: includehead includefoot 
+* h-part:(L,W,R)=(26.64667pt, 347.32933pt, 24.36267pt)
+* v-part:(T,H,B)=(0.0pt, 298.7541pt, 0.0pt)
+* \paperwidth=398.33867pt
+* \paperheight=298.7541pt
+* \textwidth=347.32933pt
+* \textheight=270.30138pt
+* \oddsidemargin=-45.62332pt
+* \evensidemargin=-45.62332pt
+* \topmargin=-72.26999pt
+* \headheight=14.22636pt
+* \headsep=0.0pt
+* \topskip=11.0pt
+* \footskip=14.22636pt
+* \marginparwidth=4.0pt
+* \marginparsep=10.0pt
+* \columnsep=10.0pt
+* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
+* \hoffset=0.0pt
+* \voffset=0.0pt
+* \mag=1000
+* \@twocolumnfalse
+* \@twosidefalse
+* \@mparswitchfalse
+* \@reversemarginfalse
+* (1in=72.27pt=25.4mm, 1cm=28.453pt)
+
+(C:\Program Files\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+\scratchcounter=\count389
+\scratchdimen=\dimen347
+\scratchbox=\box94
+\nofMPsegments=\count390
+\nofMParguments=\count391
+\everyMPshowfont=\toks59
+\MPscratchCnt=\count392
+\MPscratchDim=\dimen348
+\MPnumerator=\count393
+\makeMPintoPDFobject=\count394
+\everyMPtoPDFconversion=\toks60
+) (C:\Program Files\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-base.sty
+Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
+Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
+85.
+
+(C:\Program Files\MiKTeX\tex/latex/00miktex\epstopdf-sys.cfg
+File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
+))
+Package hyperref Info: Link coloring OFF on input line 15.
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\nameref.sty
+Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/refcount\refcount.sty
+Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/gettitlestring\gettitlestring
+.sty
+Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
+)
+\c@section@level=\count395
+)
+LaTeX Info: Redefining \ref on input line 15.
+LaTeX Info: Redefining \pageref on input line 15.
+LaTeX Info: Redefining \nameref on input line 15.
+ (index_NO_SVGS.out) (index_NO_SVGS.out)
+\@outlinefile=\write5
+\openout5 = `index_NO_SVGS.out'.
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-basic-dic
+tionary-English.dict
+Dictionary: translator-basic-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-bibliogra
+phy-dictionary-English.dict
+Dictionary: translator-bibliography-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-environme
+nt-dictionary-English.dict
+Dictionary: translator-environment-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-months-di
+ctionary-English.dict
+Dictionary: translator-months-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-numbers-d
+ictionary-English.dict
+Dictionary: translator-numbers-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-theorem-d
+ictionary-English.dict
+Dictionary: translator-theorem-dictionary, Language: English 
+)
+Package pgfplots notification 'compat/show suggested version=true': document ha
+s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations/dicts\translations
+-basic-dictionary-english.trsl
+File: translations-basic-dictionary-english.trsl (english translation file `tra
+nslations-basic-dictionary')
+)
+Package translations Info: loading dictionary `translations-basic-dictionary' f
+or `english'. on input line 15.
+ (index_NO_SVGS.nav)
+<tex_dtu_logo.pdf, id=12, 38.98967pt x 56.87248pt>
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 15.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 18.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+<tex_dtu_compute_a_uk.pdf, id=13, 309.17804pt x 36.72722pt>
+File: tex_dtu_compute_a_uk.pdf Graphic file (type pdf)
+<use tex_dtu_compute_a_uk.pdf>
+Package pdftex.def Info: tex_dtu_compute_a_uk.pdf  used on input line 18.
+(pdftex.def)             Requested size: 225.61316pt x 26.80016pt.
+<tex_dtu_frise.pdf, id=14, 959.585pt x 353.32pt>
+File: tex_dtu_frise.pdf Graphic file (type pdf)
+<use tex_dtu_frise.pdf>
+Package pdftex.def Info: tex_dtu_frise.pdf  used on input line 18.
+(pdftex.def)             Requested size: 276.85223pt x 101.93542pt.
+ [1
+
+{C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map} <./tex_dtu_logo.p
+df> <./tex_dtu_compute_a_uk.pdf
+
+pdfTeX warning: pdflatex (file ./tex_dtu_compute_a_uk.pdf): PDF inclusion: mult
+iple pdfs with page group included in a single page
+> <./tex_dtu_frise.pdf>]
+LaTeX Font Info:    Trying to load font information for T1+lmtt on input line 2
+3.
+ (C:\Program Files\MiKTeX\tex/latex/lm\t1lmtt.fd
+File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OT1+lmr on input line 2
+3.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\ot1lmr.fd
+File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OML+lmm on input line 2
+3.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omllmm.fd
+File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMS+lmsy on input line 
+23.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omslmsy.fd
+File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMX+lmex on input line 
+23.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omxlmex.fd
+File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <10.95> on input line 23.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <8> on input line 23.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <6> on input line 23.
+LaTeX Font Info:    Trying to load font information for U+msa on input line 23.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsa.fd
+File: umsa.fd 2013/01/14 v3.01 AMS symbols A
+)
+LaTeX Font Info:    Trying to load font information for U+msb on input line 23.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsb.fd
+File: umsb.fd 2013/01/14 v3.01 AMS symbols B
+)
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 23.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+ [2
+
+]
+\tf@nav=\write6
+\openout6 = `index_NO_SVGS.nav'.
+
+\tf@toc=\write7
+\openout7 = `index_NO_SVGS.toc'.
+
+\tf@snm=\write8
+\openout8 = `index_NO_SVGS.snm'.
+
+ (index_NO_SVGS.aux)
+Package rerunfilecheck Info: File `index_NO_SVGS.out' has not changed.
+(rerunfilecheck)             Checksum: D41D8CD98F00B204E9800998ECF8427E;0.
+ ) 
+Here is how much of TeX's memory you used:
+ 41025 strings out of 478927
+ 963302 string characters out of 2862359
+ 1366895 words of memory out of 3000000
+ 58077 multiletter control sequences out of 15000+600000
+ 436788 words of font info for 54 fonts, out of 8000000 for 9000
+ 1141 hyphenation exceptions out of 8191
+ 128i,21n,124p,2119b,763s stack positions out of 5000i,500n,10000p,200000b,80000s
+{C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc}<C:/Program Files/MiKTe
+X/fonts/type1/public/lm/lmss10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/
+lm/lmss8.pfb><C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb><C:/Pr
+ogram Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb>
+Output written on index_NO_SVGS.pdf (2 pages, 121185 bytes).
+PDF statistics:
+ 57 PDF objects out of 1000 (max. 8388607)
+ 5 named destinations out of 1000 (max. 500000)
+ 58 words of extra memory for PDF output out of 10000 (max. 10000000)
+
diff --git a/examples/basic1/index_NO_SVGS.nav b/examples/basic1/index_NO_SVGS.nav
new file mode 100644
index 0000000000000000000000000000000000000000..9033d8ba0cd2afbd30fe6ab857d8374468715862
--- /dev/null
+++ b/examples/basic1/index_NO_SVGS.nav
@@ -0,0 +1,9 @@
+\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}
+\headcommand {\beamer@framepages {1}{1}}
+\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}
+\headcommand {\beamer@framepages {2}{2}}
+\headcommand {\beamer@partpages {1}{2}}
+\headcommand {\beamer@subsectionpages {1}{2}}
+\headcommand {\beamer@sectionpages {1}{2}}
+\headcommand {\beamer@documentpages {2}}
+\headcommand {\gdef \inserttotalframenumber {2}}
diff --git a/examples/basic1/index_NO_SVGS.out b/examples/basic1/index_NO_SVGS.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/basic1/index_NO_SVGS.pdf b/examples/basic1/index_NO_SVGS.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..208dea9165055060c825e0410c38e394122ae88d
Binary files /dev/null and b/examples/basic1/index_NO_SVGS.pdf differ
diff --git a/examples/basic1/index_NO_SVGS.snm b/examples/basic1/index_NO_SVGS.snm
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/basic1/index_NO_SVGS.tex b/examples/basic1/index_NO_SVGS.tex
new file mode 100644
index 0000000000000000000000000000000000000000..265864c06c7683209034d93ace797f7b8aa675b0
--- /dev/null
+++ b/examples/basic1/index_NO_SVGS.tex
@@ -0,0 +1,25 @@
+ 
+\documentclass[handout,aspectratio=43]{beamer}
+\usepackage{etoolbox}
+\newtoggle{overlabel_includesvgs}
+\newtoggle{overlabel_includelabels}
+\toggletrue{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+\input{beamer_slider_preamble.tex}
+
+\title{Example slide show}
+\author{Tue Herlau}
+ \togglefalse{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+
+\begin{document}
+\begin{frame}
+\maketitle
+\end{frame}
+
+\begin{frame}\osvg{myoverlay} % Use the \osvg{labelname} - tag to create new overlays. Run slider and check the ./osvgs directory for the svg files!
+\title{Slide with an overlay}
+This is some example text!
+\end{frame}
+
+\end{document}
diff --git a/examples/basic1/index_NO_SVGS.toc b/examples/basic1/index_NO_SVGS.toc
new file mode 100644
index 0000000000000000000000000000000000000000..9fbdd18a8c9adf55ec0285e8532d13207dc20bf7
--- /dev/null
+++ b/examples/basic1/index_NO_SVGS.toc
@@ -0,0 +1 @@
+\babel@toc {english}{}\relax 
diff --git a/examples/basic1/osvgs/do_not_edit/myoverlay-l1_fonts.svg b/examples/basic1/osvgs/do_not_edit/myoverlay-l1_fonts.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5bdd59c139b664ab3cc7c17728f2f29a07d091f3
--- /dev/null
+++ b/examples/basic1/osvgs/do_not_edit/myoverlay-l1_fonts.svg
@@ -0,0 +1,227 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg:svg height="297.638pt" id="svg353" inkscape:version="1.0.2-2 (e86c870879, 2021-01-15)" sodipodi:docname="myoverlay.svg" version="1.2" viewBox="0 0 396.85 297.638" width="396.85pt" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<svg:defs id="defs357"/>
+<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview355" inkscape:current-layer="layer2" inkscape:cx="264.49219" inkscape:cy="198.47288" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="1351" inkscape:window-maximized="0" inkscape:window-width="2411" inkscape:window-x="145" inkscape:window-y="71" inkscape:zoom="1.8520821" objecttolerance="10" pagecolor="#ffffff" showgrid="false"/>
+<svg:metadata id="metadata2">
+<rdf:RDF>
+<cc:Work rdf:about="">
+<dc:format>image/svg+xml</dc:format>
+<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+</cc:Work>
+</rdf:RDF>
+</svg:metadata>
+<svg:g id="layer1" inkscape:groupmode="layer" inkscape:label="bg_layer" sodipodi:insensitive="true" style="display:inline">
+</svg:g>
+<svg:g id="layer2" inkscape:groupmode="layer" inkscape:label="Layer 1" style="display:inline">
+<svg:defs id="defs179">
+<svg:g id="g153">
+<svg:symbol id="glyph0-0" overflow="visible">
+<svg:path d="" id="path6" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-1" overflow="visible">
+<svg:path d="M 7.015625 -6.78125 L 7.015625 -7.5 L 0.390625 -7.5 L 0.390625 -6.78125 L 1.84375 -6.78125 C 1.984375 -6.78125 2.109375 -6.796875 2.25 -6.796875 L 3.21875 -6.796875 L 3.21875 0 L 4.1875 0 L 4.1875 -6.796875 L 5.15625 -6.796875 C 5.296875 -6.796875 5.421875 -6.78125 5.546875 -6.78125 Z M 7.015625 -6.78125 " id="path9" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-2" overflow="visible">
+<svg:path d="M 4.734375 0 L 4.734375 -3.25 C 4.734375 -3.96875 4.578125 -4.953125 3.25 -4.953125 C 2.5625 -4.953125 2.046875 -4.625 1.703125 -4.171875 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.390625 2 -4.296875 2.828125 -4.296875 C 3.875 -4.296875 3.890625 -3.515625 3.890625 -3.171875 L 3.890625 0 Z M 4.734375 0 " id="path12" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-3" overflow="visible">
+<svg:path d="M 1.703125 0 L 1.703125 -4.828125 L 0.875 -4.828125 L 0.875 0 Z M 1.78125 -6.171875 L 1.78125 -7.140625 L 0.8125 -7.140625 L 0.8125 -6.171875 Z M 1.78125 -6.171875 " id="path15" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-4" overflow="visible">
+<svg:path d="M 3.921875 -1.390625 C 3.921875 -2 3.515625 -2.359375 3.5 -2.390625 C 3.078125 -2.78125 2.78125 -2.84375 2.234375 -2.9375 C 1.640625 -3.0625 1.125 -3.171875 1.125 -3.703125 C 1.125 -4.375 1.921875 -4.375 2.0625 -4.375 C 2.40625 -4.375 2.984375 -4.328125 3.609375 -3.96875 L 3.734375 -4.671875 C 3.171875 -4.9375 2.71875 -5.015625 2.171875 -5.015625 C 1.890625 -5.015625 0.359375 -5.015625 0.359375 -3.59375 C 0.359375 -3.0625 0.671875 -2.71875 0.953125 -2.5 C 1.28125 -2.265625 1.53125 -2.21875 2.125 -2.109375 C 2.515625 -2.03125 3.140625 -1.890625 3.140625 -1.3125 C 3.140625 -0.5625 2.28125 -0.5625 2.125 -0.5625 C 1.234375 -0.5625 0.625 -0.96875 0.4375 -1.09375 L 0.3125 -0.359375 C 0.65625 -0.1875 1.25 0.125 2.140625 0.125 C 2.328125 0.125 2.921875 0.125 3.390625 -0.234375 C 3.734375 -0.484375 3.921875 -0.921875 3.921875 -1.390625 Z M 3.921875 -1.390625 " id="path18" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-5" overflow="visible">
+<svg:path d="M 5.109375 -2.390625 C 5.109375 -3.859375 4.015625 -5.015625 2.71875 -5.015625 C 1.390625 -5.015625 0.328125 -3.828125 0.328125 -2.390625 C 0.328125 -0.953125 1.4375 0.125 2.71875 0.125 C 4.015625 0.125 5.109375 -0.984375 5.109375 -2.390625 Z M 4.265625 -2.5 C 4.265625 -1.21875 3.515625 -0.578125 2.71875 -0.578125 C 1.953125 -0.578125 1.171875 -1.1875 1.171875 -2.5 C 1.171875 -3.828125 2 -4.359375 2.71875 -4.359375 C 3.46875 -4.359375 4.265625 -3.796875 4.265625 -2.5 Z M 4.265625 -2.5 " id="path21" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-6" overflow="visible">
+<svg:path d="M 7.765625 0 L 7.765625 -3.25 C 7.765625 -3.96875 7.59375 -4.953125 6.265625 -4.953125 C 5.625 -4.953125 5.046875 -4.65625 4.65625 -4.0625 C 4.359375 -4.890625 3.609375 -4.953125 3.25 -4.953125 C 2.46875 -4.953125 1.953125 -4.515625 1.671875 -4.109375 L 1.671875 -4.90625 L 0.875 -4.90625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.40625 2.03125 -4.296875 2.828125 -4.296875 C 3.84375 -4.296875 3.90625 -3.578125 3.90625 -3.171875 L 3.90625 0 L 4.75 0 L 4.75 -2.671875 C 4.75 -3.40625 5.046875 -4.296875 5.84375 -4.296875 C 6.859375 -4.296875 6.921875 -3.578125 6.921875 -3.171875 L 6.921875 0 Z M 7.765625 0 " id="path24" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-7" overflow="visible">
+<svg:path d="M 4.515625 -2.390625 C 4.515625 -2.75 4.5 -3.578125 4.078125 -4.21875 C 3.625 -4.90625 2.96875 -5.015625 2.5625 -5.015625 C 1.359375 -5.015625 0.375 -3.859375 0.375 -2.46875 C 0.375 -1.03125 1.421875 0.125 2.734375 0.125 C 3.421875 0.125 4.046875 -0.140625 4.46875 -0.453125 L 4.40625 -1.15625 C 3.71875 -0.59375 3 -0.546875 2.75 -0.546875 C 1.875 -0.546875 1.171875 -1.3125 1.140625 -2.390625 Z M 3.890625 -2.984375 L 1.203125 -2.984375 C 1.375 -3.8125 1.953125 -4.359375 2.5625 -4.359375 C 3.140625 -4.359375 3.75 -3.984375 3.890625 -2.984375 Z M 3.890625 -2.984375 " id="path27" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-8" overflow="visible">
+<svg:path d="M 5.015625 0 L 2.828125 -2.5 L 4.828125 -4.828125 L 3.9375 -4.828125 L 2.46875 -3.03125 L 0.96875 -4.828125 L 0.0625 -4.828125 L 2.109375 -2.5 L 0 0 L 0.890625 0 L 2.46875 -2.046875 L 4.109375 0 Z M 5.015625 0 " id="path30" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-9" overflow="visible">
+<svg:path d="M 4.453125 0 L 4.453125 -3.140625 C 4.453125 -4.265625 3.65625 -5.015625 2.65625 -5.015625 C 1.953125 -5.015625 1.453125 -4.84375 0.953125 -4.546875 L 1.015625 -3.828125 C 1.578125 -4.234375 2.125 -4.375 2.65625 -4.375 C 3.171875 -4.375 3.609375 -3.9375 3.609375 -3.140625 L 3.609375 -2.671875 C 1.96875 -2.640625 0.59375 -2.1875 0.59375 -1.234375 C 0.59375 -0.765625 0.875 0.125 1.828125 0.125 C 1.984375 0.125 3 0.09375 3.640625 -0.390625 L 3.640625 0 Z M 3.609375 -1.4375 C 3.609375 -1.234375 3.609375 -0.953125 3.234375 -0.75 C 2.921875 -0.5625 2.5 -0.546875 2.390625 -0.546875 C 1.859375 -0.546875 1.375 -0.796875 1.375 -1.25 C 1.375 -2.015625 3.140625 -2.09375 3.609375 -2.109375 Z M 3.609375 -1.4375 " id="path33" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-10" overflow="visible">
+<svg:path d="M 5.234375 -2.421875 C 5.234375 -3.734375 4.546875 -4.953125 3.5 -4.953125 C 2.84375 -4.953125 2.203125 -4.734375 1.703125 -4.296875 L 1.703125 -4.828125 L 0.890625 -4.828125 L 0.890625 2.109375 L 1.75 2.109375 L 1.75 -0.5 C 2.078125 -0.1875 2.5625 0.125 3.21875 0.125 C 4.265625 0.125 5.234375 -0.953125 5.234375 -2.421875 Z M 4.375 -2.421875 C 4.375 -1.3125 3.609375 -0.546875 2.78125 -0.546875 C 2.359375 -0.546875 2.0625 -0.765625 1.84375 -1.0625 C 1.75 -1.21875 1.75 -1.234375 1.75 -1.4375 L 1.75 -3.625 C 2 -4 2.421875 -4.265625 2.890625 -4.265625 C 3.71875 -4.265625 4.375 -3.4375 4.375 -2.421875 Z M 4.375 -2.421875 " id="path36" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-11" overflow="visible">
+<svg:path d="M 1.703125 0 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 Z M 1.703125 0 " id="path39" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-12" overflow="visible">
+<svg:path d="M 3.609375 -0.296875 L 3.4375 -0.9375 C 3.15625 -0.703125 2.8125 -0.578125 2.46875 -0.578125 C 2.0625 -0.578125 1.90625 -0.90625 1.90625 -1.484375 L 1.90625 -4.203125 L 3.4375 -4.203125 L 3.4375 -4.828125 L 1.90625 -4.828125 L 1.90625 -6.21875 L 1.15625 -6.21875 L 1.15625 -4.828125 L 0.203125 -4.828125 L 0.203125 -4.203125 L 1.125 -4.203125 L 1.125 -1.296875 C 1.125 -0.640625 1.28125 0.125 2.03125 0.125 C 2.78125 0.125 3.34375 -0.15625 3.609375 -0.296875 Z M 3.609375 -0.296875 " id="path42" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph0-13" overflow="visible">
+<svg:path d="M 2.1875 -7.5625 L 1.28125 -7.5625 L 1.375 -2.375 L 1.375 -1.90625 L 2.109375 -1.90625 L 2.109375 -2.375 Z M 2.1875 0 L 2.1875 -0.90625 L 1.28125 -0.90625 L 1.28125 0 Z M 2.1875 0 " id="path45" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-0" overflow="visible">
+<svg:path d="" id="path48" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-1" overflow="visible">
+<svg:path d="M 2.84375 0 L 2.84375 -0.453125 L 1.6875 -0.453125 C 1.625 -0.453125 1.546875 -0.453125 1.46875 -0.453125 L 0.796875 -0.453125 L 1.71875 -1.265625 C 1.828125 -1.359375 2.125 -1.59375 2.234375 -1.6875 C 2.5 -1.921875 2.84375 -2.234375 2.84375 -2.75 C 2.84375 -3.421875 2.34375 -4.046875 1.5 -4.046875 C 0.859375 -4.046875 0.46875 -3.703125 0.265625 -3.09375 L 0.546875 -2.734375 C 0.6875 -3.234375 0.890625 -3.625 1.40625 -3.625 C 1.90625 -3.625 2.296875 -3.28125 2.296875 -2.734375 C 2.296875 -2.25 2 -1.96875 1.640625 -1.625 C 1.515625 -1.5 1.203125 -1.234375 1.078125 -1.109375 C 0.90625 -0.96875 0.484375 -0.5625 0.3125 -0.40625 L 0.3125 0 Z M 2.84375 0 " id="path51" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-2" overflow="visible">
+<svg:path d="M 4.21875 -2.03125 C 4.21875 -3.203125 3.34375 -4.140625 2.28125 -4.140625 L 0.578125 -4.140625 L 0.578125 0 L 2.28125 0 C 3.359375 0 4.21875 -0.90625 4.21875 -2.03125 Z M 3.640625 -2.046875 C 3.640625 -0.9375 2.90625 -0.359375 2.125 -0.359375 L 1.171875 -0.359375 L 1.171875 -3.796875 L 2.125 -3.796875 C 2.9375 -3.796875 3.640625 -3.140625 3.640625 -2.046875 Z M 3.640625 -2.046875 " id="path54" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-3" overflow="visible">
+<svg:path d="M 4.09375 -3.6875 L 4.09375 -4.09375 L 0.234375 -4.09375 L 0.234375 -3.6875 L 1.09375 -3.6875 C 1.15625 -3.6875 1.234375 -3.6875 1.296875 -3.6875 L 1.859375 -3.6875 L 1.859375 0 L 2.46875 0 L 2.46875 -3.6875 L 3.03125 -3.6875 C 3.09375 -3.6875 3.171875 -3.6875 3.234375 -3.6875 Z M 4.09375 -3.6875 " id="path57" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-4" overflow="visible">
+<svg:path d="M 3.765625 -1.390625 L 3.765625 -4.140625 L 3.25 -4.140625 L 3.25 -1.390625 C 3.25 -0.59375 2.703125 -0.234375 2.203125 -0.234375 C 1.6875 -0.234375 1.1875 -0.59375 1.1875 -1.390625 L 1.1875 -4.140625 L 0.578125 -4.140625 L 0.578125 -1.390625 C 0.578125 -0.515625 1.328125 0.125 2.1875 0.125 C 3.046875 0.125 3.765625 -0.53125 3.765625 -1.390625 Z M 3.765625 -1.390625 " id="path60" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-5" overflow="visible">
+<svg:path d="M 3.71875 -0.28125 L 3.6875 -0.734375 C 3.5 -0.609375 3.3125 -0.484375 3.09375 -0.421875 C 2.890625 -0.359375 2.671875 -0.359375 2.453125 -0.359375 C 2.0625 -0.359375 1.6875 -0.546875 1.421875 -0.859375 C 1.140625 -1.1875 1 -1.625 1 -2.078125 C 1 -2.515625 1.140625 -2.953125 1.421875 -3.28125 C 1.6875 -3.59375 2.0625 -3.796875 2.453125 -3.796875 C 2.65625 -3.796875 2.84375 -3.765625 3.03125 -3.71875 C 3.21875 -3.65625 3.390625 -3.5625 3.5625 -3.453125 L 3.65625 -4 C 3.46875 -4.0625 3.265625 -4.125 3.0625 -4.15625 C 2.859375 -4.203125 2.65625 -4.203125 2.453125 -4.203125 C 1.90625 -4.203125 1.390625 -3.96875 1 -3.578125 C 0.609375 -3.171875 0.40625 -2.625 0.40625 -2.078125 C 0.40625 -1.515625 0.609375 -0.96875 1 -0.5625 C 1.390625 -0.171875 1.90625 0.0625 2.453125 0.0625 C 2.6875 0.0625 2.90625 0.046875 3.109375 0 C 3.328125 -0.0625 3.53125 -0.15625 3.71875 -0.28125 Z M 3.71875 -0.28125 " id="path63" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-6" overflow="visible">
+<svg:path d="M 2.984375 -1.3125 C 2.984375 -2.09375 2.359375 -2.734375 1.578125 -2.734375 C 0.8125 -2.734375 0.171875 -2.09375 0.171875 -1.3125 C 0.171875 -0.546875 0.8125 0.0625 1.578125 0.0625 C 2.359375 0.0625 2.984375 -0.546875 2.984375 -1.3125 Z M 2.46875 -1.375 C 2.46875 -0.6875 2.046875 -0.359375 1.578125 -0.359375 C 1.109375 -0.359375 0.703125 -0.703125 0.703125 -1.375 C 0.703125 -2.046875 1.140625 -2.34375 1.578125 -2.34375 C 2.03125 -2.34375 2.46875 -2.03125 2.46875 -1.375 Z M 2.46875 -1.375 " id="path66" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-7" overflow="visible">
+<svg:path d="M 4.53125 0 L 4.53125 -1.765625 C 4.53125 -2.234375 4.40625 -2.703125 3.671875 -2.703125 C 3.15625 -2.703125 2.859375 -2.421875 2.703125 -2.21875 C 2.65625 -2.390625 2.5 -2.703125 1.90625 -2.703125 C 1.5625 -2.703125 1.234375 -2.578125 0.96875 -2.25 L 0.96875 -2.6875 L 0.5 -2.6875 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 L 2.78125 0 L 2.78125 -1.453125 C 2.78125 -1.84375 2.9375 -2.3125 3.40625 -2.3125 C 4.015625 -2.3125 4.015625 -1.890625 4.015625 -1.71875 L 4.015625 0 Z M 4.53125 0 " id="path69" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-8" overflow="visible">
+<svg:path d="M 3.0625 -1.328125 C 3.0625 -2.046875 2.65625 -2.703125 2.078125 -2.703125 C 1.796875 -2.703125 1.359375 -2.625 1.015625 -2.359375 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 1.15625 L 1.03125 1.15625 L 1.03125 -0.28125 C 1.34375 0 1.6875 0.0625 1.890625 0.0625 C 2.515625 0.0625 3.0625 -0.546875 3.0625 -1.328125 Z M 2.53125 -1.328125 C 2.53125 -0.734375 2.09375 -0.328125 1.625 -0.328125 C 1.53125 -0.328125 1.390625 -0.34375 1.234375 -0.46875 C 1.046875 -0.609375 1.03125 -0.703125 1.03125 -0.8125 L 1.03125 -1.984375 C 1.15625 -2.15625 1.390625 -2.296875 1.6875 -2.296875 C 2.15625 -2.296875 2.53125 -1.859375 2.53125 -1.328125 Z M 2.53125 -1.328125 " id="path72" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-9" overflow="visible">
+<svg:path d="M 2.78125 0 L 2.78125 -2.65625 L 2.25 -2.65625 L 2.25 -0.921875 C 2.25 -0.4375 1.84375 -0.296875 1.5 -0.296875 C 1.0625 -0.296875 1.015625 -0.40625 1.015625 -0.6875 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 -0.65625 C 0.5 -0.125 0.734375 0.0625 1.140625 0.0625 C 1.390625 0.0625 1.921875 0.015625 2.28125 -0.28125 L 2.28125 0 Z M 2.78125 0 " id="path75" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-10" overflow="visible">
+<svg:path d="M 2.109375 -0.15625 L 2.015625 -0.546875 C 1.8125 -0.40625 1.609375 -0.359375 1.4375 -0.359375 C 1.1875 -0.359375 1.125 -0.59375 1.125 -0.875 L 1.125 -2.28125 L 2 -2.28125 L 2 -2.65625 L 1.125 -2.65625 L 1.125 -3.40625 L 0.65625 -3.40625 L 0.65625 -2.65625 L 0.125 -2.65625 L 0.125 -2.28125 L 0.640625 -2.28125 L 0.640625 -0.765625 C 0.640625 -0.359375 0.75 0.0625 1.171875 0.0625 C 1.609375 0.0625 1.9375 -0.078125 2.109375 -0.15625 Z M 2.109375 -0.15625 " id="path78" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-11" overflow="visible">
+<svg:path d="M 2.625 -1.3125 C 2.625 -1.578125 2.59375 -1.984375 2.359375 -2.328125 C 2.15625 -2.625 1.796875 -2.734375 1.5 -2.734375 C 0.765625 -2.734375 0.203125 -2.09375 0.203125 -1.34375 C 0.203125 -0.578125 0.8125 0.0625 1.59375 0.0625 C 1.9375 0.0625 2.296875 -0.046875 2.609375 -0.234375 L 2.5625 -0.65625 C 2.234375 -0.40625 1.859375 -0.328125 1.59375 -0.328125 C 1.078125 -0.328125 0.6875 -0.765625 0.671875 -1.3125 Z M 2.265625 -1.671875 L 0.703125 -1.671875 C 0.84375 -2.140625 1.203125 -2.34375 1.5 -2.34375 C 1.765625 -2.34375 2.15625 -2.21875 2.265625 -1.671875 Z M 2.265625 -1.671875 " id="path81" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-12" overflow="visible">
+<svg:path d="M 3.53125 0 L 3.53125 -0.46875 L 3 -0.46875 L 1.5 -0.453125 L 1.1875 -0.453125 L 1.1875 -1.953125 L 3.265625 -1.953125 L 3.265625 -2.34375 L 1.1875 -2.34375 L 1.1875 -3.71875 L 2.046875 -3.71875 C 2.125 -3.71875 2.203125 -3.703125 2.265625 -3.703125 L 3.4375 -3.703125 L 3.4375 -4.125 L 0.578125 -4.125 L 0.578125 0 Z M 3.53125 0 " id="path84" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-13" overflow="visible">
+<svg:path d="M 2.921875 0 L 1.65625 -1.359375 L 2.8125 -2.65625 L 2.28125 -2.65625 L 1.4375 -1.671875 L 0.578125 -2.65625 L 0.03125 -2.65625 L 1.234375 -1.359375 L 0 0 L 0.53125 0 L 1.4375 -1.125 L 2.375 0 Z M 2.921875 0 " id="path87" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-14" overflow="visible">
+<svg:path d="M 2.609375 0 L 2.609375 -1.71875 C 2.609375 -2.328125 2.140625 -2.734375 1.546875 -2.734375 C 1.171875 -2.734375 0.890625 -2.65625 0.546875 -2.484375 L 0.578125 -2.046875 C 0.78125 -2.171875 1.078125 -2.359375 1.546875 -2.359375 C 1.8125 -2.359375 2.078125 -2.15625 2.078125 -1.71875 L 2.078125 -1.46875 C 1.203125 -1.4375 0.328125 -1.265625 0.328125 -0.703125 C 0.328125 -0.40625 0.53125 0.0625 1.0625 0.0625 C 1.3125 0.0625 1.78125 0 2.09375 -0.234375 L 2.09375 0 Z M 2.078125 -0.84375 C 2.078125 -0.734375 2.078125 -0.578125 1.875 -0.453125 C 1.6875 -0.34375 1.453125 -0.328125 1.390625 -0.328125 C 1.0625 -0.328125 0.8125 -0.484375 0.8125 -0.703125 C 0.8125 -1.09375 1.8125 -1.125 2.078125 -1.140625 Z M 2.078125 -0.84375 " id="path90" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-15" overflow="visible">
+<svg:path d="M 1 0 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 Z M 1 0 " id="path93" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-16" overflow="visible">
+<svg:path d="M 2.28125 -0.78125 C 2.28125 -0.890625 2.28125 -1.109375 2.015625 -1.34375 C 1.796875 -1.546875 1.59375 -1.578125 1.296875 -1.640625 C 0.953125 -1.703125 0.671875 -1.75 0.671875 -2.015625 C 0.671875 -2.359375 1.109375 -2.359375 1.203125 -2.359375 C 1.546875 -2.359375 1.796875 -2.28125 2.09375 -2.125 L 2.171875 -2.546875 C 1.765625 -2.71875 1.46875 -2.734375 1.265625 -2.734375 C 1.109375 -2.734375 0.203125 -2.734375 0.203125 -1.953125 C 0.203125 -1.671875 0.359375 -1.515625 0.4375 -1.4375 C 0.65625 -1.234375 0.90625 -1.1875 1.21875 -1.125 C 1.5 -1.0625 1.828125 -1.015625 1.828125 -0.71875 C 1.828125 -0.34375 1.328125 -0.34375 1.234375 -0.34375 C 0.859375 -0.34375 0.5 -0.484375 0.265625 -0.65625 L 0.171875 -0.203125 C 0.375 -0.09375 0.75 0.0625 1.234375 0.0625 C 1.515625 0.0625 1.765625 0.015625 2 -0.140625 C 2.21875 -0.3125 2.28125 -0.578125 2.28125 -0.78125 Z M 2.28125 -0.78125 " id="path96" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-17" overflow="visible">
+<svg:path d="M 1 0 L 1 -2.65625 L 0.5 -2.65625 L 0.5 0 Z M 1.0625 -3.34375 L 1.0625 -3.953125 L 0.453125 -3.953125 L 0.453125 -3.34375 Z M 1.0625 -3.34375 " id="path99" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-18" overflow="visible">
+<svg:path d="M 2.765625 0 L 2.765625 -4.140625 L 2.265625 -4.140625 L 2.265625 -2.390625 C 1.875 -2.671875 1.5 -2.703125 1.3125 -2.703125 C 0.6875 -2.703125 0.21875 -2.078125 0.21875 -1.328125 C 0.21875 -0.5625 0.6875 0.0625 1.296875 0.0625 C 1.671875 0.0625 2.015625 -0.109375 2.25 -0.3125 L 2.25 0 Z M 2.25 -0.734375 C 2.09375 -0.5 1.875 -0.328125 1.578125 -0.328125 C 1.15625 -0.328125 0.734375 -0.625 0.734375 -1.3125 C 0.734375 -2.0625 1.234375 -2.3125 1.640625 -2.3125 C 1.890625 -2.3125 2.09375 -2.21875 2.25 -2.015625 Z M 2.25 -0.734375 " id="path102" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-19" overflow="visible">
+<svg:path d="M 2.78125 0 L 2.78125 -1.765625 C 2.78125 -2.234375 2.640625 -2.703125 1.90625 -2.703125 C 1.390625 -2.703125 1.109375 -2.40625 1 -2.28125 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 Z M 2.78125 0 " id="path105" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-20" overflow="visible">
+<svg:path d="M 4.234375 -2.65625 L 3.765625 -2.65625 L 3.203125 -0.859375 C 3.15625 -0.6875 3.09375 -0.484375 3.078125 -0.359375 L 3.0625 -0.359375 C 3.03125 -0.59375 2.828125 -1.234375 2.8125 -1.28125 L 2.375 -2.65625 L 1.921875 -2.65625 C 1.75 -2.140625 1.296875 -0.796875 1.25 -0.359375 L 1.234375 -0.359375 C 1.1875 -0.78125 0.75 -2.109375 0.65625 -2.390625 C 0.609375 -2.53125 0.609375 -2.546875 0.578125 -2.65625 L 0.09375 -2.65625 L 0.96875 0 L 1.46875 0 L 1.84375 -1.15625 C 1.921875 -1.453125 2.109375 -2.015625 2.140625 -2.28125 L 2.140625 -2.296875 C 2.15625 -2.171875 2.1875 -2.03125 2.234375 -1.890625 L 2.359375 -1.4375 L 2.8125 0 L 3.359375 0 Z M 4.234375 -2.65625 " id="path108" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-21" overflow="visible">
+<svg:path d="M 2.984375 -1 L 2.984375 -1.390625 L 2.359375 -1.390625 L 2.359375 -3.921875 L 1.765625 -3.921875 L 0.171875 -1.390625 L 0.171875 -1 L 1.84375 -1 L 1.84375 0 L 2.359375 0 L 2.359375 -1 Z M 1.890625 -1.390625 L 0.6875 -1.390625 C 0.859375 -1.671875 1.890625 -3.265625 1.890625 -3.625 Z M 1.890625 -1.390625 " id="path111" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-22" overflow="visible">
+<svg:path d="M 1.140625 0 L 1.140625 -0.53125 L 0.609375 -0.53125 L 0.609375 0 Z M 1.140625 0 " id="path114" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-23" overflow="visible">
+<svg:path d="M 2.90625 -2 C 2.90625 -3.625 2.171875 -4.046875 1.609375 -4.046875 C 1.078125 -4.046875 0.828125 -3.796875 0.65625 -3.609375 C 0.28125 -3.234375 0.265625 -2.8125 0.265625 -2.578125 C 0.265625 -1.8125 0.6875 -1.15625 1.265625 -1.15625 C 1.9375 -1.15625 2.3125 -1.59375 2.34375 -1.640625 C 2.25 -0.6875 1.796875 -0.265625 1.296875 -0.265625 C 0.984375 -0.265625 0.796875 -0.375 0.65625 -0.5 L 0.453125 -0.15625 C 0.75 0.0625 1.015625 0.125 1.296875 0.125 C 2.140625 0.125 2.90625 -0.71875 2.90625 -2 Z M 2.328125 -2.453125 C 2.328125 -2.015625 2.0625 -1.546875 1.546875 -1.546875 C 1.3125 -1.546875 1.140625 -1.609375 0.984375 -1.859375 C 0.828125 -2.09375 0.8125 -2.3125 0.8125 -2.578125 C 0.8125 -2.8125 0.8125 -3.078125 1 -3.34375 C 1.125 -3.53125 1.296875 -3.671875 1.59375 -3.671875 C 2.171875 -3.671875 2.296875 -2.96875 2.328125 -2.59375 C 2.328125 -2.546875 2.328125 -2.5 2.328125 -2.453125 Z M 2.328125 -2.453125 " id="path117" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-24" overflow="visible">
+<svg:path d="M 2.90625 -1.9375 C 2.90625 -2.21875 2.90625 -2.921875 2.625 -3.421875 C 2.328125 -3.953125 1.875 -4.046875 1.578125 -4.046875 C 1.3125 -4.046875 0.84375 -3.953125 0.546875 -3.4375 C 0.265625 -2.96875 0.25 -2.3125 0.25 -1.9375 C 0.25 -1.5 0.28125 -0.953125 0.53125 -0.5 C 0.78125 -0.015625 1.234375 0.125 1.578125 0.125 C 2.171875 0.125 2.5 -0.21875 2.6875 -0.59375 C 2.890625 -1.015625 2.90625 -1.5625 2.90625 -1.9375 Z M 2.390625 -2.015625 C 2.390625 -1.625 2.390625 -1.171875 2.25 -0.796875 C 2.078125 -0.359375 1.78125 -0.265625 1.578125 -0.265625 C 1.328125 -0.265625 1.046875 -0.40625 0.890625 -0.84375 C 0.78125 -1.203125 0.765625 -1.578125 0.765625 -2.015625 C 0.765625 -2.5625 0.765625 -3.640625 1.578125 -3.640625 C 2.390625 -3.640625 2.390625 -2.5625 2.390625 -2.015625 Z M 2.390625 -2.015625 " id="path120" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph1-25" overflow="visible">
+<svg:path d="M 2.703125 0 L 2.703125 -0.375 L 1.921875 -0.375 L 1.921875 -4.046875 L 1.78125 -4.046875 C 1.390625 -3.6875 0.90625 -3.65625 0.546875 -3.640625 L 0.546875 -3.265625 C 0.78125 -3.28125 1.078125 -3.28125 1.375 -3.40625 L 1.375 -0.375 L 0.578125 -0.375 L 0.578125 0 Z M 2.703125 0 " id="path123" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-0" overflow="visible">
+<svg:path d="" id="path126" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-1" overflow="visible">
+<svg:path d="M 5.625 -0.328125 C 5.625 -0.671875 5.390625 -0.671875 5 -0.671875 L 5 -3.296875 C 5 -3.515625 5 -4.765625 4.03125 -4.765625 C 3.703125 -4.765625 3.25 -4.625 2.953125 -4.1875 C 2.78125 -4.5625 2.484375 -4.765625 2.125 -4.765625 C 1.78125 -4.765625 1.453125 -4.609375 1.1875 -4.359375 C 1.171875 -4.6875 0.953125 -4.6875 0.75 -4.6875 L 0.40625 -4.6875 C 0.234375 -4.6875 -0.046875 -4.6875 -0.046875 -4.359375 C -0.046875 -4.03125 0.1875 -4.03125 0.578125 -4.03125 L 0.578125 -0.671875 C 0.1875 -0.671875 -0.046875 -0.671875 -0.046875 -0.328125 C -0.046875 0 0.25 0 0.40625 0 L 1.359375 0 C 1.53125 0 1.8125 0 1.8125 -0.328125 C 1.8125 -0.671875 1.578125 -0.671875 1.1875 -0.671875 L 1.1875 -2.609375 C 1.1875 -3.578125 1.640625 -4.09375 2.078125 -4.09375 C 2.328125 -4.09375 2.484375 -3.90625 2.484375 -3.203125 L 2.484375 -0.671875 C 2.28125 -0.671875 2 -0.671875 2 -0.328125 C 2 0 2.296875 0 2.453125 0 L 3.265625 0 C 3.4375 0 3.71875 0 3.71875 -0.328125 C 3.71875 -0.671875 3.484375 -0.671875 3.09375 -0.671875 L 3.09375 -2.609375 C 3.09375 -3.578125 3.546875 -4.09375 3.984375 -4.09375 C 4.234375 -4.09375 4.390625 -3.90625 4.390625 -3.203125 L 4.390625 -0.671875 C 4.1875 -0.671875 3.90625 -0.671875 3.90625 -0.328125 C 3.90625 0 4.203125 0 4.359375 0 L 5.171875 0 C 5.34375 0 5.625 0 5.625 -0.328125 Z M 5.625 -0.328125 " id="path129" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-2" overflow="visible">
+<svg:path d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 3.25 -1.703125 C 3.109375 -1.3125 3.046875 -1.109375 2.96875 -0.765625 C 2.90625 -0.984375 2.8125 -1.203125 2.734375 -1.421875 L 1.71875 -4.03125 L 2 -4.03125 C 2.15625 -4.03125 2.421875 -4.03125 2.421875 -4.359375 C 2.421875 -4.6875 2.171875 -4.6875 2 -4.6875 L 0.71875 -4.6875 C 0.546875 -4.6875 0.28125 -4.6875 0.28125 -4.359375 C 0.28125 -4.03125 0.5625 -4.03125 0.71875 -4.03125 L 1.0625 -4.03125 L 2.609375 -0.140625 C 2.640625 -0.03125 2.640625 0 2.640625 0 C 2.640625 0 2.375 0.921875 2.234375 1.1875 C 1.921875 1.78125 1.53125 1.8125 1.359375 1.8125 C 1.359375 1.8125 1.421875 1.71875 1.421875 1.578125 C 1.421875 1.3125 1.21875 1.109375 0.953125 1.109375 C 0.65625 1.109375 0.46875 1.3125 0.46875 1.59375 C 0.46875 2.046875 0.84375 2.484375 1.375 2.484375 C 2.46875 2.484375 2.953125 1.046875 3 0.921875 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 " id="path132" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-3" overflow="visible">
+<svg:path d="M 5.09375 -2.359375 C 5.09375 -3.71875 4.078125 -4.796875 2.859375 -4.796875 C 1.640625 -4.796875 0.625 -3.71875 0.625 -2.359375 C 0.625 -0.96875 1.65625 0.0625 2.859375 0.0625 C 4.046875 0.0625 5.09375 -0.984375 5.09375 -2.359375 Z M 4.328125 -2.421875 C 4.328125 -1.421875 3.65625 -0.59375 2.859375 -0.59375 C 2.046875 -0.59375 1.375 -1.421875 1.375 -2.421875 C 1.375 -3.421875 2.078125 -4.125 2.859375 -4.125 C 3.640625 -4.125 4.328125 -3.421875 4.328125 -2.421875 Z M 4.328125 -2.421875 " id="path135" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-4" overflow="visible">
+<svg:path d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 2.859375 -0.515625 L 1.671875 -4.03125 L 1.96875 -4.03125 C 2.140625 -4.03125 2.40625 -4.03125 2.40625 -4.359375 C 2.40625 -4.6875 2.140625 -4.6875 1.96875 -4.6875 L 0.703125 -4.6875 C 0.515625 -4.6875 0.265625 -4.6875 0.265625 -4.359375 C 0.265625 -4.03125 0.53125 -4.03125 0.703125 -4.03125 L 1.03125 -4.03125 L 2.28125 -0.328125 C 2.40625 0.046875 2.625 0.046875 2.859375 0.046875 C 3.0625 0.046875 3.3125 0.046875 3.4375 -0.3125 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 " id="path138" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-5" overflow="visible">
+<svg:path d="M 5.046875 -1.1875 C 5.046875 -1.484375 4.734375 -1.484375 4.671875 -1.484375 C 4.46875 -1.484375 4.390625 -1.453125 4.3125 -1.25 C 4.078125 -0.703125 3.484375 -0.59375 3.1875 -0.59375 C 2.359375 -0.59375 1.546875 -1.140625 1.375 -2.078125 L 4.625 -2.078125 C 4.84375 -2.078125 5.046875 -2.078125 5.046875 -2.484375 C 5.046875 -3.71875 4.359375 -4.796875 2.9375 -4.796875 C 1.640625 -4.796875 0.59375 -3.703125 0.59375 -2.359375 C 0.59375 -1.03125 1.703125 0.0625 3.109375 0.0625 C 4.546875 0.0625 5.046875 -0.921875 5.046875 -1.1875 Z M 4.28125 -2.734375 L 1.390625 -2.734375 C 1.53125 -3.53125 2.171875 -4.125 2.9375 -4.125 C 3.5 -4.125 4.1875 -3.859375 4.28125 -2.734375 Z M 4.28125 -2.734375 " id="path141" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-6" overflow="visible">
+<svg:path d="M 5.296875 -4.078125 C 5.296875 -4.296875 5.171875 -4.765625 4.265625 -4.765625 C 3.71875 -4.765625 3.015625 -4.5625 2.421875 -3.875 L 2.421875 -4.25 C 2.421875 -4.578125 2.359375 -4.6875 1.984375 -4.6875 L 0.78125 -4.6875 C 0.625 -4.6875 0.34375 -4.6875 0.34375 -4.359375 C 0.34375 -4.03125 0.609375 -4.03125 0.78125 -4.03125 L 1.671875 -4.03125 L 1.671875 -0.671875 L 0.78125 -0.671875 C 0.625 -0.671875 0.34375 -0.671875 0.34375 -0.34375 C 0.34375 0 0.609375 0 0.78125 0 L 3.625 0 C 3.796875 0 4.078125 0 4.078125 -0.328125 C 4.078125 -0.671875 3.796875 -0.671875 3.625 -0.671875 L 2.421875 -0.671875 L 2.421875 -2.03125 C 2.421875 -3.046875 3.0625 -4.09375 4.375 -4.09375 C 4.390625 -3.828125 4.578125 -3.609375 4.84375 -3.609375 C 5.09375 -3.609375 5.296875 -3.796875 5.296875 -4.078125 Z M 5.296875 -4.078125 " id="path144" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-7" overflow="visible">
+<svg:path d="M 5.09375 -0.328125 C 5.09375 -0.671875 4.828125 -0.671875 4.65625 -0.671875 L 3.234375 -0.671875 L 3.234375 -6.203125 C 3.234375 -6.546875 3.171875 -6.65625 2.796875 -6.65625 L 1.078125 -6.65625 C 0.90625 -6.65625 0.625 -6.65625 0.625 -6.3125 C 0.625 -5.984375 0.921875 -5.984375 1.0625 -5.984375 L 2.484375 -5.984375 L 2.484375 -0.671875 L 1.078125 -0.671875 C 0.90625 -0.671875 0.625 -0.671875 0.625 -0.328125 C 0.625 0 0.921875 0 1.0625 0 L 4.65625 0 C 4.8125 0 5.09375 0 5.09375 -0.328125 Z M 5.09375 -0.328125 " id="path147" style="stroke:none;"/>
+</svg:symbol>
+<svg:symbol id="glyph2-8" overflow="visible">
+<svg:path d="M 5.65625 -0.34375 C 5.65625 -0.671875 5.375 -0.671875 5.21875 -0.671875 C 4.765625 -0.671875 4.65625 -0.71875 4.5625 -0.75 L 4.5625 -3.109375 C 4.5625 -3.875 3.96875 -4.796875 2.40625 -4.796875 C 1.9375 -4.796875 0.828125 -4.796875 0.828125 -4 C 0.828125 -3.671875 1.0625 -3.5 1.3125 -3.5 C 1.484375 -3.5 1.78125 -3.59375 1.796875 -4 C 1.796875 -4.078125 1.8125 -4.09375 2.03125 -4.109375 C 2.171875 -4.125 2.3125 -4.125 2.421875 -4.125 C 3.25 -4.125 3.8125 -3.796875 3.8125 -3.015625 C 1.890625 -2.984375 0.546875 -2.4375 0.546875 -1.390625 C 0.546875 -0.640625 1.234375 0.0625 2.34375 0.0625 C 2.75 0.0625 3.421875 -0.015625 3.9375 -0.34375 C 4.171875 -0.015625 4.6875 0 5.109375 0 C 5.40625 0 5.65625 0 5.65625 -0.34375 Z M 3.8125 -1.453125 C 3.8125 -1.203125 3.8125 -0.984375 3.390625 -0.78125 C 3 -0.59375 2.5 -0.59375 2.421875 -0.59375 C 1.75 -0.59375 1.296875 -0.96875 1.296875 -1.390625 C 1.296875 -1.921875 2.234375 -2.328125 3.8125 -2.375 Z M 3.8125 -1.453125 " id="path150" style="stroke:none;"/>
+</svg:symbol>
+</svg:g>
+<svg:clipPath id="clip1">
+<svg:path d="M 0.167969 0 L 396.535156 0 L 396.535156 297.277344 L 0.167969 297.277344 Z M 0.167969 0 " id="path155"/>
+</svg:clipPath>
+<svg:clipPath id="clip3">
+<svg:path d="M 1 0.0117188 L 15.917969 0.0117188 L 15.917969 9 L 1 9 Z M 1 0.0117188 " id="path158"/>
+</svg:clipPath>
+<svg:clipPath id="clip4">
+<svg:path d="M 0.300781 10 L 15.917969 10 L 15.917969 22.789063 L 0.300781 22.789063 Z M 0.300781 10 " id="path161"/>
+</svg:clipPath>
+<svg:clipPath id="clip2">
+<svg:rect height="23" id="rect164" width="16" x="0" y="0"/>
+</svg:clipPath>
+<svg:g clip-path="url(#clip2)" id="surface5">
+<svg:g clip-path="url(#clip3)" clip-rule="nonzero" id="g169">
+<svg:path d="M 1.308594 0.0117188 C 1.246094 0.0117188 1.207031 0.03125 1.179688 0.0585938 C 1.152344 0.0859375 1.132813 0.121094 1.132813 0.1875 L 1.132813 8.109375 C 1.132813 8.171875 1.152344 8.210938 1.179688 8.238281 C 1.207031 8.265625 1.246094 8.285156 1.308594 8.285156 L 3.378906 8.285156 C 4.1875 8.285156 4.675781 8.101563 4.972656 7.714844 C 5.414063 7.1875 5.429688 6.339844 5.429688 5.035156 L 5.429688 3.257813 C 5.429688 1.957031 5.414063 1.109375 4.972656 0.578125 C 4.675781 0.195313 4.1875 0.0117188 3.378906 0.0117188 Z M 2.449219 0.976563 L 3.179688 0.976563 C 3.503906 0.976563 3.695313 1.03125 3.84375 1.210938 C 4.074219 1.484375 4.09375 2.042969 4.09375 3.167969 L 4.09375 5.128906 C 4.09375 6.25 4.074219 6.808594 3.84375 7.085938 C 3.695313 7.261719 3.503906 7.316406 3.179688 7.316406 L 2.449219 7.316406 Z M 15.039063 0.1875 C 15.039063 0.121094 15.019531 0.0859375 14.996094 0.0585938 C 14.964844 0.03125 14.929688 0.0117188 14.867188 0.0117188 L 13.898438 0.0117188 C 13.835938 0.0117188 13.796875 0.03125 13.769531 0.0585938 C 13.742188 0.0859375 13.722656 0.121094 13.722656 0.1875 L 13.722656 6.035156 C 13.722656 6.644531 13.675781 7.007813 13.480469 7.226563 C 13.34375 7.375 13.15625 7.445313 12.890625 7.445313 C 12.644531 7.445313 12.464844 7.382813 12.320313 7.226563 C 12.136719 7.019531 12.078125 6.667969 12.078125 6.035156 L 12.078125 0.1875 C 12.078125 0.121094 12.058594 0.0859375 12.03125 0.0546875 C 12.003906 0.03125 11.96875 0.0117188 11.902344 0.0117188 L 10.933594 0.0117188 C 10.875 0.0117188 10.835938 0.03125 10.808594 0.0546875 C 10.78125 0.0859375 10.761719 0.121094 10.761719 0.1875 L 10.761719 6.035156 C 10.761719 6.890625 10.878906 7.421875 11.214844 7.796875 C 11.566406 8.183594 12.101563 8.386719 12.90625 8.386719 C 13.722656 8.386719 14.246094 8.167969 14.566406 7.792969 C 14.949219 7.355469 15.039063 6.828125 15.039063 6.035156 Z M 8.785156 8.109375 C 8.785156 8.171875 8.765625 8.210938 8.738281 8.238281 C 8.710938 8.265625 8.671875 8.285156 8.613281 8.285156 L 7.550781 8.285156 C 7.488281 8.285156 7.453125 8.265625 7.425781 8.238281 C 7.398438 8.210938 7.378906 8.171875 7.378906 8.109375 L 7.378906 1.058594 L 6.132813 1.058594 C 6.070313 1.058594 6.035156 1.039063 6.007813 1.011719 C 5.976563 0.984375 5.960938 0.945313 5.960938 0.882813 L 5.960938 0.1875 C 5.960938 0.121094 5.976563 0.0859375 6.007813 0.0585938 C 6.035156 0.03125 6.070313 0.0117188 6.132813 0.0117188 L 10.027344 0.0117188 C 10.09375 0.0117188 10.128906 0.03125 10.15625 0.0585938 C 10.183594 0.0859375 10.203125 0.121094 10.203125 0.1875 L 10.203125 0.882813 C 10.203125 0.945313 10.183594 0.984375 10.15625 1.011719 C 10.128906 1.039063 10.09375 1.058594 10.027344 1.058594 L 8.785156 1.058594 L 8.785156 8.109375 " id="path167" style=" stroke:none;fill-rule:nonzero;fill:rgb(43.920898%,43.920898%,43.920898%);fill-opacity:1;"/>
+</svg:g>
+<svg:g clip-path="url(#clip4)" clip-rule="nonzero" id="g173">
+<svg:path d="M 15.917969 12.421875 L 12.59375 14.167969 C 8.289063 12.496094 7.929688 12.496094 3.625 14.167969 L 0.300781 12.421875 L 3.625 10.675781 C 7.929688 12.351563 8.289063 12.351563 12.59375 10.675781 Z M 15.917969 16.734375 L 12.59375 18.480469 C 8.289063 16.804688 7.929688 16.804688 3.625 18.480469 L 0.300781 16.734375 L 3.625 14.988281 C 7.929688 16.664063 8.289063 16.664063 12.59375 14.988281 Z M 15.917969 21.046875 L 12.59375 22.789063 C 8.289063 21.117188 7.929688 21.117188 3.625 22.789063 L 0.300781 21.046875 L 3.625 19.300781 C 7.929688 20.976563 8.289063 20.976563 12.59375 19.300781 L 15.917969 21.046875 " id="path171" style=" stroke:none;fill-rule:nonzero;fill:rgb(59.999084%,0%,0%);fill-opacity:1;"/>
+</svg:g>
+</svg:g>
+<svg:clipPath id="clip5">
+<svg:path d="M 0.167969 0 L 52 0 L 52 10 L 0.167969 10 Z M 0.167969 0 " id="path176"/>
+</svg:clipPath>
+</svg:defs>
+<svg:g id="g195" style="fill:#000000;fill-opacity:1" transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+<svg:use height="100%" id="use187" width="100%" x="26.680883" xlink:href="#glyph0-1" y="140.37027"/>
+<svg:use height="100%" id="use189" width="100%" x="34.096596" xlink:href="#glyph0-2" y="140.37027"/>
+<svg:use height="100%" id="use191" width="100%" x="39.726482" xlink:href="#glyph0-3" y="140.37027"/>
+<svg:use height="100%" id="use193" width="100%" x="42.329498" xlink:href="#glyph0-4" y="140.37027"/>
+</svg:g>
+<svg:g id="g201" style="fill:#000000;fill-opacity:1" transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+<svg:use height="100%" id="use197" width="100%" x="50.134193" xlink:href="#glyph0-3" y="140.37027"/>
+<svg:use height="100%" id="use199" width="100%" x="52.737213" xlink:href="#glyph0-4" y="140.37027"/>
+</svg:g>
+<svg:g id="g211" style="fill:#000000;fill-opacity:1" transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+<svg:use height="100%" id="use203" width="100%" x="60.552807" xlink:href="#glyph0-4" y="140.37027"/>
+<svg:use height="100%" id="use205" width="100%" x="64.729187" xlink:href="#glyph0-5" y="140.37027"/>
+<svg:use height="100%" id="use207" width="100%" x="70.177109" xlink:href="#glyph0-6" y="140.37027"/>
+<svg:use height="100%" id="use209" width="100%" x="78.833862" xlink:href="#glyph0-7" y="140.37027"/>
+</svg:g>
+<svg:g id="g227" style="fill:#000000;fill-opacity:1" transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+<svg:use height="100%" id="use213" width="100%" x="87.305382" xlink:href="#glyph0-7" y="140.37027"/>
+<svg:use height="100%" id="use215" width="100%" x="92.148582" xlink:href="#glyph0-8" y="140.37027"/>
+<svg:use height="100%" id="use217" width="100%" x="97.172661" xlink:href="#glyph0-9" y="140.37027"/>
+<svg:use height="100%" id="use219" width="100%" x="102.4092" xlink:href="#glyph0-6" y="140.37027"/>
+<svg:use height="100%" id="use221" width="100%" x="111.06596" xlink:href="#glyph0-10" y="140.37027"/>
+<svg:use height="100%" id="use223" width="100%" x="116.69584" xlink:href="#glyph0-11" y="140.37027"/>
+<svg:use height="100%" id="use225" width="100%" x="119.29886" xlink:href="#glyph0-7" y="140.37027"/>
+</svg:g>
+<svg:g id="g239" style="fill:#000000;fill-opacity:1" transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+<svg:use height="100%" id="use229" width="100%" x="127.77038" xlink:href="#glyph0-12" y="140.37027"/>
+<svg:use height="100%" id="use231" width="100%" x="131.70486" xlink:href="#glyph0-7" y="140.37027"/>
+<svg:use height="100%" id="use233" width="100%" x="136.54808" xlink:href="#glyph0-8" y="140.37027"/>
+<svg:use height="100%" id="use235" width="100%" x="141.57216" xlink:href="#glyph0-12" y="140.37027"/>
+<svg:use height="100%" id="use237" width="100%" x="145.50664" xlink:href="#glyph0-13" y="140.37027"/>
+</svg:g>
+<svg:rect height="37.660316" id="rect1267" style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3" width="52.643456" x="168.864" y="98.807709"/>
+<svg:rect height="68.436493" id="rect1269" style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3" width="89.088921" x="58.717697" y="175.74815"/>
+<svg:rect height="59.527596" id="rect1271" style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3" width="63.172146" x="282.65485" y="45.354359"/>
+<svg:text id="text1275" style="font-style:normal;font-weight:normal;font-size:30px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75" x="170.48381" xml:space="preserve" y="202.87978"><svg:tspan id="tspan1273" sodipodi:role="line" style="stroke-width:0.75" x="170.48381" y="202.87978">Awesome!</svg:tspan></svg:text>
+</svg:g>
+</svg:svg>
\ No newline at end of file
diff --git a/examples/basic1/osvgs/myoverlay.svg b/examples/basic1/osvgs/myoverlay.svg
new file mode 100644
index 0000000000000000000000000000000000000000..cd1a52fdc854253db3c624e6fb719ace99c1015d
--- /dev/null
+++ b/examples/basic1/osvgs/myoverlay.svg
@@ -0,0 +1,738 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   height="297.638pt"
+   version="1.2"
+   viewBox="0 0 396.85 297.638"
+   width="396.85pt"
+   id="svg353"
+   sodipodi:docname="myoverlay.svg"
+   inkscape:version="1.0.2-2 (e86c870879, 2021-01-15)">
+  <defs
+     id="defs357" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2411"
+     inkscape:window-height="1351"
+     id="namedview355"
+     showgrid="false"
+     inkscape:zoom="1.8520821"
+     inkscape:cx="264.49219"
+     inkscape:cy="198.47288"
+     inkscape:window-x="145"
+     inkscape:window-y="71"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="layer2" />
+  <metadata
+     id="metadata2">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer1"
+     inkscape:label="bg_layer"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <image
+       sodipodi:absref="C:\Users\tuhe\Documents\slider\examples\new_project\osvgs\tmp\myoverlay.png"
+       xlink:href="tmp/myoverlay.png"
+       y="0"
+       x="0"
+       id="image4444th"
+       style="image-rendering:optimizeQuality"
+       preserveAspectRatio="none"
+       height="100%"
+       width="100%" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="Layer 1"
+     style="display:inline">
+    <defs
+       id="defs179">
+      <g
+         id="g153">
+        <symbol
+           id="glyph0-0"
+           overflow="visible">
+          <path
+             d=""
+             style="stroke:none;"
+             id="path6" />
+        </symbol>
+        <symbol
+           id="glyph0-1"
+           overflow="visible">
+          <path
+             d="M 7.015625 -6.78125 L 7.015625 -7.5 L 0.390625 -7.5 L 0.390625 -6.78125 L 1.84375 -6.78125 C 1.984375 -6.78125 2.109375 -6.796875 2.25 -6.796875 L 3.21875 -6.796875 L 3.21875 0 L 4.1875 0 L 4.1875 -6.796875 L 5.15625 -6.796875 C 5.296875 -6.796875 5.421875 -6.78125 5.546875 -6.78125 Z M 7.015625 -6.78125 "
+             style="stroke:none;"
+             id="path9" />
+        </symbol>
+        <symbol
+           id="glyph0-2"
+           overflow="visible">
+          <path
+             d="M 4.734375 0 L 4.734375 -3.25 C 4.734375 -3.96875 4.578125 -4.953125 3.25 -4.953125 C 2.5625 -4.953125 2.046875 -4.625 1.703125 -4.171875 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.390625 2 -4.296875 2.828125 -4.296875 C 3.875 -4.296875 3.890625 -3.515625 3.890625 -3.171875 L 3.890625 0 Z M 4.734375 0 "
+             style="stroke:none;"
+             id="path12" />
+        </symbol>
+        <symbol
+           id="glyph0-3"
+           overflow="visible">
+          <path
+             d="M 1.703125 0 L 1.703125 -4.828125 L 0.875 -4.828125 L 0.875 0 Z M 1.78125 -6.171875 L 1.78125 -7.140625 L 0.8125 -7.140625 L 0.8125 -6.171875 Z M 1.78125 -6.171875 "
+             style="stroke:none;"
+             id="path15" />
+        </symbol>
+        <symbol
+           id="glyph0-4"
+           overflow="visible">
+          <path
+             d="M 3.921875 -1.390625 C 3.921875 -2 3.515625 -2.359375 3.5 -2.390625 C 3.078125 -2.78125 2.78125 -2.84375 2.234375 -2.9375 C 1.640625 -3.0625 1.125 -3.171875 1.125 -3.703125 C 1.125 -4.375 1.921875 -4.375 2.0625 -4.375 C 2.40625 -4.375 2.984375 -4.328125 3.609375 -3.96875 L 3.734375 -4.671875 C 3.171875 -4.9375 2.71875 -5.015625 2.171875 -5.015625 C 1.890625 -5.015625 0.359375 -5.015625 0.359375 -3.59375 C 0.359375 -3.0625 0.671875 -2.71875 0.953125 -2.5 C 1.28125 -2.265625 1.53125 -2.21875 2.125 -2.109375 C 2.515625 -2.03125 3.140625 -1.890625 3.140625 -1.3125 C 3.140625 -0.5625 2.28125 -0.5625 2.125 -0.5625 C 1.234375 -0.5625 0.625 -0.96875 0.4375 -1.09375 L 0.3125 -0.359375 C 0.65625 -0.1875 1.25 0.125 2.140625 0.125 C 2.328125 0.125 2.921875 0.125 3.390625 -0.234375 C 3.734375 -0.484375 3.921875 -0.921875 3.921875 -1.390625 Z M 3.921875 -1.390625 "
+             style="stroke:none;"
+             id="path18" />
+        </symbol>
+        <symbol
+           id="glyph0-5"
+           overflow="visible">
+          <path
+             d="M 5.109375 -2.390625 C 5.109375 -3.859375 4.015625 -5.015625 2.71875 -5.015625 C 1.390625 -5.015625 0.328125 -3.828125 0.328125 -2.390625 C 0.328125 -0.953125 1.4375 0.125 2.71875 0.125 C 4.015625 0.125 5.109375 -0.984375 5.109375 -2.390625 Z M 4.265625 -2.5 C 4.265625 -1.21875 3.515625 -0.578125 2.71875 -0.578125 C 1.953125 -0.578125 1.171875 -1.1875 1.171875 -2.5 C 1.171875 -3.828125 2 -4.359375 2.71875 -4.359375 C 3.46875 -4.359375 4.265625 -3.796875 4.265625 -2.5 Z M 4.265625 -2.5 "
+             style="stroke:none;"
+             id="path21" />
+        </symbol>
+        <symbol
+           id="glyph0-6"
+           overflow="visible">
+          <path
+             d="M 7.765625 0 L 7.765625 -3.25 C 7.765625 -3.96875 7.59375 -4.953125 6.265625 -4.953125 C 5.625 -4.953125 5.046875 -4.65625 4.65625 -4.0625 C 4.359375 -4.890625 3.609375 -4.953125 3.25 -4.953125 C 2.46875 -4.953125 1.953125 -4.515625 1.671875 -4.109375 L 1.671875 -4.90625 L 0.875 -4.90625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.40625 2.03125 -4.296875 2.828125 -4.296875 C 3.84375 -4.296875 3.90625 -3.578125 3.90625 -3.171875 L 3.90625 0 L 4.75 0 L 4.75 -2.671875 C 4.75 -3.40625 5.046875 -4.296875 5.84375 -4.296875 C 6.859375 -4.296875 6.921875 -3.578125 6.921875 -3.171875 L 6.921875 0 Z M 7.765625 0 "
+             style="stroke:none;"
+             id="path24" />
+        </symbol>
+        <symbol
+           id="glyph0-7"
+           overflow="visible">
+          <path
+             d="M 4.515625 -2.390625 C 4.515625 -2.75 4.5 -3.578125 4.078125 -4.21875 C 3.625 -4.90625 2.96875 -5.015625 2.5625 -5.015625 C 1.359375 -5.015625 0.375 -3.859375 0.375 -2.46875 C 0.375 -1.03125 1.421875 0.125 2.734375 0.125 C 3.421875 0.125 4.046875 -0.140625 4.46875 -0.453125 L 4.40625 -1.15625 C 3.71875 -0.59375 3 -0.546875 2.75 -0.546875 C 1.875 -0.546875 1.171875 -1.3125 1.140625 -2.390625 Z M 3.890625 -2.984375 L 1.203125 -2.984375 C 1.375 -3.8125 1.953125 -4.359375 2.5625 -4.359375 C 3.140625 -4.359375 3.75 -3.984375 3.890625 -2.984375 Z M 3.890625 -2.984375 "
+             style="stroke:none;"
+             id="path27" />
+        </symbol>
+        <symbol
+           id="glyph0-8"
+           overflow="visible">
+          <path
+             d="M 5.015625 0 L 2.828125 -2.5 L 4.828125 -4.828125 L 3.9375 -4.828125 L 2.46875 -3.03125 L 0.96875 -4.828125 L 0.0625 -4.828125 L 2.109375 -2.5 L 0 0 L 0.890625 0 L 2.46875 -2.046875 L 4.109375 0 Z M 5.015625 0 "
+             style="stroke:none;"
+             id="path30" />
+        </symbol>
+        <symbol
+           id="glyph0-9"
+           overflow="visible">
+          <path
+             d="M 4.453125 0 L 4.453125 -3.140625 C 4.453125 -4.265625 3.65625 -5.015625 2.65625 -5.015625 C 1.953125 -5.015625 1.453125 -4.84375 0.953125 -4.546875 L 1.015625 -3.828125 C 1.578125 -4.234375 2.125 -4.375 2.65625 -4.375 C 3.171875 -4.375 3.609375 -3.9375 3.609375 -3.140625 L 3.609375 -2.671875 C 1.96875 -2.640625 0.59375 -2.1875 0.59375 -1.234375 C 0.59375 -0.765625 0.875 0.125 1.828125 0.125 C 1.984375 0.125 3 0.09375 3.640625 -0.390625 L 3.640625 0 Z M 3.609375 -1.4375 C 3.609375 -1.234375 3.609375 -0.953125 3.234375 -0.75 C 2.921875 -0.5625 2.5 -0.546875 2.390625 -0.546875 C 1.859375 -0.546875 1.375 -0.796875 1.375 -1.25 C 1.375 -2.015625 3.140625 -2.09375 3.609375 -2.109375 Z M 3.609375 -1.4375 "
+             style="stroke:none;"
+             id="path33" />
+        </symbol>
+        <symbol
+           id="glyph0-10"
+           overflow="visible">
+          <path
+             d="M 5.234375 -2.421875 C 5.234375 -3.734375 4.546875 -4.953125 3.5 -4.953125 C 2.84375 -4.953125 2.203125 -4.734375 1.703125 -4.296875 L 1.703125 -4.828125 L 0.890625 -4.828125 L 0.890625 2.109375 L 1.75 2.109375 L 1.75 -0.5 C 2.078125 -0.1875 2.5625 0.125 3.21875 0.125 C 4.265625 0.125 5.234375 -0.953125 5.234375 -2.421875 Z M 4.375 -2.421875 C 4.375 -1.3125 3.609375 -0.546875 2.78125 -0.546875 C 2.359375 -0.546875 2.0625 -0.765625 1.84375 -1.0625 C 1.75 -1.21875 1.75 -1.234375 1.75 -1.4375 L 1.75 -3.625 C 2 -4 2.421875 -4.265625 2.890625 -4.265625 C 3.71875 -4.265625 4.375 -3.4375 4.375 -2.421875 Z M 4.375 -2.421875 "
+             style="stroke:none;"
+             id="path36" />
+        </symbol>
+        <symbol
+           id="glyph0-11"
+           overflow="visible">
+          <path
+             d="M 1.703125 0 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 Z M 1.703125 0 "
+             style="stroke:none;"
+             id="path39" />
+        </symbol>
+        <symbol
+           id="glyph0-12"
+           overflow="visible">
+          <path
+             d="M 3.609375 -0.296875 L 3.4375 -0.9375 C 3.15625 -0.703125 2.8125 -0.578125 2.46875 -0.578125 C 2.0625 -0.578125 1.90625 -0.90625 1.90625 -1.484375 L 1.90625 -4.203125 L 3.4375 -4.203125 L 3.4375 -4.828125 L 1.90625 -4.828125 L 1.90625 -6.21875 L 1.15625 -6.21875 L 1.15625 -4.828125 L 0.203125 -4.828125 L 0.203125 -4.203125 L 1.125 -4.203125 L 1.125 -1.296875 C 1.125 -0.640625 1.28125 0.125 2.03125 0.125 C 2.78125 0.125 3.34375 -0.15625 3.609375 -0.296875 Z M 3.609375 -0.296875 "
+             style="stroke:none;"
+             id="path42" />
+        </symbol>
+        <symbol
+           id="glyph0-13"
+           overflow="visible">
+          <path
+             d="M 2.1875 -7.5625 L 1.28125 -7.5625 L 1.375 -2.375 L 1.375 -1.90625 L 2.109375 -1.90625 L 2.109375 -2.375 Z M 2.1875 0 L 2.1875 -0.90625 L 1.28125 -0.90625 L 1.28125 0 Z M 2.1875 0 "
+             style="stroke:none;"
+             id="path45" />
+        </symbol>
+        <symbol
+           id="glyph1-0"
+           overflow="visible">
+          <path
+             d=""
+             style="stroke:none;"
+             id="path48" />
+        </symbol>
+        <symbol
+           id="glyph1-1"
+           overflow="visible">
+          <path
+             d="M 2.84375 0 L 2.84375 -0.453125 L 1.6875 -0.453125 C 1.625 -0.453125 1.546875 -0.453125 1.46875 -0.453125 L 0.796875 -0.453125 L 1.71875 -1.265625 C 1.828125 -1.359375 2.125 -1.59375 2.234375 -1.6875 C 2.5 -1.921875 2.84375 -2.234375 2.84375 -2.75 C 2.84375 -3.421875 2.34375 -4.046875 1.5 -4.046875 C 0.859375 -4.046875 0.46875 -3.703125 0.265625 -3.09375 L 0.546875 -2.734375 C 0.6875 -3.234375 0.890625 -3.625 1.40625 -3.625 C 1.90625 -3.625 2.296875 -3.28125 2.296875 -2.734375 C 2.296875 -2.25 2 -1.96875 1.640625 -1.625 C 1.515625 -1.5 1.203125 -1.234375 1.078125 -1.109375 C 0.90625 -0.96875 0.484375 -0.5625 0.3125 -0.40625 L 0.3125 0 Z M 2.84375 0 "
+             style="stroke:none;"
+             id="path51" />
+        </symbol>
+        <symbol
+           id="glyph1-2"
+           overflow="visible">
+          <path
+             d="M 4.21875 -2.03125 C 4.21875 -3.203125 3.34375 -4.140625 2.28125 -4.140625 L 0.578125 -4.140625 L 0.578125 0 L 2.28125 0 C 3.359375 0 4.21875 -0.90625 4.21875 -2.03125 Z M 3.640625 -2.046875 C 3.640625 -0.9375 2.90625 -0.359375 2.125 -0.359375 L 1.171875 -0.359375 L 1.171875 -3.796875 L 2.125 -3.796875 C 2.9375 -3.796875 3.640625 -3.140625 3.640625 -2.046875 Z M 3.640625 -2.046875 "
+             style="stroke:none;"
+             id="path54" />
+        </symbol>
+        <symbol
+           id="glyph1-3"
+           overflow="visible">
+          <path
+             d="M 4.09375 -3.6875 L 4.09375 -4.09375 L 0.234375 -4.09375 L 0.234375 -3.6875 L 1.09375 -3.6875 C 1.15625 -3.6875 1.234375 -3.6875 1.296875 -3.6875 L 1.859375 -3.6875 L 1.859375 0 L 2.46875 0 L 2.46875 -3.6875 L 3.03125 -3.6875 C 3.09375 -3.6875 3.171875 -3.6875 3.234375 -3.6875 Z M 4.09375 -3.6875 "
+             style="stroke:none;"
+             id="path57" />
+        </symbol>
+        <symbol
+           id="glyph1-4"
+           overflow="visible">
+          <path
+             d="M 3.765625 -1.390625 L 3.765625 -4.140625 L 3.25 -4.140625 L 3.25 -1.390625 C 3.25 -0.59375 2.703125 -0.234375 2.203125 -0.234375 C 1.6875 -0.234375 1.1875 -0.59375 1.1875 -1.390625 L 1.1875 -4.140625 L 0.578125 -4.140625 L 0.578125 -1.390625 C 0.578125 -0.515625 1.328125 0.125 2.1875 0.125 C 3.046875 0.125 3.765625 -0.53125 3.765625 -1.390625 Z M 3.765625 -1.390625 "
+             style="stroke:none;"
+             id="path60" />
+        </symbol>
+        <symbol
+           id="glyph1-5"
+           overflow="visible">
+          <path
+             d="M 3.71875 -0.28125 L 3.6875 -0.734375 C 3.5 -0.609375 3.3125 -0.484375 3.09375 -0.421875 C 2.890625 -0.359375 2.671875 -0.359375 2.453125 -0.359375 C 2.0625 -0.359375 1.6875 -0.546875 1.421875 -0.859375 C 1.140625 -1.1875 1 -1.625 1 -2.078125 C 1 -2.515625 1.140625 -2.953125 1.421875 -3.28125 C 1.6875 -3.59375 2.0625 -3.796875 2.453125 -3.796875 C 2.65625 -3.796875 2.84375 -3.765625 3.03125 -3.71875 C 3.21875 -3.65625 3.390625 -3.5625 3.5625 -3.453125 L 3.65625 -4 C 3.46875 -4.0625 3.265625 -4.125 3.0625 -4.15625 C 2.859375 -4.203125 2.65625 -4.203125 2.453125 -4.203125 C 1.90625 -4.203125 1.390625 -3.96875 1 -3.578125 C 0.609375 -3.171875 0.40625 -2.625 0.40625 -2.078125 C 0.40625 -1.515625 0.609375 -0.96875 1 -0.5625 C 1.390625 -0.171875 1.90625 0.0625 2.453125 0.0625 C 2.6875 0.0625 2.90625 0.046875 3.109375 0 C 3.328125 -0.0625 3.53125 -0.15625 3.71875 -0.28125 Z M 3.71875 -0.28125 "
+             style="stroke:none;"
+             id="path63" />
+        </symbol>
+        <symbol
+           id="glyph1-6"
+           overflow="visible">
+          <path
+             d="M 2.984375 -1.3125 C 2.984375 -2.09375 2.359375 -2.734375 1.578125 -2.734375 C 0.8125 -2.734375 0.171875 -2.09375 0.171875 -1.3125 C 0.171875 -0.546875 0.8125 0.0625 1.578125 0.0625 C 2.359375 0.0625 2.984375 -0.546875 2.984375 -1.3125 Z M 2.46875 -1.375 C 2.46875 -0.6875 2.046875 -0.359375 1.578125 -0.359375 C 1.109375 -0.359375 0.703125 -0.703125 0.703125 -1.375 C 0.703125 -2.046875 1.140625 -2.34375 1.578125 -2.34375 C 2.03125 -2.34375 2.46875 -2.03125 2.46875 -1.375 Z M 2.46875 -1.375 "
+             style="stroke:none;"
+             id="path66" />
+        </symbol>
+        <symbol
+           id="glyph1-7"
+           overflow="visible">
+          <path
+             d="M 4.53125 0 L 4.53125 -1.765625 C 4.53125 -2.234375 4.40625 -2.703125 3.671875 -2.703125 C 3.15625 -2.703125 2.859375 -2.421875 2.703125 -2.21875 C 2.65625 -2.390625 2.5 -2.703125 1.90625 -2.703125 C 1.5625 -2.703125 1.234375 -2.578125 0.96875 -2.25 L 0.96875 -2.6875 L 0.5 -2.6875 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 L 2.78125 0 L 2.78125 -1.453125 C 2.78125 -1.84375 2.9375 -2.3125 3.40625 -2.3125 C 4.015625 -2.3125 4.015625 -1.890625 4.015625 -1.71875 L 4.015625 0 Z M 4.53125 0 "
+             style="stroke:none;"
+             id="path69" />
+        </symbol>
+        <symbol
+           id="glyph1-8"
+           overflow="visible">
+          <path
+             d="M 3.0625 -1.328125 C 3.0625 -2.046875 2.65625 -2.703125 2.078125 -2.703125 C 1.796875 -2.703125 1.359375 -2.625 1.015625 -2.359375 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 1.15625 L 1.03125 1.15625 L 1.03125 -0.28125 C 1.34375 0 1.6875 0.0625 1.890625 0.0625 C 2.515625 0.0625 3.0625 -0.546875 3.0625 -1.328125 Z M 2.53125 -1.328125 C 2.53125 -0.734375 2.09375 -0.328125 1.625 -0.328125 C 1.53125 -0.328125 1.390625 -0.34375 1.234375 -0.46875 C 1.046875 -0.609375 1.03125 -0.703125 1.03125 -0.8125 L 1.03125 -1.984375 C 1.15625 -2.15625 1.390625 -2.296875 1.6875 -2.296875 C 2.15625 -2.296875 2.53125 -1.859375 2.53125 -1.328125 Z M 2.53125 -1.328125 "
+             style="stroke:none;"
+             id="path72" />
+        </symbol>
+        <symbol
+           id="glyph1-9"
+           overflow="visible">
+          <path
+             d="M 2.78125 0 L 2.78125 -2.65625 L 2.25 -2.65625 L 2.25 -0.921875 C 2.25 -0.4375 1.84375 -0.296875 1.5 -0.296875 C 1.0625 -0.296875 1.015625 -0.40625 1.015625 -0.6875 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 -0.65625 C 0.5 -0.125 0.734375 0.0625 1.140625 0.0625 C 1.390625 0.0625 1.921875 0.015625 2.28125 -0.28125 L 2.28125 0 Z M 2.78125 0 "
+             style="stroke:none;"
+             id="path75" />
+        </symbol>
+        <symbol
+           id="glyph1-10"
+           overflow="visible">
+          <path
+             d="M 2.109375 -0.15625 L 2.015625 -0.546875 C 1.8125 -0.40625 1.609375 -0.359375 1.4375 -0.359375 C 1.1875 -0.359375 1.125 -0.59375 1.125 -0.875 L 1.125 -2.28125 L 2 -2.28125 L 2 -2.65625 L 1.125 -2.65625 L 1.125 -3.40625 L 0.65625 -3.40625 L 0.65625 -2.65625 L 0.125 -2.65625 L 0.125 -2.28125 L 0.640625 -2.28125 L 0.640625 -0.765625 C 0.640625 -0.359375 0.75 0.0625 1.171875 0.0625 C 1.609375 0.0625 1.9375 -0.078125 2.109375 -0.15625 Z M 2.109375 -0.15625 "
+             style="stroke:none;"
+             id="path78" />
+        </symbol>
+        <symbol
+           id="glyph1-11"
+           overflow="visible">
+          <path
+             d="M 2.625 -1.3125 C 2.625 -1.578125 2.59375 -1.984375 2.359375 -2.328125 C 2.15625 -2.625 1.796875 -2.734375 1.5 -2.734375 C 0.765625 -2.734375 0.203125 -2.09375 0.203125 -1.34375 C 0.203125 -0.578125 0.8125 0.0625 1.59375 0.0625 C 1.9375 0.0625 2.296875 -0.046875 2.609375 -0.234375 L 2.5625 -0.65625 C 2.234375 -0.40625 1.859375 -0.328125 1.59375 -0.328125 C 1.078125 -0.328125 0.6875 -0.765625 0.671875 -1.3125 Z M 2.265625 -1.671875 L 0.703125 -1.671875 C 0.84375 -2.140625 1.203125 -2.34375 1.5 -2.34375 C 1.765625 -2.34375 2.15625 -2.21875 2.265625 -1.671875 Z M 2.265625 -1.671875 "
+             style="stroke:none;"
+             id="path81" />
+        </symbol>
+        <symbol
+           id="glyph1-12"
+           overflow="visible">
+          <path
+             d="M 3.53125 0 L 3.53125 -0.46875 L 3 -0.46875 L 1.5 -0.453125 L 1.1875 -0.453125 L 1.1875 -1.953125 L 3.265625 -1.953125 L 3.265625 -2.34375 L 1.1875 -2.34375 L 1.1875 -3.71875 L 2.046875 -3.71875 C 2.125 -3.71875 2.203125 -3.703125 2.265625 -3.703125 L 3.4375 -3.703125 L 3.4375 -4.125 L 0.578125 -4.125 L 0.578125 0 Z M 3.53125 0 "
+             style="stroke:none;"
+             id="path84" />
+        </symbol>
+        <symbol
+           id="glyph1-13"
+           overflow="visible">
+          <path
+             d="M 2.921875 0 L 1.65625 -1.359375 L 2.8125 -2.65625 L 2.28125 -2.65625 L 1.4375 -1.671875 L 0.578125 -2.65625 L 0.03125 -2.65625 L 1.234375 -1.359375 L 0 0 L 0.53125 0 L 1.4375 -1.125 L 2.375 0 Z M 2.921875 0 "
+             style="stroke:none;"
+             id="path87" />
+        </symbol>
+        <symbol
+           id="glyph1-14"
+           overflow="visible">
+          <path
+             d="M 2.609375 0 L 2.609375 -1.71875 C 2.609375 -2.328125 2.140625 -2.734375 1.546875 -2.734375 C 1.171875 -2.734375 0.890625 -2.65625 0.546875 -2.484375 L 0.578125 -2.046875 C 0.78125 -2.171875 1.078125 -2.359375 1.546875 -2.359375 C 1.8125 -2.359375 2.078125 -2.15625 2.078125 -1.71875 L 2.078125 -1.46875 C 1.203125 -1.4375 0.328125 -1.265625 0.328125 -0.703125 C 0.328125 -0.40625 0.53125 0.0625 1.0625 0.0625 C 1.3125 0.0625 1.78125 0 2.09375 -0.234375 L 2.09375 0 Z M 2.078125 -0.84375 C 2.078125 -0.734375 2.078125 -0.578125 1.875 -0.453125 C 1.6875 -0.34375 1.453125 -0.328125 1.390625 -0.328125 C 1.0625 -0.328125 0.8125 -0.484375 0.8125 -0.703125 C 0.8125 -1.09375 1.8125 -1.125 2.078125 -1.140625 Z M 2.078125 -0.84375 "
+             style="stroke:none;"
+             id="path90" />
+        </symbol>
+        <symbol
+           id="glyph1-15"
+           overflow="visible">
+          <path
+             d="M 1 0 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 Z M 1 0 "
+             style="stroke:none;"
+             id="path93" />
+        </symbol>
+        <symbol
+           id="glyph1-16"
+           overflow="visible">
+          <path
+             d="M 2.28125 -0.78125 C 2.28125 -0.890625 2.28125 -1.109375 2.015625 -1.34375 C 1.796875 -1.546875 1.59375 -1.578125 1.296875 -1.640625 C 0.953125 -1.703125 0.671875 -1.75 0.671875 -2.015625 C 0.671875 -2.359375 1.109375 -2.359375 1.203125 -2.359375 C 1.546875 -2.359375 1.796875 -2.28125 2.09375 -2.125 L 2.171875 -2.546875 C 1.765625 -2.71875 1.46875 -2.734375 1.265625 -2.734375 C 1.109375 -2.734375 0.203125 -2.734375 0.203125 -1.953125 C 0.203125 -1.671875 0.359375 -1.515625 0.4375 -1.4375 C 0.65625 -1.234375 0.90625 -1.1875 1.21875 -1.125 C 1.5 -1.0625 1.828125 -1.015625 1.828125 -0.71875 C 1.828125 -0.34375 1.328125 -0.34375 1.234375 -0.34375 C 0.859375 -0.34375 0.5 -0.484375 0.265625 -0.65625 L 0.171875 -0.203125 C 0.375 -0.09375 0.75 0.0625 1.234375 0.0625 C 1.515625 0.0625 1.765625 0.015625 2 -0.140625 C 2.21875 -0.3125 2.28125 -0.578125 2.28125 -0.78125 Z M 2.28125 -0.78125 "
+             style="stroke:none;"
+             id="path96" />
+        </symbol>
+        <symbol
+           id="glyph1-17"
+           overflow="visible">
+          <path
+             d="M 1 0 L 1 -2.65625 L 0.5 -2.65625 L 0.5 0 Z M 1.0625 -3.34375 L 1.0625 -3.953125 L 0.453125 -3.953125 L 0.453125 -3.34375 Z M 1.0625 -3.34375 "
+             style="stroke:none;"
+             id="path99" />
+        </symbol>
+        <symbol
+           id="glyph1-18"
+           overflow="visible">
+          <path
+             d="M 2.765625 0 L 2.765625 -4.140625 L 2.265625 -4.140625 L 2.265625 -2.390625 C 1.875 -2.671875 1.5 -2.703125 1.3125 -2.703125 C 0.6875 -2.703125 0.21875 -2.078125 0.21875 -1.328125 C 0.21875 -0.5625 0.6875 0.0625 1.296875 0.0625 C 1.671875 0.0625 2.015625 -0.109375 2.25 -0.3125 L 2.25 0 Z M 2.25 -0.734375 C 2.09375 -0.5 1.875 -0.328125 1.578125 -0.328125 C 1.15625 -0.328125 0.734375 -0.625 0.734375 -1.3125 C 0.734375 -2.0625 1.234375 -2.3125 1.640625 -2.3125 C 1.890625 -2.3125 2.09375 -2.21875 2.25 -2.015625 Z M 2.25 -0.734375 "
+             style="stroke:none;"
+             id="path102" />
+        </symbol>
+        <symbol
+           id="glyph1-19"
+           overflow="visible">
+          <path
+             d="M 2.78125 0 L 2.78125 -1.765625 C 2.78125 -2.234375 2.640625 -2.703125 1.90625 -2.703125 C 1.390625 -2.703125 1.109375 -2.40625 1 -2.28125 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 Z M 2.78125 0 "
+             style="stroke:none;"
+             id="path105" />
+        </symbol>
+        <symbol
+           id="glyph1-20"
+           overflow="visible">
+          <path
+             d="M 4.234375 -2.65625 L 3.765625 -2.65625 L 3.203125 -0.859375 C 3.15625 -0.6875 3.09375 -0.484375 3.078125 -0.359375 L 3.0625 -0.359375 C 3.03125 -0.59375 2.828125 -1.234375 2.8125 -1.28125 L 2.375 -2.65625 L 1.921875 -2.65625 C 1.75 -2.140625 1.296875 -0.796875 1.25 -0.359375 L 1.234375 -0.359375 C 1.1875 -0.78125 0.75 -2.109375 0.65625 -2.390625 C 0.609375 -2.53125 0.609375 -2.546875 0.578125 -2.65625 L 0.09375 -2.65625 L 0.96875 0 L 1.46875 0 L 1.84375 -1.15625 C 1.921875 -1.453125 2.109375 -2.015625 2.140625 -2.28125 L 2.140625 -2.296875 C 2.15625 -2.171875 2.1875 -2.03125 2.234375 -1.890625 L 2.359375 -1.4375 L 2.8125 0 L 3.359375 0 Z M 4.234375 -2.65625 "
+             style="stroke:none;"
+             id="path108" />
+        </symbol>
+        <symbol
+           id="glyph1-21"
+           overflow="visible">
+          <path
+             d="M 2.984375 -1 L 2.984375 -1.390625 L 2.359375 -1.390625 L 2.359375 -3.921875 L 1.765625 -3.921875 L 0.171875 -1.390625 L 0.171875 -1 L 1.84375 -1 L 1.84375 0 L 2.359375 0 L 2.359375 -1 Z M 1.890625 -1.390625 L 0.6875 -1.390625 C 0.859375 -1.671875 1.890625 -3.265625 1.890625 -3.625 Z M 1.890625 -1.390625 "
+             style="stroke:none;"
+             id="path111" />
+        </symbol>
+        <symbol
+           id="glyph1-22"
+           overflow="visible">
+          <path
+             d="M 1.140625 0 L 1.140625 -0.53125 L 0.609375 -0.53125 L 0.609375 0 Z M 1.140625 0 "
+             style="stroke:none;"
+             id="path114" />
+        </symbol>
+        <symbol
+           id="glyph1-23"
+           overflow="visible">
+          <path
+             d="M 2.90625 -2 C 2.90625 -3.625 2.171875 -4.046875 1.609375 -4.046875 C 1.078125 -4.046875 0.828125 -3.796875 0.65625 -3.609375 C 0.28125 -3.234375 0.265625 -2.8125 0.265625 -2.578125 C 0.265625 -1.8125 0.6875 -1.15625 1.265625 -1.15625 C 1.9375 -1.15625 2.3125 -1.59375 2.34375 -1.640625 C 2.25 -0.6875 1.796875 -0.265625 1.296875 -0.265625 C 0.984375 -0.265625 0.796875 -0.375 0.65625 -0.5 L 0.453125 -0.15625 C 0.75 0.0625 1.015625 0.125 1.296875 0.125 C 2.140625 0.125 2.90625 -0.71875 2.90625 -2 Z M 2.328125 -2.453125 C 2.328125 -2.015625 2.0625 -1.546875 1.546875 -1.546875 C 1.3125 -1.546875 1.140625 -1.609375 0.984375 -1.859375 C 0.828125 -2.09375 0.8125 -2.3125 0.8125 -2.578125 C 0.8125 -2.8125 0.8125 -3.078125 1 -3.34375 C 1.125 -3.53125 1.296875 -3.671875 1.59375 -3.671875 C 2.171875 -3.671875 2.296875 -2.96875 2.328125 -2.59375 C 2.328125 -2.546875 2.328125 -2.5 2.328125 -2.453125 Z M 2.328125 -2.453125 "
+             style="stroke:none;"
+             id="path117" />
+        </symbol>
+        <symbol
+           id="glyph1-24"
+           overflow="visible">
+          <path
+             d="M 2.90625 -1.9375 C 2.90625 -2.21875 2.90625 -2.921875 2.625 -3.421875 C 2.328125 -3.953125 1.875 -4.046875 1.578125 -4.046875 C 1.3125 -4.046875 0.84375 -3.953125 0.546875 -3.4375 C 0.265625 -2.96875 0.25 -2.3125 0.25 -1.9375 C 0.25 -1.5 0.28125 -0.953125 0.53125 -0.5 C 0.78125 -0.015625 1.234375 0.125 1.578125 0.125 C 2.171875 0.125 2.5 -0.21875 2.6875 -0.59375 C 2.890625 -1.015625 2.90625 -1.5625 2.90625 -1.9375 Z M 2.390625 -2.015625 C 2.390625 -1.625 2.390625 -1.171875 2.25 -0.796875 C 2.078125 -0.359375 1.78125 -0.265625 1.578125 -0.265625 C 1.328125 -0.265625 1.046875 -0.40625 0.890625 -0.84375 C 0.78125 -1.203125 0.765625 -1.578125 0.765625 -2.015625 C 0.765625 -2.5625 0.765625 -3.640625 1.578125 -3.640625 C 2.390625 -3.640625 2.390625 -2.5625 2.390625 -2.015625 Z M 2.390625 -2.015625 "
+             style="stroke:none;"
+             id="path120" />
+        </symbol>
+        <symbol
+           id="glyph1-25"
+           overflow="visible">
+          <path
+             d="M 2.703125 0 L 2.703125 -0.375 L 1.921875 -0.375 L 1.921875 -4.046875 L 1.78125 -4.046875 C 1.390625 -3.6875 0.90625 -3.65625 0.546875 -3.640625 L 0.546875 -3.265625 C 0.78125 -3.28125 1.078125 -3.28125 1.375 -3.40625 L 1.375 -0.375 L 0.578125 -0.375 L 0.578125 0 Z M 2.703125 0 "
+             style="stroke:none;"
+             id="path123" />
+        </symbol>
+        <symbol
+           id="glyph2-0"
+           overflow="visible">
+          <path
+             d=""
+             style="stroke:none;"
+             id="path126" />
+        </symbol>
+        <symbol
+           id="glyph2-1"
+           overflow="visible">
+          <path
+             d="M 5.625 -0.328125 C 5.625 -0.671875 5.390625 -0.671875 5 -0.671875 L 5 -3.296875 C 5 -3.515625 5 -4.765625 4.03125 -4.765625 C 3.703125 -4.765625 3.25 -4.625 2.953125 -4.1875 C 2.78125 -4.5625 2.484375 -4.765625 2.125 -4.765625 C 1.78125 -4.765625 1.453125 -4.609375 1.1875 -4.359375 C 1.171875 -4.6875 0.953125 -4.6875 0.75 -4.6875 L 0.40625 -4.6875 C 0.234375 -4.6875 -0.046875 -4.6875 -0.046875 -4.359375 C -0.046875 -4.03125 0.1875 -4.03125 0.578125 -4.03125 L 0.578125 -0.671875 C 0.1875 -0.671875 -0.046875 -0.671875 -0.046875 -0.328125 C -0.046875 0 0.25 0 0.40625 0 L 1.359375 0 C 1.53125 0 1.8125 0 1.8125 -0.328125 C 1.8125 -0.671875 1.578125 -0.671875 1.1875 -0.671875 L 1.1875 -2.609375 C 1.1875 -3.578125 1.640625 -4.09375 2.078125 -4.09375 C 2.328125 -4.09375 2.484375 -3.90625 2.484375 -3.203125 L 2.484375 -0.671875 C 2.28125 -0.671875 2 -0.671875 2 -0.328125 C 2 0 2.296875 0 2.453125 0 L 3.265625 0 C 3.4375 0 3.71875 0 3.71875 -0.328125 C 3.71875 -0.671875 3.484375 -0.671875 3.09375 -0.671875 L 3.09375 -2.609375 C 3.09375 -3.578125 3.546875 -4.09375 3.984375 -4.09375 C 4.234375 -4.09375 4.390625 -3.90625 4.390625 -3.203125 L 4.390625 -0.671875 C 4.1875 -0.671875 3.90625 -0.671875 3.90625 -0.328125 C 3.90625 0 4.203125 0 4.359375 0 L 5.171875 0 C 5.34375 0 5.625 0 5.625 -0.328125 Z M 5.625 -0.328125 "
+             style="stroke:none;"
+             id="path129" />
+        </symbol>
+        <symbol
+           id="glyph2-2"
+           overflow="visible">
+          <path
+             d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 3.25 -1.703125 C 3.109375 -1.3125 3.046875 -1.109375 2.96875 -0.765625 C 2.90625 -0.984375 2.8125 -1.203125 2.734375 -1.421875 L 1.71875 -4.03125 L 2 -4.03125 C 2.15625 -4.03125 2.421875 -4.03125 2.421875 -4.359375 C 2.421875 -4.6875 2.171875 -4.6875 2 -4.6875 L 0.71875 -4.6875 C 0.546875 -4.6875 0.28125 -4.6875 0.28125 -4.359375 C 0.28125 -4.03125 0.5625 -4.03125 0.71875 -4.03125 L 1.0625 -4.03125 L 2.609375 -0.140625 C 2.640625 -0.03125 2.640625 0 2.640625 0 C 2.640625 0 2.375 0.921875 2.234375 1.1875 C 1.921875 1.78125 1.53125 1.8125 1.359375 1.8125 C 1.359375 1.8125 1.421875 1.71875 1.421875 1.578125 C 1.421875 1.3125 1.21875 1.109375 0.953125 1.109375 C 0.65625 1.109375 0.46875 1.3125 0.46875 1.59375 C 0.46875 2.046875 0.84375 2.484375 1.375 2.484375 C 2.46875 2.484375 2.953125 1.046875 3 0.921875 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 "
+             style="stroke:none;"
+             id="path132" />
+        </symbol>
+        <symbol
+           id="glyph2-3"
+           overflow="visible">
+          <path
+             d="M 5.09375 -2.359375 C 5.09375 -3.71875 4.078125 -4.796875 2.859375 -4.796875 C 1.640625 -4.796875 0.625 -3.71875 0.625 -2.359375 C 0.625 -0.96875 1.65625 0.0625 2.859375 0.0625 C 4.046875 0.0625 5.09375 -0.984375 5.09375 -2.359375 Z M 4.328125 -2.421875 C 4.328125 -1.421875 3.65625 -0.59375 2.859375 -0.59375 C 2.046875 -0.59375 1.375 -1.421875 1.375 -2.421875 C 1.375 -3.421875 2.078125 -4.125 2.859375 -4.125 C 3.640625 -4.125 4.328125 -3.421875 4.328125 -2.421875 Z M 4.328125 -2.421875 "
+             style="stroke:none;"
+             id="path135" />
+        </symbol>
+        <symbol
+           id="glyph2-4"
+           overflow="visible">
+          <path
+             d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 2.859375 -0.515625 L 1.671875 -4.03125 L 1.96875 -4.03125 C 2.140625 -4.03125 2.40625 -4.03125 2.40625 -4.359375 C 2.40625 -4.6875 2.140625 -4.6875 1.96875 -4.6875 L 0.703125 -4.6875 C 0.515625 -4.6875 0.265625 -4.6875 0.265625 -4.359375 C 0.265625 -4.03125 0.53125 -4.03125 0.703125 -4.03125 L 1.03125 -4.03125 L 2.28125 -0.328125 C 2.40625 0.046875 2.625 0.046875 2.859375 0.046875 C 3.0625 0.046875 3.3125 0.046875 3.4375 -0.3125 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 "
+             style="stroke:none;"
+             id="path138" />
+        </symbol>
+        <symbol
+           id="glyph2-5"
+           overflow="visible">
+          <path
+             d="M 5.046875 -1.1875 C 5.046875 -1.484375 4.734375 -1.484375 4.671875 -1.484375 C 4.46875 -1.484375 4.390625 -1.453125 4.3125 -1.25 C 4.078125 -0.703125 3.484375 -0.59375 3.1875 -0.59375 C 2.359375 -0.59375 1.546875 -1.140625 1.375 -2.078125 L 4.625 -2.078125 C 4.84375 -2.078125 5.046875 -2.078125 5.046875 -2.484375 C 5.046875 -3.71875 4.359375 -4.796875 2.9375 -4.796875 C 1.640625 -4.796875 0.59375 -3.703125 0.59375 -2.359375 C 0.59375 -1.03125 1.703125 0.0625 3.109375 0.0625 C 4.546875 0.0625 5.046875 -0.921875 5.046875 -1.1875 Z M 4.28125 -2.734375 L 1.390625 -2.734375 C 1.53125 -3.53125 2.171875 -4.125 2.9375 -4.125 C 3.5 -4.125 4.1875 -3.859375 4.28125 -2.734375 Z M 4.28125 -2.734375 "
+             style="stroke:none;"
+             id="path141" />
+        </symbol>
+        <symbol
+           id="glyph2-6"
+           overflow="visible">
+          <path
+             d="M 5.296875 -4.078125 C 5.296875 -4.296875 5.171875 -4.765625 4.265625 -4.765625 C 3.71875 -4.765625 3.015625 -4.5625 2.421875 -3.875 L 2.421875 -4.25 C 2.421875 -4.578125 2.359375 -4.6875 1.984375 -4.6875 L 0.78125 -4.6875 C 0.625 -4.6875 0.34375 -4.6875 0.34375 -4.359375 C 0.34375 -4.03125 0.609375 -4.03125 0.78125 -4.03125 L 1.671875 -4.03125 L 1.671875 -0.671875 L 0.78125 -0.671875 C 0.625 -0.671875 0.34375 -0.671875 0.34375 -0.34375 C 0.34375 0 0.609375 0 0.78125 0 L 3.625 0 C 3.796875 0 4.078125 0 4.078125 -0.328125 C 4.078125 -0.671875 3.796875 -0.671875 3.625 -0.671875 L 2.421875 -0.671875 L 2.421875 -2.03125 C 2.421875 -3.046875 3.0625 -4.09375 4.375 -4.09375 C 4.390625 -3.828125 4.578125 -3.609375 4.84375 -3.609375 C 5.09375 -3.609375 5.296875 -3.796875 5.296875 -4.078125 Z M 5.296875 -4.078125 "
+             style="stroke:none;"
+             id="path144" />
+        </symbol>
+        <symbol
+           id="glyph2-7"
+           overflow="visible">
+          <path
+             d="M 5.09375 -0.328125 C 5.09375 -0.671875 4.828125 -0.671875 4.65625 -0.671875 L 3.234375 -0.671875 L 3.234375 -6.203125 C 3.234375 -6.546875 3.171875 -6.65625 2.796875 -6.65625 L 1.078125 -6.65625 C 0.90625 -6.65625 0.625 -6.65625 0.625 -6.3125 C 0.625 -5.984375 0.921875 -5.984375 1.0625 -5.984375 L 2.484375 -5.984375 L 2.484375 -0.671875 L 1.078125 -0.671875 C 0.90625 -0.671875 0.625 -0.671875 0.625 -0.328125 C 0.625 0 0.921875 0 1.0625 0 L 4.65625 0 C 4.8125 0 5.09375 0 5.09375 -0.328125 Z M 5.09375 -0.328125 "
+             style="stroke:none;"
+             id="path147" />
+        </symbol>
+        <symbol
+           id="glyph2-8"
+           overflow="visible">
+          <path
+             d="M 5.65625 -0.34375 C 5.65625 -0.671875 5.375 -0.671875 5.21875 -0.671875 C 4.765625 -0.671875 4.65625 -0.71875 4.5625 -0.75 L 4.5625 -3.109375 C 4.5625 -3.875 3.96875 -4.796875 2.40625 -4.796875 C 1.9375 -4.796875 0.828125 -4.796875 0.828125 -4 C 0.828125 -3.671875 1.0625 -3.5 1.3125 -3.5 C 1.484375 -3.5 1.78125 -3.59375 1.796875 -4 C 1.796875 -4.078125 1.8125 -4.09375 2.03125 -4.109375 C 2.171875 -4.125 2.3125 -4.125 2.421875 -4.125 C 3.25 -4.125 3.8125 -3.796875 3.8125 -3.015625 C 1.890625 -2.984375 0.546875 -2.4375 0.546875 -1.390625 C 0.546875 -0.640625 1.234375 0.0625 2.34375 0.0625 C 2.75 0.0625 3.421875 -0.015625 3.9375 -0.34375 C 4.171875 -0.015625 4.6875 0 5.109375 0 C 5.40625 0 5.65625 0 5.65625 -0.34375 Z M 3.8125 -1.453125 C 3.8125 -1.203125 3.8125 -0.984375 3.390625 -0.78125 C 3 -0.59375 2.5 -0.59375 2.421875 -0.59375 C 1.75 -0.59375 1.296875 -0.96875 1.296875 -1.390625 C 1.296875 -1.921875 2.234375 -2.328125 3.8125 -2.375 Z M 3.8125 -1.453125 "
+             style="stroke:none;"
+             id="path150" />
+        </symbol>
+      </g>
+      <clipPath
+         id="clip1">
+        <path
+           d="M 0.167969 0 L 396.535156 0 L 396.535156 297.277344 L 0.167969 297.277344 Z M 0.167969 0 "
+           id="path155" />
+      </clipPath>
+      <clipPath
+         id="clip3">
+        <path
+           d="M 1 0.0117188 L 15.917969 0.0117188 L 15.917969 9 L 1 9 Z M 1 0.0117188 "
+           id="path158" />
+      </clipPath>
+      <clipPath
+         id="clip4">
+        <path
+           d="M 0.300781 10 L 15.917969 10 L 15.917969 22.789063 L 0.300781 22.789063 Z M 0.300781 10 "
+           id="path161" />
+      </clipPath>
+      <clipPath
+         id="clip2">
+        <rect
+           height="23"
+           width="16"
+           x="0"
+           y="0"
+           id="rect164" />
+      </clipPath>
+      <g
+         clip-path="url(#clip2)"
+         id="surface5">
+        <g
+           clip-path="url(#clip3)"
+           clip-rule="nonzero"
+           id="g169">
+          <path
+             d="M 1.308594 0.0117188 C 1.246094 0.0117188 1.207031 0.03125 1.179688 0.0585938 C 1.152344 0.0859375 1.132813 0.121094 1.132813 0.1875 L 1.132813 8.109375 C 1.132813 8.171875 1.152344 8.210938 1.179688 8.238281 C 1.207031 8.265625 1.246094 8.285156 1.308594 8.285156 L 3.378906 8.285156 C 4.1875 8.285156 4.675781 8.101563 4.972656 7.714844 C 5.414063 7.1875 5.429688 6.339844 5.429688 5.035156 L 5.429688 3.257813 C 5.429688 1.957031 5.414063 1.109375 4.972656 0.578125 C 4.675781 0.195313 4.1875 0.0117188 3.378906 0.0117188 Z M 2.449219 0.976563 L 3.179688 0.976563 C 3.503906 0.976563 3.695313 1.03125 3.84375 1.210938 C 4.074219 1.484375 4.09375 2.042969 4.09375 3.167969 L 4.09375 5.128906 C 4.09375 6.25 4.074219 6.808594 3.84375 7.085938 C 3.695313 7.261719 3.503906 7.316406 3.179688 7.316406 L 2.449219 7.316406 Z M 15.039063 0.1875 C 15.039063 0.121094 15.019531 0.0859375 14.996094 0.0585938 C 14.964844 0.03125 14.929688 0.0117188 14.867188 0.0117188 L 13.898438 0.0117188 C 13.835938 0.0117188 13.796875 0.03125 13.769531 0.0585938 C 13.742188 0.0859375 13.722656 0.121094 13.722656 0.1875 L 13.722656 6.035156 C 13.722656 6.644531 13.675781 7.007813 13.480469 7.226563 C 13.34375 7.375 13.15625 7.445313 12.890625 7.445313 C 12.644531 7.445313 12.464844 7.382813 12.320313 7.226563 C 12.136719 7.019531 12.078125 6.667969 12.078125 6.035156 L 12.078125 0.1875 C 12.078125 0.121094 12.058594 0.0859375 12.03125 0.0546875 C 12.003906 0.03125 11.96875 0.0117188 11.902344 0.0117188 L 10.933594 0.0117188 C 10.875 0.0117188 10.835938 0.03125 10.808594 0.0546875 C 10.78125 0.0859375 10.761719 0.121094 10.761719 0.1875 L 10.761719 6.035156 C 10.761719 6.890625 10.878906 7.421875 11.214844 7.796875 C 11.566406 8.183594 12.101563 8.386719 12.90625 8.386719 C 13.722656 8.386719 14.246094 8.167969 14.566406 7.792969 C 14.949219 7.355469 15.039063 6.828125 15.039063 6.035156 Z M 8.785156 8.109375 C 8.785156 8.171875 8.765625 8.210938 8.738281 8.238281 C 8.710938 8.265625 8.671875 8.285156 8.613281 8.285156 L 7.550781 8.285156 C 7.488281 8.285156 7.453125 8.265625 7.425781 8.238281 C 7.398438 8.210938 7.378906 8.171875 7.378906 8.109375 L 7.378906 1.058594 L 6.132813 1.058594 C 6.070313 1.058594 6.035156 1.039063 6.007813 1.011719 C 5.976563 0.984375 5.960938 0.945313 5.960938 0.882813 L 5.960938 0.1875 C 5.960938 0.121094 5.976563 0.0859375 6.007813 0.0585938 C 6.035156 0.03125 6.070313 0.0117188 6.132813 0.0117188 L 10.027344 0.0117188 C 10.09375 0.0117188 10.128906 0.03125 10.15625 0.0585938 C 10.183594 0.0859375 10.203125 0.121094 10.203125 0.1875 L 10.203125 0.882813 C 10.203125 0.945313 10.183594 0.984375 10.15625 1.011719 C 10.128906 1.039063 10.09375 1.058594 10.027344 1.058594 L 8.785156 1.058594 L 8.785156 8.109375 "
+             style=" stroke:none;fill-rule:nonzero;fill:rgb(43.920898%,43.920898%,43.920898%);fill-opacity:1;"
+             id="path167" />
+        </g>
+        <g
+           clip-path="url(#clip4)"
+           clip-rule="nonzero"
+           id="g173">
+          <path
+             d="M 15.917969 12.421875 L 12.59375 14.167969 C 8.289063 12.496094 7.929688 12.496094 3.625 14.167969 L 0.300781 12.421875 L 3.625 10.675781 C 7.929688 12.351563 8.289063 12.351563 12.59375 10.675781 Z M 15.917969 16.734375 L 12.59375 18.480469 C 8.289063 16.804688 7.929688 16.804688 3.625 18.480469 L 0.300781 16.734375 L 3.625 14.988281 C 7.929688 16.664063 8.289063 16.664063 12.59375 14.988281 Z M 15.917969 21.046875 L 12.59375 22.789063 C 8.289063 21.117188 7.929688 21.117188 3.625 22.789063 L 0.300781 21.046875 L 3.625 19.300781 C 7.929688 20.976563 8.289063 20.976563 12.59375 19.300781 L 15.917969 21.046875 "
+             style=" stroke:none;fill-rule:nonzero;fill:rgb(59.999084%,0%,0%);fill-opacity:1;"
+             id="path171" />
+        </g>
+      </g>
+      <clipPath
+         id="clip5">
+        <path
+           d="M 0.167969 0 L 52 0 L 52 10 L 0.167969 10 Z M 0.167969 0 "
+           id="path176" />
+      </clipPath>
+    </defs>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g195"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="26.680883"
+         xlink:href="#glyph0-1"
+         y="140.37027"
+         id="use187"
+         width="100%"
+         height="100%" />
+      <use
+         x="34.096596"
+         xlink:href="#glyph0-2"
+         y="140.37027"
+         id="use189"
+         width="100%"
+         height="100%" />
+      <use
+         x="39.726482"
+         xlink:href="#glyph0-3"
+         y="140.37027"
+         id="use191"
+         width="100%"
+         height="100%" />
+      <use
+         x="42.329498"
+         xlink:href="#glyph0-4"
+         y="140.37027"
+         id="use193"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g201"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="50.134193"
+         xlink:href="#glyph0-3"
+         y="140.37027"
+         id="use197"
+         width="100%"
+         height="100%" />
+      <use
+         x="52.737213"
+         xlink:href="#glyph0-4"
+         y="140.37027"
+         id="use199"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g211"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="60.552807"
+         xlink:href="#glyph0-4"
+         y="140.37027"
+         id="use203"
+         width="100%"
+         height="100%" />
+      <use
+         x="64.729187"
+         xlink:href="#glyph0-5"
+         y="140.37027"
+         id="use205"
+         width="100%"
+         height="100%" />
+      <use
+         x="70.177109"
+         xlink:href="#glyph0-6"
+         y="140.37027"
+         id="use207"
+         width="100%"
+         height="100%" />
+      <use
+         x="78.833862"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use209"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g227"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="87.305382"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use213"
+         width="100%"
+         height="100%" />
+      <use
+         x="92.148582"
+         xlink:href="#glyph0-8"
+         y="140.37027"
+         id="use215"
+         width="100%"
+         height="100%" />
+      <use
+         x="97.172661"
+         xlink:href="#glyph0-9"
+         y="140.37027"
+         id="use217"
+         width="100%"
+         height="100%" />
+      <use
+         x="102.4092"
+         xlink:href="#glyph0-6"
+         y="140.37027"
+         id="use219"
+         width="100%"
+         height="100%" />
+      <use
+         x="111.06596"
+         xlink:href="#glyph0-10"
+         y="140.37027"
+         id="use221"
+         width="100%"
+         height="100%" />
+      <use
+         x="116.69584"
+         xlink:href="#glyph0-11"
+         y="140.37027"
+         id="use223"
+         width="100%"
+         height="100%" />
+      <use
+         x="119.29886"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use225"
+         width="100%"
+         height="100%" />
+    </g>
+    <g
+       style="fill:#000000;fill-opacity:1"
+       id="g239"
+       transform="matrix(0.5260775,-0.38277405,0.39920493,0.54865979,45.890132,22.571173)">
+      <use
+         x="127.77038"
+         xlink:href="#glyph0-12"
+         y="140.37027"
+         id="use229"
+         width="100%"
+         height="100%" />
+      <use
+         x="131.70486"
+         xlink:href="#glyph0-7"
+         y="140.37027"
+         id="use231"
+         width="100%"
+         height="100%" />
+      <use
+         x="136.54808"
+         xlink:href="#glyph0-8"
+         y="140.37027"
+         id="use233"
+         width="100%"
+         height="100%" />
+      <use
+         x="141.57216"
+         xlink:href="#glyph0-12"
+         y="140.37027"
+         id="use235"
+         width="100%"
+         height="100%" />
+      <use
+         x="145.50664"
+         xlink:href="#glyph0-13"
+         y="140.37027"
+         id="use237"
+         width="100%"
+         height="100%" />
+    </g>
+    <rect
+       style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3"
+       id="rect1267"
+       width="52.643456"
+       height="37.660316"
+       x="168.864"
+       y="98.807709" />
+    <rect
+       style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3"
+       id="rect1269"
+       width="89.088921"
+       height="68.436493"
+       x="58.717697"
+       y="175.74815" />
+    <rect
+       style="fill:#ffcccc;fill-opacity:0.810585;stroke:#ff0000;stroke-width:3"
+       id="rect1271"
+       width="63.172146"
+       height="59.527596"
+       x="282.65485"
+       y="45.354359" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:30px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75"
+       x="170.48381"
+       y="202.87978"
+       id="text1275"><tspan
+         sodipodi:role="line"
+         id="tspan1273"
+         x="170.48381"
+         y="202.87978"
+         style="stroke-width:0.75">Awesome!</tspan></text>
+  </g>
+</svg>
diff --git a/examples/basic1/osvgs/tmp/myoverlay.png b/examples/basic1/osvgs/tmp/myoverlay.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1b7f08e754571fc0e8d31da269beffd3ba0d194
Binary files /dev/null and b/examples/basic1/osvgs/tmp/myoverlay.png differ
diff --git a/examples/basic1/osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf b/examples/basic1/osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7eacdfd3a8a4f0a33474aa791198db04b5deb8c9
Binary files /dev/null and b/examples/basic1/osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf differ
diff --git a/examples/basic1/tex_compute_uk.pdf b/examples/basic1/tex_compute_uk.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1488ea4bb66ad14ada91789909d4f3b9448e1103
Binary files /dev/null and b/examples/basic1/tex_compute_uk.pdf differ
diff --git a/examples/basic1/tex_dtu_compute_a_uk.pdf b/examples/basic1/tex_dtu_compute_a_uk.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d0d2f4efcdd8ace82a3d969627865501743c2671
Binary files /dev/null and b/examples/basic1/tex_dtu_compute_a_uk.pdf differ
diff --git a/examples/basic1/tex_dtu_frise.pdf b/examples/basic1/tex_dtu_frise.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a099312f58e8adc076799f45f00699408020fcc2
Binary files /dev/null and b/examples/basic1/tex_dtu_frise.pdf differ
diff --git a/examples/basic1/tex_dtu_logo.pdf b/examples/basic1/tex_dtu_logo.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..862fbcd41103ab0c721cdcf46f52131c89dfbe03
Binary files /dev/null and b/examples/basic1/tex_dtu_logo.pdf differ
diff --git a/examples/new_project/02450_beamer_preamble.tex b/examples/new_project/02450_beamer_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2dd8694d7ac59705810fe9deb9816ad20f034655
--- /dev/null
+++ b/examples/new_project/02450_beamer_preamble.tex
@@ -0,0 +1,93 @@
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage{pgfplots}
+\pgfplotsset{compat=newest}
+\usepackage{booktabs}
+\usepackage{siunitx}
+
+\usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
+\svgpath{osvgs/}
+
+\usepackage{url}
+\usepackage{pmboxdraw}
+\usepackage{amssymb}
+\usepackage{pgffor}
+	
+\usetheme[department=compute]{DTU}
+\newcommand{\tabitem}{{\color{dtured}$\bullet$} }
+\usepackage[absolute,overlay]{textpos}
+\textblockorigin{0mm}{0mm}
+
+\setlength{\TPHorizModule}{\paperwidth}
+\setlength{\TPVertModule}{\paperheight}
+
+% Latin Modern
+\usepackage{lmodern}
+\newcommand{\overlabel}[1]{ \begin{textblock}{1}(0,0) \url{#1} \end{textblock} }
+
+% Verdana font type
+%\usepackage{verdana}
+% Helvetica
+%\usepackage{helvet}
+% Times (text and math)
+%\usepackage{newtx, newtxmath}
+
+% \usetheme[department=compute]{DTU}
+
+\makeatletter
+
+\def\osvg{\@ifnextchar[{\@with}{\@without} }
+\def\@with[#1]#2{
+	\foreach[count=\n] \x in {#1}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf}{
+			\begin{textblock}{1}(0,0)
+				\includegraphics<\x>[width=1.0\linewidth]{osvgs/x_do_not_edit_#2-l\n_nofonts}
+			\end{textblock}
+			}{ File: \url{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf} does not exist; bad layer import? Check \url{osvgs/#2.svg} including layer information.
+			}
+		}
+	}
+	\olabel{#2}
+}
+\def\@without#1{
+	% Try to include first 10 layer files if they are there.
+	\foreach[count=\n] \x in {1,...,10}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#1-l\n_nofonts.pdf}{
+				\begin{textblock}{1}(0,0)
+					\includegraphics<\n->[width=1.0\linewidth]{osvgs/x_do_not_edit_#1-l\n_nofonts}
+				\end{textblock}
+			}{
+		}
+	}
+	}
+	\olabel{#1}
+}
+\newcommand{\olabel}[1]{
+	\iftoggle{overlabel_includelabels}{
+		\begin{textblock}{1}(0,0) \url{#1} \end{textblock}
+	}{ 
+	\begin{textblock}{1}(0,0) 	{\color{white} \url{#1} } \end{textblock}
+	}
+}
+
+\makeatother
+
+\makeatother
+\ifdefined\bluem
+% nothing.
+\else
+
+\newcommand\bluem[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{ #1 }}}
+\newcommand\redm[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{ #1 }}}
+\newcommand\greenm[1]{{\textcolor[HTML]{398E00}{ #1 }}}
+\newcommand\yellowm[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{ #1 }}}
+				
+\newcommand\bluet[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{\textbf{#1}}}}
+\newcommand\redt[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{\textbf{#1}}}}
+\newcommand\greent[1]{{\textcolor[HTML]{398E00}{\textbf{#1}}}}
+\newcommand\yellowt[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{\textbf{#1}}}}
+\fi
\ No newline at end of file
diff --git a/examples/new_project/beamer_slider_preamble.tex b/examples/new_project/beamer_slider_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2dd8694d7ac59705810fe9deb9816ad20f034655
--- /dev/null
+++ b/examples/new_project/beamer_slider_preamble.tex
@@ -0,0 +1,93 @@
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage{pgfplots}
+\pgfplotsset{compat=newest}
+\usepackage{booktabs}
+\usepackage{siunitx}
+
+\usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
+\svgpath{osvgs/}
+
+\usepackage{url}
+\usepackage{pmboxdraw}
+\usepackage{amssymb}
+\usepackage{pgffor}
+	
+\usetheme[department=compute]{DTU}
+\newcommand{\tabitem}{{\color{dtured}$\bullet$} }
+\usepackage[absolute,overlay]{textpos}
+\textblockorigin{0mm}{0mm}
+
+\setlength{\TPHorizModule}{\paperwidth}
+\setlength{\TPVertModule}{\paperheight}
+
+% Latin Modern
+\usepackage{lmodern}
+\newcommand{\overlabel}[1]{ \begin{textblock}{1}(0,0) \url{#1} \end{textblock} }
+
+% Verdana font type
+%\usepackage{verdana}
+% Helvetica
+%\usepackage{helvet}
+% Times (text and math)
+%\usepackage{newtx, newtxmath}
+
+% \usetheme[department=compute]{DTU}
+
+\makeatletter
+
+\def\osvg{\@ifnextchar[{\@with}{\@without} }
+\def\@with[#1]#2{
+	\foreach[count=\n] \x in {#1}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf}{
+			\begin{textblock}{1}(0,0)
+				\includegraphics<\x>[width=1.0\linewidth]{osvgs/x_do_not_edit_#2-l\n_nofonts}
+			\end{textblock}
+			}{ File: \url{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf} does not exist; bad layer import? Check \url{osvgs/#2.svg} including layer information.
+			}
+		}
+	}
+	\olabel{#2}
+}
+\def\@without#1{
+	% Try to include first 10 layer files if they are there.
+	\foreach[count=\n] \x in {1,...,10}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#1-l\n_nofonts.pdf}{
+				\begin{textblock}{1}(0,0)
+					\includegraphics<\n->[width=1.0\linewidth]{osvgs/x_do_not_edit_#1-l\n_nofonts}
+				\end{textblock}
+			}{
+		}
+	}
+	}
+	\olabel{#1}
+}
+\newcommand{\olabel}[1]{
+	\iftoggle{overlabel_includelabels}{
+		\begin{textblock}{1}(0,0) \url{#1} \end{textblock}
+	}{ 
+	\begin{textblock}{1}(0,0) 	{\color{white} \url{#1} } \end{textblock}
+	}
+}
+
+\makeatother
+
+\makeatother
+\ifdefined\bluem
+% nothing.
+\else
+
+\newcommand\bluem[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{ #1 }}}
+\newcommand\redm[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{ #1 }}}
+\newcommand\greenm[1]{{\textcolor[HTML]{398E00}{ #1 }}}
+\newcommand\yellowm[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{ #1 }}}
+				
+\newcommand\bluet[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{\textbf{#1}}}}
+\newcommand\redt[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{\textbf{#1}}}}
+\newcommand\greent[1]{{\textcolor[HTML]{398E00}{\textbf{#1}}}}
+\newcommand\yellowt[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{\textbf{#1}}}}
+\fi
\ No newline at end of file
diff --git a/examples/new_project/beamercolorthemeDTU.sty b/examples/new_project/beamercolorthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..8e406d195b7a016415ed00d0b0d42a0dd8b914bd
--- /dev/null
+++ b/examples/new_project/beamercolorthemeDTU.sty
@@ -0,0 +1,29 @@
+% beamercolorthemeDTU.sty
+% This file is a part of the DTU beamer package and makes sure that
+% the DTU colours are available. This file does neither redefine 
+% beamer settings, nor does it add new configurations. It has to be 
+% maintained for backward compatibility.
+%
+% Changelog
+% 2011-06-23 jowr Replaced the old colour definitions with the new ones from the design guide
+% 2011-07-05 jowr Added alternative colours for the graphs
+% 2011-08-16 jowr Moved colour definitions to resources folder, also used in poster class
+% 2014-09-27 jowr Added documentation and prepared merge to git repository
+%
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Load the file if it exists, throw a warning otherwise
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+\InputIfFileExists{dtucolours}{
+    \PackageInfo{dtubeamer}{Successfully loaded the DTU colours.}
+  }{
+    \PackageWarning{dtubeamer}{Could not load the colours from dtucolours.sty. This compilation is likely to fail.}
+  }%
+
+\mode<presentation>
+
+% The new design does not need any adaption here, black is 
+% the default colour. 
+
+\mode<all> 
\ No newline at end of file
diff --git a/examples/new_project/beamerfontthemeDTU.sty b/examples/new_project/beamerfontthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..49c4eab954b5f0d2e9abbbe1034921d212d260af
--- /dev/null
+++ b/examples/new_project/beamerfontthemeDTU.sty
@@ -0,0 +1,38 @@
+% Copyright 2014 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2014
+% DTU Official Presentation
+
+% For PDFLATEX
+\usefonttheme{professionalfonts}
+
+% Title font
+\setbeamerfont{title}{size=\large, series=\bfseries}
+\setbeamercolor{title}{fg=black}
+
+% Subtitle font
+\setbeamerfont{subtitle}{size=\small, series=\normalfont}
+
+% Author font
+\setbeamerfont{author}{size=\small, series=\normalfont}
+
+% Footline
+\setbeamerfont{framecounter in head/foot}{size=\tiny}
+\setbeamerfont{department in head/foot}{size=\tiny, series=\bfseries}
+\setbeamerfont{title in head/foot}{size=\tiny}
+\setbeamerfont{date in head/foot}{size=\tiny}
+
+% Frametitle
+\setbeamerfont{frametitle}{size=\large, series=\bfseries}
+\setbeamerfont{block body}{size=\small}
+\setbeamerfont{section title}{size=\small}
+\setbeamerfont{block body alerted}{size=\small}
+\setbeamerfont{block body example}{size=\small}
+\setbeamerfont{block title}{size=\large,parent={structure,block body}}
+\setbeamerfont{block title alerted}{parent={block title,alerted text}}
+\setbeamerfont{block title example}{parent={block title,example text}}
+\setbeamerfont{itemize/enumerate body}{size=\small}
+
+% Colors
+\setbeamercolor{frametitle}{fg=black}
+\setbeamercolor{structure}{fg=black}
\ No newline at end of file
diff --git a/examples/new_project/beamerinnerthemeDTU.sty b/examples/new_project/beamerinnerthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..9e464ffdc2be91d9a1d1ef8afc917d90fcf63f94
--- /dev/null
+++ b/examples/new_project/beamerinnerthemeDTU.sty
@@ -0,0 +1,52 @@
+% Copyright 2007 by Till Tantau
+% Copyright 2010 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2010
+% DTU Official Presentation
+
+
+\mode<presentation>
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Title page: DTU
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\defbeamertemplate*{title page}{DTU}[1][]
+{
+	% Set bInTitle to true to make sure the right footline is printed
+	\global\edef\bInTitle{true}
+	
+	\linespread{1.45}
+	% Content of the title page
+	
+	% Title + Subtitle
+	\vspace{\dimTitleOffset}
+	\begin{beamercolorbox}[left]{title box}
+		\usebeamerfont{title}\usebeamercolor[fg]{title}\inserttitle\par
+		\ifx\insertsubtitle\@empty
+		\else
+			\vspace{\dimSubtitleOffset}
+			{\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}
+		\fi
+	\end{beamercolorbox}
+	
+	\vspace{\dimAuthorOffset}
+	% Author
+	\begin{beamercolorbox}[left]{author box}
+		\usebeamerfont{author}\usebeamercolor[fg]{author}\insertauthor
+	\end{beamercolorbox}
+	
+	\vspace{\dimInstituteOffset}% Institute
+	\begin{beamercolorbox}[left]{institute box}
+		\usebeamerfont{institute}\usebeamercolor[fg]{author}\insertinstitute
+	\end{beamercolorbox}
+
+	% Title graphic
+	{\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
+	
+	% Fill the space till bottom
+	\vskip0pt plus 1filll
+}
+
+\mode
+<all> 
diff --git a/examples/new_project/beamerouterthemeDTU.sty b/examples/new_project/beamerouterthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..79b75f4c89cf835cdaf4fdd3ffc8a182d485a9cb
--- /dev/null
+++ b/examples/new_project/beamerouterthemeDTU.sty
@@ -0,0 +1,98 @@
+% Copyright 2014 by Remus Mihail Prunescu
+
+% LaTeX Support Group 2014
+% DTU Official Presentation
+
+\mode<presentation>
+
+\setbeamercolor*{framecounter in head/foot}{parent=palette tertiary}
+\setbeamercolor*{department in head/foot}{parent=palette tertiary}
+\setbeamercolor*{title in head/foot}{parent=palette tertiary}
+\setbeamercolor*{date in head/foot}{parent=palette tertiary}
+
+% No navigation symbols
+\setbeamertemplate{navigation symbols}{} 
+
+% Header
+\setbeamertemplate{headline}
+{
+	\ifdefstring{\bDTUWhiteFrame}{true}
+	{
+		\insertFrameDTUWhiteLogo
+	}
+	{
+		\ifdefstring{\bInTitle}{true}
+		{
+			\insertTitleDTULogo
+		}
+		{
+			\insertFrameDTULogo
+		}
+	}
+}
+
+% Footer
+\setbeamertemplate{footline}
+{
+	\ifdefstring{\bInTitle}{true}
+	{
+		\vspace{-0.35\paperheight}
+		\begin{beamercolorbox}[wd=\paperwidth]{title bottom}
+			\vbox{%
+				\makebox[0pt][l]{\hspace{\dimDTUDepLogoXOffset}\insertdepartmentlogoA}%
+				\vbox{%
+					\hspace{\dimDTUFriseXOffset}%
+					\makebox[0pt][l]{\insertDTUFrise}%
+					\vspace{\dimDTUDepFriseOffset}%
+				}%
+			}%
+			\vspace{\dimDTUFriseYOffset}
+		\end{beamercolorbox}
+		\global\def\bInTitle{false}
+	}
+	{
+		\ifdefstring{\bDTUWhiteFrame}{true}
+		{
+		}
+		{ %
+			\hbox{ %
+				\hspace{\dimTextLeftMargin}\hspace{-1.5pt}\insertframenumber %
+				\setlength{\widthframenumber}{2em + \widthof{\insertframenumber}} %
+				\setlength{\widthdepartment}{1em + \widthof{\insertdepartmentandinstitute}} %
+				\setlength{\widthdate}{1em + \widthof{00 00000000 0000}} % Tue: Added extra 0's (2 to 7) to prevent wrap
+				\setlength{\widthtitle}{\textwidth-\widthframenumber-\widthdepartment-\widthdate-\dimTextLeftMargin-\dimTextLeftMargin} %
+				%\parbox[t]{\widthframenumber}{\insertframenumber} %
+				\parbox[t]{\widthdepartment}{\insertdepartmentandinstitute} %
+				\parbox[t]{\widthtitle}{\raggedleft\insertshorttitleinfooter} %
+				\parbox[t]{\widthdate}{\raggedleft\DTUDateFormat\insertdate} %
+				\vspace{\dimFootlineYOffset} %
+			}
+		}
+	}
+}
+
+% Position the frame title so that it would get into the headline
+\setbeamertemplate{frametitle}
+{
+	\vspace{\dimPlaceTitleInHeader}
+	\ifdefstring{\inShowSection}{true}
+	{
+			\usebeamerfont{section title}\color{black!20}%
+			\ifnumcomp{\thesection}{=}{0}{%
+				\ \par%
+			}
+			{%
+				\insertsection\par
+			}
+	}
+	{
+		\vspace{\dimFrameTitleOffset}
+	}
+	\vspace{-1pt}\usebeamerfont{frametitle}%
+	\ifdefstring{\bDTUWhiteFrame}{true}{\color{white}}{\color{black}}%
+	\insertframetitle
+	\vspace{\dimAfterFrameTitleOffset}
+}
+
+\mode
+<all>
diff --git a/examples/new_project/beamerthemeDTU.sty b/examples/new_project/beamerthemeDTU.sty
new file mode 100644
index 0000000000000000000000000000000000000000..d8841f692e3920f289df75f62fffc46c869113dc
--- /dev/null
+++ b/examples/new_project/beamerthemeDTU.sty
@@ -0,0 +1,255 @@
+% Copyright Remus Mihail Prunescu
+
+% LaTeX Support Group
+% DTU Official Presentation
+
+\mode<presentation>
+
+\RequirePackage{etoolbox}
+\RequirePackage{datetime}
+\RequirePackage{keyval}
+\RequirePackage{calc}
+
+% Enlarge slide size
+\beamer@paperwidth 1.09375\beamer@paperwidth%
+\beamer@paperheight 1.09375\beamer@paperheight%
+
+% Extra package
+\InputIfFileExists{departments}%
+	{\ClassInfo{}{The file departments.tex with department logo file naming has been loaded.}}%
+	{\ClassInfo{}{The file departments.tex is missing. Consult the manual.}%
+}%
+
+% Default values for options
+\newcommand{\inDepartmentShortName}{elektro}
+\newcommand{\inLanguage}{english}
+\newcommand{\inShowSection}{true}
+
+% Check language
+\@ifpackagewith{babel}{danish}{%
+	\renewcommand{\inLanguage}{danish}%
+}{}
+
+
+% Save options
+\DeclareOptionBeamer{department}{\renewcommand{\inDepartmentShortName}{#1}}
+\DeclareOptionBeamer{showsection}{\renewcommand{\inShowSection}{#1}}
+\ProcessOptionsBeamer
+
+% % % % % % % % % % % %
+% Define Dimensions
+% % % % % % % % % % % %
+
+\newcommand{\dimDTULogoWidth}{0.0394\paperwidth} % Percent
+\newcommand{\dimDTULogoHeight}{0.0777\paperheight} % Percent
+\newcommand{\dimDTULogoYOffset}{0.0404\paperheight} % Percent
+\newcommand{\dimDTULogoXOffset}{0.9176\paperwidth} % Percent
+
+\newcommand{\dimDTUDepLogoXOffset}{0.062\paperwidth} % Percent
+\newcommand{\dimDTUDepLogoHeight}{0.0897\paperheight} % Percent
+
+\newcommand{\dimDTUFriseYOffset}{0.03\paperheight} % Percent
+\newcommand{\dimDTUFriseXOffset}{0.418\paperwidth} % Percent
+\newcommand{\dimDTUFriseHeight}{0.3412\paperheight} % Percent
+\newcommand{\dimDTUDepFriseOffset}{0.018\paperheight} % Percent
+
+\newcommand{\dimTitleOffset}{0.148\paperheight}
+\newcommand{\dimSubtitleOffset}{0.0175\paperheight}
+\newcommand{\dimFrameTitleOffset}{0.033\paperheight}
+\newcommand{\dimAfterFrameTitleOffset}{-0.008\paperheight}
+\newcommand{\dimAuthorOffset}{0.06\paperheight}
+\newcommand{\dimInstituteOffset}{0.027\paperheight}
+
+\newcommand{\dimFootlineYOffset}{0.025\paperheight} % Tue: This was 0.0355 in original file
+
+\newcommand{\dimLeftMarginI}{0.02\paperwidth}
+\newcommand{\dimTextLeftMargin}{0.0669\paperwidth} % Percent
+
+\newcommand{\dimPlaceTitleInHeader}{-0.09\paperheight}
+
+
+\makeatletter
+\setbeamersize{text margin left=\dimTextLeftMargin, text margin right=\dimTextLeftMargin}
+\makeatother
+
+% % % % % % % % % % % %
+% End of Dimensions
+% % % % % % % % % % % %
+
+% New commands to be used in the DTU template
+%\newcommand{\insertdepartmentandinstitute}{\departmenttitle , \institutetitle}
+\newcommand{\insertdepartmentandinstitute}{\departmenttitle}
+\newcommand{\insertDTULogo}{\includegraphics[width=\dimDTULogoWidth]{tex_dtu_logo}}
+\newcommand{\insertDTUWhiteLogo}{}
+\newcommand{\inserttitlefootline}{}
+\newcommand{\inserttitleheadline}{}
+\newcommand{\institutetitle}{}
+
+% Internal variable to check if \titlepage was called: false by default
+\def\bInTitle{false}
+\def\bDTUWhiteFrame{false}
+
+% Process language
+% Is it DK or UK?
+\ifdefstring{\inLanguage}{danish}
+{
+	\renewcommand{\institutetitle}{Danmarks Tekniske Universitet}
+	\renewcommand{\insertDTUWhiteLogo}{\includegraphics[height=\dimDTULogoHeight]{tex_dtu_dk_a1_neg}}
+}
+{
+	\ifdefstring{\inLanguage}{english}
+	{
+		\renewcommand{\institutetitle}{Technical University of Denmark}
+		\renewcommand{\insertDTUWhiteLogo}{\includegraphics[height=\dimDTULogoHeight]{tex_dtu_uk_a1_neg}}
+	}
+	{
+		% Undefined language
+		% Default values are used
+	}
+}
+
+\ifcsdef{department@\inDepartmentShortName}
+{
+	\activateDepartmentInfo{\inLanguage}{\inDepartmentShortName}
+}
+{
+	\PackageError{DTU Beamer Template}{Department is undefined. Reverting to default (elektro).}{Check the user guide for defined departments. If you cannot find it then contact support group to add the department.}
+	\activateDepartmentInfo{\inLanguage}{elektro}
+}
+
+% Command for generating the department title
+\newcommand{\departmenttitle}{\thedepartmentNameText}
+% Command for inserting the department logo
+\newcommand{\insertdepartmentlogoA}{%
+	\ifdefstring{\inDepartmentShortName}{admin}
+	{
+	}
+	{
+		\includegraphics[height=\dimDTUDepLogoHeight]{\thedepartmentLogo}
+	}
+}
+% Command for inserting frise
+\newcommand{\insertDTUFrise}{\includegraphics[height=\dimDTUFriseHeight]{\thedepartmentFrise}}
+
+% Command used from frame DTU logo (headline)
+\newcommand{\insertFrameDTULogo}
+{
+	\vspace{\dimDTULogoYOffset}
+	\begin{beamercolorbox}[right]{logo in head/foot}%
+		\insertDTULogo\makebox[\dimDTULogoWidth][]{}
+	\end{beamercolorbox}
+}
+\newcommand{\insertFrameDTUWhiteLogo}
+{
+	\vspace{\dimDTULogoYOffset}
+	\begin{beamercolorbox}[right]{logo in head/foot}%
+		\insertDTUWhiteLogo\makebox[\dimDTULogoWidth][]{}
+	\end{beamercolorbox}
+}
+
+% Command used in title page for inserting the DTU logo in headline
+\newcommand{\insertTitleDTULogo}
+{
+	\insertFrameDTULogo
+}
+
+% Change themes
+\usefonttheme{DTU}
+\useoutertheme{DTU}
+\useinnertheme{DTU}
+\usecolortheme{DTU}
+
+% Left margin for list environment
+\setlength{\leftmargini}{\dimLeftMarginI}
+
+% Adjust bullets placement
+\setlength\labelsep{3pt}
+
+\setbeamersize{text margin left=\dimTextLeftMargin}
+
+% Itemize
+\setbeamertemplate{items}[circle]
+\setbeamercolor{itemize item}{fg=dtured}
+\setbeamercolor{itemize subitem}{fg=dtured}
+
+\setbeamerfont{section in toc}{size=\small}
+\setbeamerfont{subsection in toc}{size=\scriptsize}
+
+\setbeamertemplate{enumerate items}[circle]
+\setbeamercolor{item projected}{fg=white,bg=dtured}
+
+% Table of contents
+\setbeamertemplate{section in toc}{%
+	\color{dtured}$\bullet$  \inserttocsection \par}
+
+\setbeamertemplate{subsection in toc}{
+	\hskip1em{\color{dtured}$\bullet$} \inserttocsubsection \par}
+
+% Fix space between sections and subsections in toc
+\makeatletter
+\patchcmd{\beamer@sectionintoc}
+  {\vfill}
+  {\vskip\itemsep}
+  {}
+  {}
+\pretocmd{\beamer@subsectionintoc}
+  {\vskip0.5\itemsep}
+  {}
+  {}
+\makeatother 
+
+
+% Date format
+\newcommand{\DTUDateFormat}{\DTUDate}
+\newdateformat{DTUDate}{\THEDAY.\THEMONTH.\THEYEAR}
+
+% Customize blocks
+\setbeamertemplate{blocks}[rounded][shadow=true]
+\setbeamercolor{block title}{fg=white,bg=dtured}
+\setbeamerfont{block title}{series=\bfseries\small}
+\setbeamercolor{block body}{fg=black,bg=white}
+
+
+\newcommand{\defaultDTUFrameStyle}{
+	\setbeamertemplate{background}{}
+	\color{black}
+}
+
+% White DTU frame
+\makeatletter
+\define@key{beamerframe}{dtuwhitelogo}[true]{%
+	\global\def\bDTUWhiteFrame{true}
+	\color{white}
+}
+\define@key{beamerframe}{bgfilename}{%
+	\setbeamertemplate{background}{
+		\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{#1}
+	}
+}
+% Default framestyle
+\pretocmd{\beamer@@@@frame}
+{
+	\global\def\bDTUWhiteFrame{false}
+	\defaultDTUFrameStyle
+}
+{}{}
+\makeatother
+
+% Lengths for footer
+\newlength{\widthframenumber}
+\newlength{\widthdepartment}
+\newlength{\widthtitle}
+\newlength{\widthdate}
+
+% Short title for the footer
+\makeatletter
+\newcommand\insertshorttitleinfooter{%
+	\beamer@shorttitle%
+}
+\makeatother
+
+% Description list
+\setbeamercolor{description item}{fg=dtured}
+
+\mode
+<all>
diff --git a/examples/new_project/cache.pkl b/examples/new_project/cache.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..7cf37da4cb3dff1b6c7ed217d27cb9dd547ea72b
Binary files /dev/null and b/examples/new_project/cache.pkl differ
diff --git a/examples/new_project/departments.tex b/examples/new_project/departments.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d248470b36886f1d90673adbb3acf3af777619d4
--- /dev/null
+++ b/examples/new_project/departments.tex
@@ -0,0 +1,130 @@
+% departments.tex
+% This file is a part of the DTU letter package and contains the file path for
+% the grahic file, and text name for the different departments.
+%
+% Changelog
+% 2010-04-07 Added % at the end of each line to make it possible to use the definitions in the documentation
+% 2010-04-09 Added the 5th mandatory argument (long text name)
+% 2010-04-23 Moved the new argument, #6, to #4 and added all info. However two graphic files are missing and I have therefore made a test: if the graphic file is missing the administration logo is used.  
+% 2013-02-11 Added compute and diplom department entries.  Added check to see that the department macros are defined, otherwise an error is printed.
+% 
+%\makeDepartmentInfo{<danish|english>}{<departmentname>}{<text graphic file name>}{<Big department logo file name>}{<department text name>}{<department long text name>}
+%
+
+\RequirePackage{etoolbox}
+
+\newcommand\setDepartmentNameLogo[1]{\def\@departmentNameLogo{#1}}%
+\newcommand\thedepartmentNameLogo{\@departmentNameLogo}%
+\newcommand\setDepartmentNameText[1]{\def\@departmentNameText{#1}}%
+\newcommand\thedepartmentNameText{\@departmentNameText}%
+\newcommand\setDepartmentLongNameText[1]{\def\@departmentLongNameText{#1}}%
+\newcommand\thedepartmentLongNameText{\@departmentLongNameText}%
+\newcommand\setDepartmentLogo[1]{\def\@departmentLogo{#1}}%
+\newcommand\thedepartmentLogo{\@departmentLogo}%
+\newcommand\setDepartmentFrise[1]{\def\@departmentFrise{#1}}%
+\newcommand\thedepartmentFrise{\@departmentFrise}%
+%
+\newcommand\createDepartment[1]{%
+\expandafter\def\csname department@#1\endcsname{#1}}%
+%
+\newcommand\aliasDepartment[2]{%
+\expandafter\def\csname department@#2\endcsname{#1}}%
+%
+\ifundef{\makeDepartmentInfo}{%
+	\newcommand\makeDepartmentInfo[7]{%
+		\def\@departmentcmd{\csname department@#2\endcsname}
+		\createDepartment{#2}
+		\expandafter\def\csname namelogo#1@\@departmentcmd\endcsname{\setDepartmentNameLogo{#3}}%
+		\expandafter\def\csname deplogo#1@\@departmentcmd\endcsname{\setDepartmentLogo{#4}}%
+		\expandafter\def\csname depfrise#1@\@departmentcmd\endcsname{\setDepartmentFrise{#5}}%
+		\expandafter\def\csname nametext#1@\@departmentcmd\endcsname{\setDepartmentNameText{#6}}%
+		\expandafter\def\csname namelongtext#1@\@departmentcmd\endcsname{\setDepartmentLongNameText{#7}}%
+		
+	}%
+}{}%
+%
+\newcommand\activateDepartmentInfo[2]{%
+	\ifcsname department@#2\endcsname%
+		\def\@departmentcmd{\csname department@#2\endcsname}%
+	\else%
+		\def\@departmentcmd{\department@admin}%
+	\fi%
+	\csname namelogo#1@\@departmentcmd\endcsname% TODO test if command exists before executing it
+	\csname nametext#1@\@departmentcmd\endcsname%
+	\csname namelongtext#1@\@departmentcmd\endcsname%
+	\csname deplogo#1@\@departmentcmd\endcsname%
+	\csname depfrise#1@\@departmentcmd\endcsname%
+	% \fromdepartment{\thedepartmentLongNameText}
+}%
+%
+\makeDepartmentInfo{danish} {aqua}{tex_aqua_dk}{tex_dtu_aqua_a}{tex_dtu_aqua_frise}{DTU Aqua}{Institut for Akvatiske Ressourcer}%
+\makeDepartmentInfo{english}{aqua}{tex_aqua_uk}{tex_dtu_aqua_a_uk}{tex_dtu_aqua_frise}{DTU Aqua}{National Institute of Aquatic Resources}%
+
+\makeDepartmentInfo{danish} {byg}{tex_byg_dk}{tex_dtu_byg_a}{tex_dtu_byg_frise}{DTU Byg}{Institut for Byggeri og Anl\ae g}%
+\makeDepartmentInfo{english}{byg}{tex_byg_uk}{tex_dtu_byg_a_uk}{tex_dtu_byg_frise}{DTU Civil Engineering}{Department of Civil Engineering}%
+
+\makeDepartmentInfo{danish}{compute}{tex_compute_uk}{tex_dtu_compute_a}{tex_dtu_frise}{DTU Compute}{Institut for Matematik og Computer Science}
+\makeDepartmentInfo{english}{compute}{tex_compute_uk}{tex_dtu_compute_a_uk}{tex_dtu_frise}{DTU Compute}{Department of Applied Mathematics and Computer Science}
+
+\makeDepartmentInfo{danish} {elektro}{tex_elektro_dk}{tex_dtu_elektro_a}{tex_dtu_frise}{DTU Elektro}{Institut for Elektroteknologi}
+\makeDepartmentInfo{english}{elektro}{tex_elektro_uk}{tex_dtu_elektro_a_uk}{tex_dtu_frise}{DTU Electrical Engineering}{Department of Electrical Engineering}
+
+\makeDepartmentInfo{danish} {energi}{tex_energikonvertering_dk}{tex_dtu_energi_a}{tex_dtu_energi_frise}{DTU Energi}{Institut for Energikonvertering og -lagring}
+\makeDepartmentInfo{english}{energi}{tex_energikonvertering_uk}{tex_dtu_energi_a_uk}{tex_dtu_energi_frise}{DTU Energy}{Department of Energy Conversion and Storage}
+
+\makeDepartmentInfo{danish} {fotonik}{tex_fotonik_dk}{tex_dtu_fotonik_a}{tex_dtu_frise}{DTU Fotonik}{Institut for Fotonik}
+\makeDepartmentInfo{english}{fotonik}{tex_fotonik_uk}{tex_dtu_fotonik_a_uk}{tex_dtu_frise}{DTU Fotonik}{Department of Photonics Engineering}
+
+\makeDepartmentInfo{danish} {fysik}{tex_fysik_dk}{tex_dtu_fysik_a}{tex_dtu_fysik_frise}{DTU Fysik}{Institut for Fysik}
+\makeDepartmentInfo{english}{fysik}{tex_fysik_uk}{tex_dtu_fysik_a_uk}{tex_dtu_fysik_frise}{DTU Physics}{Department of Physics}
+
+\makeDepartmentInfo{danish} {food}{tex_fodevareinstituttet_dk}{tex_dtu_fdevareinstituttet_a}{tex_dtu_frise}{DTU F\o devareinstituttet}{F\o devareinstituttet}
+\makeDepartmentInfo{english}{food}{tex_fodevareinstituttet_uk}{tex_dtu_fdevareinstituttet_a_uk}{tex_dtu_frise}{DTU Food}{National Food Institute}
+
+\makeDepartmentInfo{danish} {kemi}{tex_kemi_dk}{tex_dtu_kemi_a}{tex_dtu_kemi_frise}{DTU Kemi}{Institut for Kemi}
+\makeDepartmentInfo{english}{kemi}{tex_kemi_uk}{tex_dtu_kemi_a_uk}{tex_dtu_kemi_frise}{DTU Chemistry}{Department of Chemistry}
+
+\makeDepartmentInfo{danish} {kemiteknik}{tex_kemiteknik_dk}{tex_dtu_kemiteknik_a}{tex_dtu_kemiteknik_frise}{DTU Kemiteknik}{Institut for Kemiteknik}
+\makeDepartmentInfo{english}{kemiteknik}{tex_kemiteknik_uk}{tex_dtu_kemiteknik_a_uk}{tex_dtu_kemiteknik_frise}{DTU Chemical Engineering}{Department of Chemical and Biochemical Engineering}
+
+\makeDepartmentInfo{danish} {management}{tex_management_dk}{tex_dtu_management_a}{tex_dtu_frise}{DTU Management}{Institut for Systemer, Produktion og Ledelse}
+\makeDepartmentInfo{english}{management}{tex_management_uk}{tex_dtu_management_a_uk}{tex_dtu_frise}{DTU Management Engineering}{Department of Management Engineering}
+
+\makeDepartmentInfo{danish} {mekanik}{tex_mekanik_dk}{tex_dtu_mekanik_a}{tex_dtu_mek_frise}{DTU Mekanik}{Institut for Mekanisk Teknologi}
+\makeDepartmentInfo{english}{mekanik}{tex_mekanik_uk}{tex_dtu_mekanik_a_uk}{tex_dtu_mek_frise}{DTU Mechanical Engineering}{Department of Mechanical Engineering}
+
+\makeDepartmentInfo{danish} {miljo}{tex_miljo_dk}{tex_dtu_milj_a}{tex_dtu_miljoe_frise}{DTU Milj\o}{Institut for Vand og Milj\o teknologi}
+\makeDepartmentInfo{english}{environmentalEng}{tex_miljo_uk}{tex_dtu_milj_a_uk}{tex_dtu_miljoe_frise}{DTU Environment}{Department of Environmental Engineering}
+
+\makeDepartmentInfo{danish} {nanotek}{tex_nanotek_dk}{tex_dtu_nanotek_a}{tex_dtu_frise}{DTU Nanotek}{Institut for Mikro- og Nanoteknologi}
+\makeDepartmentInfo{english}{nanotek}{tex_nanotek_uk}{tex_dtu_nanotek_a_uk}{tex_dtu_frise}{DTU Nanotech}{Department of Micro- and Nanotechnology}
+
+\makeDepartmentInfo{danish} {space}{tex_space_dk}{tex_dtu_space_a}{tex_dtu_space_frise}{DTU Space}{Institut for Rumforskning og Rumteknologi}
+\makeDepartmentInfo{english}{space}{tex_space_uk}{tex_dtu_space_a_uk}{tex_dtu_space_frise}{DTU Space}{National Space Institute}
+
+\makeDepartmentInfo{danish} {systembiologi}{}{tex_dtu_systembiologi_a}{tex_dtu_frise}{DTU Systembiologi}{Institut for Systembiologi}
+\makeDepartmentInfo{english}{systembiologi}{}{tex_dtu_systembiologi_a_uk}{tex_dtu_frise}{DTU Systems Biology}{Department of Systems Biology}
+
+\makeDepartmentInfo{danish} {transport}{tex_transport_dk}{tex_dtu_transport_a}{tex_dtu_transport_frise}{DTU Transport}{Institut for Transport}
+\makeDepartmentInfo{english}{transport}{tex_transport_uk}{tex_dtu_transport_a_uk}{tex_dtu_transport_frise}{DTU Transport}{Department of Transport}
+
+\makeDepartmentInfo{danish} {vaterinaerinstituttet}{tex_veterinaertinstituttet_dk}{tex_dtu_veterinerinstituttet_a}{tex_dtu_vet_frise}{DTU Veterin\ae rinstituttet}{Veterin\ae rinstituttet}
+\makeDepartmentInfo{english}{vaterinaerinstituttet}{tex_veterinaertinstituttet_uk}{tex_dtu_veterinerinstituttet_a_uk}{tex_dtu_vet_frise}{DTU Vet}{National Veterinary Institute}
+
+\makeDepartmentInfo{danish} {vindenergi}{tex_vindenergi_dk}{tex_dtu_vindenergi_a}{tex_dtu_vindenergi_frise}{DTU Vindenergi}{Institut for Vindenergi}
+\makeDepartmentInfo{english}{vindenergi}{tex_vindenergi_uk}{tex_dtu_vindenergi_a_uk}{tex_dtu_vindenergi_frise}{DTU Wind Energy}{Department of Wind Energy}
+
+
+% Extra
+\makeDepartmentInfo{danish} {bibliotek}{tex_bibliotek_dk}{tex_dtu_bibliotek_a}{tex_dtu_bibliotek_frise}{DTU Bibliotek}{Danmarks Tekniske Informationcenter}%
+\makeDepartmentInfo{english}{bibliotek}{tex_bibliotek_uk}{tex_dtu_bibliotek_uk_a}{tex_dtu_bibliotek_frise}{DTU Library}{Technical Information Center of Denmark}%
+
+\makeDepartmentInfo{danish} {admin}{tex_dtu_navn_dk}{}{tex_dtu_frise}{Danmarks Tekniske Universitet}{}%
+\makeDepartmentInfo{english}{admin}{tex_dtu_navn_uk}{}{tex_dtu_frise}{Technical University of Denmark}{}%
+
+\makeDepartmentInfo{danish} {riso}{tex_riso_dk}{tex_ris_dtu_a}{tex_dtu_frise}{Ris\o\ DTU}{Nationallaboratoriet for B\ae redygtig Energi}
+\makeDepartmentInfo{english}{riso}{tex_riso_uk}{tex_ris_dtu_a_uk}{tex_dtu_frise}{Ris\o\ DTU}{National Laboratory for Sustainable Energy}
+
+\makeDepartmentInfo{danish}{diplom}{tex_diplom_dk}{tex_dtu_diplom_a}{tex_dtu_frise}{Center for Diplomingeni\o ruddannelse}{DTU Diplom}
+\makeDepartmentInfo{english}{diplom}{tex_diplom_dk}{tex_dtu_diplom_a_uk}{tex_dtu_frise}{Center for Diplomingeni\o ruddannelse}{DTU Diplom}
+
diff --git a/examples/new_project/dtucolours.tex b/examples/new_project/dtucolours.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cda2381d7225b0ec1879df97e258b805a3cc8511
--- /dev/null
+++ b/examples/new_project/dtucolours.tex
@@ -0,0 +1,83 @@
+% dtucolours.sty
+% This file has been a part of the DTU beamer package and is now
+% moved to the resources folder because there are other parts of the 
+% DTU package that need the colours as well.
+%
+% Changelog
+% 2011-06-23 jowr Replaced the old colour definitions with the new ones from the design guide
+% 2011-07-05 jowr Added alternative colours for the graphs
+% 2011-08-16 jowr Moved colour definitions to resources folder, also used in poster class
+% 2012-06-19 jowr Added colours for cooperation with IPU
+% 2014-09-27 jowr Replaced definecolor with providecolor, do not overwrite custom colour definitions
+%
+%
+\RequirePackage{xcolor}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define primary colours (designguide v2.3, page 13)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{dtured}       {rgb}{0.60, 0.00, 0.00} % Primærfarve 1 - CMYK:   0/ 91/ 72/ 23 - RGB: 153/  0/  0
+\providecolor{dtugrey}      {rgb}{0.60, 0.60, 0.60} % Primærfarve 2 - CMYK:   0/  0/  0/ 56 - RGB: 153/153/153
+% 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define secondary colours  (designguide v2.3, page 13)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Please note that dtured and dtubrown have the same rgb and hex values and only differ in cmyk and pms notation.
+\providecolor{dtuyellow}    {rgb}{1.00, 0.80, 0.00} % Sekundærfarve 12 - CMYK:   0/ 25/100/  0 - RGB: 255/204/  0 - HEX: FFCC00
+\providecolor{dtuorange}    {rgb}{1.00, 0.60, 0.00} % Sekundærfarve 1  - CMYK:   0/ 50/100/  0 - RGB: 255/153/  0 - HEX: FF9900
+\providecolor{dtulightred}  {rgb}{1.00, 0.00, 0.00} % Sekundærfarve 3  - CMYK:   0/100/100/  0 - RGB: 255/  0/  0 - HEX: FF0000
+\providecolor{dtubrown}     {rgb}{0.60, 0.00, 0.00} % Sekundærfarve 4  - CMYK:   0/100/100/ 50 - RGB: 153/  0/  0 - HEX: 990000
+\providecolor{dtupurple}    {rgb}{0.80, 0.20, 0.60} % Sekundærfarve 6  - CMYK:  25/100/  0/  0 - RGB: 204/ 51/153 - HEX: CC3399
+\providecolor{dtuviolet}    {rgb}{0.40, 0.00, 0.60} % Sekundærfarve 9  - CMYK:  75/ 75/  0/  0 - RGB: 102/  0/153 - HEX: 660099
+\providecolor{dtudarkblue}  {rgb}{0.20, 0.40, 0.80} % Sekundærfarve 13 - CMYK:  75/ 50/  0/  0 - RGB:  51/102/204 - HEX: 3366CC
+\providecolor{dtulightblue} {rgb}{0.20, 0.80, 1.00} % Sekundærfarve 10 - CMYK:  50/  0/  0/  0 - RGB:  51/204/255 - HEX: 33CCFF
+\providecolor{dtulightgreen}{rgb}{0.60, 0.80, 0.20} % Sekundærfarve 11 - CMYK:  25/  0/100/  0 - RGB: 153/204/ 51 - HEX: 99CC33
+\providecolor{dtudarkgreen} {rgb}{0.40, 0.80, 0.00} % Sekundærfarve 14 - CMYK:  50/  0/100/  0 - RGB: 102/204/  0 - HEX: 66CC00
+\providecolor{dtucoolgrey}  {rgb}{0.59, 0.58, 0.57} % Farve til poster - CMYK:   0/  1/  5/ 39 - RGB: 150/148/145 - HEX: 969491
+% 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define colours for drawings and graphs (designguide v2.3, page 14)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{graph01}{named}{dtuorange}
+\providecolor{graph02}{named}{dtupurple}
+\providecolor{graph03}{named}{dtulightblue}
+\providecolor{graph04}{named}{dtubrown}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define alternate colours for drawings and graphs 
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define alternate colours for graphs, which are compatible with black 
+% and white printers. The initial set of colours makes it hard to distinguish 
+% between the two lighter and the two darker colours.
+\providecolor{graph01alt}{named}{dtuviolet}
+\providecolor{graph02alt}{named}{dtuyellow}
+\providecolor{graph03alt}{named}{dtulightred}
+\providecolor{graph04alt}{named}{dtulightgreen}
+\providecolor{graph05alt}{named}{dtugrey}
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Define colours for IPU related documents, from IPU Designguide (16.09.2008)
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\providecolor{ipugreen}     {rgb}{0.00, 0.40, 0.20} % Dark green, 1st  standard colour  - CMYK: 088/000/095/026 - RGB: 000/102/051
+\providecolor{ipugrey}      {rgb}{0.45, 0.47, 0.49} % Dark grey, 2nd standard colour    - CMYK: 015/000/000/075 - RGB: 114/121/126
+\providecolor{ipulightgreen}{rgb}{0.36, 0.67, 0.15} % Light green, 1sr secondary colour - CMYK: 070/000/100/000 - RGB: 091/172/038
+\providecolor{ipulightgrey} {rgb}{0.85, 0.86, 0.87} % Light grey, 2nd secondary colour  - CMYK: 003/000/003/020 - RGB: 217/220/222
+%
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Old definitions
+% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% \providecolor{dtured}       {cmyk}{0.00, 0.95, 0.72, 0.27}
+% \providecolor{dtudarkgray}  {cmyk}{0.00, 0.00, 0.00, 0.56}
+% \providecolor{dtugray}      {cmyk}{0.00, 0.00, 0.00, 0.37}
+% \providecolor{dtulightgray} {cmyk}{0.00, 0.00, 0.00, 0.19}
+% \providecolor{dtudarkblue}  {cmyk}{1.00, 0.72, 0.00, 0.38}
+% \providecolor{dtublue}      {cmyk}{0.60, 0.44, 0.00, 0.24}
+% \providecolor{dtulightblue} {cmyk}{0.30, 0.22, 0.00, 0.12}
+% \providecolor{dtudarkgreen} {cmyk}{1.00, 0.00, 0.83, 0.47}
+% \providecolor{dtugreen}     {cmyk}{0.725,0.004,1.00, 0.004}
+% \providecolor{dtuyellow}    {cmyk}{0.00, 0.00, 1.00, 0.00}
+% \providecolor{dtuorange}    {cmyk}{0.00, 0.34, 0.91, 0.00}
+% \providecolor{dtudarkorange}{cmyk}{0.00, 0.51, 1.00, 0.00}
+% \providecolor{dtupurpur}    {cmyk}{0.00, 0.94, 0.00, 0.43}
+% \providecolor{dtupurple}    {cmyk}{0.83, 1.00, 0.00, 0.23}
+%
diff --git a/examples/new_project/index.aux b/examples/new_project/index.aux
new file mode 100644
index 0000000000000000000000000000000000000000..bf24296eba99000a64412a47963f238227a552fb
--- /dev/null
+++ b/examples/new_project/index.aux
@@ -0,0 +1,33 @@
+\relax 
+\providecommand\hyper@newdestlabel[2]{}
+\providecommand{\transparent@use}[1]{}
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper@anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper@last\relax 
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField@AuxAddToFields[1]{}
+\providecommand\HyField@AuxAddToCoFields[2]{}
+\providecommand\babel@aux[2]{}
+\@nameuse{bbl@beforestart}
+\babel@aux{english}{}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {1}{1}}}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {2}{2}}}
+\@writefile{nav}{\headcommand {\beamer@partpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@sectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@documentpages {2}}}
+\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {2}}}
+\gdef\svg@ink@ver@settings{{\m@ne }{inkscape}{1}}
+\gdef \@abspage@last{2}
diff --git a/examples/new_project/index.fdb_latexmk b/examples/new_project/index.fdb_latexmk
new file mode 100644
index 0000000000000000000000000000000000000000..6797cbad169e29f301debb9403e003d5bc0c4884
--- /dev/null
+++ b/examples/new_project/index.fdb_latexmk
@@ -0,0 +1,314 @@
+# Fdb version 3
+["pdflatex"] 1630760840 "index.tex" "index.pdf" "index" 1630760847
+  "C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc" 1254938640 2375 baa924870cfb487815765f9094cf3728 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/jknappen/ec/ecss1095.tfm" 993062234 3188 1aa640cd974697c5d1d4a3c92172a829 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1233955454 916 f87d7c45f9c908e672703b83b72241a3 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1233955454 928 2dc8d444221b7a635bb58038579b861a ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1233955454 908 2921f8a10601f252058503cc6570e581 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1233955454 940 228d6584342e91276bf566bcf9716b83 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr10.tfm" 1136768653 1296 45809c5a464d5f32c8f98ba97c1bb47f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmss10.tfm" 1136768653 1316 b636689f1933f24d1294acdf6041daaa ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss10.tfm" 1254938640 11176 53ebf7a171df1f9447b387b178768bb5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss12.tfm" 1254938640 11232 955a7245396175d9219648eadc654ac9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss8.tfm" 1254938640 11180 705632ac6b4fb69204ad970192cdf4e5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmssbx10.tfm" 1254938640 11168 06d87f5698fd1b642d96449b7c8d90b0 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmtt10.tfm" 1254938640 1372 2ef2c2b492b3c4cd7879fe083abbb061 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmex10.tfm" 1254938640 992 ce925c9346c7613270a79afbee98c070 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi10.tfm" 1254938640 1528 6d36b2385e0ca062a654de6ac59cb34f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi6.tfm" 1254938640 1512 94a3fd88c6f27dbd9ecb46987e297a4e ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi8.tfm" 1254938640 1520 a3fe5596932db2db2cbda300920dd4e9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy10.tfm" 1254938640 1308 02cc510f9dd6012e5815d0c0ffbf6869 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy6.tfm" 1254938640 1300 b0605d44c16c22d99dc001808e4f24ea ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy8.tfm" 1254938640 1304 cdc9a17df9ef0d2dc320eff37bbab1c4 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr10.tfm" 1254938640 11868 4f81e9b6033c032bdaf9884f4d7ef412 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr6.tfm" 1254938640 11836 e3b6ce3e601aec94f64a536e7f4224d5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr8.tfm" 1254938640 11864 309fd7f43e4a0ba39f6f7644d76e8edf ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss10.pfb" 1254938640 97408 f595704ec2a07246c2d6f7b602587452 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss8.pfb" 1254938640 94400 e33ecfb646a9f148e2e53da01a9168fe ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb" 1254938640 119663 1a3a2206591ddc98c6d6c6271a282516 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb" 1254938640 113227 d3d1adc024746ff57b20efba82c6d365 ""
+  "C:/Program Files/MiKTeX/tex/context/base/mkii/supp-pdf.mkii" 1580393758 71627 94eb9990bed73c364d7f53f960cc8c5b ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.def" 1626972176 123985 95be6f36f6c54070fdcb3cb50663eed2 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.sty" 1626972176 35620 c595f681ebc251caa49596c63048c363 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/txtbabel.def" 1626972176 5233 a89961f969f72563cb59411e9dc4ae8e ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifluatex.sty" 1583527000 492 1994775aa15b0d1289725a0b1bbc2d4c ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifpdf.sty" 1583527000 480 5778104efadad304ced77548ca2184b1 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/iftex.sty" 1583527000 6501 4011d89d9621e0b0901138815ba5ff29 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifvtex.sty" 1583527000 1057 525c2192b5febbd8c1f662c9468335bb ""
+  "C:/Program Files/MiKTeX/tex/generic/pdftexcmds/pdftexcmds.sty" 1623005277 20089 80423eac55aa175305d35b49e04fe23b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1621073245 992 855ff26741653ab54814101ca36e153c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1621073245 43820 1fef971b75380574ab35a0d37fd92608 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1621073245 19324 f4e4c6403dd0f1605fd20ed22fa79dea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1621073245 6038 ccb406740cc3f03bbfb58ad504fe8c27 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1621073245 6944 e12f8f7a7364ddf66f93ba30fb3a3742 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1621073245 4883 42daaf41e27c3735286e23e48d2d7af9 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1621073245 2544 8c06d2a7f0f469616ac9e13db6d2f842 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1621073245 44195 5e390c414de027626ca5e2df888fa68d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1621073245 17311 2ef6b2e29e2fc6a2fc8d6d652176e257 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1621073245 21302 788a79944eb22192a4929e46963a3067 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1621073245 9690 01feb7cde25d4293ef36eef45123eb80 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1621073245 33335 dd1fa4814d4e51f18be97d88bf0da60c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1621073245 2965 4c2b1f4e0826925746439038172e5d6f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1621073245 5196 2cc249e0ee7e03da5f5f6589257b1e5b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1621073245 20726 d4c8db1e2e53b72721d29916314a22ea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1621073245 35249 abd4adf948f960299a4b3d27c5dddf46 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1621073245 21989 fdc867d05d228316de137a9fc5ec3bbe ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1621073245 8893 e851de2175338fdf7c17f3e091d94618 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1621073245 5493 23e371e6fe3e7e42533d6d6c15662e0d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex" 1621073245 321 cdd11262840e01e25374a2d458f15e99 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex" 1621073245 1319 0b2de5126c6cbc295f0eb77f7344b34d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex" 1621073245 325 36322b0789619b270aec5993d5a9ed08 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1621073245 11518 738408f795261b70ce8dd47459171309 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1621073245 186007 6e7dfe0bd57520fd5f91641aa72dcac8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex" 1621073245 8843 5533436db3e30fbad1e0440db6027dac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex" 1621073245 7474 f05a7223b140f230922562ac6a9fede5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryfpu.code.tex" 1621073245 85938 8e4ba97c5906e1c0d158aea81fe29af7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1621073245 32995 ac577023e12c0e4bd8aa420b2e852d1a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex" 1621073245 14524 e1074042dc8f19d631452e43073ea3ba ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfint.code.tex" 1621073245 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmath.code.tex" 1621073245 521 8e224a7af69b7fee4451d1bf76b46654 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathcalc.code.tex" 1621073245 13391 84d29568c13bdce4133ab4a214711112 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfloat.code.tex" 1621073245 104935 184ed87524e76d4957860df4ce0cd1c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1621073245 10165 cec5fa73d49da442e56efc2d605ef154 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1621073245 28178 41c17713108e0795aac6fef3d275fbca ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1621073245 9989 c55967bf45126ff9b061fa2ca0c4694f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1621073245 3865 ac538ab80c5cf82b345016e474786549 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1621073245 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1621073245 11024 0179538121bc2dba172013a3ef89519f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1621073245 7854 4176998eeefd8745ac6d2d4bd9c98451 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1621073245 3379 781797a101f647bab82741a99944a229 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1621073245 92405 f515f31275db273f97b9d8f52e1b0736 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathparser.code.tex" 1621073245 37376 11cd75aac3da1c1b152b2848f30adc14 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathutil.code.tex" 1621073245 8471 c2883569d03f69e8e1cabfef4999cfd7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1621073245 71722 aa25655703db0306f6401798e312b7b8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1621073245 21201 08d231a2386e2b61d64641c50dc15abd ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1621073245 16121 346f9013d34804439f7436ff6786cef7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1621073245 44784 cedaa399d15f95e68e22906e2cc09ef8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/pgf.revision.tex" 1621073264 465 d68603f8b820ea4a08cce534944db581 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgf.cfg" 1621073245 926 2963ea0dcf6cc6c0a770b69ec46a477b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1621073245 5546 f3f24d7898386cb7daac70bdd2c4d6dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-luatex.def" 1621073245 13244 6674e4de0678d77c2d7465acc4ea20d7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1621073245 12601 4786e597516eddd82097506db7cfa098 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1621073245 61163 9b2eefc24e021323e0fc140e9826d016 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1621073245 1896 b8e0ca0ac371d74c0ca05583f6313c91 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1621073245 7778 53c8b5623d80238f6a20aa1df1868e63 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgffor.code.tex" 1621073245 23997 a4bed72405fa644418bea7eac2887006 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeys.code.tex" 1621073245 37060 797782f0eb50075c9bc952374d9a659a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1621073245 37431 9abe862035de1b29c7a677f3205e3d9f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfrcs.code.tex" 1621073245 4494 af17fb7efeafe423710479858e42fa7e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1621073245 7251 fb18c67117e09c64de82267e12cd8aa4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common.tex" 1621073245 29274 e15c5b7157d21523bd9c9f1dfa146b8e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-latex.def" 1621073245 6825 a2b0ea5b539dda0625e99dd15785ab59 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex" 1621075461 22701 5fab7b8ebb90b053dc067d1bd37e43c2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex" 1621075461 3047 aa82404aec57311271f4991c44bd71dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.code.tex" 1621075461 2931 5d52092da9e839accd7c9026062fe5c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex" 1621075461 23537 54be8160344d894595f6d145b1311658 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex" 1621075461 4288 b8d6247899b21e3bb66bb11b24d30f2c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex" 1621075461 13828 11d1b09335a4a8baa693dd1e6cac3edf ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex" 1621075461 24373 6544c1554e5da33118301011eb03058d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex" 1621075461 18861 7dc35832c8ccea3aa73cdcd75ec0a60b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex" 1621075461 83469 f77a7d8a23834d4c2472f8dba8e67bff ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex" 1621075461 12347 43d867ea29e34d528123d9ef750aa146 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.code.tex" 1621075461 485274 aafeb7052fbed4c8aba6fcc36c94ea72 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.errorbars.code.tex" 1621075461 22428 72578a4c9324bc5dfafe23fe64f64024 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.markers.code.tex" 1621075461 12489 859c23df41fb9067128ef5a64b01c0a4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.paths.code.tex" 1621075461 3533 973f376afa5a4526f16b11630b9931b4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.revision.tex" 1621075461 520 2a55e10851bbb34fb49a8e1d6b50a09b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.scaling.code.tex" 1621075461 123680 d33fda4929d7200c3e6f0ec83c006aef ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex" 1621075461 367035 be5ad6faf030b5e07b899b712359f9d2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscore.code.tex" 1621075461 19944 7957349fbe31c4e8dea9de4cd41cb086 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex" 1621075461 133871 7247b31742a2240343a6739cb76d6821 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex" 1621075461 25239 bf1615252744653354985789b73e7404 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsplothandlers.code.tex" 1621075461 120954 bdf135670013db80411b2fb0f95876ac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsstackedplots.code.tex" 1621075461 26393 a7d9bbecdd0db20d652c909dac892e25 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsticks.code.tex" 1621075461 91244 1a0e9e49b7a2d10d1b1a610306ba4f8c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def" 1621075461 5907 9dc460712c23e5b3338820499d47608c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex" 1621075461 3095 c82d281b748902a65be2ccca97360b11 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.code.tex" 1621075461 23050 a369aa910ef860a3621fe0459faa335c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex" 1621075461 26859 7a4ee9d206fb0a0daa0d3108445afb57 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolor.code.tex" 1621075461 23958 1b96260863091af1669c3a38b1c4c9af ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolormap.code.tex" 1621075461 88956 018b2512ef27998e97af72e8b1dcdbd5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.code.tex" 1621075461 71792 dba1b75b15201895eb36f142f13b3238 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex" 1621075461 3286 c17079ba50483e1ac1721268ea016041 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkeyval.tex" 1623005690 19231 3cbf682090baecad8e17a66b7a271ed1 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkvutils.tex" 1623005690 7677 cf3e6aa6a8d444f55327f61df80bfa0c ""
+  "C:/Program Files/MiKTeX/tex/latex/00miktex/epstopdf-sys.cfg" 1616070885 584 2a1075dd71571459f59146da9f7502ad ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amsfonts.sty" 1358201372 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amssymb.sty" 1358201372 13829 94730e64147574077f8ecfea9bb69af4 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsa.fd" 1358201372 961 6518c6525a34feb5e8250ffa91731cff ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsb.fd" 1358201372 961 d02606146ba5601b5645f987c92e6193 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsbsy.sty" 1622999195 2222 da905dc1db75412efd2d8f67739f0596 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsgen.sty" 1622999196 4173 bc0410bcccdff806d6132d3c1ef35481 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsmath.sty" 1622999197 87375 a806706bbc32b3e8482f6d87aeffbf76 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsopn.sty" 1622999197 4128 c11da5c2df397f39d5783fc9307689d0 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amstext.sty" 1622999197 2444 b015525572ea0d0165d6ce81ba5e5259 ""
+  "C:/Program Files/MiKTeX/tex/latex/arabi/bblopts.cfg" 1139965200 902 c30e5c373bc58bde21f8f63a3091626f ""
+  "C:/Program Files/MiKTeX/tex/latex/babel-english/english.ldf" 1623001666 7008 9ff5fdcc865b01beca2b0fe4a46231d4 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atbegshi-ltx.sty" 1623741700 3034 7076a43c47446700860d2aebb65ebed5 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atveryend-ltx.sty" 1623741700 2459 f9456a3cd988c2865f64e327cdb6f7a0 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/fontenc.sty" 1623741700 4946 461cc78f6f26901410d9f1d725079cc6 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/ifthen.sty" 1623741700 5157 f308c7c04889e16c588e78aa42599fae ""
+  "C:/Program Files/MiKTeX/tex/latex/base/inputenc.sty" 1623741700 5049 969aec05d5f39c43f8005910498fcf90 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/size11.clo" 1623741700 8464 efc3cbec9b4f1a5665635866ad7e7dba ""
+  "C:/Program Files/MiKTeX/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1623003186 13886 d1306dcf79a944f6988e688c1785f9ce ""
+  "C:/Program Files/MiKTeX/tex/latex/etoolbox/etoolbox.sty" 1601897756 46845 3b58f70c6e861a13d927bff09d35ecbc ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/color.cfg" 1465894292 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/graphics.cfg" 1465894292 1224 978390e9c2234eab29404bc21b268d1e ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-def/pdftex.def" 1622562294 19103 48d29b6e2a64cb717117ef65f107b404 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/color.sty" 1623003325 7153 17c23e5e586ebbdf5d269e7867e53cef ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphics.sty" 1623003325 18399 7e40f80366dffb22c0e7b70517db5cb4 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphicx.sty" 1623003325 7972 81ea1752666dc7c1e93f0b4c10665ca1 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/keyval.sty" 1623003325 2671 4de6781a30211fe0ea4c672e4a2a8166 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/trig.sty" 1623003325 4007 3bccccf8f35e1bc1ef0f7c55ceeb7713 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hpdftex.def" 1623057842 49890 0bb76a5b745d92e86aed6f3f93e334f0 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref-langpatches.def" 1623057842 1777 940b1aa83773bc035eb882e8d6842769 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref.sty" 1623057842 230915 97a8817f13de4e61bbc3592cb2caa995 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/nameref.sty" 1623057842 13242 133e617c5eebffdd05e421624022b267 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/pd1enc.def" 1623057842 14132 c9404e8e78123ef0d1007c34d1d6da51 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/puenc.def" 1623057842 117004 86586f287ddfad919a0a4bd68934277a ""
+  "C:/Program Files/MiKTeX/tex/latex/l3backend/l3backend-pdftex.def" 1628077986 27662 df2ac0cbce6c3f309d48d78e7c627ccb ""
+  "C:/Program Files/MiKTeX/tex/latex/l3kernel/expl3.sty" 1630067590 6208 18ab2eb39b7f1285bd1aa7af7abc9309 ""
+  "C:/Program Files/MiKTeX/tex/latex/l3packages/l3keys2e/l3keys2e.sty" 1630067846 4674 6b86bef38e2fe7ec813292623122d584 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/lmodern.sty" 1256933040 1606 c17281c7cff2bbd7ff0173e1433487ec ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omllmm.fd" 1256933040 888 44447a3a3af84a22454ef89500942d93 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omslmsy.fd" 1256933040 805 af340a8260c447aa315cfc740ff0152f ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omxlmex.fd" 1256933040 566 a94661f7b66063f191960bb7935b6ba2 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/ot1lmr.fd" 1256933040 1880 bae7b659316f7344a86218ad38b01d91 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmss.fd" 1256933040 1639 ba1c66ef577aa5cadc2c0fdc691a26ee ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmtt.fd" 1256933040 2681 354015af3b61e7be30009f084986375a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgf.sty" 1621073245 1090 bae35ef70b3168089ef166db3e66f5b2 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgfcore.sty" 1621073245 410 615550c46f918fcbee37641b02a862d9 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1621073245 21013 f4ff83d25bb56552493b030f27c075ae ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1621073245 989 c49c8ae06d96f8b15869da7428047b1e ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/frontendlayer/tikz.sty" 1621073245 339 c2e180022e3afdb99c7d0ea5ce469b7d ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/math/pgfmath.sty" 1621073245 306 c56a323ca5bf9242f54474ced10fca71 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/systemlayer/pgfsys.sty" 1621073245 443 8c872229db56122037e86bcda49e14f3 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgffor.sty" 1621073245 348 ee405e64380c11319f0e249fed57e6c5 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfkeys.sty" 1621073245 274 5ae372b7df79135d240456a1c6f2cf9a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfrcs.sty" 1621073245 325 f9f16d12354225b7dd52a3321f085955 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/xxcolor.sty" 1621073245 2232 b9a67bccba736ed334b4b1a860a85c6f ""
+  "C:/Program Files/MiKTeX/tex/latex/pgfplots/pgfplots.sty" 1621075461 4904 ee78b44e85d6fccf08cd99370557481e ""
+  "C:/Program Files/MiKTeX/tex/latex/trimspaces/trimspaces.sty" 1253169183 1380 971a51b00a14503ddf754cab24c3f209 ""
+  "C:/Program Files/MiKTeX/tex/latex/url/url.sty" 1388494052 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
+  "C:/Program Files/MiKTeX/tex/latex/xcolor/xcolor.sty" 1623005660 55589 34128738f682d033422ca125f82e5d62 ""
+  "C:/Program Files/MiKTeX/tex/latex/xkeyval/xkeyval.sty" 1623005690 4902 efb3d66683a2da2a232f71e3a571a899 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/miktex/data/le/pdftex/pdflatex.fmt" 1630675792 9705560 728cc408e60df926a3a0636891efdcb2 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map" 1630675864 126230 526afa0532fa5c6556c0eded8671d5fa ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/atbegshi/atbegshi.sty" 1575574700 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bigintcalc/bigintcalc.sty" 1576437202 40635 c40361e206be584d448876bba8a64a3b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bitset/bitset.sty" 1575930176 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/catchfile/catchfile.sty" 1575964050 8622 63834878edeb14dd71d58d8f22bc3e06 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/etexcmds/etexcmds.sty" 1576437238 7734 b98cbb34c81f667027c1e3ebdbfce34b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/gettitlestring/gettitlestring.sty" 1576437266 8371 9d55b8bd010bc717624922fb3477d92e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/infwarerr/infwarerr.sty" 1575403108 8356 7bbb2c2373aa810be568c29e333da8ed ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/intcalc/intcalc.sty" 1576437364 31769 002a487f55041f8e805cfbf6385ffd97 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576766904 5412 d5a2436094cd7be85769db90f29250a6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvsetkeys/kvsetkeys.sty" 1576437420 13807 952b0226d4efca026f0e19dd266dcc22 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/ltxcmds/ltxcmds.sty" 1601735609 18568 4409f8f50cd365c68e684407e5350b1b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/pdfescape/pdfescape.sty" 1575930300 19007 15924f7228aca6c6d184b115f4baa231 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/uniquecounter/uniquecounter.sty" 1576437612 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/amscls/amsthm.sty" 1591023609 12594 0d51ac3a545aaaa555021326ff22a6cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/atveryend/atveryend.sty" 1576104710 19336 ce7ae9438967282886b3b036cfad1e4d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/auxhook/auxhook.sty" 1576542332 3935 57aa3c3e203a5c2effb4d2bd2efbc323 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamer.cls" 1622051514 11627 a0fc556fe6cad325c6652484e44780b5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseauxtemplates.sty" 1622051514 23769 e04557111db90d816c3a0d6ce21958f3 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseboxes.sty" 1612974572 6954 d9eb3846e78d9008aaac86cd82372855 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecolor.sty" 1607691110 12834 a2e2edcc4215056529fd4e140e2ed26a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecompatibility.sty" 1622040986 25555 5b57fd426df33caa3567584eed3ebb7e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasedecode.sty" 1606395924 9407 98317d4428bbbc4430035c0c0e3898d5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasefont.sty" 1609348962 13626 5a8efa954e5cf512c91c80f637cbf1f1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframe.sty" 1606395924 25162 9e33f2887dc316e20c319466b078d6eb ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframecomponents.sty" 1606395924 11898 264f0ae03dbfa791611c1821393bc0b9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframesize.sty" 1606395924 8800 544bcf1a583ad768d77d8b1d8f18a993 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaselocalstructure.sty" 1612869926 17622 85760d86f730e8faf1f7378f6e67e409 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemisc.sty" 1606395924 8313 358d4bb860bd9098eb24099f36b27af1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemodes.sty" 1616158010 7574 6d0e29b16443d86a896479ec2aabff07 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenavigation.sty" 1606395924 29020 6cae2187b2d2bc4f39b6bb5bddbcf031 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenotes.sty" 1606395924 5595 c0c140ec41fa3c9299aa6df19444c391 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoptions.sty" 1606395924 1753 c10ec1df45e4b4c7ee05e306d23f95d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoverlay.sty" 1606395924 27425 7f090822023c1cb57d609b70b5e7cc42 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaserequires.sty" 1606395924 1593 48c3729494fa250d34789fd6af677f99 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasesection.sty" 1616158010 13527 6266cecef9dcaa294ba1dc5ff2d8a798 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetemplates.sty" 1606395924 5753 fbf8c2f7c7d6d5d1d2b900c353f094e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasethemes.sty" 1606395924 1140 cdaff8d445bd2a4e7afdec5190a758c0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetheorems.sty" 1606395924 4548 cdde9ae4b614ce5ea4cf7a232ceeb6a8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetitle.sty" 1606395924 5356 d32dea458460fce4541d4f9aa765b876 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetoc.sty" 1622040910 7840 84c578534b1233d3bfaae1d8a1ddf9b0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetranslator.sty" 1606395924 637 685bd3d40aca2fa87965a39bc31aca7f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetwoscreens.sty" 1606395924 1808 098e1772761e9b4a016e74f1a4c1cb74 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseverbatim.sty" 1606395924 4026 1ba2c6a2acf275d63cb85d60d8597fe8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamercolorthemedefault.sty" 1606395924 7089 c34bc77851d46db7348b94bd5e51168a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemedefault.sty" 1606395924 4236 21e590075d6781cc58fee783316ee268 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemeprofessionalfonts.sty" 1606395924 333 48f83c1a5bf00cbab1ca9013199d6da1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.20.pdf" 1606395924 2958 4e0c4a6e994e5c4d9da11c477e927f0f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.pdf" 1606395924 2936 6cc3ef0682cbb62be8aa1b19f0a84ed6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.20.pdf" 1606395924 2734 0bcf939051dd2a936cdfe5982f7c233b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.pdf" 1606395924 2667 7624351b441ffe4bd2d14e08fbcf063d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.20.pdf" 1606395924 24451 195d2c060e84f339954bc6d9b52131d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.pdf" 1606395924 24611 df07010540266b2b205b492a4d02e7e1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerinnerthemedefault.sty" 1606395924 13031 a33a15e4b12bfa976c11f59131636ea9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerouterthemedefault.sty" 1606395924 6630 9731ba35f4c7921e311abc957adf446b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerthemedefault.sty" 1606395924 355 75c98e7b8f427eb7c625ed391b140c5b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/booktabs/booktabs.sty" 1579097235 6253 f1cb470c9199e7110a27851508ed7a5c ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime-defaults.sty" 1429537382 4215 4c80eaed8cd4f9a80cc6244c0adeb81f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime.sty" 1429537382 28417 b023ffe1328fa89e7f133201d87029de ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fc-english.def" 1582574640 14870 f66b7dd28616119c2519cd5cc4dcae14 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcnumparser.sty" 1582574640 12791 43a81443714469abac77ce09f44ad2e2 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcprefix.sty" 1582574640 12519 5c732241af77b5f0e56e640b7d538395 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fmtcount.sty" 1582574640 32021 ed70d543c537f19c96fc753321f1c3cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.cfg" 1578057145 1104 7ac475a4e3466b0b43e138e9356bda83 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.sty" 1578057145 42759 9cf6c5257b1bc7af01a58859749dd37a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/hycolor/hycolor.sty" 1580384392 18571 4c28a13fc3d975e6e81c9bea1d697276 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/ifplatform/ifplatform.sty" 1507925536 3910 e04f6a6d983bdbdb024917b7ccc80262 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrbase.sty" 1624609552 99856 4c890d8af16075567cef0c4d8b9c3ec9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile-hook.sty" 1624609552 10422 be2f2c878190558e80a5e4c1c3689505 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile.sty" 1624609552 3128 d39f124aed9b6ba4fe0283d303003d75 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlogo.sty" 1624609552 1954 0b0e5fd43ad7d1c55d1d6bb21484aa01 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/kvoptions/kvoptions.sty" 1602228096 22521 d2fceb764a442a2001d257ef11db7618 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/letltxmacro/letltxmacro.sty" 1575403136 5766 13a9e8766c47f30327caf893ece86ac8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdraw.sty" 1575574858 85722 674bb1bdd5ee2d78383a11e280d8251f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdrawenc.dfu" 1575574858 7980 7af90c90876992fc604543eb1fde4107 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/refcount/refcount.sty" 1576437552 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1575574882 9715 b051d5b493d9fe5f4bc251462d039e5f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/sansmathaccent/sansmathaccent.sty" 1580511864 4282 5d27280ace1239baaa4a225df16125ff ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/siunitx/siunitx.sty" 1630063268 272816 5c96b394eaddb491648148af990b767a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/svg/svg.sty" 1607185656 43468 671ae75b3a15019004495eff4c0911e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/textpos/textpos.sty" 1601744683 13250 212c11575fd736fdcf1f0fd8e72900f5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/array.sty" 1622550326 12689 a1a7b2795918756dcb9c9cbfacc4d9c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/calc.sty" 1622550326 10214 00ce62e730d0cfe22b35e8f1c84949c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/enumerate.sty" 1622550326 3468 068d84ef9735e15f11c5a120c0a1a139 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/shellesc.sty" 1622550326 4118 0f286eca74ee36b7743ff20320e5479f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/dicts/translations-basic-dictionary-english.trsl" 1610894760 5594 3103bf139c05c0eeb5842dfa5e147511 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/translations.sty" 1610894760 44057 b43a7c4927b669cd6ab13bb97942d706 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-basic-dictionary-English.dict" 1622471510 3535 7dc96051305a7e943219126c49c44cd6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-bibliography-dictionary-English.dict" 1622471508 903 c6d17f0656e9e1abb172b4faebabd617 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-environment-dictionary-English.dict" 1622471508 433 bfb8d1c2c020defd2de8e5c276710094 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-months-dictionary-English.dict" 1622471508 1337 9a6c05e8f0c8b3c5f27cbd0e455cf475 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-numbers-dictionary-English.dict" 1622471508 1638 2bf1a1dea98f8a4d28033fce76e9cc67 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-theorem-dictionary-English.dict" 1622471508 3523 1f9d9b91f7d78b73e74c7e97bca30fb0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator.sty" 1622471510 8765 56d370785f0143111ff9898b5adfe08e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/transparent/transparent.sty" 1575063484 4155 541de118e0abc42fce3317addc90afb0 ""
+  "beamer_slider_preamble.tex" 1630760801 2728 d36ea79be7cec10b3559a5660f2decaf ""
+  "beamercolorthemeDTU.sty" 1630760801 1181 417d2554e23179f8340453c73a028d75 ""
+  "beamerfontthemeDTU.sty" 1630760801 1259 f9c0e548315549e6c866364392c7263a ""
+  "beamerinnerthemeDTU.sty" 1630760801 1413 3c6129d12554e64ce93d7736032738c2 ""
+  "beamerouterthemeDTU.sty" 1630760801 2587 358e933cfccc5eaeb88326ddfaea4d6c ""
+  "beamerthemeDTU.sty" 1630760801 7254 70ddaf2cca3bafac859919a109938477 ""
+  "departments.tex" 1630760801 9638 1234d2d6a2d0975403246bb7c181706b ""
+  "dtucolours.tex" 1630760801 5683 501994c6596e5a9d67cce52d20165e38 ""
+  "index.aux" 1630760847 1412 2d0a9582e28c65e3f8629db6ea0ea185 "pdflatex"
+  "index.nav" 1630760847 395 640a03f4d3f0f705896c1d8375ddfa75 "pdflatex"
+  "index.out" 1630760846 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
+  "index.tex" 1630760801 599 21a506b34b06f41c78a071d0307c2bb4 ""
+  "osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf" 1630760830 13900 81781a6c28582c8c79e4f6a42683ff6d ""
+  "tex_dtu_compute_a_uk.pdf" 1630760801 13504 7ae3ecb9b649001643f902e32d3a8cca ""
+  "tex_dtu_frise.pdf" 1630760801 32488 57c0f48ec5395d976ac1e57718922c22 ""
+  "tex_dtu_logo.pdf" 1630760801 1830 e452da49133969a7656f3882c11e9b04 ""
+  (generated)
+  "index.aux"
+  "index.nav"
+  "index.log"
+  "index.pdf"
+  "index.toc"
+  "index.out"
+  "index.snm"
diff --git a/examples/new_project/index.fls b/examples/new_project/index.fls
new file mode 100644
index 0000000000000000000000000000000000000000..102d50542ae65d7d4b7164699d14a7cc17d3e1af
--- /dev/null
+++ b/examples/new_project/index.fls
@@ -0,0 +1,1898 @@
+PWD C:\Users\tuhe\Documents\slider\examples\new_project
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\miktex\data\le\pdftex\pdflatex.fmt
+INPUT index.tex
+OUTPUT index.log
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common-lists.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-latex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeysfiltered.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgf.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathcalc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathparser.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.basic.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.trigonometric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.random.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.comparison.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.base.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.round.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.misc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.integerarithmetics.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfloat.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfint.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathconstruct.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathusage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoregraphicstate.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransformations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorequick.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreobjects.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreexternal.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransparency.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepatterns.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorerdf.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmss10.tfm
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+OUTPUT index.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\jknappen\ec\ecss1095.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.def
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\txtbabel.def
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleshapes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleplot.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmodulematrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgfplotssysgeneric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgfplotslibrary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\oldpgfcompatib\pgfplotsoldpgfsupp_loader.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructure.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructureext.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsarray.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsmatrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\numtable\pgfplotstableshared.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsdeque.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.data.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.verb.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgflibrarypgfplots.surfshading.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolormap.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsstackedplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplothandler.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplotimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.scaling.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscoordprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.errorbars.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.markers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsticks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.paths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduledecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\color.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT nul:.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkeyval.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkvutils.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT .\index.aux
+INPUT index.aux
+INPUT index.aux
+OUTPUT index.aux
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT index.out
+INPUT .\index.out
+INPUT .\index.out
+OUTPUT index.out
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT .\index.nav
+INPUT index.nav
+INPUT index.nav
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss12.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmssbx10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\pdftex\config\pdftex.map
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT .\osvgs\x_do_not_edit_myoverlay-l1_nofonts.pdf
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmtt10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmex10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam7.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm7.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+OUTPUT index.nav
+OUTPUT index.toc
+OUTPUT index.snm
+INPUT index.aux
+INPUT .\index.out
+INPUT .\index.out
+INPUT C:\Program Files\MiKTeX\fonts\enc\dvips\lm\lm-ec.enc
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
diff --git a/examples/new_project/index.log b/examples/new_project/index.log
new file mode 100644
index 0000000000000000000000000000000000000000..91f8c140dc8ee28b0180c0fd0105cd6c71882222
--- /dev/null
+++ b/examples/new_project/index.log
@@ -0,0 +1,1523 @@
+This is pdfTeX, Version 3.141592653-2.6-1.40.23 (MiKTeX 21.8) (preloaded format=pdflatex 2021.9.3)  4 SEP 2021 15:07
+entering extended mode
+**./index.tex
+(index.tex
+LaTeX2e <2021-06-01> patch level 1
+L3 programming layer <2021-08-27>
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamer.cls
+Document Class: beamer 2021/05/26 v3.63 A class for typesetting presentations
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemodes.sty
+(C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty
+Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
+\etb@tempcnta=\count182
+)
+\beamer@tempbox=\box50
+\beamer@tempcount=\count183
+\c@beamerpauses=\count184
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasedecode.sty
+\beamer@slideinframe=\count185
+\beamer@minimum=\count186
+\beamer@decode@box=\box51
+)
+\beamer@commentbox=\box52
+\beamer@modecount=\count187
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifpdf.sty
+Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty
+Package: iftex 2020/03/06 v1.0d TeX engine tests
+))
+\headdp=\dimen138
+\footheight=\dimen139
+\sidebarheight=\dimen140
+\beamer@tempdim=\dimen141
+\beamer@finalheight=\dimen142
+\beamer@animht=\dimen143
+\beamer@animdp=\dimen144
+\beamer@animwd=\dimen145
+\beamer@leftmargin=\dimen146
+\beamer@rightmargin=\dimen147
+\beamer@leftsidebar=\dimen148
+\beamer@rightsidebar=\dimen149
+\beamer@boxsize=\dimen150
+\beamer@vboxoffset=\dimen151
+\beamer@descdefault=\dimen152
+\beamer@descriptionwidth=\dimen153
+\beamer@lastskip=\skip47
+\beamer@areabox=\box53
+\beamer@animcurrent=\box54
+\beamer@animshowbox=\box55
+\beamer@sectionbox=\box56
+\beamer@logobox=\box57
+\beamer@linebox=\box58
+\beamer@sectioncount=\count188
+\beamer@subsubsectionmax=\count189
+\beamer@subsectionmax=\count190
+\beamer@sectionmax=\count191
+\beamer@totalheads=\count192
+\beamer@headcounter=\count193
+\beamer@partstartpage=\count194
+\beamer@sectionstartpage=\count195
+\beamer@subsectionstartpage=\count196
+\beamer@animationtempa=\count197
+\beamer@animationtempb=\count198
+\beamer@xpos=\count199
+\beamer@ypos=\count266
+\beamer@ypos@offset=\count267
+\beamer@showpartnumber=\count268
+\beamer@currentsubsection=\count269
+\beamer@coveringdepth=\count270
+\beamer@sectionadjust=\count271
+\beamer@toclastsection=\count272
+\beamer@tocsectionnumber=\count273
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoptions.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty
+Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
+\KV@toks@=\toks16
+))
+\beamer@paperwidth=\skip48
+\beamer@paperheight=\skip49
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.sty
+Package: geometry 2020/01/02 v5.9 Page Geometry
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifvtex.sty
+Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
+)
+\Gm@cnth=\count274
+\Gm@cntv=\count275
+\c@Gm@tempcnt=\count276
+\Gm@bindingoffset=\dimen154
+\Gm@wd@mp=\dimen155
+\Gm@odd@mp=\dimen156
+\Gm@even@mp=\dimen157
+\Gm@layoutwidth=\dimen158
+\Gm@layoutheight=\dimen159
+\Gm@layouthoffset=\dimen160
+\Gm@layoutvoffset=\dimen161
+\Gm@dimlist=\toks17
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.cfg))
+(C:\Program Files\MiKTeX\tex/latex/base\size11.clo
+File: size11.clo 2021/02/12 v1.4n Standard LaTeX file (size option)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgfcore.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty
+Package: graphicx 2020/12/05 v1.2c Enhanced LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty
+Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty
+Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
+File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
+)
+Package graphics Info: Driver file: pdftex.def on input line 107.
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-def\pdftex.def
+File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
+))
+\Gin@req@height=\dimen162
+\Gin@req@width=\dimen163
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/systemlayer\pgfsys.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfrcs.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common.tex
+\pgfutil@everybye=\toks18
+\pgfutil@tempdima=\dimen164
+\pgfutil@tempdimb=\dimen165
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common-lists.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-latex.def
+\pgfutil@abb=\box59
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfrcs.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf\pgf.revision.tex)
+Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys.code.tex
+Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex
+\pgfkeys@pathtoks=\toks19
+\pgfkeys@temptoks=\toks20
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeysfiltered.code.tex
+\pgfkeys@tmptoks=\toks21
+))
+\pgf@x=\dimen166
+\pgf@y=\dimen167
+\pgf@xa=\dimen168
+\pgf@ya=\dimen169
+\pgf@xb=\dimen170
+\pgf@yb=\dimen171
+\pgf@xc=\dimen172
+\pgf@yc=\dimen173
+\pgf@xd=\dimen174
+\pgf@yd=\dimen175
+\w@pgf@writea=\write3
+\r@pgf@reada=\read2
+\c@pgf@counta=\count277
+\c@pgf@countb=\count278
+\c@pgf@countc=\count279
+\c@pgf@countd=\count280
+\t@pgf@toka=\toks22
+\t@pgf@tokb=\toks23
+\t@pgf@tokc=\toks24
+\pgf@sys@id@count=\count281
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgf.cfg
+File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a)
+)
+Driver file for pgf: pgfsys-pdftex.def
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-pdftex.def
+File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-common-pdf.def
+File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsyssoftpath.code.tex
+File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfsyssoftpath@smallbuffer@items=\count282
+\pgfsyssoftpath@bigbuffer@items=\count283
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsysprotocol.code.tex
+File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/latex/xcolor\xcolor.sty
+Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
+File: color.cfg 2016/01/02 v1.6 sample color configuration
+)
+Package xcolor Info: Driver file: pdftex.def on input line 225.
+Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
+Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
+Package xcolor Info: Model `RGB' extended on input line 1364.
+Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
+Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
+Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
+Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
+Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
+Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcore.code.tex
+Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathcalc.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathutil.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathparser.code.tex
+\pgfmath@dimen=\dimen176
+\pgfmath@count=\count284
+\pgfmath@box=\box60
+\pgfmath@toks=\toks25
+\pgfmath@stack@operand=\toks26
+\pgfmath@stack@operation=\toks27
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.basic.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.trigonometric.co
+de.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.random.code.tex)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.comparison.code.
+tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.base.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.round.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.misc.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.integerarithmeti
+cs.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfloat.code.tex
+\c@pgfmathroundto@lastzeros=\count285
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfint.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepoints.code.tex
+File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@picminx=\dimen177
+\pgf@picmaxx=\dimen178
+\pgf@picminy=\dimen179
+\pgf@picmaxy=\dimen180
+\pgf@pathminx=\dimen181
+\pgf@pathmaxx=\dimen182
+\pgf@pathminy=\dimen183
+\pgf@pathmaxy=\dimen184
+\pgf@xx=\dimen185
+\pgf@xy=\dimen186
+\pgf@yx=\dimen187
+\pgf@yy=\dimen188
+\pgf@zx=\dimen189
+\pgf@zy=\dimen190
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathconstruct.code.t
+ex
+File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@path@lastx=\dimen191
+\pgf@path@lasty=\dimen192
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathusage.code.tex
+File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@shorten@end@additional=\dimen193
+\pgf@shorten@start@additional=\dimen194
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorescopes.code.tex
+File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfpic=\box61
+\pgf@hbox=\box62
+\pgf@layerbox@main=\box63
+\pgf@picture@serial@count=\count286
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoregraphicstate.code.te
+x
+File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgflinewidth=\dimen195
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransformations.code
+.tex
+File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@pt@x=\dimen196
+\pgf@pt@y=\dimen197
+\pgf@pt@temp=\dimen198
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorequick.code.tex
+File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreobjects.code.tex
+File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathprocessing.code.
+tex
+File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorearrows.code.tex
+File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfarrowsep=\dimen199
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreshade.code.tex
+File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@max=\dimen256
+\pgf@sys@shading@range@num=\count287
+\pgf@shadingcount=\count288
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreimage.code.tex
+File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreexternal.code.tex
+File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfexternal@startupbox=\box64
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorelayers.code.tex
+File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransparency.code.te
+x
+File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepatterns.code.tex
+File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorerdf.code.tex
+File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\xxcolor.sty
+Package: xxcolor 2003/10/24 ver 0.1
+\XC@nummixins=\count289
+\XC@countmixins=\count290
+)
+(C:\Program Files\MiKTeX\tex/latex/base\atbegshi-ltx.sty
+Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
+package with kernel methods
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref.sty
+Package: hyperref 2021-06-07 v7.00m Hypertext links for LaTeX
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
+Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
+Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
+)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/infwarerr\infwarerr.sty
+Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
+)
+Package pdftexcmds Info: \pdf@primitive is available.
+Package pdftexcmds Info: \pdf@ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvsetkeys\kvsetkeys.sty
+Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/pdfescape\pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/hycolor\hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/auxhook\auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/kvoptions\kvoptions.sty
+Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
+)
+\@linkdim=\dimen257
+\Hy@linkcounter=\count291
+\Hy@pagecounter=\count292
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\pd1enc.def
+File: pd1enc.def 2021-06-07 v7.00m Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref-langpatches.def
+File: hyperref-langpatches.def 2021-06-07 v7.00m Hyperref: patches for babel la
+nguages
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/intcalc\intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/etexcmds\etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count293
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\puenc.def
+File: puenc.def 2021-06-07 v7.00m Hyperref: PDF Unicode definition (HO)
+Now handling font encoding PU ...
+... no UTF-8 mapping file for font encoding PU
+)
+Package hyperref Info: Option `bookmarks' set `true' on input line 4073.
+Package hyperref Info: Option `bookmarksopen' set `true' on input line 4073.
+Package hyperref Info: Option `implicit' set `false' on input line 4073.
+Package hyperref Info: Hyper figures OFF on input line 4192.
+Package hyperref Info: Link nesting OFF on input line 4197.
+Package hyperref Info: Hyper index ON on input line 4200.
+Package hyperref Info: Plain pages OFF on input line 4207.
+Package hyperref Info: Backreferencing OFF on input line 4212.
+Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
+Package hyperref Info: Bookmarks ON on input line 4445.
+\c@Hy@tempcnt=\count294
+
+(C:\Program Files\MiKTeX\tex/latex/url\url.sty
+\Urlmuskip=\muskip16
+Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4804.
+\XeTeXLinkMargin=\dimen258
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bitset\bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
+)
+))
+\Fld@menulength=\count295
+\Field@Width=\dimen259
+\Fld@charsize=\dimen260
+Package hyperref Info: Hyper figures OFF on input line 6076.
+Package hyperref Info: Link nesting OFF on input line 6081.
+Package hyperref Info: Hyper index ON on input line 6084.
+Package hyperref Info: backreferencing OFF on input line 6091.
+Package hyperref Info: Link coloring OFF on input line 6096.
+Package hyperref Info: Link coloring with OCG OFF on input line 6101.
+Package hyperref Info: PDF/A mode OFF on input line 6106.
+LaTeX Info: Redefining \ref on input line 6146.
+LaTeX Info: Redefining \pageref on input line 6150.
+\Hy@abspage=\count296
+
+
+Package hyperref Message: Stopped early.
+
+)
+Package hyperref Info: Driver (autodetected): hpdftex.
+ (C:\Program Files\MiKTeX\tex/latex/hyperref\hpdftex.def
+File: hpdftex.def 2021-06-07 v7.00m Hyperref driver for pdfTeX
+
+(C:\Program Files\MiKTeX\tex/latex/base\atveryend-ltx.sty
+Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
+e
+with kernel methods
+)
+\Fld@listcount=\count297
+\c@bookmark@seq@number=\count298
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.s
+ty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/uniquecounter\uniquecounter.s
+ty
+Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
+)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+86.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaserequires.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecompatibility.
+sty) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasefont.sty
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amssymb.sty
+Package: amssymb 2013/01/14 v3.01 AMS font symbols
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amsfonts.sty
+Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
+\@emptytoks=\toks28
+\symAMSa=\mathgroup4
+\symAMSb=\mathgroup5
+LaTeX Font Info:    Redeclaring math symbol \hbar on input line 98.
+LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
+(Font)                  U/euf/m/n --> U/euf/b/n on input line 106.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/sansmathaccent\sansmathaccent.s
+ty
+Package: sansmathaccent 2020/01/31
+ (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile.sty
+Package: scrlfile 2021/06/25 v3.34 KOMA-Script package (file load hooks)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile-hook.sty
+Package: scrlfile-hook 2021/06/25 v3.34 KOMA-Script package (using LaTeX hooks)
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlogo.sty
+Package: scrlogo 2021/06/25 v3.34 KOMA-Script package (logo)
+)))))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetranslator.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator.sty
+Package: translator 2021-05-31 v1.12d Easy translation of strings in LaTeX
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemisc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetwoscreens.sty
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoverlay.sty
+\beamer@argscount=\count299
+\beamer@lastskipcover=\skip50
+\beamer@trivlistdepth=\count300
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetitle.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasesection.sty
+\c@lecture=\count301
+\c@part=\count302
+\c@section=\count303
+\c@subsection=\count304
+\c@subsubsection=\count305
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframe.sty
+\beamer@framebox=\box65
+\beamer@frametitlebox=\box66
+\beamer@zoombox=\box67
+\beamer@zoomcount=\count306
+\beamer@zoomframecount=\count307
+\beamer@frametextheight=\dimen261
+\c@subsectionslide=\count308
+\beamer@frametopskip=\skip51
+\beamer@framebottomskip=\skip52
+\beamer@frametopskipautobreak=\skip53
+\beamer@framebottomskipautobreak=\skip54
+\beamer@envbody=\toks29
+\framewidth=\dimen262
+\c@framenumber=\count309
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseverbatim.sty
+\beamer@verbatimfileout=\write4
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframesize.sty
+\beamer@splitbox=\box68
+\beamer@autobreakcount=\count310
+\beamer@autobreaklastheight=\dimen263
+\beamer@frametitletoks=\toks30
+\beamer@framesubtitletoks=\toks31
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframecomponent
+s.sty
+\beamer@footins=\box69
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecolor.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenotes.sty
+\beamer@frameboxcopy=\box70
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetoc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetemplates.sty
+\beamer@sbttoks=\toks32
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseauxtemplates.s
+ty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseboxes.sty
+\bmb@box=\box71
+\bmb@colorbox=\box72
+\bmb@boxwidth=\dimen264
+\bmb@boxheight=\dimen265
+\bmb@prevheight=\dimen266
+\bmb@temp=\dimen267
+\bmb@dima=\dimen268
+\bmb@dimb=\dimen269
+\bmb@prevheight=\dimen270
+)
+\beamer@blockheadheight=\dimen271
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaselocalstructure
+.sty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\enumerate.sty
+Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
+\@enLab=\toks33
+)
+\beamer@bibiconwidth=\skip55
+\c@figure=\count311
+\c@table=\count312
+\abovecaptionskip=\skip56
+\belowcaptionskip=\skip57
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenavigation.sty
+\beamer@section@min@dim=\dimen272
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetheorems.sty
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsmath.sty
+Package: amsmath 2021/04/20 v2.17j AMS math features
+\@mathmargin=\skip58
+
+For additional information on amsmath, use the `?' option.
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amstext.sty
+Package: amstext 2000/06/29 v2.01 AMS text
+
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0 generic functions
+\@emptytoks=\toks34
+\ex@=\dimen273
+))
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d Bold Symbols
+\pmbraise@=\dimen274
+)
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsopn.sty
+Package: amsopn 2016/03/08 v2.02 operator names
+)
+\inf@bad=\count313
+LaTeX Info: Redefining \frac on input line 234.
+\uproot@=\count314
+\leftroot@=\count315
+LaTeX Info: Redefining \overline on input line 399.
+\classnum@=\count316
+\DOTSCASE@=\count317
+LaTeX Info: Redefining \ldots on input line 496.
+LaTeX Info: Redefining \dots on input line 499.
+LaTeX Info: Redefining \cdots on input line 620.
+\Mathstrutbox@=\box73
+\strutbox@=\box74
+\big@size=\dimen275
+LaTeX Font Info:    Redeclaring font encoding OML on input line 743.
+LaTeX Font Info:    Redeclaring font encoding OMS on input line 744.
+\macc@depth=\count318
+\c@MaxMatrixCols=\count319
+\dotsspace@=\muskip17
+\c@parentequation=\count320
+\dspbrk@lvl=\count321
+\tag@help=\toks35
+\row@=\count322
+\column@=\count323
+\maxfields@=\count324
+\andhelp@=\toks36
+\eqnshift@=\dimen276
+\alignsep@=\dimen277
+\tagshift@=\dimen278
+\tagwidth@=\dimen279
+\totwidth@=\dimen280
+\lineht@=\dimen281
+\@envbody=\toks37
+\multlinegap=\skip59
+\multlinetaggap=\skip60
+\mathdisplay@stack=\toks38
+LaTeX Info: Redefining \[ on input line 2923.
+LaTeX Info: Redefining \] on input line 2924.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/amscls\amsthm.sty
+Package: amsthm 2020/05/29 v2.20.6
+\thm@style=\toks39
+\thm@bodyfont=\toks40
+\thm@headfont=\toks41
+\thm@notefont=\toks42
+\thm@headpunct=\toks43
+\thm@preskip=\skip61
+\thm@postskip=\skip62
+\thm@headsep=\skip63
+\dth@everypar=\toks44
+)
+\c@theorem=\count325
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasethemes.sty))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerthemedefault.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemedefault.s
+ty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamercolorthemedefault.
+sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerinnerthemedefault.
+sty
+\beamer@dima=\dimen282
+\beamer@dimb=\dimen283
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerouterthemedefault.
+sty))) (beamer_slider_preamble.tex
+(C:\Program Files\MiKTeX\tex/latex/base\fontenc.sty
+Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
+)
+(C:\Program Files\MiKTeX\tex/latex/base\inputenc.sty
+Package: inputenc 2021/02/14 v1.3d Input encoding file
+\inpenc@prehook=\toks45
+\inpenc@posthook=\toks46
+)
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.sty
+Package: babel 2021/07/22 3.63 The Babel package
+
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.def
+File: babel.def 2021/07/22 3.63 Babel common definitions
+\babel@savecnt=\count326
+\U@D=\dimen284
+\l@unhyphenated=\language79
+
+(C:\Program Files\MiKTeX\tex/generic/babel\txtbabel.def)
+\bbl@readstream=\read3
+)
+LaTeX Info: Redefining \textlatin on input line 730.
+\bbl@dirlevel=\count327
+
+*************************************
+* Local config file bblopts.cfg used
+*
+(C:\Program Files\MiKTeX\tex/latex/arabi\bblopts.cfg
+File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
+ babel
+)
+(C:\Program Files\MiKTeX\tex/latex/babel-english\english.ldf
+Language: english 2017/06/06 v3.3r English support from the babel system
+Package babel Info: Hyphen rules for 'canadian' set to \l@english
+(babel)             (\language0). Reported on input line 102.
+Package babel Info: Hyphen rules for 'australian' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 105.
+Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 108.
+))
+(C:\Program Files\MiKTeX\tex/latex/pgfplots\pgfplots.sty
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.revision.tex)
+Package: pgfplots 2021/05/15 v1.18.1 Data Visualization (1.18.1)
+
+(C:\Program Files\MiKTeX\tex/latex/pgf/frontendlayer\tikz.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgf.sty
+Package: pgf 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleshapes.code.tex
+File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfnodeparttextbox=\box75
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleplot.code.tex
+File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-0-65.sty
+Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@nodesepstart=\dimen285
+\pgf@nodesepend=\dimen286
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-1-18.sty
+Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a)
+)) (C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgffor.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfkeys.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex))
+(C:\Program Files\MiKTeX\tex/latex/pgf/math\pgfmath.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgffor.code.tex
+Package: pgffor 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex)
+\pgffor@iter=\dimen287
+\pgffor@skip=\dimen288
+\pgffor@stack=\toks47
+\pgffor@toks=\toks48
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz\tikz.code.tex
+Package: tikz 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplothandlers.code.
+tex
+File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@plot@mark@count=\count328
+\pgfplotmarksize=\dimen289
+)
+\tikz@lastx=\dimen290
+\tikz@lasty=\dimen291
+\tikz@lastxsaved=\dimen292
+\tikz@lastysaved=\dimen293
+\tikz@lastmovetox=\dimen294
+\tikz@lastmovetoy=\dimen295
+\tikzleveldistance=\dimen296
+\tikzsiblingdistance=\dimen297
+\tikz@figbox=\box76
+\tikz@figbox@bg=\box77
+\tikz@tempbox=\box78
+\tikz@tempbox@bg=\box79
+\tikztreelevel=\count329
+\tikznumberofchildren=\count330
+\tikznumberofcurrentchild=\count331
+\tikz@fig@count=\count332
+ (C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmodulematrix.code.tex
+File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfmatrixcurrentrow=\count333
+\pgfmatrixcurrentcolumn=\count334
+\pgf@matrix@numberofcolumns=\count335
+)
+\tikz@expandcount=\count336
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rytopaths.code.tex
+File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscore.code.tex
+\t@pgfplots@toka=\toks49
+\t@pgfplots@tokb=\toks50
+\t@pgfplots@tokc=\toks51
+\pgfplots@tmpa=\dimen298
+\c@pgfplots@coordindex=\count337
+\c@pgfplots@scanlineindex=\count338
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgfplotssysgeneric.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgfplotslibrary.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/oldpgfcompatib\pgfplotsoldpgfsupp
+_loader.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryfpu.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+re.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+reext.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsarray.code.
+tex
+\c@pgfplotsarray@tmp=\count339
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsmatrix.code
+.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/numtable\pgfplotstableshared.code
+.tex
+\c@pgfplotstable@counta=\count340
+\t@pgfplotstable@a=\toks52
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsdeque.code.
+tex) (C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.code.tex
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.data.code.tex
+))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.verb.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgflibrarypgfplots.surfshadi
+ng.code.tex
+\c@pgfplotslibrarysurf@no=\count341
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgflibrarypgfplots.surfshadin
+g.pgfsys-pdftex.def)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolormap.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolor.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsstackedplots.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsplothandlers.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplothandler.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplotimage.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.scaling.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscoordprocessing.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.errorbars.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.markers.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsticks.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.paths.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduledecorations.code.tex
+\pgfdecoratedcompleteddistance=\dimen299
+\pgfdecoratedremainingdistance=\dimen300
+\pgfdecoratedinputsegmentcompleteddistance=\dimen301
+\pgfdecoratedinputsegmentremainingdistance=\dimen302
+\pgf@decorate@distancetomove=\dimen303
+\pgf@decorate@repeatstate=\count342
+\pgfdecorationsegmentamplitude=\dimen304
+\pgfdecorationsegmentlength=\dimen305
+)
+\tikz@lib@dec@box=\box80
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathmorphing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathmorphing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathreplacing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathreplacing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\tikzlibrarypgfplots.contourl
+ua.code.tex)
+\pgfplots@numplots=\count343
+\pgfplots@xmin@reg=\dimen306
+\pgfplots@xmax@reg=\dimen307
+\pgfplots@ymin@reg=\dimen308
+\pgfplots@ymax@reg=\dimen309
+\pgfplots@zmin@reg=\dimen310
+\pgfplots@zmax@reg=\dimen311
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+ryplotmarks.code.tex
+File: tikzlibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplotmarks.code.tex
+File: pgflibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/booktabs\booktabs.sty
+Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
+\heavyrulewidth=\dimen312
+\lightrulewidth=\dimen313
+\cmidrulewidth=\dimen314
+\belowrulesep=\dimen315
+\belowbottomsep=\dimen316
+\aboverulesep=\dimen317
+\abovetopsep=\dimen318
+\cmidrulesep=\dimen319
+\cmidrulekern=\dimen320
+\defaultaddspace=\dimen321
+\@cmidla=\count344
+\@cmidlb=\count345
+\@aboverulesep=\dimen322
+\@belowrulesep=\dimen323
+\@thisruleclass=\count346
+\@lastruleclass=\count347
+\@thisrulewidth=\dimen324
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/siunitx\siunitx.sty
+Package: siunitx 2021-08-27 v3.0.28 A comprehensive (SI) units package
+\l__siunitx_angle_tmp_dim=\dimen325
+\l__siunitx_angle_marker_box=\box81
+\l__siunitx_angle_unit_box=\box82
+\l__siunitx_compound_count_int=\count348
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations\translations.sty
+Package: translations 2021/01/17 v1.10a internationalization of LaTeX2e package
+s (CN)
+)
+\l__siunitx_number_exponent_fixed_int=\count349
+\l__siunitx_number_min_decimal_int=\count350
+\l__siunitx_number_min_integer_int=\count351
+\l__siunitx_number_round_precision_int=\count352
+\l__siunitx_number_group_minimum_int=\count353
+\l__siunitx_table_tmp_box=\box83
+\l__siunitx_table_tmp_dim=\dimen326
+\l__siunitx_table_column_width_dim=\dimen327
+\l__siunitx_table_integer_box=\box84
+\l__siunitx_table_decimal_box=\box85
+\l__siunitx_table_before_box=\box86
+\l__siunitx_table_after_box=\box87
+\l__siunitx_table_before_dim=\dimen328
+\l__siunitx_table_carry_dim=\dimen329
+\l__siunitx_unit_tmp_int=\count354
+\l__siunitx_unit_position_int=\count355
+\l__siunitx_unit_total_int=\count356
+
+(C:\Program Files\MiKTeX\tex/latex/l3packages/l3keys2e\l3keys2e.sty
+(C:\Program Files\MiKTeX\tex/latex/l3kernel\expl3.sty
+Package: expl3 2021-08-27 L3 programming layer (loader) 
+
+(C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-pdftex.def
+File: l3backend-pdftex.def 2021-08-04 L3 backend support: PDF output (pdfTeX)
+\l__color_backend_stack_int=\count357
+\l__pdf_internal_box=\box88
+))
+Package: l3keys2e 2021-08-27 LaTeX2e option processing using LaTeX3 keys
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\array.sty
+Package: array 2021/04/20 v2.5e Tabular extension package (FMi)
+\col@sep=\dimen330
+\ar@mcellbox=\box89
+\extrarowheight=\dimen331
+\NC@list=\toks53
+\extratabsurround=\skip64
+\backup@length=\skip65
+\ar@cellbox=\box90
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/svg\svg.sty
+Package: svg 2020/11/26 v2.02k (include SVG pictures)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrbase.sty
+Package: scrbase 2021/06/25 v3.34 KOMA-Script package (KOMA-Script-independent 
+basics and keyval usage)
+Applying: [2021/05/01] Usage of raw or classic option list on input line 252.
+Already applied: [0000/00/00] Usage of raw or classic option list on input line
+ 368.
+)
+(C:\Program Files\MiKTeX\tex/latex/trimspaces\trimspaces.sty
+Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\shellesc.sty
+Package: shellesc 2019/11/08 v1.0c unified shell escape interface for LaTeX
+Package shellesc Info: Unrestricted shell escape enabled on input line 75.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/ifplatform\ifplatform.sty
+Package: ifplatform 2017/10/13 v0.4a Testing for the operating system
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/catchfile\catchfile.sty
+Package: catchfile 2019/12/09 v1.8 Catch the contents of a file (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifluatex.sty
+Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
+))
+\c@svg@param@lastpage=\count358
+\svg@box=\box91
+\c@svg@param@currpage=\count359
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/transparent\transparent.sty
+Package: transparent 2019/11/29 v1.4 Transparency via pdfTeX's color stack (HO)
+
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdraw.sty
+Package: pmboxdraw 2019/12/05 v1.4 Poor man's box drawing characters (HO)
+Now handling font encoding pmboxdraw ...
+... processing UTF-8 mapping file for font encoding pmboxdraw
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdrawenc.dfu
+File: pmboxdrawenc.dfu 2019/12/05 v1.4 UTF-8 support for box drawing characters
+
+   defining Unicode char U+2500 (decimal 9472)
+   defining Unicode char U+2501 (decimal 9473)
+   defining Unicode char U+2502 (decimal 9474)
+   defining Unicode char U+2503 (decimal 9475)
+   defining Unicode char U+250C (decimal 9484)
+   defining Unicode char U+250D (decimal 9485)
+   defining Unicode char U+250E (decimal 9486)
+   defining Unicode char U+250F (decimal 9487)
+   defining Unicode char U+2510 (decimal 9488)
+   defining Unicode char U+2511 (decimal 9489)
+   defining Unicode char U+2512 (decimal 9490)
+   defining Unicode char U+2513 (decimal 9491)
+   defining Unicode char U+2514 (decimal 9492)
+   defining Unicode char U+2515 (decimal 9493)
+   defining Unicode char U+2516 (decimal 9494)
+   defining Unicode char U+2517 (decimal 9495)
+   defining Unicode char U+2518 (decimal 9496)
+   defining Unicode char U+2519 (decimal 9497)
+   defining Unicode char U+251A (decimal 9498)
+   defining Unicode char U+251B (decimal 9499)
+   defining Unicode char U+251C (decimal 9500)
+   defining Unicode char U+251D (decimal 9501)
+   defining Unicode char U+251E (decimal 9502)
+   defining Unicode char U+251F (decimal 9503)
+   defining Unicode char U+2520 (decimal 9504)
+   defining Unicode char U+2521 (decimal 9505)
+   defining Unicode char U+2522 (decimal 9506)
+   defining Unicode char U+2523 (decimal 9507)
+   defining Unicode char U+2524 (decimal 9508)
+   defining Unicode char U+252C (decimal 9516)
+   defining Unicode char U+252D (decimal 9517)
+   defining Unicode char U+252E (decimal 9518)
+   defining Unicode char U+252F (decimal 9519)
+   defining Unicode char U+2530 (decimal 9520)
+   defining Unicode char U+2531 (decimal 9521)
+   defining Unicode char U+2532 (decimal 9522)
+   defining Unicode char U+2533 (decimal 9523)
+   defining Unicode char U+2534 (decimal 9524)
+   defining Unicode char U+2535 (decimal 9525)
+   defining Unicode char U+2536 (decimal 9526)
+   defining Unicode char U+2537 (decimal 9527)
+   defining Unicode char U+2538 (decimal 9528)
+   defining Unicode char U+2539 (decimal 9529)
+   defining Unicode char U+253A (decimal 9530)
+   defining Unicode char U+253B (decimal 9531)
+   defining Unicode char U+253C (decimal 9532)
+   defining Unicode char U+253D (decimal 9533)
+   defining Unicode char U+253E (decimal 9534)
+   defining Unicode char U+253F (decimal 9535)
+   defining Unicode char U+2540 (decimal 9536)
+   defining Unicode char U+2541 (decimal 9537)
+   defining Unicode char U+2542 (decimal 9538)
+   defining Unicode char U+2543 (decimal 9539)
+   defining Unicode char U+2544 (decimal 9540)
+   defining Unicode char U+2545 (decimal 9541)
+   defining Unicode char U+2546 (decimal 9542)
+   defining Unicode char U+2547 (decimal 9543)
+   defining Unicode char U+2548 (decimal 9544)
+   defining Unicode char U+2549 (decimal 9545)
+   defining Unicode char U+254A (decimal 9546)
+   defining Unicode char U+254B (decimal 9547)
+   defining Unicode char U+2550 (decimal 9552)
+   defining Unicode char U+2551 (decimal 9553)
+   defining Unicode char U+2552 (decimal 9554)
+   defining Unicode char U+2553 (decimal 9555)
+   defining Unicode char U+2554 (decimal 9556)
+   defining Unicode char U+2555 (decimal 9557)
+   defining Unicode char U+2556 (decimal 9558)
+   defining Unicode char U+2557 (decimal 9559)
+   defining Unicode char U+2558 (decimal 9560)
+   defining Unicode char U+2559 (decimal 9561)
+   defining Unicode char U+255A (decimal 9562)
+   defining Unicode char U+255B (decimal 9563)
+   defining Unicode char U+255C (decimal 9564)
+   defining Unicode char U+255D (decimal 9565)
+   defining Unicode char U+255E (decimal 9566)
+   defining Unicode char U+255F (decimal 9567)
+   defining Unicode char U+2560 (decimal 9568)
+   defining Unicode char U+2561 (decimal 9569)
+   defining Unicode char U+2562 (decimal 9570)
+   defining Unicode char U+2563 (decimal 9571)
+   defining Unicode char U+2564 (decimal 9572)
+   defining Unicode char U+2565 (decimal 9573)
+   defining Unicode char U+2566 (decimal 9574)
+   defining Unicode char U+2567 (decimal 9575)
+   defining Unicode char U+2568 (decimal 9576)
+   defining Unicode char U+2569 (decimal 9577)
+   defining Unicode char U+256A (decimal 9578)
+   defining Unicode char U+256B (decimal 9579)
+   defining Unicode char U+256C (decimal 9580)
+   defining Unicode char U+2574 (decimal 9588)
+   defining Unicode char U+2575 (decimal 9589)
+   defining Unicode char U+2576 (decimal 9590)
+   defining Unicode char U+2577 (decimal 9591)
+   defining Unicode char U+2578 (decimal 9592)
+   defining Unicode char U+2579 (decimal 9593)
+   defining Unicode char U+257A (decimal 9594)
+   defining Unicode char U+257B (decimal 9595)
+   defining Unicode char U+257C (decimal 9596)
+   defining Unicode char U+257D (decimal 9597)
+   defining Unicode char U+257E (decimal 9598)
+   defining Unicode char U+257F (decimal 9599)
+   defining Unicode char U+2580 (decimal 9600)
+   defining Unicode char U+2581 (decimal 9601)
+   defining Unicode char U+2582 (decimal 9602)
+   defining Unicode char U+2583 (decimal 9603)
+   defining Unicode char U+2584 (decimal 9604)
+   defining Unicode char U+2585 (decimal 9605)
+   defining Unicode char U+2586 (decimal 9606)
+   defining Unicode char U+2587 (decimal 9607)
+   defining Unicode char U+2588 (decimal 9608)
+   defining Unicode char U+2589 (decimal 9609)
+   defining Unicode char U+258A (decimal 9610)
+   defining Unicode char U+258B (decimal 9611)
+   defining Unicode char U+258C (decimal 9612)
+   defining Unicode char U+258D (decimal 9613)
+   defining Unicode char U+258E (decimal 9614)
+   defining Unicode char U+258F (decimal 9615)
+   defining Unicode char U+2590 (decimal 9616)
+   defining Unicode char U+2591 (decimal 9617)
+   defining Unicode char U+2592 (decimal 9618)
+   defining Unicode char U+2593 (decimal 9619)
+   defining Unicode char U+2594 (decimal 9620)
+   defining Unicode char U+2595 (decimal 9621)
+   defining Unicode char U+2596 (decimal 9622)
+   defining Unicode char U+2597 (decimal 9623)
+   defining Unicode char U+2598 (decimal 9624)
+   defining Unicode char U+2599 (decimal 9625)
+   defining Unicode char U+259A (decimal 9626)
+   defining Unicode char U+259B (decimal 9627)
+   defining Unicode char U+259C (decimal 9628)
+   defining Unicode char U+259D (decimal 9629)
+   defining Unicode char U+259E (decimal 9630)
+   defining Unicode char U+259F (decimal 9631)
+)
+\pmbd@W=\dimen332
+\pmbd@H=\dimen333
+\pmbd@L=\dimen334
+\pmbd@Thin=\dimen335
+\pmbd@Thick=\dimen336
+\pmbd@Sep=\dimen337
+)
+(beamerthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime.sty
+Package: datetime 2015/03/20 v2.60 Date Time Package
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fmtcount.sty
+Package: fmtcount 2020/01/30 v3.07
+
+(C:\Program Files\MiKTeX\tex/latex/base\ifthen.sty
+Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/xkeyval\xkeyval.sty
+Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
+
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkeyval.tex
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkvutils.tex
+\XKV@toks=\toks54
+\XKV@tempa@toks=\toks55
+)
+\XKV@depth=\count360
+File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcprefix.sty
+Package: fcprefix 2012/09/28
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcnumparser.sty
+Package: fcnumparser 2017/06/15
+\fc@digit@counter=\count361
+))
+\c@padzeroesN=\count362
+\fc@tmpcatcode=\count363
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fc-english.def
+File: fc-english.def 2016/01/12
+)
+\@DT@modctr=\count364
+\@ordinalctr=\count365
+\@orgargctr=\count366
+\@strctr=\count367
+\@tmpstrctr=\count368
+\@DT@loopN=\count369
+\@DT@X=\count370
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime-defaults.sty
+Package: datetime-defaults 2013/09/10
+)
+\@day=\count371
+\@month=\count372
+\@year=\count373
+\c@HOUR=\count374
+\c@HOURXII=\count375
+\c@MINUTE=\count376
+\c@TOHOUR=\count377
+\c@TOMINUTE=\count378
+\c@SECOND=\count379
+\currenthour=\count380
+\currentminute=\count381
+\currentsecond=\count382
+Package datetime Info: No datetime.cfg file found, using default settings on in
+put line 308.
+\@dtctr=\count383
+\dayofyear=\count384
+\dayofweek=\count385
+LaTeX Info: Redefining \today on input line 736.
+\dt@a=\toks56
+\dt@b=\toks57
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\calc.sty
+Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
+\calc@Acount=\count386
+\calc@Bcount=\count387
+\calc@Adimen=\dimen338
+\calc@Bdimen=\dimen339
+\calc@Askip=\skip66
+\calc@Bskip=\skip67
+LaTeX Info: Redefining \setlength on input line 80.
+LaTeX Info: Redefining \addtolength on input line 81.
+\calc@Ccount=\count388
+\calc@Cskip=\skip68
+)
+Class  Info: The file departments.tex with department logo file naming has been
+ loaded. on input line 21.
+
+(departments.tex) (beamerfontthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemeprofessio
+nalfonts.sty)) (beamerouterthemeDTU.sty) (beamerinnerthemeDTU.sty)
+(beamercolorthemeDTU.sty
+Package dtubeamer Info: Successfully loaded the DTU colours. on input line 22.
+ (dtucolours.tex))
+\widthframenumber=\skip69
+\widthdepartment=\skip70
+\widthtitle=\skip71
+\widthdate=\skip72
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/textpos\textpos.sty
+Package: textpos 2020/09/26 v1.10
+
+Package: textpos 2020/09/26 1.10, absolute positioning of text on the page
+Package textpos Info: choosing support for LaTeX3 on input line 61.
+\TP@textbox=\box92
+\TP@holdbox=\box93
+\TPHorizModule=\dimen340
+\TPVertModule=\dimen341
+\TP@margin=\dimen342
+\TP@absmargin=\dimen343
+Grid set 16 x 16 = 24.89616pt x 18.67212pt
+\TPboxrulesize=\dimen344
+\TP@ox=\dimen345
+\TP@oy=\dimen346
+\TP@tbargs=\toks58
+TextBlockOrigin set to 0pt x 0pt
+)
+TextBlockOrigin set to 0mm x 0mm
+(C:\Program Files\MiKTeX\tex/latex/lm\lmodern.sty
+Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
+LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
+(Font)                  OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `normal'
+(Font)                  OML/cmm/m/it --> OML/lmm/m/it on input line 23.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `normal'
+(Font)                  OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `normal'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
+LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `bold'
+(Font)                  OML/cmm/b/it --> OML/lmm/b/it on input line 27.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `bold'
+(Font)                  OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `bold'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
+(Font)                  OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
+(Font)                  OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
+(Font)                  OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
+(Font)                  OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
+))
+LaTeX Font Info:    Trying to load font information for T1+lmss on input line 1
+2.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\t1lmss.fd
+File: t1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
+) (index.aux)
+\openout1 = `index.aux'.
+
+LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 12.
+LaTeX Font Info:    ... okay on input line 12.
+LaTeX Font Info:    Checking defaults for pmboxdraw/pmboxdraw/m/n on input line
+ 12.
+LaTeX Font Info:    ... okay on input line 12.
+
+*geometry* driver: auto-detecting
+*geometry* detected driver: pdftex
+*geometry* verbose mode - [ preamble ] result:
+* driver: pdftex
+* paper: custom
+* layout: <same size as paper>
+* layoutoffset:(h,v)=(0.0pt,0.0pt)
+* modes: includehead includefoot 
+* h-part:(L,W,R)=(26.64667pt, 347.32933pt, 24.36267pt)
+* v-part:(T,H,B)=(0.0pt, 298.7541pt, 0.0pt)
+* \paperwidth=398.33867pt
+* \paperheight=298.7541pt
+* \textwidth=347.32933pt
+* \textheight=270.30138pt
+* \oddsidemargin=-45.62332pt
+* \evensidemargin=-45.62332pt
+* \topmargin=-72.26999pt
+* \headheight=14.22636pt
+* \headsep=0.0pt
+* \topskip=11.0pt
+* \footskip=14.22636pt
+* \marginparwidth=4.0pt
+* \marginparsep=10.0pt
+* \columnsep=10.0pt
+* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
+* \hoffset=0.0pt
+* \voffset=0.0pt
+* \mag=1000
+* \@twocolumnfalse
+* \@twosidefalse
+* \@mparswitchfalse
+* \@reversemarginfalse
+* (1in=72.27pt=25.4mm, 1cm=28.453pt)
+
+(C:\Program Files\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+\scratchcounter=\count389
+\scratchdimen=\dimen347
+\scratchbox=\box94
+\nofMPsegments=\count390
+\nofMParguments=\count391
+\everyMPshowfont=\toks59
+\MPscratchCnt=\count392
+\MPscratchDim=\dimen348
+\MPnumerator=\count393
+\makeMPintoPDFobject=\count394
+\everyMPtoPDFconversion=\toks60
+) (C:\Program Files\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-base.sty
+Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
+Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
+85.
+
+(C:\Program Files\MiKTeX\tex/latex/00miktex\epstopdf-sys.cfg
+File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
+))
+Package hyperref Info: Link coloring OFF on input line 12.
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\nameref.sty
+Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/refcount\refcount.sty
+Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/gettitlestring\gettitlestring
+.sty
+Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
+)
+\c@section@level=\count395
+)
+LaTeX Info: Redefining \ref on input line 12.
+LaTeX Info: Redefining \pageref on input line 12.
+LaTeX Info: Redefining \nameref on input line 12.
+ (index.out) (index.out)
+\@outlinefile=\write5
+\openout5 = `index.out'.
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-basic-dic
+tionary-English.dict
+Dictionary: translator-basic-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-bibliogra
+phy-dictionary-English.dict
+Dictionary: translator-bibliography-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-environme
+nt-dictionary-English.dict
+Dictionary: translator-environment-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-months-di
+ctionary-English.dict
+Dictionary: translator-months-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-numbers-d
+ictionary-English.dict
+Dictionary: translator-numbers-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-theorem-d
+ictionary-English.dict
+Dictionary: translator-theorem-dictionary, Language: English 
+)
+Package pgfplots notification 'compat/show suggested version=true': document ha
+s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations/dicts\translations
+-basic-dictionary-english.trsl
+File: translations-basic-dictionary-english.trsl (english translation file `tra
+nslations-basic-dictionary')
+)
+Package translations Info: loading dictionary `translations-basic-dictionary' f
+or `english'. on input line 12.
+ (index.nav)
+<tex_dtu_logo.pdf, id=12, 38.98967pt x 56.87248pt>
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 12.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 15.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+<tex_dtu_compute_a_uk.pdf, id=13, 309.17804pt x 36.72722pt>
+File: tex_dtu_compute_a_uk.pdf Graphic file (type pdf)
+<use tex_dtu_compute_a_uk.pdf>
+Package pdftex.def Info: tex_dtu_compute_a_uk.pdf  used on input line 15.
+(pdftex.def)             Requested size: 225.61316pt x 26.80016pt.
+<tex_dtu_frise.pdf, id=14, 959.585pt x 353.32pt>
+File: tex_dtu_frise.pdf Graphic file (type pdf)
+<use tex_dtu_frise.pdf>
+Package pdftex.def Info: tex_dtu_frise.pdf  used on input line 15.
+(pdftex.def)             Requested size: 276.85223pt x 101.93542pt.
+ [1
+
+{C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map} <./tex_dtu_logo.p
+df> <./tex_dtu_compute_a_uk.pdf
+
+pdfTeX warning: pdflatex (file ./tex_dtu_compute_a_uk.pdf): PDF inclusion: mult
+iple pdfs with page group included in a single page
+> <./tex_dtu_frise.pdf>]
+<osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf, id=29, 398.3382pt x 298.75415pt>
+
+File: osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf Graphic file (type pdf)
+<use osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf>
+Package pdftex.def Info: osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf  used on 
+input line 20.
+(pdftex.def)             Requested size: 398.33867pt x 298.77165pt.
+LaTeX Font Info:    Trying to load font information for T1+lmtt on input line 2
+0.
+ (C:\Program Files\MiKTeX\tex/latex/lm\t1lmtt.fd
+File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OT1+lmr on input line 2
+0.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\ot1lmr.fd
+File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OML+lmm on input line 2
+0.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omllmm.fd
+File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMS+lmsy on input line 
+20.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omslmsy.fd
+File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMX+lmex on input line 
+20.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omxlmex.fd
+File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <10.95> on input line 20.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <8> on input line 20.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <6> on input line 20.
+LaTeX Font Info:    Trying to load font information for U+msa on input line 20.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsa.fd
+File: umsa.fd 2013/01/14 v3.01 AMS symbols A
+)
+LaTeX Font Info:    Trying to load font information for U+msb on input line 20.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsb.fd
+File: umsb.fd 2013/01/14 v3.01 AMS symbols B
+)
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 20.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+ [2
+
+ <./osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf>]
+\tf@nav=\write6
+\openout6 = `index.nav'.
+
+\tf@toc=\write7
+\openout7 = `index.toc'.
+
+\tf@snm=\write8
+\openout8 = `index.snm'.
+
+ (index.aux)
+Package rerunfilecheck Info: File `index.out' has not changed.
+(rerunfilecheck)             Checksum: D41D8CD98F00B204E9800998ECF8427E;0.
+ ) 
+Here is how much of TeX's memory you used:
+ 41055 strings out of 478927
+ 964685 string characters out of 2862359
+ 1366802 words of memory out of 3000000
+ 58099 multiletter control sequences out of 15000+600000
+ 436788 words of font info for 54 fonts, out of 8000000 for 9000
+ 1141 hyphenation exceptions out of 8191
+ 128i,21n,124p,2111b,763s stack positions out of 5000i,500n,10000p,200000b,80000s
+{C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc}<C:/Program Files/MiKTe
+X/fonts/type1/public/lm/lmss10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/
+lm/lmss8.pfb><C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb><C:/Pr
+ogram Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb>
+Output written on index.pdf (2 pages, 134621 bytes).
+PDF statistics:
+ 74 PDF objects out of 1000 (max. 8388607)
+ 5 named destinations out of 1000 (max. 500000)
+ 63 words of extra memory for PDF output out of 10000 (max. 10000000)
+
diff --git a/examples/new_project/index.nav b/examples/new_project/index.nav
new file mode 100644
index 0000000000000000000000000000000000000000..9033d8ba0cd2afbd30fe6ab857d8374468715862
--- /dev/null
+++ b/examples/new_project/index.nav
@@ -0,0 +1,9 @@
+\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}
+\headcommand {\beamer@framepages {1}{1}}
+\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}
+\headcommand {\beamer@framepages {2}{2}}
+\headcommand {\beamer@partpages {1}{2}}
+\headcommand {\beamer@subsectionpages {1}{2}}
+\headcommand {\beamer@sectionpages {1}{2}}
+\headcommand {\beamer@documentpages {2}}
+\headcommand {\gdef \inserttotalframenumber {2}}
diff --git a/examples/new_project/index.out b/examples/new_project/index.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/new_project/index.pdf b/examples/new_project/index.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..844e4592eced185506f17d3ceec8742fae4daa84
Binary files /dev/null and b/examples/new_project/index.pdf differ
diff --git a/examples/new_project/index.snm b/examples/new_project/index.snm
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/new_project/index.tex b/examples/new_project/index.tex
new file mode 100644
index 0000000000000000000000000000000000000000..dcd0e237c2e5e970c83e189a63894f6390b823f7
--- /dev/null
+++ b/examples/new_project/index.tex
@@ -0,0 +1,22 @@
+ 
+\documentclass[aspectratio=43]{beamer}
+\usepackage{etoolbox}
+\newtoggle{overlabel_includesvgs}
+\newtoggle{overlabel_includelabels}
+\toggletrue{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+\input{beamer_slider_preamble.tex}
+
+\title{Example slide show}
+\author{Tue Herlau}
+\begin{document}
+\begin{frame}
+\maketitle
+\end{frame}
+
+\begin{frame}\osvg{myoverlay} % Use the \osvg{labelname} - tag to create new overlays. Run slider and check the ./osvgs directory for the svg files!
+\title{Slide with an overlay}
+This is some example text!
+\end{frame}
+
+\end{document}
diff --git a/examples/new_project/index.toc b/examples/new_project/index.toc
new file mode 100644
index 0000000000000000000000000000000000000000..9fbdd18a8c9adf55ec0285e8532d13207dc20bf7
--- /dev/null
+++ b/examples/new_project/index.toc
@@ -0,0 +1 @@
+\babel@toc {english}{}\relax 
diff --git a/examples/new_project/index_2up.pdf b/examples/new_project/index_2up.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5b3a2324c1bfae20c42d5b09add5f63316c19ee8
Binary files /dev/null and b/examples/new_project/index_2up.pdf differ
diff --git a/examples/new_project/index_NO_SVGS.aux b/examples/new_project/index_NO_SVGS.aux
new file mode 100644
index 0000000000000000000000000000000000000000..bf24296eba99000a64412a47963f238227a552fb
--- /dev/null
+++ b/examples/new_project/index_NO_SVGS.aux
@@ -0,0 +1,33 @@
+\relax 
+\providecommand\hyper@newdestlabel[2]{}
+\providecommand{\transparent@use}[1]{}
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper@anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper@last\relax 
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField@AuxAddToFields[1]{}
+\providecommand\HyField@AuxAddToCoFields[2]{}
+\providecommand\babel@aux[2]{}
+\@nameuse{bbl@beforestart}
+\babel@aux{english}{}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {1}{1}}}
+\@writefile{nav}{\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}}
+\@writefile{nav}{\headcommand {\beamer@framepages {2}{2}}}
+\@writefile{nav}{\headcommand {\beamer@partpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@sectionpages {1}{2}}}
+\@writefile{nav}{\headcommand {\beamer@documentpages {2}}}
+\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {2}}}
+\gdef\svg@ink@ver@settings{{\m@ne }{inkscape}{1}}
+\gdef \@abspage@last{2}
diff --git a/examples/new_project/index_NO_SVGS.fdb_latexmk b/examples/new_project/index_NO_SVGS.fdb_latexmk
new file mode 100644
index 0000000000000000000000000000000000000000..37a4521762828d032c29c1a34ae45e4925457766
--- /dev/null
+++ b/examples/new_project/index_NO_SVGS.fdb_latexmk
@@ -0,0 +1,313 @@
+# Fdb version 3
+["pdflatex"] 1630760813 "index_NO_SVGS.tex" "index_NO_SVGS.pdf" "index_NO_SVGS" 1630760820
+  "C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc" 1254938640 2375 baa924870cfb487815765f9094cf3728 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/jknappen/ec/ecss1095.tfm" 993062234 3188 1aa640cd974697c5d1d4a3c92172a829 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1233955454 916 f87d7c45f9c908e672703b83b72241a3 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1233955454 928 2dc8d444221b7a635bb58038579b861a ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1233955454 908 2921f8a10601f252058503cc6570e581 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1233955454 940 228d6584342e91276bf566bcf9716b83 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr10.tfm" 1136768653 1296 45809c5a464d5f32c8f98ba97c1bb47f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmss10.tfm" 1136768653 1316 b636689f1933f24d1294acdf6041daaa ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss10.tfm" 1254938640 11176 53ebf7a171df1f9447b387b178768bb5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss12.tfm" 1254938640 11232 955a7245396175d9219648eadc654ac9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmss8.tfm" 1254938640 11180 705632ac6b4fb69204ad970192cdf4e5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmssbx10.tfm" 1254938640 11168 06d87f5698fd1b642d96449b7c8d90b0 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/ec-lmtt10.tfm" 1254938640 1372 2ef2c2b492b3c4cd7879fe083abbb061 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmex10.tfm" 1254938640 992 ce925c9346c7613270a79afbee98c070 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi10.tfm" 1254938640 1528 6d36b2385e0ca062a654de6ac59cb34f ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi6.tfm" 1254938640 1512 94a3fd88c6f27dbd9ecb46987e297a4e ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmmi8.tfm" 1254938640 1520 a3fe5596932db2db2cbda300920dd4e9 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy10.tfm" 1254938640 1308 02cc510f9dd6012e5815d0c0ffbf6869 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy6.tfm" 1254938640 1300 b0605d44c16c22d99dc001808e4f24ea ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/lmsy8.tfm" 1254938640 1304 cdc9a17df9ef0d2dc320eff37bbab1c4 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr10.tfm" 1254938640 11868 4f81e9b6033c032bdaf9884f4d7ef412 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr6.tfm" 1254938640 11836 e3b6ce3e601aec94f64a536e7f4224d5 ""
+  "C:/Program Files/MiKTeX/fonts/tfm/public/lm/rm-lmr8.tfm" 1254938640 11864 309fd7f43e4a0ba39f6f7644d76e8edf ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss10.pfb" 1254938640 97408 f595704ec2a07246c2d6f7b602587452 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmss8.pfb" 1254938640 94400 e33ecfb646a9f148e2e53da01a9168fe ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb" 1254938640 119663 1a3a2206591ddc98c6d6c6271a282516 ""
+  "C:/Program Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb" 1254938640 113227 d3d1adc024746ff57b20efba82c6d365 ""
+  "C:/Program Files/MiKTeX/tex/context/base/mkii/supp-pdf.mkii" 1580393758 71627 94eb9990bed73c364d7f53f960cc8c5b ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.def" 1626972176 123985 95be6f36f6c54070fdcb3cb50663eed2 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/babel.sty" 1626972176 35620 c595f681ebc251caa49596c63048c363 ""
+  "C:/Program Files/MiKTeX/tex/generic/babel/txtbabel.def" 1626972176 5233 a89961f969f72563cb59411e9dc4ae8e ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifluatex.sty" 1583527000 492 1994775aa15b0d1289725a0b1bbc2d4c ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifpdf.sty" 1583527000 480 5778104efadad304ced77548ca2184b1 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/iftex.sty" 1583527000 6501 4011d89d9621e0b0901138815ba5ff29 ""
+  "C:/Program Files/MiKTeX/tex/generic/iftex/ifvtex.sty" 1583527000 1057 525c2192b5febbd8c1f662c9468335bb ""
+  "C:/Program Files/MiKTeX/tex/generic/pdftexcmds/pdftexcmds.sty" 1623005277 20089 80423eac55aa175305d35b49e04fe23b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1621073245 992 855ff26741653ab54814101ca36e153c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1621073245 43820 1fef971b75380574ab35a0d37fd92608 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1621073245 19324 f4e4c6403dd0f1605fd20ed22fa79dea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1621073245 6038 ccb406740cc3f03bbfb58ad504fe8c27 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1621073245 6944 e12f8f7a7364ddf66f93ba30fb3a3742 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1621073245 4883 42daaf41e27c3735286e23e48d2d7af9 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1621073245 2544 8c06d2a7f0f469616ac9e13db6d2f842 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1621073245 44195 5e390c414de027626ca5e2df888fa68d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1621073245 17311 2ef6b2e29e2fc6a2fc8d6d652176e257 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1621073245 21302 788a79944eb22192a4929e46963a3067 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1621073245 9690 01feb7cde25d4293ef36eef45123eb80 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1621073245 33335 dd1fa4814d4e51f18be97d88bf0da60c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1621073245 2965 4c2b1f4e0826925746439038172e5d6f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1621073245 5196 2cc249e0ee7e03da5f5f6589257b1e5b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1621073245 20726 d4c8db1e2e53b72721d29916314a22ea ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1621073245 35249 abd4adf948f960299a4b3d27c5dddf46 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1621073245 21989 fdc867d05d228316de137a9fc5ec3bbe ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1621073245 8893 e851de2175338fdf7c17f3e091d94618 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1621073245 5493 23e371e6fe3e7e42533d6d6c15662e0d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex" 1621073245 321 cdd11262840e01e25374a2d458f15e99 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex" 1621073245 1319 0b2de5126c6cbc295f0eb77f7344b34d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex" 1621073245 325 36322b0789619b270aec5993d5a9ed08 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1621073245 11518 738408f795261b70ce8dd47459171309 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1621073245 186007 6e7dfe0bd57520fd5f91641aa72dcac8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex" 1621073245 8843 5533436db3e30fbad1e0440db6027dac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex" 1621073245 7474 f05a7223b140f230922562ac6a9fede5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryfpu.code.tex" 1621073245 85938 8e4ba97c5906e1c0d158aea81fe29af7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1621073245 32995 ac577023e12c0e4bd8aa420b2e852d1a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex" 1621073245 14524 e1074042dc8f19d631452e43073ea3ba ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfint.code.tex" 1621073245 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmath.code.tex" 1621073245 521 8e224a7af69b7fee4451d1bf76b46654 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathcalc.code.tex" 1621073245 13391 84d29568c13bdce4133ab4a214711112 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfloat.code.tex" 1621073245 104935 184ed87524e76d4957860df4ce0cd1c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1621073245 10165 cec5fa73d49da442e56efc2d605ef154 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1621073245 28178 41c17713108e0795aac6fef3d275fbca ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1621073245 9989 c55967bf45126ff9b061fa2ca0c4694f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1621073245 3865 ac538ab80c5cf82b345016e474786549 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1621073245 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1621073245 11024 0179538121bc2dba172013a3ef89519f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1621073245 7854 4176998eeefd8745ac6d2d4bd9c98451 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1621073245 3379 781797a101f647bab82741a99944a229 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1621073245 92405 f515f31275db273f97b9d8f52e1b0736 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathparser.code.tex" 1621073245 37376 11cd75aac3da1c1b152b2848f30adc14 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/math/pgfmathutil.code.tex" 1621073245 8471 c2883569d03f69e8e1cabfef4999cfd7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1621073245 71722 aa25655703db0306f6401798e312b7b8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1621073245 21201 08d231a2386e2b61d64641c50dc15abd ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1621073245 16121 346f9013d34804439f7436ff6786cef7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1621073245 44784 cedaa399d15f95e68e22906e2cc09ef8 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/pgf.revision.tex" 1621073264 465 d68603f8b820ea4a08cce534944db581 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgf.cfg" 1621073245 926 2963ea0dcf6cc6c0a770b69ec46a477b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1621073245 5546 f3f24d7898386cb7daac70bdd2c4d6dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-luatex.def" 1621073245 13244 6674e4de0678d77c2d7465acc4ea20d7 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1621073245 12601 4786e597516eddd82097506db7cfa098 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1621073245 61163 9b2eefc24e021323e0fc140e9826d016 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1621073245 1896 b8e0ca0ac371d74c0ca05583f6313c91 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1621073245 7778 53c8b5623d80238f6a20aa1df1868e63 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgffor.code.tex" 1621073245 23997 a4bed72405fa644418bea7eac2887006 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeys.code.tex" 1621073245 37060 797782f0eb50075c9bc952374d9a659a ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1621073245 37431 9abe862035de1b29c7a677f3205e3d9f ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfrcs.code.tex" 1621073245 4494 af17fb7efeafe423710479858e42fa7e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1621073245 7251 fb18c67117e09c64de82267e12cd8aa4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-common.tex" 1621073245 29274 e15c5b7157d21523bd9c9f1dfa146b8e ""
+  "C:/Program Files/MiKTeX/tex/generic/pgf/utilities/pgfutil-latex.def" 1621073245 6825 a2b0ea5b539dda0625e99dd15785ab59 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex" 1621075461 22701 5fab7b8ebb90b053dc067d1bd37e43c2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex" 1621075461 3047 aa82404aec57311271f4991c44bd71dc ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.code.tex" 1621075461 2931 5d52092da9e839accd7c9026062fe5c3 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex" 1621075461 23537 54be8160344d894595f6d145b1311658 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex" 1621075461 4288 b8d6247899b21e3bb66bb11b24d30f2c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex" 1621075461 13828 11d1b09335a4a8baa693dd1e6cac3edf ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex" 1621075461 24373 6544c1554e5da33118301011eb03058d ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex" 1621075461 18861 7dc35832c8ccea3aa73cdcd75ec0a60b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex" 1621075461 83469 f77a7d8a23834d4c2472f8dba8e67bff ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex" 1621075461 12347 43d867ea29e34d528123d9ef750aa146 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.code.tex" 1621075461 485274 aafeb7052fbed4c8aba6fcc36c94ea72 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.errorbars.code.tex" 1621075461 22428 72578a4c9324bc5dfafe23fe64f64024 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.markers.code.tex" 1621075461 12489 859c23df41fb9067128ef5a64b01c0a4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.paths.code.tex" 1621075461 3533 973f376afa5a4526f16b11630b9931b4 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.revision.tex" 1621075461 520 2a55e10851bbb34fb49a8e1d6b50a09b ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplots.scaling.code.tex" 1621075461 123680 d33fda4929d7200c3e6f0ec83c006aef ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex" 1621075461 367035 be5ad6faf030b5e07b899b712359f9d2 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotscore.code.tex" 1621075461 19944 7957349fbe31c4e8dea9de4cd41cb086 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex" 1621075461 133871 7247b31742a2240343a6739cb76d6821 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex" 1621075461 25239 bf1615252744653354985789b73e7404 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsplothandlers.code.tex" 1621075461 120954 bdf135670013db80411b2fb0f95876ac ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsstackedplots.code.tex" 1621075461 26393 a7d9bbecdd0db20d652c909dac892e25 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/pgfplotsticks.code.tex" 1621075461 91244 1a0e9e49b7a2d10d1b1a610306ba4f8c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def" 1621075461 5907 9dc460712c23e5b3338820499d47608c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex" 1621075461 3095 c82d281b748902a65be2ccca97360b11 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.code.tex" 1621075461 23050 a369aa910ef860a3621fe0459faa335c ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex" 1621075461 26859 7a4ee9d206fb0a0daa0d3108445afb57 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolor.code.tex" 1621075461 23958 1b96260863091af1669c3a38b1c4c9af ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotscolormap.code.tex" 1621075461 88956 018b2512ef27998e97af72e8b1dcdbd5 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.code.tex" 1621075461 71792 dba1b75b15201895eb36f142f13b3238 ""
+  "C:/Program Files/MiKTeX/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex" 1621075461 3286 c17079ba50483e1ac1721268ea016041 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkeyval.tex" 1623005690 19231 3cbf682090baecad8e17a66b7a271ed1 ""
+  "C:/Program Files/MiKTeX/tex/generic/xkeyval/xkvutils.tex" 1623005690 7677 cf3e6aa6a8d444f55327f61df80bfa0c ""
+  "C:/Program Files/MiKTeX/tex/latex/00miktex/epstopdf-sys.cfg" 1616070885 584 2a1075dd71571459f59146da9f7502ad ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amsfonts.sty" 1358201372 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/amssymb.sty" 1358201372 13829 94730e64147574077f8ecfea9bb69af4 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsa.fd" 1358201372 961 6518c6525a34feb5e8250ffa91731cff ""
+  "C:/Program Files/MiKTeX/tex/latex/amsfonts/umsb.fd" 1358201372 961 d02606146ba5601b5645f987c92e6193 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsbsy.sty" 1622999195 2222 da905dc1db75412efd2d8f67739f0596 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsgen.sty" 1622999196 4173 bc0410bcccdff806d6132d3c1ef35481 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsmath.sty" 1622999197 87375 a806706bbc32b3e8482f6d87aeffbf76 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amsopn.sty" 1622999197 4128 c11da5c2df397f39d5783fc9307689d0 ""
+  "C:/Program Files/MiKTeX/tex/latex/amsmath/amstext.sty" 1622999197 2444 b015525572ea0d0165d6ce81ba5e5259 ""
+  "C:/Program Files/MiKTeX/tex/latex/arabi/bblopts.cfg" 1139965200 902 c30e5c373bc58bde21f8f63a3091626f ""
+  "C:/Program Files/MiKTeX/tex/latex/babel-english/english.ldf" 1623001666 7008 9ff5fdcc865b01beca2b0fe4a46231d4 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atbegshi-ltx.sty" 1623741700 3034 7076a43c47446700860d2aebb65ebed5 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/atveryend-ltx.sty" 1623741700 2459 f9456a3cd988c2865f64e327cdb6f7a0 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/fontenc.sty" 1623741700 4946 461cc78f6f26901410d9f1d725079cc6 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/ifthen.sty" 1623741700 5157 f308c7c04889e16c588e78aa42599fae ""
+  "C:/Program Files/MiKTeX/tex/latex/base/inputenc.sty" 1623741700 5049 969aec05d5f39c43f8005910498fcf90 ""
+  "C:/Program Files/MiKTeX/tex/latex/base/size11.clo" 1623741700 8464 efc3cbec9b4f1a5665635866ad7e7dba ""
+  "C:/Program Files/MiKTeX/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1623003186 13886 d1306dcf79a944f6988e688c1785f9ce ""
+  "C:/Program Files/MiKTeX/tex/latex/etoolbox/etoolbox.sty" 1601897756 46845 3b58f70c6e861a13d927bff09d35ecbc ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/color.cfg" 1465894292 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-cfg/graphics.cfg" 1465894292 1224 978390e9c2234eab29404bc21b268d1e ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics-def/pdftex.def" 1622562294 19103 48d29b6e2a64cb717117ef65f107b404 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/color.sty" 1623003325 7153 17c23e5e586ebbdf5d269e7867e53cef ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphics.sty" 1623003325 18399 7e40f80366dffb22c0e7b70517db5cb4 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/graphicx.sty" 1623003325 7972 81ea1752666dc7c1e93f0b4c10665ca1 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/keyval.sty" 1623003325 2671 4de6781a30211fe0ea4c672e4a2a8166 ""
+  "C:/Program Files/MiKTeX/tex/latex/graphics/trig.sty" 1623003325 4007 3bccccf8f35e1bc1ef0f7c55ceeb7713 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hpdftex.def" 1623057842 49890 0bb76a5b745d92e86aed6f3f93e334f0 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref-langpatches.def" 1623057842 1777 940b1aa83773bc035eb882e8d6842769 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref.sty" 1623057842 230915 97a8817f13de4e61bbc3592cb2caa995 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/nameref.sty" 1623057842 13242 133e617c5eebffdd05e421624022b267 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/pd1enc.def" 1623057842 14132 c9404e8e78123ef0d1007c34d1d6da51 ""
+  "C:/Program Files/MiKTeX/tex/latex/hyperref/puenc.def" 1623057842 117004 86586f287ddfad919a0a4bd68934277a ""
+  "C:/Program Files/MiKTeX/tex/latex/l3backend/l3backend-pdftex.def" 1628077986 27662 df2ac0cbce6c3f309d48d78e7c627ccb ""
+  "C:/Program Files/MiKTeX/tex/latex/l3kernel/expl3.sty" 1630067590 6208 18ab2eb39b7f1285bd1aa7af7abc9309 ""
+  "C:/Program Files/MiKTeX/tex/latex/l3packages/l3keys2e/l3keys2e.sty" 1630067846 4674 6b86bef38e2fe7ec813292623122d584 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/lmodern.sty" 1256933040 1606 c17281c7cff2bbd7ff0173e1433487ec ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omllmm.fd" 1256933040 888 44447a3a3af84a22454ef89500942d93 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omslmsy.fd" 1256933040 805 af340a8260c447aa315cfc740ff0152f ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/omxlmex.fd" 1256933040 566 a94661f7b66063f191960bb7935b6ba2 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/ot1lmr.fd" 1256933040 1880 bae7b659316f7344a86218ad38b01d91 ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmss.fd" 1256933040 1639 ba1c66ef577aa5cadc2c0fdc691a26ee ""
+  "C:/Program Files/MiKTeX/tex/latex/lm/t1lmtt.fd" 1256933040 2681 354015af3b61e7be30009f084986375a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgf.sty" 1621073245 1090 bae35ef70b3168089ef166db3e66f5b2 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/basiclayer/pgfcore.sty" 1621073245 410 615550c46f918fcbee37641b02a862d9 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1621073245 21013 f4ff83d25bb56552493b030f27c075ae ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1621073245 989 c49c8ae06d96f8b15869da7428047b1e ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/frontendlayer/tikz.sty" 1621073245 339 c2e180022e3afdb99c7d0ea5ce469b7d ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/math/pgfmath.sty" 1621073245 306 c56a323ca5bf9242f54474ced10fca71 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/systemlayer/pgfsys.sty" 1621073245 443 8c872229db56122037e86bcda49e14f3 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgffor.sty" 1621073245 348 ee405e64380c11319f0e249fed57e6c5 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfkeys.sty" 1621073245 274 5ae372b7df79135d240456a1c6f2cf9a ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/pgfrcs.sty" 1621073245 325 f9f16d12354225b7dd52a3321f085955 ""
+  "C:/Program Files/MiKTeX/tex/latex/pgf/utilities/xxcolor.sty" 1621073245 2232 b9a67bccba736ed334b4b1a860a85c6f ""
+  "C:/Program Files/MiKTeX/tex/latex/pgfplots/pgfplots.sty" 1621075461 4904 ee78b44e85d6fccf08cd99370557481e ""
+  "C:/Program Files/MiKTeX/tex/latex/trimspaces/trimspaces.sty" 1253169183 1380 971a51b00a14503ddf754cab24c3f209 ""
+  "C:/Program Files/MiKTeX/tex/latex/url/url.sty" 1388494052 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
+  "C:/Program Files/MiKTeX/tex/latex/xcolor/xcolor.sty" 1623005660 55589 34128738f682d033422ca125f82e5d62 ""
+  "C:/Program Files/MiKTeX/tex/latex/xkeyval/xkeyval.sty" 1623005690 4902 efb3d66683a2da2a232f71e3a571a899 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/miktex/data/le/pdftex/pdflatex.fmt" 1630675792 9705560 728cc408e60df926a3a0636891efdcb2 ""
+  "C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map" 1630675864 126230 526afa0532fa5c6556c0eded8671d5fa ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/atbegshi/atbegshi.sty" 1575574700 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bigintcalc/bigintcalc.sty" 1576437202 40635 c40361e206be584d448876bba8a64a3b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/bitset/bitset.sty" 1575930176 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/catchfile/catchfile.sty" 1575964050 8622 63834878edeb14dd71d58d8f22bc3e06 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/etexcmds/etexcmds.sty" 1576437238 7734 b98cbb34c81f667027c1e3ebdbfce34b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/gettitlestring/gettitlestring.sty" 1576437266 8371 9d55b8bd010bc717624922fb3477d92e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/infwarerr/infwarerr.sty" 1575403108 8356 7bbb2c2373aa810be568c29e333da8ed ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/intcalc/intcalc.sty" 1576437364 31769 002a487f55041f8e805cfbf6385ffd97 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576766904 5412 d5a2436094cd7be85769db90f29250a6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/kvsetkeys/kvsetkeys.sty" 1576437420 13807 952b0226d4efca026f0e19dd266dcc22 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/ltxcmds/ltxcmds.sty" 1601735609 18568 4409f8f50cd365c68e684407e5350b1b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/pdfescape/pdfescape.sty" 1575930300 19007 15924f7228aca6c6d184b115f4baa231 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/generic/uniquecounter/uniquecounter.sty" 1576437612 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/amscls/amsthm.sty" 1591023609 12594 0d51ac3a545aaaa555021326ff22a6cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/atveryend/atveryend.sty" 1576104710 19336 ce7ae9438967282886b3b036cfad1e4d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/auxhook/auxhook.sty" 1576542332 3935 57aa3c3e203a5c2effb4d2bd2efbc323 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamer.cls" 1622051514 11627 a0fc556fe6cad325c6652484e44780b5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseauxtemplates.sty" 1622051514 23769 e04557111db90d816c3a0d6ce21958f3 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseboxes.sty" 1612974572 6954 d9eb3846e78d9008aaac86cd82372855 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecolor.sty" 1607691110 12834 a2e2edcc4215056529fd4e140e2ed26a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasecompatibility.sty" 1622040986 25555 5b57fd426df33caa3567584eed3ebb7e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasedecode.sty" 1606395924 9407 98317d4428bbbc4430035c0c0e3898d5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasefont.sty" 1609348962 13626 5a8efa954e5cf512c91c80f637cbf1f1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframe.sty" 1606395924 25162 9e33f2887dc316e20c319466b078d6eb ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframecomponents.sty" 1606395924 11898 264f0ae03dbfa791611c1821393bc0b9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseframesize.sty" 1606395924 8800 544bcf1a583ad768d77d8b1d8f18a993 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaselocalstructure.sty" 1612869926 17622 85760d86f730e8faf1f7378f6e67e409 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemisc.sty" 1606395924 8313 358d4bb860bd9098eb24099f36b27af1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasemodes.sty" 1616158010 7574 6d0e29b16443d86a896479ec2aabff07 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenavigation.sty" 1606395924 29020 6cae2187b2d2bc4f39b6bb5bddbcf031 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasenotes.sty" 1606395924 5595 c0c140ec41fa3c9299aa6df19444c391 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoptions.sty" 1606395924 1753 c10ec1df45e4b4c7ee05e306d23f95d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseoverlay.sty" 1606395924 27425 7f090822023c1cb57d609b70b5e7cc42 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaserequires.sty" 1606395924 1593 48c3729494fa250d34789fd6af677f99 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasesection.sty" 1616158010 13527 6266cecef9dcaa294ba1dc5ff2d8a798 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetemplates.sty" 1606395924 5753 fbf8c2f7c7d6d5d1d2b900c353f094e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasethemes.sty" 1606395924 1140 cdaff8d445bd2a4e7afdec5190a758c0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetheorems.sty" 1606395924 4548 cdde9ae4b614ce5ea4cf7a232ceeb6a8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetitle.sty" 1606395924 5356 d32dea458460fce4541d4f9aa765b876 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetoc.sty" 1622040910 7840 84c578534b1233d3bfaae1d8a1ddf9b0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetranslator.sty" 1606395924 637 685bd3d40aca2fa87965a39bc31aca7f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbasetwoscreens.sty" 1606395924 1808 098e1772761e9b4a016e74f1a4c1cb74 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerbaseverbatim.sty" 1606395924 4026 1ba2c6a2acf275d63cb85d60d8597fe8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamercolorthemedefault.sty" 1606395924 7089 c34bc77851d46db7348b94bd5e51168a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemedefault.sty" 1606395924 4236 21e590075d6781cc58fee783316ee268 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerfontthemeprofessionalfonts.sty" 1606395924 333 48f83c1a5bf00cbab1ca9013199d6da1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.20.pdf" 1606395924 2958 4e0c4a6e994e5c4d9da11c477e927f0f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonarticle.pdf" 1606395924 2936 6cc3ef0682cbb62be8aa1b19f0a84ed6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.20.pdf" 1606395924 2734 0bcf939051dd2a936cdfe5982f7c233b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericonbook.pdf" 1606395924 2667 7624351b441ffe4bd2d14e08fbcf063d ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.20.pdf" 1606395924 24451 195d2c060e84f339954bc6d9b52131d7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamericononline.pdf" 1606395924 24611 df07010540266b2b205b492a4d02e7e1 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerinnerthemedefault.sty" 1606395924 13031 a33a15e4b12bfa976c11f59131636ea9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerouterthemedefault.sty" 1606395924 6630 9731ba35f4c7921e311abc957adf446b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/beamer/beamerthemedefault.sty" 1606395924 355 75c98e7b8f427eb7c625ed391b140c5b ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/booktabs/booktabs.sty" 1579097235 6253 f1cb470c9199e7110a27851508ed7a5c ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime-defaults.sty" 1429537382 4215 4c80eaed8cd4f9a80cc6244c0adeb81f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/datetime/datetime.sty" 1429537382 28417 b023ffe1328fa89e7f133201d87029de ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fc-english.def" 1582574640 14870 f66b7dd28616119c2519cd5cc4dcae14 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcnumparser.sty" 1582574640 12791 43a81443714469abac77ce09f44ad2e2 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fcprefix.sty" 1582574640 12519 5c732241af77b5f0e56e640b7d538395 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/fmtcount/fmtcount.sty" 1582574640 32021 ed70d543c537f19c96fc753321f1c3cc ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.cfg" 1578057145 1104 7ac475a4e3466b0b43e138e9356bda83 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/geometry/geometry.sty" 1578057145 42759 9cf6c5257b1bc7af01a58859749dd37a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/hycolor/hycolor.sty" 1580384392 18571 4c28a13fc3d975e6e81c9bea1d697276 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/ifplatform/ifplatform.sty" 1507925536 3910 e04f6a6d983bdbdb024917b7ccc80262 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrbase.sty" 1624609552 99856 4c890d8af16075567cef0c4d8b9c3ec9 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile-hook.sty" 1624609552 10422 be2f2c878190558e80a5e4c1c3689505 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlfile.sty" 1624609552 3128 d39f124aed9b6ba4fe0283d303003d75 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/koma-script/scrlogo.sty" 1624609552 1954 0b0e5fd43ad7d1c55d1d6bb21484aa01 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/kvoptions/kvoptions.sty" 1602228096 22521 d2fceb764a442a2001d257ef11db7618 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/letltxmacro/letltxmacro.sty" 1575403136 5766 13a9e8766c47f30327caf893ece86ac8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdraw.sty" 1575574858 85722 674bb1bdd5ee2d78383a11e280d8251f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/pmboxdraw/pmboxdrawenc.dfu" 1575574858 7980 7af90c90876992fc604543eb1fde4107 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/refcount/refcount.sty" 1576437552 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1575574882 9715 b051d5b493d9fe5f4bc251462d039e5f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/sansmathaccent/sansmathaccent.sty" 1580511864 4282 5d27280ace1239baaa4a225df16125ff ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/siunitx/siunitx.sty" 1630063268 272816 5c96b394eaddb491648148af990b767a ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/svg/svg.sty" 1607185656 43468 671ae75b3a15019004495eff4c0911e8 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/textpos/textpos.sty" 1601744683 13250 212c11575fd736fdcf1f0fd8e72900f5 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/array.sty" 1622550326 12689 a1a7b2795918756dcb9c9cbfacc4d9c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/calc.sty" 1622550326 10214 00ce62e730d0cfe22b35e8f1c84949c7 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/enumerate.sty" 1622550326 3468 068d84ef9735e15f11c5a120c0a1a139 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/tools/shellesc.sty" 1622550326 4118 0f286eca74ee36b7743ff20320e5479f ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/dicts/translations-basic-dictionary-english.trsl" 1610894760 5594 3103bf139c05c0eeb5842dfa5e147511 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translations/translations.sty" 1610894760 44057 b43a7c4927b669cd6ab13bb97942d706 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-basic-dictionary-English.dict" 1622471510 3535 7dc96051305a7e943219126c49c44cd6 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-bibliography-dictionary-English.dict" 1622471508 903 c6d17f0656e9e1abb172b4faebabd617 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-environment-dictionary-English.dict" 1622471508 433 bfb8d1c2c020defd2de8e5c276710094 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-months-dictionary-English.dict" 1622471508 1337 9a6c05e8f0c8b3c5f27cbd0e455cf475 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-numbers-dictionary-English.dict" 1622471508 1638 2bf1a1dea98f8a4d28033fce76e9cc67 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator-theorem-dictionary-English.dict" 1622471508 3523 1f9d9b91f7d78b73e74c7e97bca30fb0 ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/translator/translator.sty" 1622471510 8765 56d370785f0143111ff9898b5adfe08e ""
+  "C:/Users/tuhe/AppData/Roaming/MiKTeX/tex/latex/transparent/transparent.sty" 1575063484 4155 541de118e0abc42fce3317addc90afb0 ""
+  "beamer_slider_preamble.tex" 1630760801 2728 d36ea79be7cec10b3559a5660f2decaf ""
+  "beamercolorthemeDTU.sty" 1630760801 1181 417d2554e23179f8340453c73a028d75 ""
+  "beamerfontthemeDTU.sty" 1630760801 1259 f9c0e548315549e6c866364392c7263a ""
+  "beamerinnerthemeDTU.sty" 1630760801 1413 3c6129d12554e64ce93d7736032738c2 ""
+  "beamerouterthemeDTU.sty" 1630760801 2587 358e933cfccc5eaeb88326ddfaea4d6c ""
+  "beamerthemeDTU.sty" 1630760801 7254 70ddaf2cca3bafac859919a109938477 ""
+  "departments.tex" 1630760801 9638 1234d2d6a2d0975403246bb7c181706b ""
+  "dtucolours.tex" 1630760801 5683 501994c6596e5a9d67cce52d20165e38 ""
+  "index_NO_SVGS.aux" 1630760819 1412 2d0a9582e28c65e3f8629db6ea0ea185 "pdflatex"
+  "index_NO_SVGS.nav" 1630760819 395 640a03f4d3f0f705896c1d8375ddfa75 "pdflatex"
+  "index_NO_SVGS.out" 1630760818 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
+  "index_NO_SVGS.tex" 1630760801 685 bbde1cea7b8c90f367439acde6c917b0 ""
+  "tex_dtu_compute_a_uk.pdf" 1630760801 13504 7ae3ecb9b649001643f902e32d3a8cca ""
+  "tex_dtu_frise.pdf" 1630760801 32488 57c0f48ec5395d976ac1e57718922c22 ""
+  "tex_dtu_logo.pdf" 1630760801 1830 e452da49133969a7656f3882c11e9b04 ""
+  (generated)
+  "index_NO_SVGS.log"
+  "index_NO_SVGS.aux"
+  "index_NO_SVGS.out"
+  "index_NO_SVGS.nav"
+  "index_NO_SVGS.snm"
+  "index_NO_SVGS.toc"
+  "index_NO_SVGS.pdf"
diff --git a/examples/new_project/index_NO_SVGS.fls b/examples/new_project/index_NO_SVGS.fls
new file mode 100644
index 0000000000000000000000000000000000000000..b78d3b11c044594cda2ea4c9049c85bdbdb83c79
--- /dev/null
+++ b/examples/new_project/index_NO_SVGS.fls
@@ -0,0 +1,1891 @@
+PWD C:\Users\tuhe\Documents\slider\examples\new_project
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\miktex\data\le\pdftex\pdflatex.fmt
+INPUT index_NO_SVGS.tex
+OUTPUT index_NO_SVGS.log
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamer.cls
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemodes.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasedecode.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifpdf.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifvtex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\geometry\geometry.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\tex\latex\base\size11.clo
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-common-lists.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfutil-latex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\pgf.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeysfiltered.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgf.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathcalc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathparser.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.basic.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.trigonometric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.random.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.comparison.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.base.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.round.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.misc.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.integerarithmetics.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmathfloat.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfint.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathconstruct.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathusage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoregraphicstate.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransformations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorequick.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreobjects.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreexternal.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransparency.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepatterns.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\basiclayer\pgfcorerdf.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\xxcolor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atbegshi-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\pdfescape\pdfescape.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\hycolor\hycolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\letltxmacro\letltxmacro.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref-langpatches.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bitset\bitset.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\intcalc\intcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\atbegshi\atbegshi.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\atveryend-ltx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\atveryend\atveryend.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaserequires.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecompatibility.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasefont.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amsfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\sansmathaccent\sansmathaccent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile-hook.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlogo.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetranslator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasemisc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetwoscreens.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseoverlay.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetitle.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasesection.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframe.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseverbatim.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframesize.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseframecomponents.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasecolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenotes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetoc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseauxtemplates.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaseboxes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbaselocalstructure.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\enumerate.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasenavigation.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasetheorems.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsbsy.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsopn.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\amscls\amsthm.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerbasethemes.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmss10.tfm
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamercolorthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerinnerthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+OUTPUT index_NO_SVGS.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonbook.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericonarticle.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamericononline.20.pdf
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerouterthemedefault.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT .\beamer_slider_preamble.tex
+INPUT beamer_slider_preamble.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\fontenc.sty
+INPUT C:\Program Files\MiKTeX\fonts\tfm\jknappen\ec\ecss1095.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\inputenc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\babel.def
+INPUT C:\Program Files\MiKTeX\tex\generic\babel\txtbabel.def
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\arabi\bblopts.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\babel-english\english.ldf
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgfplots\pgfplots.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.revision.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-luatex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleshapes.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduleplot.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\math\pgfmath.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmodulematrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscore.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgfplotssysgeneric.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgfplotslibrary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\oldpgfcompatib\pgfplotsoldpgfsupp_loader.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryfpu.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructure.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsliststructureext.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsarray.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsmatrix.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\numtable\pgfplotstableshared.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\liststructure\pgfplotsdeque.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsbinary.data.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotsutil.verb.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\pgflibrarypgfplots.surfshading.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\sys\pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolormap.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\util\pgfplotscolor.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsstackedplots.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsplothandlers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplothandler.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsmeshplotimage.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.scaling.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotscoordprocessing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.errorbars.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.markers.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplotsticks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\pgfplots.paths.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\modules\pgfmoduledecorations.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathmorphing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\decorations\pgflibrarydecorations.pathreplacing.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgfplots\libs\tikzlibrarypgfplots.contourlua.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\pgf\libraries\pgflibraryplotmarks.code.tex
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\booktabs\booktabs.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\siunitx\siunitx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\translations.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amstext.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\color.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3packages\l3keys2e\l3keys2e.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3kernel\expl3.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\array.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\svg\svg.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrbase.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\koma-script\scrlfile.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\trimspaces\trimspaces.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\ifplatform\ifplatform.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\shellesc.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\catchfile\catchfile.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\etexcmds\etexcmds.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\ifluatex.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT .\nul:.tex
+INPUT nul:.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\transparent\transparent.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\auxhook\auxhook.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdraw.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvsetkeys\kvsetkeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\pmboxdraw\pmboxdrawenc.dfu
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\amssymb.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT .\beamerthemeDTU.sty
+INPUT beamerthemeDTU.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkeyval.tex
+INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkvutils.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcprefix.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fcnumparser.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\amsmath\amsgen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fc-english.def
+INPUT C:\Program Files\MiKTeX\tex\latex\base\ifthen.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\datetime\datetime-defaults.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\fmtcount\fmtcount.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\tools\calc.sty
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT .\departments.tex
+INPUT .\departments.tex
+INPUT departments.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT .\beamerfontthemeDTU.sty
+INPUT beamerfontthemeDTU.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\beamer\beamerfontthemeprofessionalfonts.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerouterthemeDTU.sty
+INPUT beamerouterthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamerinnerthemeDTU.sty
+INPUT beamerinnerthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\beamercolorthemeDTU.sty
+INPUT beamercolorthemeDTU.sty
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT .\dtucolours.tex
+INPUT dtucolours.tex
+INPUT C:\Program Files\MiKTeX\tex\latex\xcolor\xcolor.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\textpos\textpos.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\lmodern.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmss.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT .\index_NO_SVGS.aux
+INPUT index_NO_SVGS.aux
+INPUT index_NO_SVGS.aux
+OUTPUT index_NO_SVGS.aux
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\refcount\refcount.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\infwarerr\infwarerr.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\kvoptions\kvoptions.sty
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+OUTPUT index_NO_SVGS.out
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-basic-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-bibliography-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-environment-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-months-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-numbers-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translator\translator-theorem-dictionary-English.dict
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT C:\Users\tuhe\AppData\Roaming\MiKTeX\tex\latex\translations\dicts\translations-basic-dictionary-english.trsl
+INPUT .\index_NO_SVGS.nav
+INPUT index_NO_SVGS.nav
+INPUT index_NO_SVGS.nav
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss12.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmssbx10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmss8.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_compute_a_uk.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT .\tex_dtu_frise.pdf
+INPUT C:\Users\tuhe\AppData\Local\MiKTeX\pdftex\config\pdftex.map
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\t1lmtt.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\ec-lmtt10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\ot1lmr.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\rm-lmr6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omllmm.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmmi6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omslmsy.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy8.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmsy6.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\lm\omxlmex.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\lm\lmex10.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsa.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msam7.tfm
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\tex\latex\amsfonts\umsb.fd
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm10.tfm
+INPUT C:\Program Files\MiKTeX\fonts\tfm\public\amsfonts\symbols\msbm7.tfm
+INPUT .\tex_dtu_logo.pdf
+INPUT tex_dtu_logo.pdf
+INPUT .\tex_dtu_logo.pdf
+OUTPUT index_NO_SVGS.nav
+OUTPUT index_NO_SVGS.toc
+OUTPUT index_NO_SVGS.snm
+INPUT index_NO_SVGS.aux
+INPUT .\index_NO_SVGS.out
+INPUT .\index_NO_SVGS.out
+INPUT C:\Program Files\MiKTeX\fonts\enc\dvips\lm\lm-ec.enc
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmss8.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmssbx10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
+INPUT C:\Program Files\MiKTeX\fonts\type1\public\lm\lmtt10.pfb
diff --git a/examples/new_project/index_NO_SVGS.log b/examples/new_project/index_NO_SVGS.log
new file mode 100644
index 0000000000000000000000000000000000000000..9187b2d5f42da72946acf4cf5008e6159f3b6c3d
--- /dev/null
+++ b/examples/new_project/index_NO_SVGS.log
@@ -0,0 +1,1516 @@
+This is pdfTeX, Version 3.141592653-2.6-1.40.23 (MiKTeX 21.8) (preloaded format=pdflatex 2021.9.3)  4 SEP 2021 15:06
+entering extended mode
+**./index_NO_SVGS.tex
+(index_NO_SVGS.tex
+LaTeX2e <2021-06-01> patch level 1
+L3 programming layer <2021-08-27>
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamer.cls
+Document Class: beamer 2021/05/26 v3.63 A class for typesetting presentations
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemodes.sty
+(C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty
+Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
+\etb@tempcnta=\count182
+)
+\beamer@tempbox=\box50
+\beamer@tempcount=\count183
+\c@beamerpauses=\count184
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasedecode.sty
+\beamer@slideinframe=\count185
+\beamer@minimum=\count186
+\beamer@decode@box=\box51
+)
+\beamer@commentbox=\box52
+\beamer@modecount=\count187
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifpdf.sty
+Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty
+Package: iftex 2020/03/06 v1.0d TeX engine tests
+))
+\headdp=\dimen138
+\footheight=\dimen139
+\sidebarheight=\dimen140
+\beamer@tempdim=\dimen141
+\beamer@finalheight=\dimen142
+\beamer@animht=\dimen143
+\beamer@animdp=\dimen144
+\beamer@animwd=\dimen145
+\beamer@leftmargin=\dimen146
+\beamer@rightmargin=\dimen147
+\beamer@leftsidebar=\dimen148
+\beamer@rightsidebar=\dimen149
+\beamer@boxsize=\dimen150
+\beamer@vboxoffset=\dimen151
+\beamer@descdefault=\dimen152
+\beamer@descriptionwidth=\dimen153
+\beamer@lastskip=\skip47
+\beamer@areabox=\box53
+\beamer@animcurrent=\box54
+\beamer@animshowbox=\box55
+\beamer@sectionbox=\box56
+\beamer@logobox=\box57
+\beamer@linebox=\box58
+\beamer@sectioncount=\count188
+\beamer@subsubsectionmax=\count189
+\beamer@subsectionmax=\count190
+\beamer@sectionmax=\count191
+\beamer@totalheads=\count192
+\beamer@headcounter=\count193
+\beamer@partstartpage=\count194
+\beamer@sectionstartpage=\count195
+\beamer@subsectionstartpage=\count196
+\beamer@animationtempa=\count197
+\beamer@animationtempb=\count198
+\beamer@xpos=\count199
+\beamer@ypos=\count266
+\beamer@ypos@offset=\count267
+\beamer@showpartnumber=\count268
+\beamer@currentsubsection=\count269
+\beamer@coveringdepth=\count270
+\beamer@sectionadjust=\count271
+\beamer@toclastsection=\count272
+\beamer@tocsectionnumber=\count273
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoptions.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty
+Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
+\KV@toks@=\toks16
+))
+\beamer@paperwidth=\skip48
+\beamer@paperheight=\skip49
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.sty
+Package: geometry 2020/01/02 v5.9 Page Geometry
+
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifvtex.sty
+Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
+)
+\Gm@cnth=\count274
+\Gm@cntv=\count275
+\c@Gm@tempcnt=\count276
+\Gm@bindingoffset=\dimen154
+\Gm@wd@mp=\dimen155
+\Gm@odd@mp=\dimen156
+\Gm@even@mp=\dimen157
+\Gm@layoutwidth=\dimen158
+\Gm@layoutheight=\dimen159
+\Gm@layouthoffset=\dimen160
+\Gm@layoutvoffset=\dimen161
+\Gm@dimlist=\toks17
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/geometry\geometry.cfg))
+(C:\Program Files\MiKTeX\tex/latex/base\size11.clo
+File: size11.clo 2021/02/12 v1.4n Standard LaTeX file (size option)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgfcore.sty
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty
+Package: graphicx 2020/12/05 v1.2c Enhanced LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty
+Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty
+Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
+File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
+)
+Package graphics Info: Driver file: pdftex.def on input line 107.
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-def\pdftex.def
+File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
+))
+\Gin@req@height=\dimen162
+\Gin@req@width=\dimen163
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/systemlayer\pgfsys.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfrcs.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common.tex
+\pgfutil@everybye=\toks18
+\pgfutil@tempdima=\dimen164
+\pgfutil@tempdimb=\dimen165
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-common-lists.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfutil-latex.def
+\pgfutil@abb=\box59
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfrcs.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf\pgf.revision.tex)
+Package: pgfrcs 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys.code.tex
+Package: pgfsys 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex
+\pgfkeys@pathtoks=\toks19
+\pgfkeys@temptoks=\toks20
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeysfiltered.code.tex
+\pgfkeys@tmptoks=\toks21
+))
+\pgf@x=\dimen166
+\pgf@y=\dimen167
+\pgf@xa=\dimen168
+\pgf@ya=\dimen169
+\pgf@xb=\dimen170
+\pgf@yb=\dimen171
+\pgf@xc=\dimen172
+\pgf@yc=\dimen173
+\pgf@xd=\dimen174
+\pgf@yd=\dimen175
+\w@pgf@writea=\write3
+\r@pgf@reada=\read2
+\c@pgf@counta=\count277
+\c@pgf@countb=\count278
+\c@pgf@countc=\count279
+\c@pgf@countd=\count280
+\t@pgf@toka=\toks22
+\t@pgf@tokb=\toks23
+\t@pgf@tokc=\toks24
+\pgf@sys@id@count=\count281
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgf.cfg
+File: pgf.cfg 2021/05/15 v3.1.9a (3.1.9a)
+)
+Driver file for pgf: pgfsys-pdftex.def
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-pdftex.def
+File: pgfsys-pdftex.def 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsys-common-pdf.def
+File: pgfsys-common-pdf.def 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsyssoftpath.code.tex
+File: pgfsyssoftpath.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfsyssoftpath@smallbuffer@items=\count282
+\pgfsyssoftpath@bigbuffer@items=\count283
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/systemlayer\pgfsysprotocol.code.tex
+File: pgfsysprotocol.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))
+(C:\Program Files\MiKTeX\tex/latex/xcolor\xcolor.sty
+Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
+
+(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
+File: color.cfg 2016/01/02 v1.6 sample color configuration
+)
+Package xcolor Info: Driver file: pdftex.def on input line 225.
+Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
+Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
+Package xcolor Info: Model `RGB' extended on input line 1364.
+Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
+Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
+Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
+Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
+Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
+Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcore.code.tex
+Package: pgfcore 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathcalc.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathutil.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathparser.code.tex
+\pgfmath@dimen=\dimen176
+\pgfmath@count=\count284
+\pgfmath@box=\box60
+\pgfmath@toks=\toks25
+\pgfmath@stack@operand=\toks26
+\pgfmath@stack@operation=\toks27
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.basic.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.trigonometric.co
+de.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.random.code.tex)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.comparison.code.
+tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.base.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.round.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.misc.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfunctions.integerarithmeti
+cs.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmathfloat.code.tex
+\c@pgfmathroundto@lastzeros=\count285
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfint.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepoints.code.tex
+File: pgfcorepoints.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@picminx=\dimen177
+\pgf@picmaxx=\dimen178
+\pgf@picminy=\dimen179
+\pgf@picmaxy=\dimen180
+\pgf@pathminx=\dimen181
+\pgf@pathmaxx=\dimen182
+\pgf@pathminy=\dimen183
+\pgf@pathmaxy=\dimen184
+\pgf@xx=\dimen185
+\pgf@xy=\dimen186
+\pgf@yx=\dimen187
+\pgf@yy=\dimen188
+\pgf@zx=\dimen189
+\pgf@zy=\dimen190
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathconstruct.code.t
+ex
+File: pgfcorepathconstruct.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@path@lastx=\dimen191
+\pgf@path@lasty=\dimen192
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathusage.code.tex
+File: pgfcorepathusage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@shorten@end@additional=\dimen193
+\pgf@shorten@start@additional=\dimen194
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorescopes.code.tex
+File: pgfcorescopes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfpic=\box61
+\pgf@hbox=\box62
+\pgf@layerbox@main=\box63
+\pgf@picture@serial@count=\count286
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoregraphicstate.code.te
+x
+File: pgfcoregraphicstate.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgflinewidth=\dimen195
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransformations.code
+.tex
+File: pgfcoretransformations.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@pt@x=\dimen196
+\pgf@pt@y=\dimen197
+\pgf@pt@temp=\dimen198
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorequick.code.tex
+File: pgfcorequick.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreobjects.code.tex
+File: pgfcoreobjects.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepathprocessing.code.
+tex
+File: pgfcorepathprocessing.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorearrows.code.tex
+File: pgfcorearrows.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfarrowsep=\dimen199
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreshade.code.tex
+File: pgfcoreshade.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@max=\dimen256
+\pgf@sys@shading@range@num=\count287
+\pgf@shadingcount=\count288
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreimage.code.tex
+File: pgfcoreimage.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoreexternal.code.tex
+File: pgfcoreexternal.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfexternal@startupbox=\box64
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorelayers.code.tex
+File: pgfcorelayers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcoretransparency.code.te
+x
+File: pgfcoretransparency.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorepatterns.code.tex
+File: pgfcorepatterns.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+) (C:\Program Files\MiKTeX\tex/generic/pgf/basiclayer\pgfcorerdf.code.tex
+File: pgfcorerdf.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\xxcolor.sty
+Package: xxcolor 2003/10/24 ver 0.1
+\XC@nummixins=\count289
+\XC@countmixins=\count290
+)
+(C:\Program Files\MiKTeX\tex/latex/base\atbegshi-ltx.sty
+Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
+package with kernel methods
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref.sty
+Package: hyperref 2021-06-07 v7.00m Hypertext links for LaTeX
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
+Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
+Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
+)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/infwarerr\infwarerr.sty
+Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
+)
+Package pdftexcmds Info: \pdf@primitive is available.
+Package pdftexcmds Info: \pdf@ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvsetkeys\kvsetkeys.sty
+Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/pdfescape\pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/hycolor\hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/auxhook\auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/kvoptions\kvoptions.sty
+Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
+)
+\@linkdim=\dimen257
+\Hy@linkcounter=\count291
+\Hy@pagecounter=\count292
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\pd1enc.def
+File: pd1enc.def 2021-06-07 v7.00m Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref-langpatches.def
+File: hyperref-langpatches.def 2021-06-07 v7.00m Hyperref: patches for babel la
+nguages
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/intcalc\intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/etexcmds\etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count293
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\puenc.def
+File: puenc.def 2021-06-07 v7.00m Hyperref: PDF Unicode definition (HO)
+Now handling font encoding PU ...
+... no UTF-8 mapping file for font encoding PU
+)
+Package hyperref Info: Option `bookmarks' set `true' on input line 4073.
+Package hyperref Info: Option `bookmarksopen' set `true' on input line 4073.
+Package hyperref Info: Option `implicit' set `false' on input line 4073.
+Package hyperref Info: Hyper figures OFF on input line 4192.
+Package hyperref Info: Link nesting OFF on input line 4197.
+Package hyperref Info: Hyper index ON on input line 4200.
+Package hyperref Info: Plain pages OFF on input line 4207.
+Package hyperref Info: Backreferencing OFF on input line 4212.
+Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
+Package hyperref Info: Bookmarks ON on input line 4445.
+\c@Hy@tempcnt=\count294
+
+(C:\Program Files\MiKTeX\tex/latex/url\url.sty
+\Urlmuskip=\muskip16
+Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4804.
+\XeTeXLinkMargin=\dimen258
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bitset\bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
+)
+))
+\Fld@menulength=\count295
+\Field@Width=\dimen259
+\Fld@charsize=\dimen260
+Package hyperref Info: Hyper figures OFF on input line 6076.
+Package hyperref Info: Link nesting OFF on input line 6081.
+Package hyperref Info: Hyper index ON on input line 6084.
+Package hyperref Info: backreferencing OFF on input line 6091.
+Package hyperref Info: Link coloring OFF on input line 6096.
+Package hyperref Info: Link coloring with OCG OFF on input line 6101.
+Package hyperref Info: PDF/A mode OFF on input line 6106.
+LaTeX Info: Redefining \ref on input line 6146.
+LaTeX Info: Redefining \pageref on input line 6150.
+\Hy@abspage=\count296
+
+
+Package hyperref Message: Stopped early.
+
+)
+Package hyperref Info: Driver (autodetected): hpdftex.
+ (C:\Program Files\MiKTeX\tex/latex/hyperref\hpdftex.def
+File: hpdftex.def 2021-06-07 v7.00m Hyperref driver for pdfTeX
+
+(C:\Program Files\MiKTeX\tex/latex/base\atveryend-ltx.sty
+Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
+e
+with kernel methods
+)
+\Fld@listcount=\count297
+\c@bookmark@seq@number=\count298
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.s
+ty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/uniquecounter\uniquecounter.s
+ty
+Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
+)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+86.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaserequires.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecompatibility.
+sty) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasefont.sty
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amssymb.sty
+Package: amssymb 2013/01/14 v3.01 AMS font symbols
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\amsfonts.sty
+Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
+\@emptytoks=\toks28
+\symAMSa=\mathgroup4
+\symAMSb=\mathgroup5
+LaTeX Font Info:    Redeclaring math symbol \hbar on input line 98.
+LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
+(Font)                  U/euf/m/n --> U/euf/b/n on input line 106.
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/sansmathaccent\sansmathaccent.s
+ty
+Package: sansmathaccent 2020/01/31
+ (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile.sty
+Package: scrlfile 2021/06/25 v3.34 KOMA-Script package (file load hooks)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlfile-hook.sty
+Package: scrlfile-hook 2021/06/25 v3.34 KOMA-Script package (using LaTeX hooks)
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrlogo.sty
+Package: scrlogo 2021/06/25 v3.34 KOMA-Script package (logo)
+)))))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetranslator.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator.sty
+Package: translator 2021-05-31 v1.12d Easy translation of strings in LaTeX
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasemisc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetwoscreens.sty
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseoverlay.sty
+\beamer@argscount=\count299
+\beamer@lastskipcover=\skip50
+\beamer@trivlistdepth=\count300
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetitle.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasesection.sty
+\c@lecture=\count301
+\c@part=\count302
+\c@section=\count303
+\c@subsection=\count304
+\c@subsubsection=\count305
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframe.sty
+\beamer@framebox=\box65
+\beamer@frametitlebox=\box66
+\beamer@zoombox=\box67
+\beamer@zoomcount=\count306
+\beamer@zoomframecount=\count307
+\beamer@frametextheight=\dimen261
+\c@subsectionslide=\count308
+\beamer@frametopskip=\skip51
+\beamer@framebottomskip=\skip52
+\beamer@frametopskipautobreak=\skip53
+\beamer@framebottomskipautobreak=\skip54
+\beamer@envbody=\toks29
+\framewidth=\dimen262
+\c@framenumber=\count309
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseverbatim.sty
+\beamer@verbatimfileout=\write4
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframesize.sty
+\beamer@splitbox=\box68
+\beamer@autobreakcount=\count310
+\beamer@autobreaklastheight=\dimen263
+\beamer@frametitletoks=\toks30
+\beamer@framesubtitletoks=\toks31
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseframecomponent
+s.sty
+\beamer@footins=\box69
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasecolor.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenotes.sty
+\beamer@frameboxcopy=\box70
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetoc.sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetemplates.sty
+\beamer@sbttoks=\toks32
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseauxtemplates.s
+ty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaseboxes.sty
+\bmb@box=\box71
+\bmb@colorbox=\box72
+\bmb@boxwidth=\dimen264
+\bmb@boxheight=\dimen265
+\bmb@prevheight=\dimen266
+\bmb@temp=\dimen267
+\bmb@dima=\dimen268
+\bmb@dimb=\dimen269
+\bmb@prevheight=\dimen270
+)
+\beamer@blockheadheight=\dimen271
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbaselocalstructure
+.sty (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\enumerate.sty
+Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
+\@enLab=\toks33
+)
+\beamer@bibiconwidth=\skip55
+\c@figure=\count311
+\c@table=\count312
+\abovecaptionskip=\skip56
+\belowcaptionskip=\skip57
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasenavigation.sty
+\beamer@section@min@dim=\dimen272
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasetheorems.sty
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsmath.sty
+Package: amsmath 2021/04/20 v2.17j AMS math features
+\@mathmargin=\skip58
+
+For additional information on amsmath, use the `?' option.
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amstext.sty
+Package: amstext 2000/06/29 v2.01 AMS text
+
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0 generic functions
+\@emptytoks=\toks34
+\ex@=\dimen273
+))
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d Bold Symbols
+\pmbraise@=\dimen274
+)
+(C:\Program Files\MiKTeX\tex/latex/amsmath\amsopn.sty
+Package: amsopn 2016/03/08 v2.02 operator names
+)
+\inf@bad=\count313
+LaTeX Info: Redefining \frac on input line 234.
+\uproot@=\count314
+\leftroot@=\count315
+LaTeX Info: Redefining \overline on input line 399.
+\classnum@=\count316
+\DOTSCASE@=\count317
+LaTeX Info: Redefining \ldots on input line 496.
+LaTeX Info: Redefining \dots on input line 499.
+LaTeX Info: Redefining \cdots on input line 620.
+\Mathstrutbox@=\box73
+\strutbox@=\box74
+\big@size=\dimen275
+LaTeX Font Info:    Redeclaring font encoding OML on input line 743.
+LaTeX Font Info:    Redeclaring font encoding OMS on input line 744.
+\macc@depth=\count318
+\c@MaxMatrixCols=\count319
+\dotsspace@=\muskip17
+\c@parentequation=\count320
+\dspbrk@lvl=\count321
+\tag@help=\toks35
+\row@=\count322
+\column@=\count323
+\maxfields@=\count324
+\andhelp@=\toks36
+\eqnshift@=\dimen276
+\alignsep@=\dimen277
+\tagshift@=\dimen278
+\tagwidth@=\dimen279
+\totwidth@=\dimen280
+\lineht@=\dimen281
+\@envbody=\toks37
+\multlinegap=\skip59
+\multlinetaggap=\skip60
+\mathdisplay@stack=\toks38
+LaTeX Info: Redefining \[ on input line 2923.
+LaTeX Info: Redefining \] on input line 2924.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/amscls\amsthm.sty
+Package: amsthm 2020/05/29 v2.20.6
+\thm@style=\toks39
+\thm@bodyfont=\toks40
+\thm@headfont=\toks41
+\thm@notefont=\toks42
+\thm@headpunct=\toks43
+\thm@preskip=\skip61
+\thm@postskip=\skip62
+\thm@headsep=\skip63
+\dth@everypar=\toks44
+)
+\c@theorem=\count325
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerbasethemes.sty))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerthemedefault.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemedefault.s
+ty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamercolorthemedefault.
+sty)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerinnerthemedefault.
+sty
+\beamer@dima=\dimen282
+\beamer@dimb=\dimen283
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerouterthemedefault.
+sty))) (beamer_slider_preamble.tex
+(C:\Program Files\MiKTeX\tex/latex/base\fontenc.sty
+Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
+)
+(C:\Program Files\MiKTeX\tex/latex/base\inputenc.sty
+Package: inputenc 2021/02/14 v1.3d Input encoding file
+\inpenc@prehook=\toks45
+\inpenc@posthook=\toks46
+)
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.sty
+Package: babel 2021/07/22 3.63 The Babel package
+
+(C:\Program Files\MiKTeX\tex/generic/babel\babel.def
+File: babel.def 2021/07/22 3.63 Babel common definitions
+\babel@savecnt=\count326
+\U@D=\dimen284
+\l@unhyphenated=\language79
+
+(C:\Program Files\MiKTeX\tex/generic/babel\txtbabel.def)
+\bbl@readstream=\read3
+)
+LaTeX Info: Redefining \textlatin on input line 730.
+\bbl@dirlevel=\count327
+
+*************************************
+* Local config file bblopts.cfg used
+*
+(C:\Program Files\MiKTeX\tex/latex/arabi\bblopts.cfg
+File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
+ babel
+)
+(C:\Program Files\MiKTeX\tex/latex/babel-english\english.ldf
+Language: english 2017/06/06 v3.3r English support from the babel system
+Package babel Info: Hyphen rules for 'canadian' set to \l@english
+(babel)             (\language0). Reported on input line 102.
+Package babel Info: Hyphen rules for 'australian' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 105.
+Package babel Info: Hyphen rules for 'newzealand' set to \l@ukenglish
+(babel)             (\language73). Reported on input line 108.
+))
+(C:\Program Files\MiKTeX\tex/latex/pgfplots\pgfplots.sty
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.revision.tex)
+Package: pgfplots 2021/05/15 v1.18.1 Data Visualization (1.18.1)
+
+(C:\Program Files\MiKTeX\tex/latex/pgf/frontendlayer\tikz.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/basiclayer\pgf.sty
+Package: pgf 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleshapes.code.tex
+File: pgfmoduleshapes.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfnodeparttextbox=\box75
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduleplot.code.tex
+File: pgfmoduleplot.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-0-65.sty
+Package: pgfcomp-version-0-65 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@nodesepstart=\dimen285
+\pgf@nodesepend=\dimen286
+)
+(C:\Program Files\MiKTeX\tex/latex/pgf/compatibility\pgfcomp-version-1-18.sty
+Package: pgfcomp-version-1-18 2021/05/15 v3.1.9a (3.1.9a)
+)) (C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgffor.sty
+(C:\Program Files\MiKTeX\tex/latex/pgf/utilities\pgfkeys.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgfkeys.code.tex))
+(C:\Program Files\MiKTeX\tex/latex/pgf/math\pgfmath.sty
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/utilities\pgffor.code.tex
+Package: pgffor 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/math\pgfmath.code.tex)
+\pgffor@iter=\dimen287
+\pgffor@skip=\dimen288
+\pgffor@stack=\toks47
+\pgffor@toks=\toks48
+))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz\tikz.code.tex
+Package: tikz 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplothandlers.code.
+tex
+File: pgflibraryplothandlers.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgf@plot@mark@count=\count328
+\pgfplotmarksize=\dimen289
+)
+\tikz@lastx=\dimen290
+\tikz@lasty=\dimen291
+\tikz@lastxsaved=\dimen292
+\tikz@lastysaved=\dimen293
+\tikz@lastmovetox=\dimen294
+\tikz@lastmovetoy=\dimen295
+\tikzleveldistance=\dimen296
+\tikzsiblingdistance=\dimen297
+\tikz@figbox=\box76
+\tikz@figbox@bg=\box77
+\tikz@tempbox=\box78
+\tikz@tempbox@bg=\box79
+\tikztreelevel=\count329
+\tikznumberofchildren=\count330
+\tikznumberofcurrentchild=\count331
+\tikz@fig@count=\count332
+ (C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmodulematrix.code.tex
+File: pgfmodulematrix.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+\pgfmatrixcurrentrow=\count333
+\pgfmatrixcurrentcolumn=\count334
+\pgf@matrix@numberofcolumns=\count335
+)
+\tikz@expandcount=\count336
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rytopaths.code.tex
+File: tikzlibrarytopaths.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscore.code.tex
+\t@pgfplots@toka=\toks49
+\t@pgfplots@tokb=\toks50
+\t@pgfplots@tokc=\toks51
+\pgfplots@tmpa=\dimen298
+\c@pgfplots@coordindex=\count337
+\c@pgfplots@scanlineindex=\count338
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgfplotssysgeneric.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgfplotslibrary.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/oldpgfcompatib\pgfplotsoldpgfsupp
+_loader.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryfpu.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+re.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsliststructu
+reext.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsarray.code.
+tex
+\c@pgfplotsarray@tmp=\count339
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsmatrix.code
+.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/numtable\pgfplotstableshared.code
+.tex
+\c@pgfplotstable@counta=\count340
+\t@pgfplotstable@a=\toks52
+)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/liststructure\pgfplotsdeque.code.
+tex) (C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.code.tex
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsbinary.data.code.tex
+))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotsutil.verb.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\pgflibrarypgfplots.surfshadi
+ng.code.tex
+\c@pgfplotslibrarysurf@no=\count341
+
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/sys\pgflibrarypgfplots.surfshadin
+g.pgfsys-pdftex.def)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolormap.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/util\pgfplotscolor.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsstackedplots.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsplothandlers.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplothandler.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsmeshplotimage.code.tex)))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.scaling.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotscoordprocessing.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.errorbars.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.markers.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplotsticks.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgfplots\pgfplots.paths.code.tex)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/modules\pgfmoduledecorations.code.tex
+\pgfdecoratedcompleteddistance=\dimen299
+\pgfdecoratedremainingdistance=\dimen300
+\pgfdecoratedinputsegmentcompleteddistance=\dimen301
+\pgfdecoratedinputsegmentremainingdistance=\dimen302
+\pgf@decorate@distancetomove=\dimen303
+\pgf@decorate@repeatstate=\count342
+\pgfdecorationsegmentamplitude=\dimen304
+\pgfdecorationsegmentlength=\dimen305
+)
+\tikz@lib@dec@box=\box80
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathmorphing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathmorphing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+rydecorations.pathreplacing.code.tex
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries/decorations\pgflibrarydecora
+tions.pathreplacing.code.tex))
+(C:\Program Files\MiKTeX\tex/generic/pgfplots/libs\tikzlibrarypgfplots.contourl
+ua.code.tex)
+\pgfplots@numplots=\count343
+\pgfplots@xmin@reg=\dimen306
+\pgfplots@xmax@reg=\dimen307
+\pgfplots@ymin@reg=\dimen308
+\pgfplots@ymax@reg=\dimen309
+\pgfplots@zmin@reg=\dimen310
+\pgfplots@zmax@reg=\dimen311
+)
+(C:\Program Files\MiKTeX\tex/generic/pgf/frontendlayer/tikz/libraries\tikzlibra
+ryplotmarks.code.tex
+File: tikzlibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+
+(C:\Program Files\MiKTeX\tex/generic/pgf/libraries\pgflibraryplotmarks.code.tex
+File: pgflibraryplotmarks.code.tex 2021/05/15 v3.1.9a (3.1.9a)
+))) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/booktabs\booktabs.sty
+Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
+\heavyrulewidth=\dimen312
+\lightrulewidth=\dimen313
+\cmidrulewidth=\dimen314
+\belowrulesep=\dimen315
+\belowbottomsep=\dimen316
+\aboverulesep=\dimen317
+\abovetopsep=\dimen318
+\cmidrulesep=\dimen319
+\cmidrulekern=\dimen320
+\defaultaddspace=\dimen321
+\@cmidla=\count344
+\@cmidlb=\count345
+\@aboverulesep=\dimen322
+\@belowrulesep=\dimen323
+\@thisruleclass=\count346
+\@lastruleclass=\count347
+\@thisrulewidth=\dimen324
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/siunitx\siunitx.sty
+Package: siunitx 2021-08-27 v3.0.28 A comprehensive (SI) units package
+\l__siunitx_angle_tmp_dim=\dimen325
+\l__siunitx_angle_marker_box=\box81
+\l__siunitx_angle_unit_box=\box82
+\l__siunitx_compound_count_int=\count348
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations\translations.sty
+Package: translations 2021/01/17 v1.10a internationalization of LaTeX2e package
+s (CN)
+)
+\l__siunitx_number_exponent_fixed_int=\count349
+\l__siunitx_number_min_decimal_int=\count350
+\l__siunitx_number_min_integer_int=\count351
+\l__siunitx_number_round_precision_int=\count352
+\l__siunitx_number_group_minimum_int=\count353
+\l__siunitx_table_tmp_box=\box83
+\l__siunitx_table_tmp_dim=\dimen326
+\l__siunitx_table_column_width_dim=\dimen327
+\l__siunitx_table_integer_box=\box84
+\l__siunitx_table_decimal_box=\box85
+\l__siunitx_table_before_box=\box86
+\l__siunitx_table_after_box=\box87
+\l__siunitx_table_before_dim=\dimen328
+\l__siunitx_table_carry_dim=\dimen329
+\l__siunitx_unit_tmp_int=\count354
+\l__siunitx_unit_position_int=\count355
+\l__siunitx_unit_total_int=\count356
+
+(C:\Program Files\MiKTeX\tex/latex/l3packages/l3keys2e\l3keys2e.sty
+(C:\Program Files\MiKTeX\tex/latex/l3kernel\expl3.sty
+Package: expl3 2021-08-27 L3 programming layer (loader) 
+
+(C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-pdftex.def
+File: l3backend-pdftex.def 2021-08-04 L3 backend support: PDF output (pdfTeX)
+\l__color_backend_stack_int=\count357
+\l__pdf_internal_box=\box88
+))
+Package: l3keys2e 2021-08-27 LaTeX2e option processing using LaTeX3 keys
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\array.sty
+Package: array 2021/04/20 v2.5e Tabular extension package (FMi)
+\col@sep=\dimen330
+\ar@mcellbox=\box89
+\extrarowheight=\dimen331
+\NC@list=\toks53
+\extratabsurround=\skip64
+\backup@length=\skip65
+\ar@cellbox=\box90
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/svg\svg.sty
+Package: svg 2020/11/26 v2.02k (include SVG pictures)
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/koma-script\scrbase.sty
+Package: scrbase 2021/06/25 v3.34 KOMA-Script package (KOMA-Script-independent 
+basics and keyval usage)
+Applying: [2021/05/01] Usage of raw or classic option list on input line 252.
+Already applied: [0000/00/00] Usage of raw or classic option list on input line
+ 368.
+)
+(C:\Program Files\MiKTeX\tex/latex/trimspaces\trimspaces.sty
+Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\shellesc.sty
+Package: shellesc 2019/11/08 v1.0c unified shell escape interface for LaTeX
+Package shellesc Info: Unrestricted shell escape enabled on input line 75.
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/ifplatform\ifplatform.sty
+Package: ifplatform 2017/10/13 v0.4a Testing for the operating system
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/catchfile\catchfile.sty
+Package: catchfile 2019/12/09 v1.8 Catch the contents of a file (HO)
+)
+(C:\Program Files\MiKTeX\tex/generic/iftex\ifluatex.sty
+Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead.
+))
+\c@svg@param@lastpage=\count358
+\svg@box=\box91
+\c@svg@param@currpage=\count359
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/transparent\transparent.sty
+Package: transparent 2019/11/29 v1.4 Transparency via pdfTeX's color stack (HO)
+
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdraw.sty
+Package: pmboxdraw 2019/12/05 v1.4 Poor man's box drawing characters (HO)
+Now handling font encoding pmboxdraw ...
+... processing UTF-8 mapping file for font encoding pmboxdraw
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/pmboxdraw\pmboxdrawenc.dfu
+File: pmboxdrawenc.dfu 2019/12/05 v1.4 UTF-8 support for box drawing characters
+
+   defining Unicode char U+2500 (decimal 9472)
+   defining Unicode char U+2501 (decimal 9473)
+   defining Unicode char U+2502 (decimal 9474)
+   defining Unicode char U+2503 (decimal 9475)
+   defining Unicode char U+250C (decimal 9484)
+   defining Unicode char U+250D (decimal 9485)
+   defining Unicode char U+250E (decimal 9486)
+   defining Unicode char U+250F (decimal 9487)
+   defining Unicode char U+2510 (decimal 9488)
+   defining Unicode char U+2511 (decimal 9489)
+   defining Unicode char U+2512 (decimal 9490)
+   defining Unicode char U+2513 (decimal 9491)
+   defining Unicode char U+2514 (decimal 9492)
+   defining Unicode char U+2515 (decimal 9493)
+   defining Unicode char U+2516 (decimal 9494)
+   defining Unicode char U+2517 (decimal 9495)
+   defining Unicode char U+2518 (decimal 9496)
+   defining Unicode char U+2519 (decimal 9497)
+   defining Unicode char U+251A (decimal 9498)
+   defining Unicode char U+251B (decimal 9499)
+   defining Unicode char U+251C (decimal 9500)
+   defining Unicode char U+251D (decimal 9501)
+   defining Unicode char U+251E (decimal 9502)
+   defining Unicode char U+251F (decimal 9503)
+   defining Unicode char U+2520 (decimal 9504)
+   defining Unicode char U+2521 (decimal 9505)
+   defining Unicode char U+2522 (decimal 9506)
+   defining Unicode char U+2523 (decimal 9507)
+   defining Unicode char U+2524 (decimal 9508)
+   defining Unicode char U+252C (decimal 9516)
+   defining Unicode char U+252D (decimal 9517)
+   defining Unicode char U+252E (decimal 9518)
+   defining Unicode char U+252F (decimal 9519)
+   defining Unicode char U+2530 (decimal 9520)
+   defining Unicode char U+2531 (decimal 9521)
+   defining Unicode char U+2532 (decimal 9522)
+   defining Unicode char U+2533 (decimal 9523)
+   defining Unicode char U+2534 (decimal 9524)
+   defining Unicode char U+2535 (decimal 9525)
+   defining Unicode char U+2536 (decimal 9526)
+   defining Unicode char U+2537 (decimal 9527)
+   defining Unicode char U+2538 (decimal 9528)
+   defining Unicode char U+2539 (decimal 9529)
+   defining Unicode char U+253A (decimal 9530)
+   defining Unicode char U+253B (decimal 9531)
+   defining Unicode char U+253C (decimal 9532)
+   defining Unicode char U+253D (decimal 9533)
+   defining Unicode char U+253E (decimal 9534)
+   defining Unicode char U+253F (decimal 9535)
+   defining Unicode char U+2540 (decimal 9536)
+   defining Unicode char U+2541 (decimal 9537)
+   defining Unicode char U+2542 (decimal 9538)
+   defining Unicode char U+2543 (decimal 9539)
+   defining Unicode char U+2544 (decimal 9540)
+   defining Unicode char U+2545 (decimal 9541)
+   defining Unicode char U+2546 (decimal 9542)
+   defining Unicode char U+2547 (decimal 9543)
+   defining Unicode char U+2548 (decimal 9544)
+   defining Unicode char U+2549 (decimal 9545)
+   defining Unicode char U+254A (decimal 9546)
+   defining Unicode char U+254B (decimal 9547)
+   defining Unicode char U+2550 (decimal 9552)
+   defining Unicode char U+2551 (decimal 9553)
+   defining Unicode char U+2552 (decimal 9554)
+   defining Unicode char U+2553 (decimal 9555)
+   defining Unicode char U+2554 (decimal 9556)
+   defining Unicode char U+2555 (decimal 9557)
+   defining Unicode char U+2556 (decimal 9558)
+   defining Unicode char U+2557 (decimal 9559)
+   defining Unicode char U+2558 (decimal 9560)
+   defining Unicode char U+2559 (decimal 9561)
+   defining Unicode char U+255A (decimal 9562)
+   defining Unicode char U+255B (decimal 9563)
+   defining Unicode char U+255C (decimal 9564)
+   defining Unicode char U+255D (decimal 9565)
+   defining Unicode char U+255E (decimal 9566)
+   defining Unicode char U+255F (decimal 9567)
+   defining Unicode char U+2560 (decimal 9568)
+   defining Unicode char U+2561 (decimal 9569)
+   defining Unicode char U+2562 (decimal 9570)
+   defining Unicode char U+2563 (decimal 9571)
+   defining Unicode char U+2564 (decimal 9572)
+   defining Unicode char U+2565 (decimal 9573)
+   defining Unicode char U+2566 (decimal 9574)
+   defining Unicode char U+2567 (decimal 9575)
+   defining Unicode char U+2568 (decimal 9576)
+   defining Unicode char U+2569 (decimal 9577)
+   defining Unicode char U+256A (decimal 9578)
+   defining Unicode char U+256B (decimal 9579)
+   defining Unicode char U+256C (decimal 9580)
+   defining Unicode char U+2574 (decimal 9588)
+   defining Unicode char U+2575 (decimal 9589)
+   defining Unicode char U+2576 (decimal 9590)
+   defining Unicode char U+2577 (decimal 9591)
+   defining Unicode char U+2578 (decimal 9592)
+   defining Unicode char U+2579 (decimal 9593)
+   defining Unicode char U+257A (decimal 9594)
+   defining Unicode char U+257B (decimal 9595)
+   defining Unicode char U+257C (decimal 9596)
+   defining Unicode char U+257D (decimal 9597)
+   defining Unicode char U+257E (decimal 9598)
+   defining Unicode char U+257F (decimal 9599)
+   defining Unicode char U+2580 (decimal 9600)
+   defining Unicode char U+2581 (decimal 9601)
+   defining Unicode char U+2582 (decimal 9602)
+   defining Unicode char U+2583 (decimal 9603)
+   defining Unicode char U+2584 (decimal 9604)
+   defining Unicode char U+2585 (decimal 9605)
+   defining Unicode char U+2586 (decimal 9606)
+   defining Unicode char U+2587 (decimal 9607)
+   defining Unicode char U+2588 (decimal 9608)
+   defining Unicode char U+2589 (decimal 9609)
+   defining Unicode char U+258A (decimal 9610)
+   defining Unicode char U+258B (decimal 9611)
+   defining Unicode char U+258C (decimal 9612)
+   defining Unicode char U+258D (decimal 9613)
+   defining Unicode char U+258E (decimal 9614)
+   defining Unicode char U+258F (decimal 9615)
+   defining Unicode char U+2590 (decimal 9616)
+   defining Unicode char U+2591 (decimal 9617)
+   defining Unicode char U+2592 (decimal 9618)
+   defining Unicode char U+2593 (decimal 9619)
+   defining Unicode char U+2594 (decimal 9620)
+   defining Unicode char U+2595 (decimal 9621)
+   defining Unicode char U+2596 (decimal 9622)
+   defining Unicode char U+2597 (decimal 9623)
+   defining Unicode char U+2598 (decimal 9624)
+   defining Unicode char U+2599 (decimal 9625)
+   defining Unicode char U+259A (decimal 9626)
+   defining Unicode char U+259B (decimal 9627)
+   defining Unicode char U+259C (decimal 9628)
+   defining Unicode char U+259D (decimal 9629)
+   defining Unicode char U+259E (decimal 9630)
+   defining Unicode char U+259F (decimal 9631)
+)
+\pmbd@W=\dimen332
+\pmbd@H=\dimen333
+\pmbd@L=\dimen334
+\pmbd@Thin=\dimen335
+\pmbd@Thick=\dimen336
+\pmbd@Sep=\dimen337
+)
+(beamerthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime.sty
+Package: datetime 2015/03/20 v2.60 Date Time Package
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fmtcount.sty
+Package: fmtcount 2020/01/30 v3.07
+
+(C:\Program Files\MiKTeX\tex/latex/base\ifthen.sty
+Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC)
+)
+(C:\Program Files\MiKTeX\tex/latex/xkeyval\xkeyval.sty
+Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
+
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkeyval.tex
+(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkvutils.tex
+\XKV@toks=\toks54
+\XKV@tempa@toks=\toks55
+)
+\XKV@depth=\count360
+File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
+))
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcprefix.sty
+Package: fcprefix 2012/09/28
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fcnumparser.sty
+Package: fcnumparser 2017/06/15
+\fc@digit@counter=\count361
+))
+\c@padzeroesN=\count362
+\fc@tmpcatcode=\count363
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/fmtcount\fc-english.def
+File: fc-english.def 2016/01/12
+)
+\@DT@modctr=\count364
+\@ordinalctr=\count365
+\@orgargctr=\count366
+\@strctr=\count367
+\@tmpstrctr=\count368
+\@DT@loopN=\count369
+\@DT@X=\count370
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/datetime\datetime-defaults.sty
+Package: datetime-defaults 2013/09/10
+)
+\@day=\count371
+\@month=\count372
+\@year=\count373
+\c@HOUR=\count374
+\c@HOURXII=\count375
+\c@MINUTE=\count376
+\c@TOHOUR=\count377
+\c@TOMINUTE=\count378
+\c@SECOND=\count379
+\currenthour=\count380
+\currentminute=\count381
+\currentsecond=\count382
+Package datetime Info: No datetime.cfg file found, using default settings on in
+put line 308.
+\@dtctr=\count383
+\dayofyear=\count384
+\dayofweek=\count385
+LaTeX Info: Redefining \today on input line 736.
+\dt@a=\toks56
+\dt@b=\toks57
+) (C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/tools\calc.sty
+Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
+\calc@Acount=\count386
+\calc@Bcount=\count387
+\calc@Adimen=\dimen338
+\calc@Bdimen=\dimen339
+\calc@Askip=\skip66
+\calc@Bskip=\skip67
+LaTeX Info: Redefining \setlength on input line 80.
+LaTeX Info: Redefining \addtolength on input line 81.
+\calc@Ccount=\count388
+\calc@Cskip=\skip68
+)
+Class  Info: The file departments.tex with department logo file naming has been
+ loaded. on input line 21.
+
+(departments.tex) (beamerfontthemeDTU.sty
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/beamer\beamerfontthemeprofessio
+nalfonts.sty)) (beamerouterthemeDTU.sty) (beamerinnerthemeDTU.sty)
+(beamercolorthemeDTU.sty
+Package dtubeamer Info: Successfully loaded the DTU colours. on input line 22.
+ (dtucolours.tex))
+\widthframenumber=\skip69
+\widthdepartment=\skip70
+\widthtitle=\skip71
+\widthdate=\skip72
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/textpos\textpos.sty
+Package: textpos 2020/09/26 v1.10
+
+Package: textpos 2020/09/26 1.10, absolute positioning of text on the page
+Package textpos Info: choosing support for LaTeX3 on input line 61.
+\TP@textbox=\box92
+\TP@holdbox=\box93
+\TPHorizModule=\dimen340
+\TPVertModule=\dimen341
+\TP@margin=\dimen342
+\TP@absmargin=\dimen343
+Grid set 16 x 16 = 24.89616pt x 18.67212pt
+\TPboxrulesize=\dimen344
+\TP@ox=\dimen345
+\TP@oy=\dimen346
+\TP@tbargs=\toks58
+TextBlockOrigin set to 0pt x 0pt
+)
+TextBlockOrigin set to 0mm x 0mm
+(C:\Program Files\MiKTeX\tex/latex/lm\lmodern.sty
+Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts
+LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
+(Font)                  OT1/cmr/m/n --> OT1/lmr/m/n on input line 22.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `normal'
+(Font)                  OML/cmm/m/it --> OML/lmm/m/it on input line 23.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `normal'
+(Font)                  OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `normal'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 25.
+LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26.
+LaTeX Font Info:    Overwriting symbol font `letters' in version `bold'
+(Font)                  OML/cmm/b/it --> OML/lmm/b/it on input line 27.
+LaTeX Font Info:    Overwriting symbol font `symbols' in version `bold'
+(Font)                  OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28.
+LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `bold'
+(Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 29.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
+(Font)                  OT1/cmss/m/n --> OT1/lmss/m/n on input line 32.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
+(Font)                  OT1/cmr/m/it --> OT1/lmr/m/it on input line 33.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34.
+LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold'
+(Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35.
+LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
+(Font)                  OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36.
+LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
+(Font)                  OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37.
+LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
+(Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38.
+))
+LaTeX Font Info:    Trying to load font information for T1+lmss on input line 1
+5.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\t1lmss.fd
+File: t1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern
+) (index_NO_SVGS.aux)
+\openout1 = `index_NO_SVGS.aux'.
+
+LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 15.
+LaTeX Font Info:    ... okay on input line 15.
+LaTeX Font Info:    Checking defaults for pmboxdraw/pmboxdraw/m/n on input line
+ 15.
+LaTeX Font Info:    ... okay on input line 15.
+
+*geometry* driver: auto-detecting
+*geometry* detected driver: pdftex
+*geometry* verbose mode - [ preamble ] result:
+* driver: pdftex
+* paper: custom
+* layout: <same size as paper>
+* layoutoffset:(h,v)=(0.0pt,0.0pt)
+* modes: includehead includefoot 
+* h-part:(L,W,R)=(26.64667pt, 347.32933pt, 24.36267pt)
+* v-part:(T,H,B)=(0.0pt, 298.7541pt, 0.0pt)
+* \paperwidth=398.33867pt
+* \paperheight=298.7541pt
+* \textwidth=347.32933pt
+* \textheight=270.30138pt
+* \oddsidemargin=-45.62332pt
+* \evensidemargin=-45.62332pt
+* \topmargin=-72.26999pt
+* \headheight=14.22636pt
+* \headsep=0.0pt
+* \topskip=11.0pt
+* \footskip=14.22636pt
+* \marginparwidth=4.0pt
+* \marginparsep=10.0pt
+* \columnsep=10.0pt
+* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
+* \hoffset=0.0pt
+* \voffset=0.0pt
+* \mag=1000
+* \@twocolumnfalse
+* \@twosidefalse
+* \@mparswitchfalse
+* \@reversemarginfalse
+* (1in=72.27pt=25.4mm, 1cm=28.453pt)
+
+(C:\Program Files\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+\scratchcounter=\count389
+\scratchdimen=\dimen347
+\scratchbox=\box94
+\nofMPsegments=\count390
+\nofMParguments=\count391
+\everyMPshowfont=\toks59
+\MPscratchCnt=\count392
+\MPscratchDim=\dimen348
+\MPnumerator=\count393
+\makeMPintoPDFobject=\count394
+\everyMPtoPDFconversion=\toks60
+) (C:\Program Files\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-base.sty
+Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
+Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
+85.
+
+(C:\Program Files\MiKTeX\tex/latex/00miktex\epstopdf-sys.cfg
+File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
+))
+Package hyperref Info: Link coloring OFF on input line 15.
+
+(C:\Program Files\MiKTeX\tex/latex/hyperref\nameref.sty
+Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/refcount\refcount.sty
+Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/generic/gettitlestring\gettitlestring
+.sty
+Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
+)
+\c@section@level=\count395
+)
+LaTeX Info: Redefining \ref on input line 15.
+LaTeX Info: Redefining \pageref on input line 15.
+LaTeX Info: Redefining \nameref on input line 15.
+ (index_NO_SVGS.out) (index_NO_SVGS.out)
+\@outlinefile=\write5
+\openout5 = `index_NO_SVGS.out'.
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-basic-dic
+tionary-English.dict
+Dictionary: translator-basic-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-bibliogra
+phy-dictionary-English.dict
+Dictionary: translator-bibliography-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-environme
+nt-dictionary-English.dict
+Dictionary: translator-environment-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-months-di
+ctionary-English.dict
+Dictionary: translator-months-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-numbers-d
+ictionary-English.dict
+Dictionary: translator-numbers-dictionary, Language: English 
+)
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translator\translator-theorem-d
+ictionary-English.dict
+Dictionary: translator-theorem-dictionary, Language: English 
+)
+Package pgfplots notification 'compat/show suggested version=true': document ha
+s been generated with the most recent feature set (\pgfplotsset{compat=1.18}).
+
+
+(C:\Users\tuhe\AppData\Roaming\MiKTeX\tex/latex/translations/dicts\translations
+-basic-dictionary-english.trsl
+File: translations-basic-dictionary-english.trsl (english translation file `tra
+nslations-basic-dictionary')
+)
+Package translations Info: loading dictionary `translations-basic-dictionary' f
+or `english'. on input line 15.
+ (index_NO_SVGS.nav)
+<tex_dtu_logo.pdf, id=12, 38.98967pt x 56.87248pt>
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 15.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 18.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+<tex_dtu_compute_a_uk.pdf, id=13, 309.17804pt x 36.72722pt>
+File: tex_dtu_compute_a_uk.pdf Graphic file (type pdf)
+<use tex_dtu_compute_a_uk.pdf>
+Package pdftex.def Info: tex_dtu_compute_a_uk.pdf  used on input line 18.
+(pdftex.def)             Requested size: 225.61316pt x 26.80016pt.
+<tex_dtu_frise.pdf, id=14, 959.585pt x 353.32pt>
+File: tex_dtu_frise.pdf Graphic file (type pdf)
+<use tex_dtu_frise.pdf>
+Package pdftex.def Info: tex_dtu_frise.pdf  used on input line 18.
+(pdftex.def)             Requested size: 276.85223pt x 101.93542pt.
+ [1
+
+{C:/Users/tuhe/AppData/Local/MiKTeX/pdftex/config/pdftex.map} <./tex_dtu_logo.p
+df> <./tex_dtu_compute_a_uk.pdf
+
+pdfTeX warning: pdflatex (file ./tex_dtu_compute_a_uk.pdf): PDF inclusion: mult
+iple pdfs with page group included in a single page
+> <./tex_dtu_frise.pdf>]
+LaTeX Font Info:    Trying to load font information for T1+lmtt on input line 2
+3.
+ (C:\Program Files\MiKTeX\tex/latex/lm\t1lmtt.fd
+File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OT1+lmr on input line 2
+3.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\ot1lmr.fd
+File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OML+lmm on input line 2
+3.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omllmm.fd
+File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMS+lmsy on input line 
+23.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omslmsy.fd
+File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    Trying to load font information for OMX+lmex on input line 
+23.
+
+(C:\Program Files\MiKTeX\tex/latex/lm\omxlmex.fd
+File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern
+)
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <10.95> on input line 23.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <8> on input line 23.
+LaTeX Font Info:    External font `lmex10' loaded for size
+(Font)              <6> on input line 23.
+LaTeX Font Info:    Trying to load font information for U+msa on input line 23.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsa.fd
+File: umsa.fd 2013/01/14 v3.01 AMS symbols A
+)
+LaTeX Font Info:    Trying to load font information for U+msb on input line 23.
+
+
+(C:\Program Files\MiKTeX\tex/latex/amsfonts\umsb.fd
+File: umsb.fd 2013/01/14 v3.01 AMS symbols B
+)
+File: tex_dtu_logo.pdf Graphic file (type pdf)
+<use tex_dtu_logo.pdf>
+Package pdftex.def Info: tex_dtu_logo.pdf  used on input line 23.
+(pdftex.def)             Requested size: 15.69382pt x 22.89177pt.
+ [2
+
+]
+\tf@nav=\write6
+\openout6 = `index_NO_SVGS.nav'.
+
+\tf@toc=\write7
+\openout7 = `index_NO_SVGS.toc'.
+
+\tf@snm=\write8
+\openout8 = `index_NO_SVGS.snm'.
+
+ (index_NO_SVGS.aux)
+Package rerunfilecheck Info: File `index_NO_SVGS.out' has not changed.
+(rerunfilecheck)             Checksum: D41D8CD98F00B204E9800998ECF8427E;0.
+ ) 
+Here is how much of TeX's memory you used:
+ 41025 strings out of 478927
+ 963302 string characters out of 2862359
+ 1366895 words of memory out of 3000000
+ 58077 multiletter control sequences out of 15000+600000
+ 436788 words of font info for 54 fonts, out of 8000000 for 9000
+ 1141 hyphenation exceptions out of 8191
+ 128i,21n,124p,2119b,763s stack positions out of 5000i,500n,10000p,200000b,80000s
+{C:/Program Files/MiKTeX/fonts/enc/dvips/lm/lm-ec.enc}<C:/Program Files/MiKTe
+X/fonts/type1/public/lm/lmss10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/
+lm/lmss8.pfb><C:/Program Files/MiKTeX/fonts/type1/public/lm/lmssbx10.pfb><C:/Pr
+ogram Files/MiKTeX/fonts/type1/public/lm/lmtt10.pfb>
+Output written on index_NO_SVGS.pdf (2 pages, 121185 bytes).
+PDF statistics:
+ 57 PDF objects out of 1000 (max. 8388607)
+ 5 named destinations out of 1000 (max. 500000)
+ 58 words of extra memory for PDF output out of 10000 (max. 10000000)
+
diff --git a/examples/new_project/index_NO_SVGS.nav b/examples/new_project/index_NO_SVGS.nav
new file mode 100644
index 0000000000000000000000000000000000000000..9033d8ba0cd2afbd30fe6ab857d8374468715862
--- /dev/null
+++ b/examples/new_project/index_NO_SVGS.nav
@@ -0,0 +1,9 @@
+\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}
+\headcommand {\beamer@framepages {1}{1}}
+\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}
+\headcommand {\beamer@framepages {2}{2}}
+\headcommand {\beamer@partpages {1}{2}}
+\headcommand {\beamer@subsectionpages {1}{2}}
+\headcommand {\beamer@sectionpages {1}{2}}
+\headcommand {\beamer@documentpages {2}}
+\headcommand {\gdef \inserttotalframenumber {2}}
diff --git a/examples/new_project/index_NO_SVGS.out b/examples/new_project/index_NO_SVGS.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/new_project/index_NO_SVGS.pdf b/examples/new_project/index_NO_SVGS.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..208dea9165055060c825e0410c38e394122ae88d
Binary files /dev/null and b/examples/new_project/index_NO_SVGS.pdf differ
diff --git a/examples/new_project/index_NO_SVGS.snm b/examples/new_project/index_NO_SVGS.snm
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/examples/new_project/index_NO_SVGS.tex b/examples/new_project/index_NO_SVGS.tex
new file mode 100644
index 0000000000000000000000000000000000000000..265864c06c7683209034d93ace797f7b8aa675b0
--- /dev/null
+++ b/examples/new_project/index_NO_SVGS.tex
@@ -0,0 +1,25 @@
+ 
+\documentclass[handout,aspectratio=43]{beamer}
+\usepackage{etoolbox}
+\newtoggle{overlabel_includesvgs}
+\newtoggle{overlabel_includelabels}
+\toggletrue{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+\input{beamer_slider_preamble.tex}
+
+\title{Example slide show}
+\author{Tue Herlau}
+ \togglefalse{overlabel_includesvgs}
+\toggletrue{overlabel_includelabels}
+
+\begin{document}
+\begin{frame}
+\maketitle
+\end{frame}
+
+\begin{frame}\osvg{myoverlay} % Use the \osvg{labelname} - tag to create new overlays. Run slider and check the ./osvgs directory for the svg files!
+\title{Slide with an overlay}
+This is some example text!
+\end{frame}
+
+\end{document}
diff --git a/examples/new_project/index_NO_SVGS.toc b/examples/new_project/index_NO_SVGS.toc
new file mode 100644
index 0000000000000000000000000000000000000000..9fbdd18a8c9adf55ec0285e8532d13207dc20bf7
--- /dev/null
+++ b/examples/new_project/index_NO_SVGS.toc
@@ -0,0 +1 @@
+\babel@toc {english}{}\relax 
diff --git a/examples/new_project/osvgs/myoverlay.svg b/examples/new_project/osvgs/myoverlay.svg
new file mode 100644
index 0000000000000000000000000000000000000000..07f850d8f7fe0069012972a6bb3015b077b01121
--- /dev/null
+++ b/examples/new_project/osvgs/myoverlay.svg
@@ -0,0 +1,300 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns:sodipodi = "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape = "http://www.inkscape.org/namespaces/inkscape" 
+ height="297.638pt" version="1.2" viewBox="0 0 396.85 297.638" width="396.85pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><metadata></metadata>
+<g inkscape:groupmode="layer" id="layer1" inkscape:label="bg_layer" style="display:inline" sodipodi:insensitive="true">
+<image
+xlink:href="tmp/myoverlay.png"
+width="100%"
+height="100%"
+preserveAspectRatio="none"
+style="image-rendering:optimizeQuality"
+id="image4444th"
+x="0"
+y="0" />
+</g>
+<g inkscape:groupmode="layer"
+id="layer2"
+inkscape:label="Layer 1"
+style="display:inline">
+
+<defs>
+<g>
+<symbol id="glyph0-0" overflow="visible">
+<path d="" style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-1" overflow="visible">
+<path d="M 7.015625 -6.78125 L 7.015625 -7.5 L 0.390625 -7.5 L 0.390625 -6.78125 L 1.84375 -6.78125 C 1.984375 -6.78125 2.109375 -6.796875 2.25 -6.796875 L 3.21875 -6.796875 L 3.21875 0 L 4.1875 0 L 4.1875 -6.796875 L 5.15625 -6.796875 C 5.296875 -6.796875 5.421875 -6.78125 5.546875 -6.78125 Z M 7.015625 -6.78125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-2" overflow="visible">
+<path d="M 4.734375 0 L 4.734375 -3.25 C 4.734375 -3.96875 4.578125 -4.953125 3.25 -4.953125 C 2.5625 -4.953125 2.046875 -4.625 1.703125 -4.171875 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.390625 2 -4.296875 2.828125 -4.296875 C 3.875 -4.296875 3.890625 -3.515625 3.890625 -3.171875 L 3.890625 0 Z M 4.734375 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-3" overflow="visible">
+<path d="M 1.703125 0 L 1.703125 -4.828125 L 0.875 -4.828125 L 0.875 0 Z M 1.78125 -6.171875 L 1.78125 -7.140625 L 0.8125 -7.140625 L 0.8125 -6.171875 Z M 1.78125 -6.171875 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-4" overflow="visible">
+<path d="M 3.921875 -1.390625 C 3.921875 -2 3.515625 -2.359375 3.5 -2.390625 C 3.078125 -2.78125 2.78125 -2.84375 2.234375 -2.9375 C 1.640625 -3.0625 1.125 -3.171875 1.125 -3.703125 C 1.125 -4.375 1.921875 -4.375 2.0625 -4.375 C 2.40625 -4.375 2.984375 -4.328125 3.609375 -3.96875 L 3.734375 -4.671875 C 3.171875 -4.9375 2.71875 -5.015625 2.171875 -5.015625 C 1.890625 -5.015625 0.359375 -5.015625 0.359375 -3.59375 C 0.359375 -3.0625 0.671875 -2.71875 0.953125 -2.5 C 1.28125 -2.265625 1.53125 -2.21875 2.125 -2.109375 C 2.515625 -2.03125 3.140625 -1.890625 3.140625 -1.3125 C 3.140625 -0.5625 2.28125 -0.5625 2.125 -0.5625 C 1.234375 -0.5625 0.625 -0.96875 0.4375 -1.09375 L 0.3125 -0.359375 C 0.65625 -0.1875 1.25 0.125 2.140625 0.125 C 2.328125 0.125 2.921875 0.125 3.390625 -0.234375 C 3.734375 -0.484375 3.921875 -0.921875 3.921875 -1.390625 Z M 3.921875 -1.390625 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-5" overflow="visible">
+<path d="M 5.109375 -2.390625 C 5.109375 -3.859375 4.015625 -5.015625 2.71875 -5.015625 C 1.390625 -5.015625 0.328125 -3.828125 0.328125 -2.390625 C 0.328125 -0.953125 1.4375 0.125 2.71875 0.125 C 4.015625 0.125 5.109375 -0.984375 5.109375 -2.390625 Z M 4.265625 -2.5 C 4.265625 -1.21875 3.515625 -0.578125 2.71875 -0.578125 C 1.953125 -0.578125 1.171875 -1.1875 1.171875 -2.5 C 1.171875 -3.828125 2 -4.359375 2.71875 -4.359375 C 3.46875 -4.359375 4.265625 -3.796875 4.265625 -2.5 Z M 4.265625 -2.5 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-6" overflow="visible">
+<path d="M 7.765625 0 L 7.765625 -3.25 C 7.765625 -3.96875 7.59375 -4.953125 6.265625 -4.953125 C 5.625 -4.953125 5.046875 -4.65625 4.65625 -4.0625 C 4.359375 -4.890625 3.609375 -4.953125 3.25 -4.953125 C 2.46875 -4.953125 1.953125 -4.515625 1.671875 -4.109375 L 1.671875 -4.90625 L 0.875 -4.90625 L 0.875 0 L 1.734375 0 L 1.734375 -2.671875 C 1.734375 -3.40625 2.03125 -4.296875 2.828125 -4.296875 C 3.84375 -4.296875 3.90625 -3.578125 3.90625 -3.171875 L 3.90625 0 L 4.75 0 L 4.75 -2.671875 C 4.75 -3.40625 5.046875 -4.296875 5.84375 -4.296875 C 6.859375 -4.296875 6.921875 -3.578125 6.921875 -3.171875 L 6.921875 0 Z M 7.765625 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-7" overflow="visible">
+<path d="M 4.515625 -2.390625 C 4.515625 -2.75 4.5 -3.578125 4.078125 -4.21875 C 3.625 -4.90625 2.96875 -5.015625 2.5625 -5.015625 C 1.359375 -5.015625 0.375 -3.859375 0.375 -2.46875 C 0.375 -1.03125 1.421875 0.125 2.734375 0.125 C 3.421875 0.125 4.046875 -0.140625 4.46875 -0.453125 L 4.40625 -1.15625 C 3.71875 -0.59375 3 -0.546875 2.75 -0.546875 C 1.875 -0.546875 1.171875 -1.3125 1.140625 -2.390625 Z M 3.890625 -2.984375 L 1.203125 -2.984375 C 1.375 -3.8125 1.953125 -4.359375 2.5625 -4.359375 C 3.140625 -4.359375 3.75 -3.984375 3.890625 -2.984375 Z M 3.890625 -2.984375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-8" overflow="visible">
+<path d="M 5.015625 0 L 2.828125 -2.5 L 4.828125 -4.828125 L 3.9375 -4.828125 L 2.46875 -3.03125 L 0.96875 -4.828125 L 0.0625 -4.828125 L 2.109375 -2.5 L 0 0 L 0.890625 0 L 2.46875 -2.046875 L 4.109375 0 Z M 5.015625 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-9" overflow="visible">
+<path d="M 4.453125 0 L 4.453125 -3.140625 C 4.453125 -4.265625 3.65625 -5.015625 2.65625 -5.015625 C 1.953125 -5.015625 1.453125 -4.84375 0.953125 -4.546875 L 1.015625 -3.828125 C 1.578125 -4.234375 2.125 -4.375 2.65625 -4.375 C 3.171875 -4.375 3.609375 -3.9375 3.609375 -3.140625 L 3.609375 -2.671875 C 1.96875 -2.640625 0.59375 -2.1875 0.59375 -1.234375 C 0.59375 -0.765625 0.875 0.125 1.828125 0.125 C 1.984375 0.125 3 0.09375 3.640625 -0.390625 L 3.640625 0 Z M 3.609375 -1.4375 C 3.609375 -1.234375 3.609375 -0.953125 3.234375 -0.75 C 2.921875 -0.5625 2.5 -0.546875 2.390625 -0.546875 C 1.859375 -0.546875 1.375 -0.796875 1.375 -1.25 C 1.375 -2.015625 3.140625 -2.09375 3.609375 -2.109375 Z M 3.609375 -1.4375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-10" overflow="visible">
+<path d="M 5.234375 -2.421875 C 5.234375 -3.734375 4.546875 -4.953125 3.5 -4.953125 C 2.84375 -4.953125 2.203125 -4.734375 1.703125 -4.296875 L 1.703125 -4.828125 L 0.890625 -4.828125 L 0.890625 2.109375 L 1.75 2.109375 L 1.75 -0.5 C 2.078125 -0.1875 2.5625 0.125 3.21875 0.125 C 4.265625 0.125 5.234375 -0.953125 5.234375 -2.421875 Z M 4.375 -2.421875 C 4.375 -1.3125 3.609375 -0.546875 2.78125 -0.546875 C 2.359375 -0.546875 2.0625 -0.765625 1.84375 -1.0625 C 1.75 -1.21875 1.75 -1.234375 1.75 -1.4375 L 1.75 -3.625 C 2 -4 2.421875 -4.265625 2.890625 -4.265625 C 3.71875 -4.265625 4.375 -3.4375 4.375 -2.421875 Z M 4.375 -2.421875 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-11" overflow="visible">
+<path d="M 1.703125 0 L 1.703125 -7.5625 L 0.875 -7.5625 L 0.875 0 Z M 1.703125 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-12" overflow="visible">
+<path d="M 3.609375 -0.296875 L 3.4375 -0.9375 C 3.15625 -0.703125 2.8125 -0.578125 2.46875 -0.578125 C 2.0625 -0.578125 1.90625 -0.90625 1.90625 -1.484375 L 1.90625 -4.203125 L 3.4375 -4.203125 L 3.4375 -4.828125 L 1.90625 -4.828125 L 1.90625 -6.21875 L 1.15625 -6.21875 L 1.15625 -4.828125 L 0.203125 -4.828125 L 0.203125 -4.203125 L 1.125 -4.203125 L 1.125 -1.296875 C 1.125 -0.640625 1.28125 0.125 2.03125 0.125 C 2.78125 0.125 3.34375 -0.15625 3.609375 -0.296875 Z M 3.609375 -0.296875 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph0-13" overflow="visible">
+<path d="M 2.1875 -7.5625 L 1.28125 -7.5625 L 1.375 -2.375 L 1.375 -1.90625 L 2.109375 -1.90625 L 2.109375 -2.375 Z M 2.1875 0 L 2.1875 -0.90625 L 1.28125 -0.90625 L 1.28125 0 Z M 2.1875 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-0" overflow="visible">
+<path d="" style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-1" overflow="visible">
+<path d="M 2.84375 0 L 2.84375 -0.453125 L 1.6875 -0.453125 C 1.625 -0.453125 1.546875 -0.453125 1.46875 -0.453125 L 0.796875 -0.453125 L 1.71875 -1.265625 C 1.828125 -1.359375 2.125 -1.59375 2.234375 -1.6875 C 2.5 -1.921875 2.84375 -2.234375 2.84375 -2.75 C 2.84375 -3.421875 2.34375 -4.046875 1.5 -4.046875 C 0.859375 -4.046875 0.46875 -3.703125 0.265625 -3.09375 L 0.546875 -2.734375 C 0.6875 -3.234375 0.890625 -3.625 1.40625 -3.625 C 1.90625 -3.625 2.296875 -3.28125 2.296875 -2.734375 C 2.296875 -2.25 2 -1.96875 1.640625 -1.625 C 1.515625 -1.5 1.203125 -1.234375 1.078125 -1.109375 C 0.90625 -0.96875 0.484375 -0.5625 0.3125 -0.40625 L 0.3125 0 Z M 2.84375 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-2" overflow="visible">
+<path d="M 4.21875 -2.03125 C 4.21875 -3.203125 3.34375 -4.140625 2.28125 -4.140625 L 0.578125 -4.140625 L 0.578125 0 L 2.28125 0 C 3.359375 0 4.21875 -0.90625 4.21875 -2.03125 Z M 3.640625 -2.046875 C 3.640625 -0.9375 2.90625 -0.359375 2.125 -0.359375 L 1.171875 -0.359375 L 1.171875 -3.796875 L 2.125 -3.796875 C 2.9375 -3.796875 3.640625 -3.140625 3.640625 -2.046875 Z M 3.640625 -2.046875 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-3" overflow="visible">
+<path d="M 4.09375 -3.6875 L 4.09375 -4.09375 L 0.234375 -4.09375 L 0.234375 -3.6875 L 1.09375 -3.6875 C 1.15625 -3.6875 1.234375 -3.6875 1.296875 -3.6875 L 1.859375 -3.6875 L 1.859375 0 L 2.46875 0 L 2.46875 -3.6875 L 3.03125 -3.6875 C 3.09375 -3.6875 3.171875 -3.6875 3.234375 -3.6875 Z M 4.09375 -3.6875 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-4" overflow="visible">
+<path d="M 3.765625 -1.390625 L 3.765625 -4.140625 L 3.25 -4.140625 L 3.25 -1.390625 C 3.25 -0.59375 2.703125 -0.234375 2.203125 -0.234375 C 1.6875 -0.234375 1.1875 -0.59375 1.1875 -1.390625 L 1.1875 -4.140625 L 0.578125 -4.140625 L 0.578125 -1.390625 C 0.578125 -0.515625 1.328125 0.125 2.1875 0.125 C 3.046875 0.125 3.765625 -0.53125 3.765625 -1.390625 Z M 3.765625 -1.390625 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-5" overflow="visible">
+<path d="M 3.71875 -0.28125 L 3.6875 -0.734375 C 3.5 -0.609375 3.3125 -0.484375 3.09375 -0.421875 C 2.890625 -0.359375 2.671875 -0.359375 2.453125 -0.359375 C 2.0625 -0.359375 1.6875 -0.546875 1.421875 -0.859375 C 1.140625 -1.1875 1 -1.625 1 -2.078125 C 1 -2.515625 1.140625 -2.953125 1.421875 -3.28125 C 1.6875 -3.59375 2.0625 -3.796875 2.453125 -3.796875 C 2.65625 -3.796875 2.84375 -3.765625 3.03125 -3.71875 C 3.21875 -3.65625 3.390625 -3.5625 3.5625 -3.453125 L 3.65625 -4 C 3.46875 -4.0625 3.265625 -4.125 3.0625 -4.15625 C 2.859375 -4.203125 2.65625 -4.203125 2.453125 -4.203125 C 1.90625 -4.203125 1.390625 -3.96875 1 -3.578125 C 0.609375 -3.171875 0.40625 -2.625 0.40625 -2.078125 C 0.40625 -1.515625 0.609375 -0.96875 1 -0.5625 C 1.390625 -0.171875 1.90625 0.0625 2.453125 0.0625 C 2.6875 0.0625 2.90625 0.046875 3.109375 0 C 3.328125 -0.0625 3.53125 -0.15625 3.71875 -0.28125 Z M 3.71875 -0.28125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-6" overflow="visible">
+<path d="M 2.984375 -1.3125 C 2.984375 -2.09375 2.359375 -2.734375 1.578125 -2.734375 C 0.8125 -2.734375 0.171875 -2.09375 0.171875 -1.3125 C 0.171875 -0.546875 0.8125 0.0625 1.578125 0.0625 C 2.359375 0.0625 2.984375 -0.546875 2.984375 -1.3125 Z M 2.46875 -1.375 C 2.46875 -0.6875 2.046875 -0.359375 1.578125 -0.359375 C 1.109375 -0.359375 0.703125 -0.703125 0.703125 -1.375 C 0.703125 -2.046875 1.140625 -2.34375 1.578125 -2.34375 C 2.03125 -2.34375 2.46875 -2.03125 2.46875 -1.375 Z M 2.46875 -1.375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-7" overflow="visible">
+<path d="M 4.53125 0 L 4.53125 -1.765625 C 4.53125 -2.234375 4.40625 -2.703125 3.671875 -2.703125 C 3.15625 -2.703125 2.859375 -2.421875 2.703125 -2.21875 C 2.65625 -2.390625 2.5 -2.703125 1.90625 -2.703125 C 1.5625 -2.703125 1.234375 -2.578125 0.96875 -2.25 L 0.96875 -2.6875 L 0.5 -2.6875 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 L 2.78125 0 L 2.78125 -1.453125 C 2.78125 -1.84375 2.9375 -2.3125 3.40625 -2.3125 C 4.015625 -2.3125 4.015625 -1.890625 4.015625 -1.71875 L 4.015625 0 Z M 4.53125 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-8" overflow="visible">
+<path d="M 3.0625 -1.328125 C 3.0625 -2.046875 2.65625 -2.703125 2.078125 -2.703125 C 1.796875 -2.703125 1.359375 -2.625 1.015625 -2.359375 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 1.15625 L 1.03125 1.15625 L 1.03125 -0.28125 C 1.34375 0 1.6875 0.0625 1.890625 0.0625 C 2.515625 0.0625 3.0625 -0.546875 3.0625 -1.328125 Z M 2.53125 -1.328125 C 2.53125 -0.734375 2.09375 -0.328125 1.625 -0.328125 C 1.53125 -0.328125 1.390625 -0.34375 1.234375 -0.46875 C 1.046875 -0.609375 1.03125 -0.703125 1.03125 -0.8125 L 1.03125 -1.984375 C 1.15625 -2.15625 1.390625 -2.296875 1.6875 -2.296875 C 2.15625 -2.296875 2.53125 -1.859375 2.53125 -1.328125 Z M 2.53125 -1.328125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-9" overflow="visible">
+<path d="M 2.78125 0 L 2.78125 -2.65625 L 2.25 -2.65625 L 2.25 -0.921875 C 2.25 -0.4375 1.84375 -0.296875 1.5 -0.296875 C 1.0625 -0.296875 1.015625 -0.40625 1.015625 -0.6875 L 1.015625 -2.65625 L 0.5 -2.65625 L 0.5 -0.65625 C 0.5 -0.125 0.734375 0.0625 1.140625 0.0625 C 1.390625 0.0625 1.921875 0.015625 2.28125 -0.28125 L 2.28125 0 Z M 2.78125 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-10" overflow="visible">
+<path d="M 2.109375 -0.15625 L 2.015625 -0.546875 C 1.8125 -0.40625 1.609375 -0.359375 1.4375 -0.359375 C 1.1875 -0.359375 1.125 -0.59375 1.125 -0.875 L 1.125 -2.28125 L 2 -2.28125 L 2 -2.65625 L 1.125 -2.65625 L 1.125 -3.40625 L 0.65625 -3.40625 L 0.65625 -2.65625 L 0.125 -2.65625 L 0.125 -2.28125 L 0.640625 -2.28125 L 0.640625 -0.765625 C 0.640625 -0.359375 0.75 0.0625 1.171875 0.0625 C 1.609375 0.0625 1.9375 -0.078125 2.109375 -0.15625 Z M 2.109375 -0.15625 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-11" overflow="visible">
+<path d="M 2.625 -1.3125 C 2.625 -1.578125 2.59375 -1.984375 2.359375 -2.328125 C 2.15625 -2.625 1.796875 -2.734375 1.5 -2.734375 C 0.765625 -2.734375 0.203125 -2.09375 0.203125 -1.34375 C 0.203125 -0.578125 0.8125 0.0625 1.59375 0.0625 C 1.9375 0.0625 2.296875 -0.046875 2.609375 -0.234375 L 2.5625 -0.65625 C 2.234375 -0.40625 1.859375 -0.328125 1.59375 -0.328125 C 1.078125 -0.328125 0.6875 -0.765625 0.671875 -1.3125 Z M 2.265625 -1.671875 L 0.703125 -1.671875 C 0.84375 -2.140625 1.203125 -2.34375 1.5 -2.34375 C 1.765625 -2.34375 2.15625 -2.21875 2.265625 -1.671875 Z M 2.265625 -1.671875 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-12" overflow="visible">
+<path d="M 3.53125 0 L 3.53125 -0.46875 L 3 -0.46875 L 1.5 -0.453125 L 1.1875 -0.453125 L 1.1875 -1.953125 L 3.265625 -1.953125 L 3.265625 -2.34375 L 1.1875 -2.34375 L 1.1875 -3.71875 L 2.046875 -3.71875 C 2.125 -3.71875 2.203125 -3.703125 2.265625 -3.703125 L 3.4375 -3.703125 L 3.4375 -4.125 L 0.578125 -4.125 L 0.578125 0 Z M 3.53125 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-13" overflow="visible">
+<path d="M 2.921875 0 L 1.65625 -1.359375 L 2.8125 -2.65625 L 2.28125 -2.65625 L 1.4375 -1.671875 L 0.578125 -2.65625 L 0.03125 -2.65625 L 1.234375 -1.359375 L 0 0 L 0.53125 0 L 1.4375 -1.125 L 2.375 0 Z M 2.921875 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-14" overflow="visible">
+<path d="M 2.609375 0 L 2.609375 -1.71875 C 2.609375 -2.328125 2.140625 -2.734375 1.546875 -2.734375 C 1.171875 -2.734375 0.890625 -2.65625 0.546875 -2.484375 L 0.578125 -2.046875 C 0.78125 -2.171875 1.078125 -2.359375 1.546875 -2.359375 C 1.8125 -2.359375 2.078125 -2.15625 2.078125 -1.71875 L 2.078125 -1.46875 C 1.203125 -1.4375 0.328125 -1.265625 0.328125 -0.703125 C 0.328125 -0.40625 0.53125 0.0625 1.0625 0.0625 C 1.3125 0.0625 1.78125 0 2.09375 -0.234375 L 2.09375 0 Z M 2.078125 -0.84375 C 2.078125 -0.734375 2.078125 -0.578125 1.875 -0.453125 C 1.6875 -0.34375 1.453125 -0.328125 1.390625 -0.328125 C 1.0625 -0.328125 0.8125 -0.484375 0.8125 -0.703125 C 0.8125 -1.09375 1.8125 -1.125 2.078125 -1.140625 Z M 2.078125 -0.84375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-15" overflow="visible">
+<path d="M 1 0 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 Z M 1 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-16" overflow="visible">
+<path d="M 2.28125 -0.78125 C 2.28125 -0.890625 2.28125 -1.109375 2.015625 -1.34375 C 1.796875 -1.546875 1.59375 -1.578125 1.296875 -1.640625 C 0.953125 -1.703125 0.671875 -1.75 0.671875 -2.015625 C 0.671875 -2.359375 1.109375 -2.359375 1.203125 -2.359375 C 1.546875 -2.359375 1.796875 -2.28125 2.09375 -2.125 L 2.171875 -2.546875 C 1.765625 -2.71875 1.46875 -2.734375 1.265625 -2.734375 C 1.109375 -2.734375 0.203125 -2.734375 0.203125 -1.953125 C 0.203125 -1.671875 0.359375 -1.515625 0.4375 -1.4375 C 0.65625 -1.234375 0.90625 -1.1875 1.21875 -1.125 C 1.5 -1.0625 1.828125 -1.015625 1.828125 -0.71875 C 1.828125 -0.34375 1.328125 -0.34375 1.234375 -0.34375 C 0.859375 -0.34375 0.5 -0.484375 0.265625 -0.65625 L 0.171875 -0.203125 C 0.375 -0.09375 0.75 0.0625 1.234375 0.0625 C 1.515625 0.0625 1.765625 0.015625 2 -0.140625 C 2.21875 -0.3125 2.28125 -0.578125 2.28125 -0.78125 Z M 2.28125 -0.78125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-17" overflow="visible">
+<path d="M 1 0 L 1 -2.65625 L 0.5 -2.65625 L 0.5 0 Z M 1.0625 -3.34375 L 1.0625 -3.953125 L 0.453125 -3.953125 L 0.453125 -3.34375 Z M 1.0625 -3.34375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-18" overflow="visible">
+<path d="M 2.765625 0 L 2.765625 -4.140625 L 2.265625 -4.140625 L 2.265625 -2.390625 C 1.875 -2.671875 1.5 -2.703125 1.3125 -2.703125 C 0.6875 -2.703125 0.21875 -2.078125 0.21875 -1.328125 C 0.21875 -0.5625 0.6875 0.0625 1.296875 0.0625 C 1.671875 0.0625 2.015625 -0.109375 2.25 -0.3125 L 2.25 0 Z M 2.25 -0.734375 C 2.09375 -0.5 1.875 -0.328125 1.578125 -0.328125 C 1.15625 -0.328125 0.734375 -0.625 0.734375 -1.3125 C 0.734375 -2.0625 1.234375 -2.3125 1.640625 -2.3125 C 1.890625 -2.3125 2.09375 -2.21875 2.25 -2.015625 Z M 2.25 -0.734375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-19" overflow="visible">
+<path d="M 2.78125 0 L 2.78125 -1.765625 C 2.78125 -2.234375 2.640625 -2.703125 1.90625 -2.703125 C 1.390625 -2.703125 1.109375 -2.40625 1 -2.28125 L 1 -4.140625 L 0.5 -4.140625 L 0.5 0 L 1.015625 0 L 1.015625 -1.453125 C 1.015625 -1.84375 1.1875 -2.3125 1.640625 -2.3125 C 2.25 -2.3125 2.25 -1.890625 2.25 -1.71875 L 2.25 0 Z M 2.78125 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-20" overflow="visible">
+<path d="M 4.234375 -2.65625 L 3.765625 -2.65625 L 3.203125 -0.859375 C 3.15625 -0.6875 3.09375 -0.484375 3.078125 -0.359375 L 3.0625 -0.359375 C 3.03125 -0.59375 2.828125 -1.234375 2.8125 -1.28125 L 2.375 -2.65625 L 1.921875 -2.65625 C 1.75 -2.140625 1.296875 -0.796875 1.25 -0.359375 L 1.234375 -0.359375 C 1.1875 -0.78125 0.75 -2.109375 0.65625 -2.390625 C 0.609375 -2.53125 0.609375 -2.546875 0.578125 -2.65625 L 0.09375 -2.65625 L 0.96875 0 L 1.46875 0 L 1.84375 -1.15625 C 1.921875 -1.453125 2.109375 -2.015625 2.140625 -2.28125 L 2.140625 -2.296875 C 2.15625 -2.171875 2.1875 -2.03125 2.234375 -1.890625 L 2.359375 -1.4375 L 2.8125 0 L 3.359375 0 Z M 4.234375 -2.65625 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-21" overflow="visible">
+<path d="M 2.984375 -1 L 2.984375 -1.390625 L 2.359375 -1.390625 L 2.359375 -3.921875 L 1.765625 -3.921875 L 0.171875 -1.390625 L 0.171875 -1 L 1.84375 -1 L 1.84375 0 L 2.359375 0 L 2.359375 -1 Z M 1.890625 -1.390625 L 0.6875 -1.390625 C 0.859375 -1.671875 1.890625 -3.265625 1.890625 -3.625 Z M 1.890625 -1.390625 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-22" overflow="visible">
+<path d="M 1.140625 0 L 1.140625 -0.53125 L 0.609375 -0.53125 L 0.609375 0 Z M 1.140625 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-23" overflow="visible">
+<path d="M 2.90625 -2 C 2.90625 -3.625 2.171875 -4.046875 1.609375 -4.046875 C 1.078125 -4.046875 0.828125 -3.796875 0.65625 -3.609375 C 0.28125 -3.234375 0.265625 -2.8125 0.265625 -2.578125 C 0.265625 -1.8125 0.6875 -1.15625 1.265625 -1.15625 C 1.9375 -1.15625 2.3125 -1.59375 2.34375 -1.640625 C 2.25 -0.6875 1.796875 -0.265625 1.296875 -0.265625 C 0.984375 -0.265625 0.796875 -0.375 0.65625 -0.5 L 0.453125 -0.15625 C 0.75 0.0625 1.015625 0.125 1.296875 0.125 C 2.140625 0.125 2.90625 -0.71875 2.90625 -2 Z M 2.328125 -2.453125 C 2.328125 -2.015625 2.0625 -1.546875 1.546875 -1.546875 C 1.3125 -1.546875 1.140625 -1.609375 0.984375 -1.859375 C 0.828125 -2.09375 0.8125 -2.3125 0.8125 -2.578125 C 0.8125 -2.8125 0.8125 -3.078125 1 -3.34375 C 1.125 -3.53125 1.296875 -3.671875 1.59375 -3.671875 C 2.171875 -3.671875 2.296875 -2.96875 2.328125 -2.59375 C 2.328125 -2.546875 2.328125 -2.5 2.328125 -2.453125 Z M 2.328125 -2.453125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-24" overflow="visible">
+<path d="M 2.90625 -1.9375 C 2.90625 -2.21875 2.90625 -2.921875 2.625 -3.421875 C 2.328125 -3.953125 1.875 -4.046875 1.578125 -4.046875 C 1.3125 -4.046875 0.84375 -3.953125 0.546875 -3.4375 C 0.265625 -2.96875 0.25 -2.3125 0.25 -1.9375 C 0.25 -1.5 0.28125 -0.953125 0.53125 -0.5 C 0.78125 -0.015625 1.234375 0.125 1.578125 0.125 C 2.171875 0.125 2.5 -0.21875 2.6875 -0.59375 C 2.890625 -1.015625 2.90625 -1.5625 2.90625 -1.9375 Z M 2.390625 -2.015625 C 2.390625 -1.625 2.390625 -1.171875 2.25 -0.796875 C 2.078125 -0.359375 1.78125 -0.265625 1.578125 -0.265625 C 1.328125 -0.265625 1.046875 -0.40625 0.890625 -0.84375 C 0.78125 -1.203125 0.765625 -1.578125 0.765625 -2.015625 C 0.765625 -2.5625 0.765625 -3.640625 1.578125 -3.640625 C 2.390625 -3.640625 2.390625 -2.5625 2.390625 -2.015625 Z M 2.390625 -2.015625 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph1-25" overflow="visible">
+<path d="M 2.703125 0 L 2.703125 -0.375 L 1.921875 -0.375 L 1.921875 -4.046875 L 1.78125 -4.046875 C 1.390625 -3.6875 0.90625 -3.65625 0.546875 -3.640625 L 0.546875 -3.265625 C 0.78125 -3.28125 1.078125 -3.28125 1.375 -3.40625 L 1.375 -0.375 L 0.578125 -0.375 L 0.578125 0 Z M 2.703125 0 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-0" overflow="visible">
+<path d="" style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-1" overflow="visible">
+<path d="M 5.625 -0.328125 C 5.625 -0.671875 5.390625 -0.671875 5 -0.671875 L 5 -3.296875 C 5 -3.515625 5 -4.765625 4.03125 -4.765625 C 3.703125 -4.765625 3.25 -4.625 2.953125 -4.1875 C 2.78125 -4.5625 2.484375 -4.765625 2.125 -4.765625 C 1.78125 -4.765625 1.453125 -4.609375 1.1875 -4.359375 C 1.171875 -4.6875 0.953125 -4.6875 0.75 -4.6875 L 0.40625 -4.6875 C 0.234375 -4.6875 -0.046875 -4.6875 -0.046875 -4.359375 C -0.046875 -4.03125 0.1875 -4.03125 0.578125 -4.03125 L 0.578125 -0.671875 C 0.1875 -0.671875 -0.046875 -0.671875 -0.046875 -0.328125 C -0.046875 0 0.25 0 0.40625 0 L 1.359375 0 C 1.53125 0 1.8125 0 1.8125 -0.328125 C 1.8125 -0.671875 1.578125 -0.671875 1.1875 -0.671875 L 1.1875 -2.609375 C 1.1875 -3.578125 1.640625 -4.09375 2.078125 -4.09375 C 2.328125 -4.09375 2.484375 -3.90625 2.484375 -3.203125 L 2.484375 -0.671875 C 2.28125 -0.671875 2 -0.671875 2 -0.328125 C 2 0 2.296875 0 2.453125 0 L 3.265625 0 C 3.4375 0 3.71875 0 3.71875 -0.328125 C 3.71875 -0.671875 3.484375 -0.671875 3.09375 -0.671875 L 3.09375 -2.609375 C 3.09375 -3.578125 3.546875 -4.09375 3.984375 -4.09375 C 4.234375 -4.09375 4.390625 -3.90625 4.390625 -3.203125 L 4.390625 -0.671875 C 4.1875 -0.671875 3.90625 -0.671875 3.90625 -0.328125 C 3.90625 0 4.203125 0 4.359375 0 L 5.171875 0 C 5.34375 0 5.625 0 5.625 -0.328125 Z M 5.625 -0.328125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-2" overflow="visible">
+<path d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 3.25 -1.703125 C 3.109375 -1.3125 3.046875 -1.109375 2.96875 -0.765625 C 2.90625 -0.984375 2.8125 -1.203125 2.734375 -1.421875 L 1.71875 -4.03125 L 2 -4.03125 C 2.15625 -4.03125 2.421875 -4.03125 2.421875 -4.359375 C 2.421875 -4.6875 2.171875 -4.6875 2 -4.6875 L 0.71875 -4.6875 C 0.546875 -4.6875 0.28125 -4.6875 0.28125 -4.359375 C 0.28125 -4.03125 0.5625 -4.03125 0.71875 -4.03125 L 1.0625 -4.03125 L 2.609375 -0.140625 C 2.640625 -0.03125 2.640625 0 2.640625 0 C 2.640625 0 2.375 0.921875 2.234375 1.1875 C 1.921875 1.78125 1.53125 1.8125 1.359375 1.8125 C 1.359375 1.8125 1.421875 1.71875 1.421875 1.578125 C 1.421875 1.3125 1.21875 1.109375 0.953125 1.109375 C 0.65625 1.109375 0.46875 1.3125 0.46875 1.59375 C 0.46875 2.046875 0.84375 2.484375 1.375 2.484375 C 2.46875 2.484375 2.953125 1.046875 3 0.921875 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-3" overflow="visible">
+<path d="M 5.09375 -2.359375 C 5.09375 -3.71875 4.078125 -4.796875 2.859375 -4.796875 C 1.640625 -4.796875 0.625 -3.71875 0.625 -2.359375 C 0.625 -0.96875 1.65625 0.0625 2.859375 0.0625 C 4.046875 0.0625 5.09375 -0.984375 5.09375 -2.359375 Z M 4.328125 -2.421875 C 4.328125 -1.421875 3.65625 -0.59375 2.859375 -0.59375 C 2.046875 -0.59375 1.375 -1.421875 1.375 -2.421875 C 1.375 -3.421875 2.078125 -4.125 2.859375 -4.125 C 3.640625 -4.125 4.328125 -3.421875 4.328125 -2.421875 Z M 4.328125 -2.421875 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-4" overflow="visible">
+<path d="M 5.453125 -4.359375 C 5.453125 -4.6875 5.1875 -4.6875 5.015625 -4.6875 L 3.734375 -4.6875 C 3.578125 -4.6875 3.296875 -4.6875 3.296875 -4.359375 C 3.296875 -4.03125 3.5625 -4.03125 3.734375 -4.03125 L 4.046875 -4.03125 L 2.859375 -0.515625 L 1.671875 -4.03125 L 1.96875 -4.03125 C 2.140625 -4.03125 2.40625 -4.03125 2.40625 -4.359375 C 2.40625 -4.6875 2.140625 -4.6875 1.96875 -4.6875 L 0.703125 -4.6875 C 0.515625 -4.6875 0.265625 -4.6875 0.265625 -4.359375 C 0.265625 -4.03125 0.53125 -4.03125 0.703125 -4.03125 L 1.03125 -4.03125 L 2.28125 -0.328125 C 2.40625 0.046875 2.625 0.046875 2.859375 0.046875 C 3.0625 0.046875 3.3125 0.046875 3.4375 -0.3125 L 4.6875 -4.03125 L 5.015625 -4.03125 C 5.171875 -4.03125 5.453125 -4.03125 5.453125 -4.359375 Z M 5.453125 -4.359375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-5" overflow="visible">
+<path d="M 5.046875 -1.1875 C 5.046875 -1.484375 4.734375 -1.484375 4.671875 -1.484375 C 4.46875 -1.484375 4.390625 -1.453125 4.3125 -1.25 C 4.078125 -0.703125 3.484375 -0.59375 3.1875 -0.59375 C 2.359375 -0.59375 1.546875 -1.140625 1.375 -2.078125 L 4.625 -2.078125 C 4.84375 -2.078125 5.046875 -2.078125 5.046875 -2.484375 C 5.046875 -3.71875 4.359375 -4.796875 2.9375 -4.796875 C 1.640625 -4.796875 0.59375 -3.703125 0.59375 -2.359375 C 0.59375 -1.03125 1.703125 0.0625 3.109375 0.0625 C 4.546875 0.0625 5.046875 -0.921875 5.046875 -1.1875 Z M 4.28125 -2.734375 L 1.390625 -2.734375 C 1.53125 -3.53125 2.171875 -4.125 2.9375 -4.125 C 3.5 -4.125 4.1875 -3.859375 4.28125 -2.734375 Z M 4.28125 -2.734375 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-6" overflow="visible">
+<path d="M 5.296875 -4.078125 C 5.296875 -4.296875 5.171875 -4.765625 4.265625 -4.765625 C 3.71875 -4.765625 3.015625 -4.5625 2.421875 -3.875 L 2.421875 -4.25 C 2.421875 -4.578125 2.359375 -4.6875 1.984375 -4.6875 L 0.78125 -4.6875 C 0.625 -4.6875 0.34375 -4.6875 0.34375 -4.359375 C 0.34375 -4.03125 0.609375 -4.03125 0.78125 -4.03125 L 1.671875 -4.03125 L 1.671875 -0.671875 L 0.78125 -0.671875 C 0.625 -0.671875 0.34375 -0.671875 0.34375 -0.34375 C 0.34375 0 0.609375 0 0.78125 0 L 3.625 0 C 3.796875 0 4.078125 0 4.078125 -0.328125 C 4.078125 -0.671875 3.796875 -0.671875 3.625 -0.671875 L 2.421875 -0.671875 L 2.421875 -2.03125 C 2.421875 -3.046875 3.0625 -4.09375 4.375 -4.09375 C 4.390625 -3.828125 4.578125 -3.609375 4.84375 -3.609375 C 5.09375 -3.609375 5.296875 -3.796875 5.296875 -4.078125 Z M 5.296875 -4.078125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-7" overflow="visible">
+<path d="M 5.09375 -0.328125 C 5.09375 -0.671875 4.828125 -0.671875 4.65625 -0.671875 L 3.234375 -0.671875 L 3.234375 -6.203125 C 3.234375 -6.546875 3.171875 -6.65625 2.796875 -6.65625 L 1.078125 -6.65625 C 0.90625 -6.65625 0.625 -6.65625 0.625 -6.3125 C 0.625 -5.984375 0.921875 -5.984375 1.0625 -5.984375 L 2.484375 -5.984375 L 2.484375 -0.671875 L 1.078125 -0.671875 C 0.90625 -0.671875 0.625 -0.671875 0.625 -0.328125 C 0.625 0 0.921875 0 1.0625 0 L 4.65625 0 C 4.8125 0 5.09375 0 5.09375 -0.328125 Z M 5.09375 -0.328125 " style="stroke:none;"/>
+</symbol>
+<symbol id="glyph2-8" overflow="visible">
+<path d="M 5.65625 -0.34375 C 5.65625 -0.671875 5.375 -0.671875 5.21875 -0.671875 C 4.765625 -0.671875 4.65625 -0.71875 4.5625 -0.75 L 4.5625 -3.109375 C 4.5625 -3.875 3.96875 -4.796875 2.40625 -4.796875 C 1.9375 -4.796875 0.828125 -4.796875 0.828125 -4 C 0.828125 -3.671875 1.0625 -3.5 1.3125 -3.5 C 1.484375 -3.5 1.78125 -3.59375 1.796875 -4 C 1.796875 -4.078125 1.8125 -4.09375 2.03125 -4.109375 C 2.171875 -4.125 2.3125 -4.125 2.421875 -4.125 C 3.25 -4.125 3.8125 -3.796875 3.8125 -3.015625 C 1.890625 -2.984375 0.546875 -2.4375 0.546875 -1.390625 C 0.546875 -0.640625 1.234375 0.0625 2.34375 0.0625 C 2.75 0.0625 3.421875 -0.015625 3.9375 -0.34375 C 4.171875 -0.015625 4.6875 0 5.109375 0 C 5.40625 0 5.65625 0 5.65625 -0.34375 Z M 3.8125 -1.453125 C 3.8125 -1.203125 3.8125 -0.984375 3.390625 -0.78125 C 3 -0.59375 2.5 -0.59375 2.421875 -0.59375 C 1.75 -0.59375 1.296875 -0.96875 1.296875 -1.390625 C 1.296875 -1.921875 2.234375 -2.328125 3.8125 -2.375 Z M 3.8125 -1.453125 " style="stroke:none;"/>
+</symbol>
+</g>
+<clipPath id="clip1">
+<path d="M 0.167969 0 L 396.535156 0 L 396.535156 297.277344 L 0.167969 297.277344 Z M 0.167969 0 "/>
+</clipPath>
+<clipPath id="clip3">
+<path d="M 1 0.0117188 L 15.917969 0.0117188 L 15.917969 9 L 1 9 Z M 1 0.0117188 "/>
+</clipPath>
+<clipPath id="clip4">
+<path d="M 0.300781 10 L 15.917969 10 L 15.917969 22.789063 L 0.300781 22.789063 Z M 0.300781 10 "/>
+</clipPath>
+<clipPath id="clip2">
+<rect height="23" width="16" x="0" y="0"/>
+</clipPath>
+<g clip-path="url(#clip2)" id="surface5">
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path d="M 1.308594 0.0117188 C 1.246094 0.0117188 1.207031 0.03125 1.179688 0.0585938 C 1.152344 0.0859375 1.132813 0.121094 1.132813 0.1875 L 1.132813 8.109375 C 1.132813 8.171875 1.152344 8.210938 1.179688 8.238281 C 1.207031 8.265625 1.246094 8.285156 1.308594 8.285156 L 3.378906 8.285156 C 4.1875 8.285156 4.675781 8.101563 4.972656 7.714844 C 5.414063 7.1875 5.429688 6.339844 5.429688 5.035156 L 5.429688 3.257813 C 5.429688 1.957031 5.414063 1.109375 4.972656 0.578125 C 4.675781 0.195313 4.1875 0.0117188 3.378906 0.0117188 Z M 2.449219 0.976563 L 3.179688 0.976563 C 3.503906 0.976563 3.695313 1.03125 3.84375 1.210938 C 4.074219 1.484375 4.09375 2.042969 4.09375 3.167969 L 4.09375 5.128906 C 4.09375 6.25 4.074219 6.808594 3.84375 7.085938 C 3.695313 7.261719 3.503906 7.316406 3.179688 7.316406 L 2.449219 7.316406 Z M 15.039063 0.1875 C 15.039063 0.121094 15.019531 0.0859375 14.996094 0.0585938 C 14.964844 0.03125 14.929688 0.0117188 14.867188 0.0117188 L 13.898438 0.0117188 C 13.835938 0.0117188 13.796875 0.03125 13.769531 0.0585938 C 13.742188 0.0859375 13.722656 0.121094 13.722656 0.1875 L 13.722656 6.035156 C 13.722656 6.644531 13.675781 7.007813 13.480469 7.226563 C 13.34375 7.375 13.15625 7.445313 12.890625 7.445313 C 12.644531 7.445313 12.464844 7.382813 12.320313 7.226563 C 12.136719 7.019531 12.078125 6.667969 12.078125 6.035156 L 12.078125 0.1875 C 12.078125 0.121094 12.058594 0.0859375 12.03125 0.0546875 C 12.003906 0.03125 11.96875 0.0117188 11.902344 0.0117188 L 10.933594 0.0117188 C 10.875 0.0117188 10.835938 0.03125 10.808594 0.0546875 C 10.78125 0.0859375 10.761719 0.121094 10.761719 0.1875 L 10.761719 6.035156 C 10.761719 6.890625 10.878906 7.421875 11.214844 7.796875 C 11.566406 8.183594 12.101563 8.386719 12.90625 8.386719 C 13.722656 8.386719 14.246094 8.167969 14.566406 7.792969 C 14.949219 7.355469 15.039063 6.828125 15.039063 6.035156 Z M 8.785156 8.109375 C 8.785156 8.171875 8.765625 8.210938 8.738281 8.238281 C 8.710938 8.265625 8.671875 8.285156 8.613281 8.285156 L 7.550781 8.285156 C 7.488281 8.285156 7.453125 8.265625 7.425781 8.238281 C 7.398438 8.210938 7.378906 8.171875 7.378906 8.109375 L 7.378906 1.058594 L 6.132813 1.058594 C 6.070313 1.058594 6.035156 1.039063 6.007813 1.011719 C 5.976563 0.984375 5.960938 0.945313 5.960938 0.882813 L 5.960938 0.1875 C 5.960938 0.121094 5.976563 0.0859375 6.007813 0.0585938 C 6.035156 0.03125 6.070313 0.0117188 6.132813 0.0117188 L 10.027344 0.0117188 C 10.09375 0.0117188 10.128906 0.03125 10.15625 0.0585938 C 10.183594 0.0859375 10.203125 0.121094 10.203125 0.1875 L 10.203125 0.882813 C 10.203125 0.945313 10.183594 0.984375 10.15625 1.011719 C 10.128906 1.039063 10.09375 1.058594 10.027344 1.058594 L 8.785156 1.058594 L 8.785156 8.109375 " style=" stroke:none;fill-rule:nonzero;fill:rgb(43.920898%,43.920898%,43.920898%);fill-opacity:1;"/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path d="M 15.917969 12.421875 L 12.59375 14.167969 C 8.289063 12.496094 7.929688 12.496094 3.625 14.167969 L 0.300781 12.421875 L 3.625 10.675781 C 7.929688 12.351563 8.289063 12.351563 12.59375 10.675781 Z M 15.917969 16.734375 L 12.59375 18.480469 C 8.289063 16.804688 7.929688 16.804688 3.625 18.480469 L 0.300781 16.734375 L 3.625 14.988281 C 7.929688 16.664063 8.289063 16.664063 12.59375 14.988281 Z M 15.917969 21.046875 L 12.59375 22.789063 C 8.289063 21.117188 7.929688 21.117188 3.625 22.789063 L 0.300781 21.046875 L 3.625 19.300781 C 7.929688 20.976563 8.289063 20.976563 12.59375 19.300781 L 15.917969 21.046875 " style=" stroke:none;fill-rule:nonzero;fill:rgb(59.999084%,0%,0%);fill-opacity:1;"/>
+</g>
+</g>
+<clipPath id="clip5">
+<path d="M 0.167969 0 L 52 0 L 52 10 L 0.167969 10 Z M 0.167969 0 "/>
+</clipPath>
+</defs>
+<g id="surface1">
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path d="M 0.167969 297.277344 L 396.535156 297.277344 L 396.535156 0 L 0.167969 0 Z M 0.167969 297.277344 " style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;"/>
+</g>
+<use transform="matrix(1,0,0,1,365,12)" xlink:href="#surface5"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="26.680883" xlink:href="#glyph0-1" y="140.370276"/>
+<use x="34.096597" xlink:href="#glyph0-2" y="140.370276"/>
+<use x="39.726481" xlink:href="#glyph0-3" y="140.370276"/>
+<use x="42.329499" xlink:href="#glyph0-4" y="140.370276"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="50.134195" xlink:href="#glyph0-3" y="140.370276"/>
+<use x="52.737213" xlink:href="#glyph0-4" y="140.370276"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="60.552805" xlink:href="#glyph0-4" y="140.370276"/>
+<use x="64.729184" xlink:href="#glyph0-5" y="140.370276"/>
+<use x="70.177108" xlink:href="#glyph0-6" y="140.370276"/>
+<use x="78.833859" xlink:href="#glyph0-7" y="140.370276"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="87.305381" xlink:href="#glyph0-7" y="140.370276"/>
+<use x="92.148585" xlink:href="#glyph0-8" y="140.370276"/>
+<use x="97.172661" xlink:href="#glyph0-9" y="140.370276"/>
+<use x="102.409205" xlink:href="#glyph0-6" y="140.370276"/>
+<use x="111.065957" xlink:href="#glyph0-10" y="140.370276"/>
+<use x="116.695841" xlink:href="#glyph0-11" y="140.370276"/>
+<use x="119.298859" xlink:href="#glyph0-7" y="140.370276"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="127.770381" xlink:href="#glyph0-12" y="140.370276"/>
+<use x="131.704872" xlink:href="#glyph0-7" y="140.370276"/>
+<use x="136.548076" xlink:href="#glyph0-8" y="140.370276"/>
+<use x="141.572152" xlink:href="#glyph0-12" y="140.370276"/>
+<use x="145.506643" xlink:href="#glyph0-13" y="140.370276"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="27.303126" xlink:href="#glyph1-1" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="38.934539" xlink:href="#glyph1-2" y="288.685888"/>
+<use x="43.516177" xlink:href="#glyph1-3" y="288.685888"/>
+<use x="47.848852" xlink:href="#glyph1-4" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="54.315923" xlink:href="#glyph1-5" y="288.685888"/>
+<use x="58.368589" xlink:href="#glyph1-6" y="288.685888"/>
+<use x="61.540033" xlink:href="#glyph1-7" y="288.685888"/>
+<use x="66.577207" xlink:href="#glyph1-8" y="288.685888"/>
+<use x="69.852535" xlink:href="#glyph1-9" y="288.685888"/>
+<use x="73.127863" xlink:href="#glyph1-10" y="288.685888"/>
+<use x="75.418682" xlink:href="#glyph1-11" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="262.315356" xlink:href="#glyph1-12" y="288.685888"/>
+<use x="266.119656" xlink:href="#glyph1-13" y="288.685888"/>
+<use x="269.042733" xlink:href="#glyph1-14" y="288.685888"/>
+<use x="272.089994" xlink:href="#glyph1-7" y="288.685888"/>
+<use x="277.127169" xlink:href="#glyph1-8" y="288.685888"/>
+<use x="280.402497" xlink:href="#glyph1-15" y="288.685888"/>
+<use x="281.915978" xlink:href="#glyph1-11" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="286.848671" xlink:href="#glyph1-16" y="288.685888"/>
+<use x="289.28039" xlink:href="#glyph1-15" y="288.685888"/>
+<use x="290.793871" xlink:href="#glyph1-17" y="288.685888"/>
+<use x="292.307352" xlink:href="#glyph1-18" y="288.685888"/>
+<use x="295.58268" xlink:href="#glyph1-11" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="300.515374" xlink:href="#glyph1-16" y="288.685888"/>
+<use x="302.947092" xlink:href="#glyph1-19" y="288.685888"/>
+<use x="306.22242" xlink:href="#glyph1-6" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="309.220724" xlink:href="#glyph1-20" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="348.085838" xlink:href="#glyph1-21" y="288.685888"/>
+<use x="351.257281" xlink:href="#glyph1-22" y="288.685888"/>
+<use x="353.019128" xlink:href="#glyph1-23" y="288.685888"/>
+<use x="356.190572" xlink:href="#glyph1-22" y="288.685888"/>
+<use x="357.952419" xlink:href="#glyph1-1" y="288.685888"/>
+<use x="361.123863" xlink:href="#glyph1-24" y="288.685888"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="364.301277" xlink:href="#glyph1-1" y="288.685888"/>
+<use x="367.472721" xlink:href="#glyph1-25" y="288.685888"/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+<use x="0.166131" xlink:href="#glyph2-1" y="6.527062"/>
+<use x="5.886451" xlink:href="#glyph2-2" y="6.527062"/>
+<use x="11.606771" xlink:href="#glyph2-3" y="6.527062"/>
+<use x="17.327091" xlink:href="#glyph2-4" y="6.527062"/>
+<use x="23.047412" xlink:href="#glyph2-5" y="6.527062"/>
+<use x="28.767732" xlink:href="#glyph2-6" y="6.527062"/>
+<use x="34.488052" xlink:href="#glyph2-7" y="6.527062"/>
+<use x="40.208372" xlink:href="#glyph2-8" y="6.527062"/>
+<use x="45.928692" xlink:href="#glyph2-2" y="6.527062"/>
+</g>
+</g>
+</g>
+</svg>
+</g></svg>
\ No newline at end of file
diff --git a/examples/new_project/osvgs/tmp/myoverlay.png b/examples/new_project/osvgs/tmp/myoverlay.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1b7f08e754571fc0e8d31da269beffd3ba0d194
Binary files /dev/null and b/examples/new_project/osvgs/tmp/myoverlay.png differ
diff --git a/examples/new_project/osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf b/examples/new_project/osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..db69ca8b1f6887c42fbbfae29563607efdc2a3d3
Binary files /dev/null and b/examples/new_project/osvgs/x_do_not_edit_myoverlay-l1_nofonts.pdf differ
diff --git a/examples/new_project/tex_compute_uk.pdf b/examples/new_project/tex_compute_uk.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1488ea4bb66ad14ada91789909d4f3b9448e1103
Binary files /dev/null and b/examples/new_project/tex_compute_uk.pdf differ
diff --git a/examples/new_project/tex_dtu_compute_a_uk.pdf b/examples/new_project/tex_dtu_compute_a_uk.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d0d2f4efcdd8ace82a3d969627865501743c2671
Binary files /dev/null and b/examples/new_project/tex_dtu_compute_a_uk.pdf differ
diff --git a/examples/new_project/tex_dtu_frise.pdf b/examples/new_project/tex_dtu_frise.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a099312f58e8adc076799f45f00699408020fcc2
Binary files /dev/null and b/examples/new_project/tex_dtu_frise.pdf differ
diff --git a/examples/new_project/tex_dtu_logo.pdf b/examples/new_project/tex_dtu_logo.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..862fbcd41103ab0c721cdcf46f52131c89dfbe03
Binary files /dev/null and b/examples/new_project/tex_dtu_logo.pdf differ
diff --git a/jinja/lecture_collector_partial.tex b/jinja/lecture_collector_partial.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7aac03d6213b47bbaf606c9d0c492b8d1cafe367
--- /dev/null
+++ b/jinja/lecture_collector_partial.tex
@@ -0,0 +1,140 @@
+\documentclass[handout]{beamer}
+\usepackage{pdfpages}
+\usepackage{pgfpages}
+\usepackage{framed}
+
+{% if declarelayout_sixup %}
+{{"
+\pgfpagesdeclarelayout{6 on 1}
+{
+  \edef\pgfpageoptionheight{\the\paperwidth} % landscaped by default
+  \edef\pgfpageoptionwidth{\the\paperheight}
+  \def\pgfpageoptionborder{0pt}
+  \def\pgfpageoptionfirstshipout{1}
+}
+{
+  \pgfpagesphysicalpageoptions
+  {%
+    logical pages=6,%
+    physical height=\pgfpageoptionheight,%
+    physical width=\pgfpageoptionwidth,%
+    current logical shipout=\pgfpageoptionfirstshipout%
+  }
+  \ifdim\paperheight>\paperwidth\\relax
+    % put side-by-side
+    \pgfpageslogicalpageoptions{1}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.1667\pgfphysicalwidth}{.25\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{3}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.5\pgfphysicalwidth}{.25\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{5}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.8333\pgfphysicalwidth}{.25\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{2}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.1667\pgfphysicalwidth}{.75\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{4}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.5\pgfphysicalwidth}{.75\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{6}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.8333\pgfphysicalwidth}{.75\pgfphysicalheight}%
+    }%
+  \else
+    % stack on top of one another
+    \pgfpageslogicalpageoptions{1}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=0.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.25\pgfphysicalwidth}{.8333\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{3}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=0.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.25\pgfphysicalwidth}{.5\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{5}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=0.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.25\pgfphysicalwidth}{.1667\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{2}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=0.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.75\pgfphysicalwidth}{.8333\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{4}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=0.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.75\pgfphysicalwidth}{.5\pgfphysicalheight}%
+    }%
+    \pgfpageslogicalpageoptions{6}
+    {%
+      border shrink=\pgfpageoptionborder,%
+      resized width=0.5\pgfphysicalwidth,%
+      resized height=\pgfphysicalheight,%
+      center=\pgfpoint{.75\pgfphysicalwidth}{.1667\pgfphysicalheight}%
+    }%
+  \\fi
+}
+" }}
+{% endif %}
+{% if sixup %}
+\mode<handout>{ \pgfpagesuselayout{6 on 1}[a4paper, border shrink=4mm] }
+{% elif twoup %}
+\mode<handout>{ \pgfpagesuselayout{2 on 1}[a4paper, border shrink=4mm] }
+{% elif fourup %}
+\mode<handout>{ \pgfpagesuselayout{4 on 1}[a4paper, border shrink=4mm] }
+{% elif threeup %}
+\mode<handout>{ \pgfpagesuselayout{3 on 1}[a4paper, border shrink=4mm] }		
+{% elif a4 %}
+	\pgfpagesuselayout{1 on 1}[a4paper, border shrink=2mm]
+{% endif %}
+
+\begin{document}
+
+{
+\setbeamercolor{background canvas}{bg=}
+{% for f in pdffiles %}
+{% set pagestart = 1 %}
+	{# 
+{% if loop.index == 2 and pdffiles|length == 2 %}{% set pagestart = 4 %}{% endif %} 
+	#}
+\includepdf[pages={ {{pagestart}}-}{% if frame %}, frame=true{% endif %}]{{ '{'+f+'}' }}
+{% endfor %}
+}
+
+\end{document} 
\ No newline at end of file
diff --git a/src/slider/inkscape2scenes.py b/legacy/inkscape2scenes.py
similarity index 99%
rename from src/slider/inkscape2scenes.py
rename to legacy/inkscape2scenes.py
index 992536e97655a59a71329ee722b5738e6c41421f..e1441d5426a8377529d88cf2f2593be7e2693e6a 100644
--- a/src/slider/inkscape2scenes.py
+++ b/legacy/inkscape2scenes.py
@@ -42,6 +42,7 @@ INKSCAPE = '"C:/Program Files/Inkscape/inkscape"'
 
 
 def main():
+    assert False
     # HIDE DEPRECATION WARINGS ONLY IN RELEASES. SHOW THEM IN DEV. TRUNKS
     warnings.filterwarnings('ignore', category=DeprecationWarning)
     # parse arguments
diff --git a/src/slider/svg2latex.py b/legacy/svg2latex.py
similarity index 99%
rename from src/slider/svg2latex.py
rename to legacy/svg2latex.py
index f40f3be63f639b7076d0e7ea904505a398ab423d..1fac9523a22c76d0e6320c0523aea60d780fa95c 100644
--- a/src/slider/svg2latex.py
+++ b/legacy/svg2latex.py
@@ -128,6 +128,7 @@ BBox = collections.namedtuple('BBox', ['x', 'y', 'width', 'height'])
 class AffineTransform(object):
 
     def __init__(s, t=None, m=None):
+        assert False
         s.t = (0.0, 0.0) if t is None else t
         s.m = (1.0, 0.0, 0.0, 1.0) if m is None else m
 
@@ -219,6 +220,7 @@ class RawTeXLabel(object):
 class TeXLabel(object):
 
     def __init__(s, pos, text):
+        assert False
         s.text = text
         s.color = (0, 0, 0)
         s.pos = pos
@@ -327,6 +329,7 @@ def _round(*args, unit=1):
 
 
 def parse_svg_transform(attribute):
+    assert False
     m = RX_TRANSFORM.match(attribute)
     if m is None:
         raise Exception('bad transform (' + attribute + ')')
@@ -392,6 +395,7 @@ def compute_svg_transform(el):
 
 
 def interpret_svg_text(textEl, labels):
+    assert False
     style = split_svg_style(
         textEl.attrib['style']) if 'style' in textEl.attrib else {}
     text_ids = set()
@@ -460,6 +464,7 @@ def interpret_svg_text(textEl, labels):
 
 
 def interpret_svg_textext(textEl, labels):
+    assert False
     texcode = textEl.attrib[TEXTEXT_PREFIX + 'text'].encode(
         'utf-8').decode('unicode_escape')
     xform = compute_svg_transform(textEl)
@@ -483,6 +488,7 @@ def interpret_svg_textext(textEl, labels):
 
 
 def svg_bounding_boxes(svgfile):
+    assert False
     """Parses the output from inkscape --query-all"""
     inkscape = which_inkscape()
     path = os.path.realpath(svgfile)
@@ -516,6 +522,7 @@ def mm_to_svg_untis(x):
 
 
 def process_svg(inpath):
+    assert False
     doc = etree.parse(inpath)
     w = mm_to_svg_untis(doc.getroot().attrib['width'])
     h = mm_to_svg_untis(doc.getroot().attrib['height'])
@@ -556,6 +563,7 @@ def process_svg(inpath):
 
 
 def main(svg_fname):
+    assert False
     fname = os.path.splitext(svg_fname)[0]
     texpath = '{fname}.pdf_tex'.format(fname=fname)
     pdfpath = '{fname}.pdf'.format(fname=fname)
@@ -609,6 +617,7 @@ def main(svg_fname):
 
 
 def generate_pdf_from_svg_using_cairo(svgData, pdfpath):
+    assert False
     with tempfile.NamedTemporaryFile(
             suffix='.svg', delete=True) as tmpsvg:
         svgData.write(tmpsvg, encoding='utf-8',
@@ -623,6 +632,7 @@ def generate_pdf_from_svg_using_cairo(svgData, pdfpath):
 
 
 def generate_pdf_from_svg_using_inkscape(svgData, pdfpath):
+    assert False
     inkscape = which_inkscape()
     path = os.path.realpath(pdfpath)
     args = [inkscape,
@@ -648,6 +658,7 @@ def generate_pdf_from_svg_using_inkscape(svgData, pdfpath):
 
 
 def which_inkscape():
+    assert False
     """Return absolute path to `inkscape`.
 
     Assume that `inkscape` is in the `$PATH`.
diff --git a/setup.py b/setup.py
index b8c5aadc798e7f904f8e1f592f06dd58ff4d2ff3..721f1fe2850f401626cc33aefd8c5df651c75a24 100644
--- a/setup.py
+++ b/setup.py
@@ -8,10 +8,9 @@ import pkg_resources
 with open("README.md", "r", encoding="utf-8") as fh:
     long_description = fh.read()
 
-
 setuptools.setup(
     name="beamer-slider",
-    version="0.1.0",
+    version="0.1.5",
     author="Tue Herlau",
     author_email="tuhe@dtu.dk",
     description="Software to create inkscape overlays in Beamer",
@@ -30,5 +29,11 @@ setuptools.setup(
     package_dir={"": "src"},
     packages=setuptools.find_packages(where="src"),
     python_requires=">=3.8",
-    install_requires=[str(r) for r in pkg_resources.parse_requirements('requirements.txt')],
+    install_requires=['Jinja2', 'numpy', 'chardet', 'scipy', 'seaborn', 'lxml', 'matplotlib', 'pylatexenc', 'beautifulsoup4', 'PyPDF2'],
+    include_package_data=True,
+    package_data={'': ['DTU_Beamer_files/*.*']},
+    # scripts=['scripts/slider_init.py', 'scripts/slider.py'],
+    entry_points={
+        'console_scripts': ['slider=slider.slider_cli:clize_main_entry_point'],
+    }
 )
diff --git a/src/beamer_slider.egg-info/PKG-INFO b/src/beamer_slider.egg-info/PKG-INFO
index 9d993a88b002af0f99d156a00d9b19811547b432..40437da7ab444ce499587093f31822fb04b1243d 100644
--- a/src/beamer_slider.egg-info/PKG-INFO
+++ b/src/beamer_slider.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: beamer-slider
-Version: 0.1.0
+Version: 0.1.5
 Summary: Software to create inkscape overlays in Beamer
 Home-page: https://lab.compute.dtu.dk/tuhe/slider
 Author: Tue Herlau
@@ -20,3 +20,20 @@ License-File: LICENSE
 Slide overlay software based on beamer and inkscape. This project is currently used in coursebox. 
 The software also offers a package for jinja2 (jinjafy) which offers a handful of convenient extensions.
 
+Install:
+```terminal
+pip install beamer-slider
+```
+## Use
+Go to a directory where you want to start a slideshow. Use the command
+```terminal
+slider_init.py index.tex
+```
+to start a beamer project. Edit index.tex (see how you add overlays in the file) and after you edit the overlay `.svg` files, run
+```terminal
+slider.py index.tex
+```
+to update the overlays. Note the overlay `.svg` files by default contains all the text in the slide they are imported from. This is helpful 
+if you want to move elements around. You can always add new overlays by using the '\osvg{my_label}' command in LaTeX.
+
+
diff --git a/src/beamer_slider.egg-info/SOURCES.txt b/src/beamer_slider.egg-info/SOURCES.txt
index d98979d74d33838738f8a66fa9cbed4b6060c1e4..7fb2dd160746ff513f9ea85f5c293c7b7bfffb07 100644
--- a/src/beamer_slider.egg-info/SOURCES.txt
+++ b/src/beamer_slider.egg-info/SOURCES.txt
@@ -2,9 +2,12 @@ LICENSE
 README.md
 pyproject.toml
 setup.py
+scripts/slider.py
+scripts/slider_init.py
 src/beamer_slider.egg-info/PKG-INFO
 src/beamer_slider.egg-info/SOURCES.txt
 src/beamer_slider.egg-info/dependency_links.txt
+src/beamer_slider.egg-info/entry_points.txt
 src/beamer_slider.egg-info/requires.txt
 src/beamer_slider.egg-info/top_level.txt
 src/jinjafy/__init__.py
@@ -18,10 +21,9 @@ src/jinjafy/cache/simplecache.py
 src/jinjafy/plot/__init__.py
 src/jinjafy/plot/plot_helpers.py
 src/slider/__init__.py
+src/slider/__main__.py
 src/slider/convert.py
-src/slider/inkscape2scenes.py
 src/slider/latexutils.py
 src/slider/legacy_importer.py
-src/slider/slide_fixer.py
-src/slider/slider.py
-src/slider/svg2latex.py
\ No newline at end of file
+src/slider/slide.py
+src/slider/slide_fixer.py
\ No newline at end of file
diff --git a/src/beamer_slider.egg-info/entry_points.txt b/src/beamer_slider.egg-info/entry_points.txt
new file mode 100644
index 0000000000000000000000000000000000000000..64888f0c5347fe2f409b4b91e11bf49a1bdc135d
--- /dev/null
+++ b/src/beamer_slider.egg-info/entry_points.txt
@@ -0,0 +1,3 @@
+[console_scripts]
+slider = slider.slide:slider_cli
+
diff --git a/src/beamer_slider.egg-info/requires.txt b/src/beamer_slider.egg-info/requires.txt
index 4414fc1e28fae46b363ba747b7a921479d85ab62..7e386127967d6f5ae0c9be2e433e6b542061de6b 100644
--- a/src/beamer_slider.egg-info/requires.txt
+++ b/src/beamer_slider.egg-info/requires.txt
@@ -1 +1,10 @@
-requirements.txt
+Jinja2
+numpy
+chardet
+scipy
+seaborn
+lxml
+matplotlib
+pylatexenc
+beautifulsoup4
+PyPDF2
diff --git a/src/slider/DTU_Beamer_files/02450_beamer_preamble.tex b/src/slider/DTU_Beamer_files/02450_beamer_preamble.tex
index c227391149b790179f3874df93e447f3d85b5021..2dd8694d7ac59705810fe9deb9816ad20f034655 100644
--- a/src/slider/DTU_Beamer_files/02450_beamer_preamble.tex
+++ b/src/slider/DTU_Beamer_files/02450_beamer_preamble.tex
@@ -1,4 +1,4 @@
-% WARNING! This file was automatically generated; see thtools/slider/DTU_Beamer_files for original version.
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
 \usepackage[T1]{fontenc}
 \usepackage[utf8]{inputenc}
 \usepackage[english]{babel}
@@ -6,7 +6,7 @@
 \pgfplotsset{compat=newest}
 \usepackage{booktabs}
 \usepackage{siunitx}
-% \usepackage[inkscape={"C:/Program Files/Inkscape/inkscape" -z -D},svgpath=osvgs/]{svg}
+
 \usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
 \svgpath{osvgs/}
 
diff --git a/src/slider/DTU_Beamer_files/beamer_slider_preamble.tex b/src/slider/DTU_Beamer_files/beamer_slider_preamble.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2dd8694d7ac59705810fe9deb9816ad20f034655
--- /dev/null
+++ b/src/slider/DTU_Beamer_files/beamer_slider_preamble.tex
@@ -0,0 +1,93 @@
+% WARNING! This file was automatically generated; see slider/DTU_Beamer_files for original version.
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[english]{babel}
+\usepackage{pgfplots}
+\pgfplotsset{compat=newest}
+\usepackage{booktabs}
+\usepackage{siunitx}
+
+\usepackage[inkscape=true,inkscapeformat=pdf,inkscapelatex=true]{svg}
+\svgpath{osvgs/}
+
+\usepackage{url}
+\usepackage{pmboxdraw}
+\usepackage{amssymb}
+\usepackage{pgffor}
+	
+\usetheme[department=compute]{DTU}
+\newcommand{\tabitem}{{\color{dtured}$\bullet$} }
+\usepackage[absolute,overlay]{textpos}
+\textblockorigin{0mm}{0mm}
+
+\setlength{\TPHorizModule}{\paperwidth}
+\setlength{\TPVertModule}{\paperheight}
+
+% Latin Modern
+\usepackage{lmodern}
+\newcommand{\overlabel}[1]{ \begin{textblock}{1}(0,0) \url{#1} \end{textblock} }
+
+% Verdana font type
+%\usepackage{verdana}
+% Helvetica
+%\usepackage{helvet}
+% Times (text and math)
+%\usepackage{newtx, newtxmath}
+
+% \usetheme[department=compute]{DTU}
+
+\makeatletter
+
+\def\osvg{\@ifnextchar[{\@with}{\@without} }
+\def\@with[#1]#2{
+	\foreach[count=\n] \x in {#1}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf}{
+			\begin{textblock}{1}(0,0)
+				\includegraphics<\x>[width=1.0\linewidth]{osvgs/x_do_not_edit_#2-l\n_nofonts}
+			\end{textblock}
+			}{ File: \url{osvgs/x_do_not_edit_#2-l\n_nofonts.pdf} does not exist; bad layer import? Check \url{osvgs/#2.svg} including layer information.
+			}
+		}
+	}
+	\olabel{#2}
+}
+\def\@without#1{
+	% Try to include first 10 layer files if they are there.
+	\foreach[count=\n] \x in {1,...,10}{
+		\iftoggle{overlabel_includesvgs}{
+			\IfFileExists{osvgs/x_do_not_edit_#1-l\n_nofonts.pdf}{
+				\begin{textblock}{1}(0,0)
+					\includegraphics<\n->[width=1.0\linewidth]{osvgs/x_do_not_edit_#1-l\n_nofonts}
+				\end{textblock}
+			}{
+		}
+	}
+	}
+	\olabel{#1}
+}
+\newcommand{\olabel}[1]{
+	\iftoggle{overlabel_includelabels}{
+		\begin{textblock}{1}(0,0) \url{#1} \end{textblock}
+	}{ 
+	\begin{textblock}{1}(0,0) 	{\color{white} \url{#1} } \end{textblock}
+	}
+}
+
+\makeatother
+
+\makeatother
+\ifdefined\bluem
+% nothing.
+\else
+
+\newcommand\bluem[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{ #1 }}}
+\newcommand\redm[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{ #1 }}}
+\newcommand\greenm[1]{{\textcolor[HTML]{398E00}{ #1 }}}
+\newcommand\yellowm[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{ #1 }}}
+				
+\newcommand\bluet[1]{{\textcolor[rgb]{0.20, 0.40, 0.80}{\textbf{#1}}}}
+\newcommand\redt[1]{{\textcolor[rgb]{0.60, 0.00, 0.00}{\textbf{#1}}}}
+\newcommand\greent[1]{{\textcolor[HTML]{398E00}{\textbf{#1}}}}
+\newcommand\yellowt[1]{{\textcolor[rgb]{1.00, 0.80, 0.00}{\textbf{#1}}}}
+\fi
\ No newline at end of file
diff --git a/src/slider/__init__.py b/src/slider/__init__.py
index 582dc9b79c90f89e8951081d141e0b9a06ac6a03..0961f3387b6fd17172a24baf8122ccfbe5528207 100644
--- a/src/slider/__init__.py
+++ b/src/slider/__init__.py
@@ -1,2 +1,6 @@
-from jinjafy import execute_command
-from slider.latexutils import latexmk
\ No newline at end of file
+# from jinjafy import execute_command
+from slider.latexutils import latexmk
+from slider.slider_cli import clize_main_entry_point
+
+if __name__ == "__main__":
+    clize_main_entry_point()
\ No newline at end of file
diff --git a/src/slider/__main__.py b/src/slider/__main__.py
new file mode 100644
index 0000000000000000000000000000000000000000..cb45dfce01a724913a6d90172be0af8746ac0468
--- /dev/null
+++ b/src/slider/__main__.py
@@ -0,0 +1,9 @@
+import clize
+
+def slider(a=123):
+    """" A docstring. Probably going to be shown as help?"""
+    print("A is", a)
+
+if __name__ == "__main__":
+    print("Welcome to the main module!")
+    clize.run(slider)
\ No newline at end of file
diff --git a/src/slider/__pycache__/__init__.cpython-38.pyc b/src/slider/__pycache__/__init__.cpython-38.pyc
index ef231a76c8e59798ab8a631008afd57c6bcc4fb6..3d348b1a7fb80f3943ce061953ea9812dffbb545 100644
Binary files a/src/slider/__pycache__/__init__.cpython-38.pyc and b/src/slider/__pycache__/__init__.cpython-38.pyc differ
diff --git a/src/slider/__pycache__/beamer_nup.cpython-38.pyc b/src/slider/__pycache__/beamer_nup.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a3d4c16ddd19cc9659c52a8733508306f5def47d
Binary files /dev/null and b/src/slider/__pycache__/beamer_nup.cpython-38.pyc differ
diff --git a/src/slider/__pycache__/convert.cpython-38.pyc b/src/slider/__pycache__/convert.cpython-38.pyc
index 45d23d8da3bfcaa6d9b30ca2ab0bab2ed1071101..4e06a308e0da5b6b282d8d951d51770f2d7ad255 100644
Binary files a/src/slider/__pycache__/convert.cpython-38.pyc and b/src/slider/__pycache__/convert.cpython-38.pyc differ
diff --git a/src/slider/__pycache__/legacy_importer.cpython-38.pyc b/src/slider/__pycache__/legacy_importer.cpython-38.pyc
index 2c9228bc8a3b9e6c388337b7fc8f467bf280708f..579747373d3e9e4e94d5787ad81089e4ec5afbb8 100644
Binary files a/src/slider/__pycache__/legacy_importer.cpython-38.pyc and b/src/slider/__pycache__/legacy_importer.cpython-38.pyc differ
diff --git a/src/slider/__pycache__/slide.cpython-38.pyc b/src/slider/__pycache__/slide.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..bf38f6106608f1708e5f420a56f22aea39609ecd
Binary files /dev/null and b/src/slider/__pycache__/slide.cpython-38.pyc differ
diff --git a/src/slider/__pycache__/slide_fixer.cpython-38.pyc b/src/slider/__pycache__/slide_fixer.cpython-38.pyc
index 031a0af180836a3d1c58377ffe25d34357aea653..867c082398c27239c4a720538fb00b21634c06a0 100644
Binary files a/src/slider/__pycache__/slide_fixer.cpython-38.pyc and b/src/slider/__pycache__/slide_fixer.cpython-38.pyc differ
diff --git a/src/slider/__pycache__/slider.cpython-38.pyc b/src/slider/__pycache__/slider.cpython-38.pyc
deleted file mode 100644
index 8c8fa597a455a2d4d0bc1ac9cdf0ac34509d8380..0000000000000000000000000000000000000000
Binary files a/src/slider/__pycache__/slider.cpython-38.pyc and /dev/null differ
diff --git a/src/slider/__pycache__/slider_cli.cpython-38.pyc b/src/slider/__pycache__/slider_cli.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8e64c6ac7032a46dc21da127cf969def17e5a6ae
Binary files /dev/null and b/src/slider/__pycache__/slider_cli.cpython-38.pyc differ
diff --git a/src/slider/__pycache__/slider_init.cpython-38.pyc b/src/slider/__pycache__/slider_init.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5e619430e99415cda0ee42317fdc2c8a3c7c5ae2
Binary files /dev/null and b/src/slider/__pycache__/slider_init.cpython-38.pyc differ
diff --git a/src/slider/beamer_nup.py b/src/slider/beamer_nup.py
new file mode 100644
index 0000000000000000000000000000000000000000..7b11e781af1e18f1f049413c2dd96cfdfae3af63
--- /dev/null
+++ b/src/slider/beamer_nup.py
@@ -0,0 +1,79 @@
+import os
+import glob
+
+
+def beamer_nup(pdf_file, nup=6, output=None):
+    # pdf_file = pdf_file[:-4] + ".pdf"
+    if nup not in [1, 2, 3, 4, 6]:
+        assert False
+
+    jinja = os.path.dirname( __file__ ) + "/../../jinja"
+    if os.path.isdir(jinja):
+        js = {}
+        for name in glob.glob(jinja + "/*.tex"):
+            with open(name, 'r') as f:
+                js[os.path.basename(name)[:-4] ] = f.read()
+
+        s = ""
+        for k, v in js.items():
+            v = v.replace("\\", "\\\\")
+
+            s += f'{k} = """\n' + v + '\n"""' + "\n"
+
+        with open(os.path.dirname(__file__) + "/jinjastrings/generated.py", 'w') as f:
+            s = "# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY\n"*10  + s
+            f.write(s)
+
+
+
+    from slider.jinjastrings.generated import lecture_collector_partial
+
+    import jinja2
+
+    import tempfile
+    # tempfile.gettempdir()
+    tmp = tempfile.TemporaryDirectory().name
+    os.mkdir(tmp)
+    import shutil
+    dest_pdf = tmp + "/" + os.path.basename(pdf_file)
+    shutil.copyfile(pdf_file, dest_pdf)
+
+    import jinja2
+    data = {'a4': False,
+            'twoup': False,
+            'sixup': False}
+    if nup == 1:
+        data['a4'] = True
+    if nup == 2:
+        data['twoup'] = True
+    if nup == 3:
+        data['threeup'] = True
+    if nup == 4:
+        data['fourup'] = True
+    if nup == 6:
+        data['sixup'] = True
+    data['frame'] = True
+
+    data['pdffiles'] = [os.path.basename(dest_pdf)]
+
+    # data = {'hello': 'world'}
+    print(tmp)
+    s = jinja2.Environment().from_string(lecture_collector_partial).render(data)
+
+    with open(tmp +"/nup.tex", 'w') as f:
+        f.write(s)
+
+    from slider import latexmk
+    latexmk(tmp +"/nup.tex", shell=True)
+
+    if output == None:
+        output = os.path.dirname(pdf_file) + "/" + os.path.basename(pdf_file)[:-4] + f"_{nup}up.pdf"
+    shutil.move(tmp +"/nup.pdf", output)
+    print("[Beamer-nup] Wrote output to", output)
+    return output
+
+
+
+if __name__ == "__main__":
+    beamer_nup("../../examples/new_project/index.pdf")
+
diff --git a/src/slider/convert.py b/src/slider/convert.py
index 3c2518c8e1e7e93ed753df77d0632c121d1abca6..46abe13f49d7756c3a060151db117c18b397db0a 100644
--- a/src/slider/convert.py
+++ b/src/slider/convert.py
@@ -48,7 +48,6 @@ def pdf2svg(fin, fout, page_no=None):
             page_no = str(page_no)
         cmd += ['-f', str(page_no), '-l', str(page_no)]
 
-    # print(" ".join(cmd))
     execute_command(cmd)
 
 
@@ -58,6 +57,7 @@ def pdf2png(fin, fout=None):
     fout = fout[:-4]
     cmd = f"pdftocairo -png -singlefile {fin} {fout}"
     execute_command(cmd.split())
+    return fout + ".png"
 
 
 def pdfcrop(fin, fout=None):
@@ -69,6 +69,7 @@ def pdfcrop(fin, fout=None):
 
 
 def svg_edit_to_importable(svg_edit_file,verbose=False, keep_background_layer=True):
+    assert False
     """
     Take an inkscape file as input and split it into layers.
     CODE NOT IN USE RIGHT NOW; MUST WORK OUT WHAT TO USE IT FOR.
diff --git a/src/slider/jinjastrings/__pycache__/generated.cpython-38.pyc b/src/slider/jinjastrings/__pycache__/generated.cpython-38.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ae2b452cc0b3140c4d2396d1756a4925236e13a9
Binary files /dev/null and b/src/slider/jinjastrings/__pycache__/generated.cpython-38.pyc differ
diff --git a/src/slider/jinjastrings/generated.py b/src/slider/jinjastrings/generated.py
new file mode 100644
index 0000000000000000000000000000000000000000..9a3fbb89552e0f5d6974bd0208292fcc74b9a866
--- /dev/null
+++ b/src/slider/jinjastrings/generated.py
@@ -0,0 +1,152 @@
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+# WARNING! THIS FILE IS AUTOMATICALLY GENERATED! ALL CHANGES WILL BE WIPED. SEE JINJA DIRECTORY
+lecture_collector_partial = """
+\\documentclass[handout]{beamer}
+\\usepackage{pdfpages}
+\\usepackage{pgfpages}
+\\usepackage{framed}
+
+{% if declarelayout_sixup %}
+{{"
+\\pgfpagesdeclarelayout{6 on 1}
+{
+  \\edef\\pgfpageoptionheight{\\the\\paperwidth} % landscaped by default
+  \\edef\\pgfpageoptionwidth{\\the\\paperheight}
+  \\def\\pgfpageoptionborder{0pt}
+  \\def\\pgfpageoptionfirstshipout{1}
+}
+{
+  \\pgfpagesphysicalpageoptions
+  {%
+    logical pages=6,%
+    physical height=\\pgfpageoptionheight,%
+    physical width=\\pgfpageoptionwidth,%
+    current logical shipout=\\pgfpageoptionfirstshipout%
+  }
+  \\ifdim\\paperheight>\\paperwidth\\\\relax
+    % put side-by-side
+    \\pgfpageslogicalpageoptions{1}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.1667\\pgfphysicalwidth}{.25\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{3}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.5\\pgfphysicalwidth}{.25\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{5}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.8333\\pgfphysicalwidth}{.25\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{2}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.1667\\pgfphysicalwidth}{.75\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{4}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.5\\pgfphysicalwidth}{.75\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{6}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.8333\\pgfphysicalwidth}{.75\\pgfphysicalheight}%
+    }%
+  \\else
+    % stack on top of one another
+    \\pgfpageslogicalpageoptions{1}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=0.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.25\\pgfphysicalwidth}{.8333\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{3}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=0.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.25\\pgfphysicalwidth}{.5\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{5}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=0.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.25\\pgfphysicalwidth}{.1667\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{2}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=0.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.75\\pgfphysicalwidth}{.8333\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{4}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=0.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.75\\pgfphysicalwidth}{.5\\pgfphysicalheight}%
+    }%
+    \\pgfpageslogicalpageoptions{6}
+    {%
+      border shrink=\\pgfpageoptionborder,%
+      resized width=0.5\\pgfphysicalwidth,%
+      resized height=\\pgfphysicalheight,%
+      center=\\pgfpoint{.75\\pgfphysicalwidth}{.1667\\pgfphysicalheight}%
+    }%
+  \\\\fi
+}
+" }}
+{% endif %}
+{% if sixup %}
+\\mode<handout>{ \\pgfpagesuselayout{6 on 1}[a4paper, border shrink=4mm] }
+{% elif twoup %}
+\\mode<handout>{ \\pgfpagesuselayout{2 on 1}[a4paper, border shrink=4mm] }
+{% elif fourup %}
+\\mode<handout>{ \\pgfpagesuselayout{4 on 1}[a4paper, border shrink=4mm] }
+{% elif threeup %}
+\\mode<handout>{ \\pgfpagesuselayout{3 on 1}[a4paper, border shrink=4mm] }		
+{% elif a4 %}
+	\\pgfpagesuselayout{1 on 1}[a4paper, border shrink=2mm]
+{% endif %}
+
+\\begin{document}
+
+{
+\\setbeamercolor{background canvas}{bg=}
+{% for f in pdffiles %}
+{% set pagestart = 1 %}
+	{# 
+{% if loop.index == 2 and pdffiles|length == 2 %}{% set pagestart = 4 %}{% endif %} 
+	#}
+\\includepdf[pages={ {{pagestart}}-}{% if frame %}, frame=true{% endif %}]{{ '{'+f+'}' }}
+{% endfor %}
+}
+
+\\end{document} 
+"""
diff --git a/src/slider/legacy_importer.py b/src/slider/legacy_importer.py
index a20a87e4d9dd429dfd8e4f2d518ce8914f84df40..058a79ed579aea5f505f5d78fc45634b3c1779ac 100644
--- a/src/slider/legacy_importer.py
+++ b/src/slider/legacy_importer.py
@@ -18,10 +18,12 @@ DTU_beamer_base = CDIR +"/DTU_Beamer_files"
 BLANK_PNG =DTU_beamer_base + "/blank.png"
 
 def ensure_dir(dname):
+    assert False
     if not os.path.exists(dname):
         os.mkdir(dname)
 
 def join_pdfs(slide_deck_pdf, outfile):
+    assert False
     dn = os.path.dirname(slide_deck_pdf[0])
     files = [os.path.relpath(os.path.dirname(pdf), start=dn) + "/" + os.path.basename(pdf) for pdf in slide_deck_pdf]
     outf = os.path.relpath(os.path.dirname(outfile), start=dn) + "/" + os.path.basename(outfile)
@@ -31,6 +33,7 @@ def join_pdfs(slide_deck_pdf, outfile):
 
 def li_import(slide_deck_pdf, tex_output_path=None, num_to_take=None, force=False, svg_pfix="osvg", svg_height=743.75, svg_width=992.5,
               svg_converted_slides="svg_converted_slides.tex"):
+    assert False
     '''
     svg_height and svg_width are used to scale the converted image. This is useful because otherwise the viewbox
     will fail to match the DTU template. I.e. these numbers will generally change dependent on the LaTeX template.
@@ -137,7 +140,7 @@ Related to li_import.
 Set the width/height of an imported slide svg image in case it does not match the DTU template. 
 '''
 def svg_set_hw_(svg_in, svg_out, height, width):
-    raise Exception("fucky..")
+    assert False
     print(f"HW fix [{height} {width}] > {svg_in} -> {svg_out}")
 
     with open(svg_in, 'r', encoding="UTF-8") as f:
@@ -167,7 +170,8 @@ def svg_set_hw_(svg_in, svg_out, height, width):
         f2.write(str(s2))
 
 def svg_check_background_layer(svg_edit_file, verbose=False):
-    return
+    assert False
+
     # Check if svg background layer is pointing to the right .png file.
     # this may not be the case sometimes because svg files are moved, etc. which overwrite the default
     # background .png path.
@@ -313,6 +317,7 @@ def add_png_background_to_svg(svg_input, png_file, svg_output=None):
 
 
 def slidedeck_to_images(slide_deck_pdf, base_out_pattern, num_to_take=None):
+    assert False
     if not os.path.exists(os.path.dirname(base_out_pattern)):
         os.mkdir(os.path.dirname(base_out_pattern))
     num_pages = num_pages_in_pdf(slide_deck_pdf)
@@ -339,6 +344,7 @@ def slidedeck_to_images(slide_deck_pdf, base_out_pattern, num_to_take=None):
     return outfiles
 
 def slidedeck_to_images_DEFUNCT(slide_deck_pdf, base_out_pattern, num_to_take=None):
+    assert False
     if not os.path.exists(os.path.dirname(base_out_pattern)):
         os.mkdir(os.path.dirname(base_out_pattern))
 
@@ -355,6 +361,7 @@ def slidedeck_to_images_DEFUNCT(slide_deck_pdf, base_out_pattern, num_to_take=No
     return outfiles
 
 def num_pages_in_pdf(pdf_file):
+    assert False
     cmd = ['pdftk', '%s' % pdf_file, 'dump_data']
     ss = execute_command(cmd)[0].splitlines()
     s = int([s for s in ss if 'NumberOfPages' in s].pop().split()[-1])
@@ -397,7 +404,9 @@ def move_template_files(output_dir="examples/output", output_tex_file=None):
     files_to_move = ["tex_dtu_logo.pdf", "tex_dtu_compute_a_uk.pdf", "tex_dtu_frise.pdf", "dtucolours.tex",
                      "beamerthemeDTU.sty", "beamerfontthemeDTU.sty","beamercolorthemeDTU.sty",
                      "beamerinnerthemeDTU.sty", "beamerouterthemeDTU.sty", "departments.tex", "tex_compute_uk.pdf",
-                     "02450_beamer_preamble.tex"]
+                     "02450_beamer_preamble.tex",  # Deprecated.
+                     'beamer_slider_preamble.tex', # The current version.
+                     ]
     sd = list( zip(files_to_move, files_to_move) )
     if output_tex_file:
         sd.append( ("02450_lectures_base.tex", output_tex_file))
@@ -416,7 +425,8 @@ def rm_svg_bg(svg_input, svg_output=None, fix_bg=True, fix_txt=True, fix_logo=Tr
     logo_rem = 0
     tx_rem = 0
     bg_rem = 0
-    if not svg_output: svg_output = svg_input
+    if not svg_output:
+        svg_output = svg_input
 
     with open(svg_input, 'r', encoding="UTF-8") as f:
         soup = BeautifulSoup(f, 'xml', from_encoding="UTF-8")
diff --git a/src/slider/slide.py b/src/slider/slide.py
new file mode 100644
index 0000000000000000000000000000000000000000..ec49193b9b7c4294f4bdaddf11985717560af0c7
--- /dev/null
+++ b/src/slider/slide.py
@@ -0,0 +1,282 @@
+#!python
+# The above makes the script executable.
+
+import slider.legacy_importer
+import PyPDF2
+import os
+from jinjafy import execute_command
+# from slider import slide
+from slider import legacy_importer
+from slider.legacy_importer import SVG_EDIT_RELPATH, SVG_TMP_RELPATH, move_template_files, DTU_beamer_base, svg_edit_to_importable
+from jinjafy.cache import cache_update_str, cache_contains_str, cache_contains_file, cache_update_file
+import shutil
+from slider.slide_fixer import check_svg_file_and_fix_if_broken
+from slider.latexutils import latexmk
+import clize
+import glob
+
+dc = "\\documentclass"
+
+def fix_handout(s):
+    i = s.find(dc) + len(dc)
+    j1 = s.find('[', i)
+    j2 = s.find("{", i)
+    if 0 < j1 < j2:
+        s = s[:j1 + 1] + "handout," + s[j1 + 1:]
+    else:
+        s = s[:j2 + 1] + "[handout]" + s[j2 + 1:]
+    return s
+
+def set_svg_background_images(lecture_tex, verbose=False,
+                              fix_broken_osvg_files=False,
+                              recompile_on_change=True,
+                              clean_temporary_files=False,
+                              copy_template_resource_files=True,
+                              force_recompile=False,
+                              force_fix_broken_osvg_files = None,
+                              ):
+    '''
+    Main file for fixing/setting osvg background images in the given lecture .pdf.
+    Usage:
+
+    > slider <text-file-to-convert>
+
+    :param lecture_tex: File to set background image in.
+    :return:
+    '''
+    MAIN_TEX_DIR = os.path.dirname(lecture_tex)
+    SVG_TMP_DIR = MAIN_TEX_DIR + "/" + SVG_EDIT_RELPATH + "/" + SVG_TMP_RELPATH
+    SVG_OSVG_DIR = MAIN_TEX_DIR + "/" + SVG_EDIT_RELPATH
+    force_fix_broken_osvg_files = [] if force_fix_broken_osvg_files is None else force_fix_broken_osvg_files
+
+    print("Slider is setting the background images for the .tex. file\n>  %s" % os.path.abspath(lecture_tex))
+    if copy_template_resource_files:
+        move_template_files(output_dir=MAIN_TEX_DIR, output_tex_file=None)
+    if not os.path.exists(lecture_tex):
+        # move a basic .tex file to this location and proceed
+        shutil.copyfile(DTU_beamer_base +"/dtu_slideshow_base.tex", lecture_tex)
+
+    ANY_CHANGES = True
+    tex = recursive_tex_apply(lecture_tex)
+    tex = "\n".join([tex[k] for k in tex])
+    all_tex = tex
+    tex = tex.splitlines()
+
+    ol = "\\osvg"
+    tex = [s.strip() for s in tex if ol in s and "@ifnextchar" not in s and "%" not in s[:s.find(ol)]] # exclude definition of osvg command
+    sinfo = {}
+
+    for s in tex:
+        i = s.find(ol) + len(ol)
+        if s[i] == "[": i = s.find("]", i)
+        i = s.find("{", i)
+        ie = s.find("}", i)
+        if ie == -1: continue
+        s = s[i+1:ie]
+        ii = all_tex.find(s)
+        frame_start = all_tex.rfind("\\begin{frame}", 0, ii)
+        frame_end = all_tex.find("\\end{frame}", ii, len(all_tex))
+
+        cs = all_tex[frame_start:frame_end]
+        d = {"pdf_label": s, "svg_edit_file": MAIN_TEX_DIR + "/" + SVG_EDIT_RELPATH + "/" + s + ".svg", 'slide_tex': cs}
+        sinfo[s] = d
+        # print(d)
+
+    if not os.path.exists(MAIN_TEX_DIR + "/" + SVG_EDIT_RELPATH):
+        os.mkdir(MAIN_TEX_DIR + "/" + SVG_EDIT_RELPATH)
+    # Prepare alternative .tex file; compile with handout and watermarks for later reference.
+    lecture_tex_nosvg = lecture_tex[:-4] + "_NO_SVGS.tex"
+    with open(lecture_tex, "r") as f:
+        s = f.read()
+
+    if s.find(dc) < 0:
+        # find and fix the import
+        dc2 = "\\input{"
+        j1 = s.find(dc2)+len(dc2)
+        j2 = s.find(dc2) + s.find("}", s.find(dc2))
+        fhead = MAIN_TEX_DIR + "/" + s[j1:j2]+".tex"
+        with open(fhead, 'r') as f:
+            sh = f.read()
+            sh = fix_handout(sh)
+            with open(fhead, 'w') as f2:
+                f2.write(sh)
+    else:
+        s = fix_handout(s)
+
+    i = s.find("\\begin{document}")
+    ii = s.rfind("\n", i - 10, i)
+    s = s[:ii] + "\n \\togglefalse{overlabel_includesvgs}\n\\toggletrue{overlabel_includelabels}\n" + s[ii:]
+
+    with open(lecture_tex_nosvg, "w") as f:
+        f.write(s)
+
+    lecture_tex_nosvg_pdf = lecture_tex_nosvg[:-4] + ".pdf"
+
+    # lecture_tex_nosvg_tex = recursive_tex_apply(lecture_tex_nosvg)
+
+    if cache_contains_str(MAIN_TEX_DIR, key='all_tex', value=all_tex) and os.path.exists(lecture_tex_nosvg_pdf):
+        print("slider> Cache contains nosvg tex file")
+    else:
+        cdir = os.getcwd()
+        os.chdir(os.path.dirname(lecture_tex_nosvg))
+        execute_command(("latexmk -shell-escape -f -pdf -interaction=nonstopmode " + os.path.basename(lecture_tex_nosvg)).split(" "))
+        os.chdir(cdir)
+        cache_update_file(MAIN_TEX_DIR, lecture_tex_nosvg)
+        ANY_CHANGES = True
+
+    # Make .png background images.
+    with open(lecture_tex_nosvg_pdf, 'rb') as f:
+        pdfdoc = PyPDF2.PdfFileReader(f)
+        for i in range(pdfdoc.getNumPages()):
+            content = pdfdoc.getPage(i).extractText()
+            for osvg_name, d in sinfo.items(): #enumerate(sinfo):
+
+                if d['pdf_label'] in content:
+                    d['pdf_page'] = i
+                    d['png_bgimg'] = SVG_TMP_DIR + "/" + d['pdf_label'] + ".png"
+                    if not os.path.exists(d['svg_edit_file']):
+                        '''
+                        Found \osvg{myslide}, but myslide.svg does not exist. Re-create it from the original slide.
+                        '''
+                        print("Failed to find editable file: %s. Re-creating from snapshot..."%d['svg_edit_file'])
+                        tmp_svg_file = "%s/%s/%s"%(os.path.dirname(d['svg_edit_file']),
+                                                   SVG_TMP_RELPATH,
+                                                   os.path.basename(d['svg_edit_file']))
+                        tmp_svg_file = legacy_importer.slide_to_image(lecture_tex_nosvg_pdf, tmp_svg_file, i + 1)
+                        legacy_importer.raw_svg_to_osvg(tmp_svg_file, overwrite_existing=True)
+                        ANY_CHANGES = True
+
+                    if cache_contains_str(MAIN_TEX_DIR, key=d['pdf_label'], value=d['slide_tex']):
+                        # print("slider> Cache contains slide tex; continuing: " + d['pdf_label'] )
+                        continue
+                    legacy_importer.slide_to_image(lecture_tex_nosvg_pdf, d['png_bgimg'], i + 1)
+                    ANY_CHANGES = True
+                    cache_update_str(MAIN_TEX_DIR, key=d['pdf_label'], value=d['slide_tex'])
+
+
+    # This is the step that actually fixes the svg files. i.e. squeeze fonts, etc.
+    for osvg_name, d in sinfo.items():
+        if (osvg_name+".svg") not in force_fix_broken_osvg_files:
+            if cache_contains_file(MAIN_TEX_DIR, d['svg_edit_file']) and not force_recompile:
+                continue
+        '''        
+        Check if the svg image pass sanity checks: Does it exist and is it okay?                
+        '''
+        if fix_broken_osvg_files:
+            check_svg_file_and_fix_if_broken(d['svg_edit_file'], verbose=verbose)
+
+        legacy_importer.svg_edit_to_importable(d['svg_edit_file'], verbose=verbose)
+        # legacy_importer.svg_check_background_layer(d['svg_edit_file'], verbose=verbose) # This was an old check for BG img.
+        cache_update_file(MAIN_TEX_DIR, d['svg_edit_file'])
+        ANY_CHANGES = True
+
+    if ANY_CHANGES and recompile_on_change:
+
+        latexmk(lecture_tex)
+
+    if clean_temporary_files:
+        if verbose:
+            print("> SlideConverter: Removing temporary dirs...")
+        # raise Exception()
+        DNE = SVG_OSVG_DIR + "/do_not_edit"
+        if os.path.exists(SVG_TMP_DIR):
+            for v in glob.glob(SVG_TMP_DIR + "/*"):
+                if not v.endswith("png"):
+                    os.remove(v)
+
+        if os.path.exists(DNE):
+            for v in glob.glob(DNE + "/*"):
+                if not v.endswith("png"):
+                    os.remove(v)
+
+def slide_no_by_text(pdf_file, text):
+    assert False
+    # Make .png background images.
+    if os.path.exists(pdf_file):
+        with open(pdf_file, 'rb') as f:
+            print(pdf_file)
+            pdfdoc = PyPDF2.PdfFileReader(f)
+            for i in range(pdfdoc.getNumPages()):
+                content = pdfdoc.getPage(i).extractText()
+                # for j, d in enumerate(sinfo):
+                if text in content:
+                    return i+1
+    else:
+        print("Warning: slide.py() -> slide_no_by_text(): PDF file not found " + pdf_file)
+    return -1
+    # raise Exception()
+
+def recursive_tex_apply(doc, fun=None, current_output=None):
+    if not fun:
+        def mfun(curdoc, txt, cur_out):
+            if not cur_out: cur_out = dict()
+            cur_out[curdoc] = txt
+            return cur_out
+
+        fun = mfun
+    if os.path.exists(doc):
+        def rfile(doc, encoding):
+            with open(doc, 'r', encoding=encoding) as f:
+                tex = f.read()
+            return tex
+        try:
+            tex = rfile(doc, encoding="utf-8")
+        except Exception as e:
+            print("Problem reading file", doc)
+            print(e)
+            import glob
+            from chardet.universaldetector import UniversalDetector
+            detector = UniversalDetector()
+            detector.reset()
+            with open(doc, 'rb') as f:
+                detector.feed(f.read())
+            detector.close()
+            res = detector.result['encoding']
+            print("Detecting encoding with chardet...")
+            print(res)
+            tex = rfile(doc, encoding=detector.result['encoding'])
+
+        current_output = fun(doc, tex, current_output)
+        for s in tex.splitlines():
+            fs = '\\input{'
+            if fs in s and not s.strip().startswith("%"):
+                j = s.find(fs)
+                rec_file = s[j + len(fs):s.find("}", j)]
+                if os.path.isabs(rec_file):
+                    rec_file_tex = rec_file
+                else:
+                    rec_file_tex = os.path.dirname(doc) + "/" + rec_file
+                    if not rec_file_tex.endswith(".tex"):
+                        rec_file_tex += ".tex"
+
+                current_output = recursive_tex_apply(rec_file_tex, fun, current_output)
+    return current_output
+
+def recursive_tex_collect(doc):
+    assert False
+    sdict = recursive_tex_apply(doc)
+    def gathersub(file):
+        lines = []
+        if file not in sdict:
+            print(sdict)
+            raise Exception("Bad error occured in split lines " + file )
+        for s in sdict[file].splitlines():
+            fs = '\\input{'
+            if fs in s and not s.strip().startswith("%"):
+                j = s.find(fs)
+                rec_file = s[j + len(fs):s.find("}", j)]
+                if os.path.isabs(rec_file):
+                    rec_file_tex = rec_file
+                else:
+                    rec_file_tex = os.path.dirname(file) + "/" + rec_file
+                    if not rec_file_tex.endswith(".tex"):
+                        rec_file_tex += ".tex"
+
+                lines += gathersub(rec_file_tex)
+            else:
+                lines.append(s)
+        return lines
+
+    lines = gathersub(doc)
+    return "\n".join(lines)
+
diff --git a/src/slider/slide_fixer.py b/src/slider/slide_fixer.py
index 10540ba0875e5aad636e8e96c011338a53f1c72c..3ca3f50ad5b9c32345121abc3a6f169468f6c337 100644
--- a/src/slider/slide_fixer.py
+++ b/src/slider/slide_fixer.py
@@ -42,6 +42,7 @@ from bs4 import BeautifulSoup
 import os
 
 def check_svg_file_and_fix_if_broken(osvg_file, verbose=True):
+    assert False
     '''
     Sanity check the given file. Does the slide appears to be in okay shape? Is it broken?
     if it is, fix it.
diff --git a/src/slider/slider_cli.py b/src/slider/slider_cli.py
new file mode 100644
index 0000000000000000000000000000000000000000..03f57f8098bb6a5ef2c9deb168e0d1e77255d573
--- /dev/null
+++ b/src/slider/slider_cli.py
@@ -0,0 +1,94 @@
+import  clize
+import os
+import sys
+import shutil
+from slider.slide import set_svg_background_images
+import click
+
+def confirm_start_new_project(latexfile, force=False):
+    try:
+        if force or click.confirm(f"Do you want to create a new Slider LaTeX file named {latexfile}?", abort=True):
+            # print("Starting new project")
+            from slider.slider_init import slider_init
+            slider_init(latexfile)
+
+    except click.exceptions.Abort as e:
+        sys.exit()
+
+
+def slider_cli(latexfile=None, force=False, verbose=False):
+    """
+    Slider software for manipulating overlay-svg images.
+    To get started, first start a slider project by creating a new folder and running
+
+    > python -m slider index.tex
+
+    This will create a bunch of files including a folder named osvgs. This is where you keep the slides!
+
+    When you edit/change overlays, remember to run
+
+    > python -m slider index.tex
+    > python -m slider
+
+    to keep everything synchronized.
+    You can add new overlays by simply using the LaTeX \osvg{labelname}-tag on new slides (and running slider)
+    Edit the overlays by looking in the \osvg-folder, in this case osvg/labelname.svg.
+
+    Remember the overlays by default import the content of the slides (useful if you want to move existing equations around)
+    so remember to remove non-wanted contents.
+    When done, run slider again to keep everything in sync.
+
+    :param latexfile:
+    :param force:
+    :param verbose:
+    """
+
+    # print("Initializing da slides.")
+    wdir = os.getcwd()
+    print(wdir)
+    if latexfile == None:
+        print("Trying to manually detect main latex file.")
+        import glob
+        files = glob.glob("*.tex")
+        mfiles = []
+        for name in files:
+            with open(name, 'r') as f:
+                lines = [l.strip() for l in f.read().splitlines()]
+            s = "\n".join([l for l in lines if not l.startswith("%")] )
+            if "\\begin{document}" in s and "{beamer}" in s:
+                print("Main file found!")
+                mfiles.append(name)
+        if len(mfiles) != 1:
+            print("Many candidate files found")
+            print(mfiles)
+            sys.exit()
+        else:
+            latexfile = mfiles[0]
+        # latexfile = "index.tex"
+    if not latexfile.endswith(".tex"):
+        latexfile += ".tex"
+    latexfile = os.path.join(wdir, latexfile)
+    if os.path.exists(latexfile):
+        # print("File already exists:", latexfile)
+        # print("Doing the slide-stuff.")
+        set_svg_background_images(lecture_tex=latexfile)
+    else:
+        confirm_start_new_project(latexfile=latexfile, force=force)
+
+
+def clize_main_entry_point():
+    """
+    I collect this in one function to make a single entry point regardless of where
+    > slider
+    or
+    > python -m slider
+
+    is used.
+
+    :return:
+    """
+    clize.run(slider_cli)
+
+
+if __name__ == '__main__':
+    clize_main_entry_point()
diff --git a/src/slider/slider_init.py b/src/slider/slider_init.py
new file mode 100644
index 0000000000000000000000000000000000000000..a72e1217cb2497c3fcc5d0412dcefd9ab534c2d4
--- /dev/null
+++ b/src/slider/slider_init.py
@@ -0,0 +1,66 @@
+#!python
+# No, do this instead: https://setuptools.readthedocs.io/en/latest/userguide/entry_point.html
+# The above makes the script executable.
+
+import clize
+import os
+import sys
+import shutil
+
+base_slide = """ 
+\\documentclass[aspectratio=43]{beamer}
+\\usepackage{etoolbox}
+\\newtoggle{overlabel_includesvgs}
+\\newtoggle{overlabel_includelabels}
+\\toggletrue{overlabel_includesvgs}
+\\toggletrue{overlabel_includelabels}
+\\input{beamer_slider_preamble.tex}
+
+\\title{Example slide show}
+\\author{Tue Herlau}
+\\begin{document}
+\\begin{frame}
+\\maketitle
+\\end{frame}
+
+\\begin{frame}\\osvg{myoverlay} % Use the \\osvg{labelname} - tag to create new overlays. Run slider and check the ./osvgs directory for the svg files!
+\\title{Slide with an overlay}
+This is some example text!
+\\end{frame}
+
+\\end{document}
+"""
+
+def slider_init(latexfile=None):
+    # return
+    # print("Initializing da slides.")
+    wdir = os.getcwd()
+    print(wdir)
+    if latexfile == None:
+        latexfile = "index.tex"
+    if not latexfile.endswith(".tex"):
+        latexfile += ".tex"
+    latexfile = os.path.join(wdir, latexfile)
+    if os.path.exists(latexfile):
+        print("File already exists", latexfile)
+        # sys.exit()
+    # Done with the introductory bullshit.
+
+    if not os.path.isdir(os.path.dirname(latexfile)):
+        os.makedirs(os.path.dirname(latexfile))
+
+    import jinja2
+    with open(latexfile, 'w') as f:
+        f.write(base_slide)
+
+    print("Initializing with", latexfile)
+
+    # jinja2.Environment().from_string(base_slide)
+    from slider.slide import set_svg_background_images
+    set_svg_background_images(latexfile, clean_temporary_files=True)
+
+if __name__ == "__main__":
+    # slider_init("../../test/index.tex")
+    # from slider.latexutils import latexmk
+    # import slider
+    clize.run(slider_init)