diff --git a/Testeksamen/.idea/.gitignore b/Testeksamen/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/Testeksamen/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/Testeksamen/.idea/Testeksamen.iml b/Testeksamen/.idea/Testeksamen.iml
new file mode 100644
index 0000000..d6ebd48
--- /dev/null
+++ b/Testeksamen/.idea/Testeksamen.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Testeksamen/.idea/misc.xml b/Testeksamen/.idea/misc.xml
new file mode 100644
index 0000000..140926e
--- /dev/null
+++ b/Testeksamen/.idea/misc.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Testeksamen/.idea/modules.xml b/Testeksamen/.idea/modules.xml
new file mode 100644
index 0000000..82278e2
--- /dev/null
+++ b/Testeksamen/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Testeksamen/.idea/vcs.xml b/Testeksamen/.idea/vcs.xml
new file mode 100644
index 0000000..6c0b863
--- /dev/null
+++ b/Testeksamen/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Testeksamen/Draw.java b/Testeksamen/Draw.java
new file mode 100644
index 0000000..d1524ef
--- /dev/null
+++ b/Testeksamen/Draw.java
@@ -0,0 +1,21 @@
+public class Draw{
+ public static void main(String[] args) {
+ figure(8);
+ figure(4);
+ figure(2);
+ }
+
+ public static void figure(int n){
+ for(int i = 0; i < n; i++) {
+ for(int j = 0; j < i; j++) {
+ System.out.print(" ");
+ }
+ for(int j = 0; j < (2 * n) - 1 - (i*2); j++){
+ System.out.print("*");
+ }
+ System.out.println();
+ }
+
+ }
+}
+
diff --git a/Testeksamen/Example.java b/Testeksamen/Example.java
new file mode 100644
index 0000000..509140a
--- /dev/null
+++ b/Testeksamen/Example.java
@@ -0,0 +1,70 @@
+public class Example {
+ public static void main(String[] args) {
+ boolean m[][] = { { true, false, true, true },
+ { true, false, true, false },
+ { true, false, true, true } };
+ System.out.println("++++++++++++");
+ Grid g = new Grid(m);
+ System.out.println(g);
+ System.out.println("++++++++++++");
+ g.update();
+ System.out.println(g);
+ System.out.println("++++++++++++");
+ }
+}
+
+public class Data {
+ private int major;
+ private int minor;
+ private boolean active;
+ public Data(int major, int minor, boolean active) {
+ this.major = Math.max(0, major);
+ this.minor = Math.max(0, minor);
+ this.active = active;
+ }
+
+ public int getMajor() {
+ return this.major;
+ }
+ public int getMinor() {
+ return this.minor;
+ }
+ public boolean getActive() {
+ return this.active;
+ }
+ public void parity() {
+ this.major = this.major % 2;
+ this.minor = this.minor % 2;
+ }
+ public String toString() {
+ return "" + this.major + (this.active ? "**" : "//") + this.minor;
+ }
+}
+
+public class Grid {
+ private Data[] a;
+ public Grid(boolean[][] m) {
+ this.a = new Data[m[0].length * m.length];
+ for (int i = 0; i < m.length; i++) {
+ for (int j = 0; j < m[i].length; j++) {
+ this.a[(m[0].length * i)+j] = new Data(i, j, m[i][j]);
+ }
+ }
+ }
+ public void update() {
+ for (int i = 0; i < this.a.length; i++) {
+ if (this.a[i].getActive()) {
+ this.a[i].parity();
+ }
+ }
+ }
+
+ public String toString() {
+ String return_string = "";
+ for (int i = 0; i < this.a.length; i++) {
+ return_string += this.a[i] + (i == this.a.length - 1 ? "" : "-");
+ }
+ return return_string;
+ }
+
+}
diff --git a/Testeksamen/Loop.java b/Testeksamen/Loop.java
new file mode 100644
index 0000000..8a8ad84
--- /dev/null
+++ b/Testeksamen/Loop.java
@@ -0,0 +1,25 @@
+import java.util.Scanner;
+import java.util.ArrayList;
+
+public class Loop {
+ public static void main(String[] args) {
+ Scanner console = new Scanner(System.in);
+ ArrayList words = new ArrayList<>();
+ System.out.println("Please enter \"STOP\" to stop.");
+ while (true) {
+ System.out.print("Enter a word: ");
+ String next_word = console.next();
+ words.add(next_word);
+ if (next_word.equals("STOP")) {
+ break;
+ }
+ }
+ System.out.println("Here are the word lengths:");
+ for (int i = 0; i < words.size(); i++) {
+ String word = words.get(i);
+ System.out.println(word + " " + word.length());
+ }
+ System.out.println("The last word was \"STOP\" of course.");
+
+ }
+}
diff --git a/Testeksamen/Main.java b/Testeksamen/Main.java
new file mode 100644
index 0000000..c05e378
--- /dev/null
+++ b/Testeksamen/Main.java
@@ -0,0 +1,58 @@
+public class Main {
+ public static void main(String[] args) {
+ Vektor x = new Vektor("Kasper", 123456789);
+ Rektor y = new Rektor("Jesper", 3.14);
+ Lektor z = new Lektor("Jonathan");
+ Person[] a = { x, y, z };
+ printArray(a);
+ }
+
+ public static void printArray(Object[] a) {
+ for (int i = 0; i < a.length; i++) {
+ System.out.println(i + " " + a[i]);
+ }
+ }
+}
+
+
+public class Person {
+ private String navn;
+ public Person(String navn) {
+ this.navn = navn;
+ }
+
+ public String toString() {
+ return this.navn;
+ }
+}
+
+public class Vektor extends Person {
+ private int id;
+ public Vektor(String navn, int id) {
+ super(navn);
+ this.id = id;
+ }
+ public String toString() {
+ return "Vektor:" + super.toString() + ";" + this.id;
+ }
+}
+
+public class Rektor extends Person {
+ private double id;
+ public Rektor(String navn, double id) {
+ super(navn);
+ this.id = id;
+ }
+ public String toString() {
+ return "Rektor:" + super.toString() + ";" + this.id;
+ }
+}
+
+public class Lektor extends Person {
+ public Lektor(String navn) {
+ super(navn);
+ }
+ public String toString() {
+ return "Lektor:" + super.toString();
+ }
+}
diff --git a/Testeksamen/Test.pdf b/Testeksamen/Test.pdf
new file mode 100644
index 0000000..e4b56fc
Binary files /dev/null and b/Testeksamen/Test.pdf differ
diff --git a/Testeksamen/kode/Example.java b/Testeksamen/kode/Example.java
new file mode 100644
index 0000000..a59fb22
--- /dev/null
+++ b/Testeksamen/kode/Example.java
@@ -0,0 +1,14 @@
+public class Example {
+ public static void main(String[] args) {
+ boolean m[][] = { { true, false, true, true },
+ { true, false, true, false },
+ { true, false, true, true } };
+ System.out.println("++++++++++++");
+ Grid g = new Grid(m);
+ System.out.println(g);
+ System.out.println("++++++++++++");
+ g.update();
+ System.out.println(g);
+ System.out.println("++++++++++++");
+ }
+}
diff --git a/Testeksamen/kode/Main.java b/Testeksamen/kode/Main.java
new file mode 100644
index 0000000..285c537
--- /dev/null
+++ b/Testeksamen/kode/Main.java
@@ -0,0 +1,15 @@
+public class Main {
+ public static void main(String[] args) {
+ Vektor x = new Vektor("Kasper", 123456789);
+ Rektor y = new Rektor("Jesper", 3.14);
+ Lektor z = new Lektor("Jonathan");
+ Person[] a = { x, y, z };
+ printArray(a);
+ }
+
+ public static void printArray(Object[] a) {
+ for (int i = 0; i < a.length; i++) {
+ System.out.println(i + " " + a[i]);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Testeksamen/testeksamen.pdf b/Testeksamen/testeksamen.pdf
new file mode 100644
index 0000000..d2eb285
--- /dev/null
+++ b/Testeksamen/testeksamen.pdf
@@ -0,0 +1,2885 @@
+%PDF-1.7
+%
+
+1 0 obj
+<<
+ /Type /Pages
+ /Count 3
+ /Kids [195 0 R 197 0 R 199 0 R]
+>>
+endobj
+
+2 0 obj
+<<
+ /Type /Outlines
+ /First 3 0 R
+ /Last 6 0 R
+ /Count 4
+>>
+endobj
+
+3 0 obj
+<<
+ /Parent 2 0 R
+ /Next 4 0 R
+ /Title (Opgave 1)
+ /Dest 191 0 R
+>>
+endobj
+
+4 0 obj
+<<
+ /Parent 2 0 R
+ /Next 5 0 R
+ /Prev 3 0 R
+ /Title (Opgave 2)
+ /Dest 192 0 R
+>>
+endobj
+
+5 0 obj
+<<
+ /Parent 2 0 R
+ /Next 6 0 R
+ /Prev 4 0 R
+ /Title (Opgave 3)
+ /Dest 193 0 R
+>>
+endobj
+
+6 0 obj
+<<
+ /Parent 2 0 R
+ /Prev 5 0 R
+ /Title (Opgave 4)
+ /Dest 194 0 R
+>>
+endobj
+
+7 0 obj
+<<
+ /Type /StructTreeRoot
+ /RoleMap <<
+ /Datetime /Span
+ /Terms /Part
+ /Title /P
+ /Strong /Span
+ /Em /Span
+ >>
+ /K [11 0 R]
+ /ParentTree <<
+ /Nums [0 8 0 R 1 9 0 R 2 10 0 R]
+ >>
+ /ParentTreeNextKey 3
+>>
+endobj
+
+8 0 obj
+[168 0 R 165 0 R 162 0 R 161 0 R 161 0 R 160 0 R 159 0 R 157 0 R 156 0 R 153 0 R 152 0 R 151 0 R 150 0 R 149 0 R 148 0 R 147 0 R 146 0 R 145 0 R 144 0 R 143 0 R 142 0 R 141 0 R 139 0 R 138 0 R 137 0 R 135 0 R 134 0 R 133 0 R 132 0 R 131 0 R 130 0 R 129 0 R 128 0 R 127 0 R 126 0 R 125 0 R 124 0 R 123 0 R 122 0 R 121 0 R 120 0 R 119 0 R 118 0 R 117 0 R]
+endobj
+
+9 0 obj
+[115 0 R 114 0 R 112 0 R 111 0 R 110 0 R 109 0 R 108 0 R 107 0 R 106 0 R 105 0 R 104 0 R 103 0 R 101 0 R 100 0 R 99 0 R 98 0 R 97 0 R 96 0 R 95 0 R 94 0 R 93 0 R 92 0 R 91 0 R 90 0 R 89 0 R 88 0 R 87 0 R 86 0 R 85 0 R 83 0 R 82 0 R 81 0 R 80 0 R 79 0 R 78 0 R 77 0 R 76 0 R 75 0 R 74 0 R 73 0 R 72 0 R 71 0 R 70 0 R 69 0 R 68 0 R 67 0 R 65 0 R 64 0 R 63 0 R 62 0 R]
+endobj
+
+10 0 obj
+[61 0 R 60 0 R 59 0 R 57 0 R 54 0 R 53 0 R 52 0 R 51 0 R 50 0 R 49 0 R 47 0 R 46 0 R 45 0 R 44 0 R 42 0 R 41 0 R 40 0 R 39 0 R 38 0 R 37 0 R 36 0 R 35 0 R 34 0 R 33 0 R 31 0 R 30 0 R 29 0 R 28 0 R 27 0 R 26 0 R 25 0 R 24 0 R 23 0 R 22 0 R 20 0 R 19 0 R 18 0 R 17 0 R 16 0 R 15 0 R 14 0 R 13 0 R]
+endobj
+
+11 0 obj
+<<
+ /Type /StructElem
+ /S /Document
+ /P 7 0 R
+ /K [163 0 R 162 0 R 161 0 R 154 0 R 153 0 R 152 0 R 140 0 R 139 0 R 113 0 R 112 0 R 55 0 R 54 0 R 12 0 R]
+>>
+endobj
+
+12 0 obj
+<<
+ /Type /StructElem
+ /S /Code
+ /P 11 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [53 0 R 52 0 R 51 0 R 50 0 R 49 0 R 48 0 R 47 0 R 46 0 R 45 0 R 44 0 R 43 0 R 42 0 R 41 0 R 40 0 R 39 0 R 38 0 R 37 0 R 36 0 R 35 0 R 34 0 R 33 0 R 32 0 R 31 0 R 30 0 R 29 0 R 28 0 R 27 0 R 26 0 R 25 0 R 24 0 R 23 0 R 22 0 R 21 0 R 20 0 R 19 0 R 18 0 R 17 0 R 16 0 R 15 0 R 14 0 R 13 0 R]
+>>
+endobj
+
+13 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [41]
+ /Pg 199 0 R
+>>
+endobj
+
+14 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [40]
+ /Pg 199 0 R
+>>
+endobj
+
+15 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [39]
+ /Pg 199 0 R
+>>
+endobj
+
+16 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [38]
+ /Pg 199 0 R
+>>
+endobj
+
+17 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [37]
+ /Pg 199 0 R
+>>
+endobj
+
+18 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [36]
+ /Pg 199 0 R
+>>
+endobj
+
+19 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [35]
+ /Pg 199 0 R
+>>
+endobj
+
+20 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [34]
+ /Pg 199 0 R
+>>
+endobj
+
+21 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K []
+>>
+endobj
+
+22 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [33]
+ /Pg 199 0 R
+>>
+endobj
+
+23 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [32]
+ /Pg 199 0 R
+>>
+endobj
+
+24 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [31]
+ /Pg 199 0 R
+>>
+endobj
+
+25 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [30]
+ /Pg 199 0 R
+>>
+endobj
+
+26 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [29]
+ /Pg 199 0 R
+>>
+endobj
+
+27 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [28]
+ /Pg 199 0 R
+>>
+endobj
+
+28 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [27]
+ /Pg 199 0 R
+>>
+endobj
+
+29 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [26]
+ /Pg 199 0 R
+>>
+endobj
+
+30 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [25]
+ /Pg 199 0 R
+>>
+endobj
+
+31 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [24]
+ /Pg 199 0 R
+>>
+endobj
+
+32 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K []
+>>
+endobj
+
+33 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [23]
+ /Pg 199 0 R
+>>
+endobj
+
+34 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [22]
+ /Pg 199 0 R
+>>
+endobj
+
+35 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [21]
+ /Pg 199 0 R
+>>
+endobj
+
+36 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [20]
+ /Pg 199 0 R
+>>
+endobj
+
+37 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [19]
+ /Pg 199 0 R
+>>
+endobj
+
+38 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [18]
+ /Pg 199 0 R
+>>
+endobj
+
+39 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [17]
+ /Pg 199 0 R
+>>
+endobj
+
+40 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [16]
+ /Pg 199 0 R
+>>
+endobj
+
+41 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [15]
+ /Pg 199 0 R
+>>
+endobj
+
+42 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [14]
+ /Pg 199 0 R
+>>
+endobj
+
+43 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K []
+>>
+endobj
+
+44 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [13]
+ /Pg 199 0 R
+>>
+endobj
+
+45 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [12]
+ /Pg 199 0 R
+>>
+endobj
+
+46 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [11]
+ /Pg 199 0 R
+>>
+endobj
+
+47 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [10]
+ /Pg 199 0 R
+>>
+endobj
+
+48 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K []
+>>
+endobj
+
+49 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [9]
+ /Pg 199 0 R
+>>
+endobj
+
+50 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [8]
+ /Pg 199 0 R
+>>
+endobj
+
+51 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [7]
+ /Pg 199 0 R
+>>
+endobj
+
+52 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [6]
+ /Pg 199 0 R
+>>
+endobj
+
+53 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 12 0 R
+ /K [5]
+ /Pg 199 0 R
+>>
+endobj
+
+54 0 obj
+<<
+ /Type /StructElem
+ /S /H1
+ /P 11 0 R
+ /T (Opgave 4)
+ /K [4]
+ /Pg 199 0 R
+>>
+endobj
+
+55 0 obj
+<<
+ /Type /StructElem
+ /S /Code
+ /P 11 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [111 0 R 110 0 R 109 0 R 108 0 R 107 0 R 106 0 R 105 0 R 104 0 R 103 0 R 102 0 R 101 0 R 100 0 R 99 0 R 98 0 R 97 0 R 96 0 R 95 0 R 94 0 R 93 0 R 92 0 R 91 0 R 90 0 R 89 0 R 88 0 R 87 0 R 86 0 R 85 0 R 84 0 R 83 0 R 82 0 R 81 0 R 80 0 R 79 0 R 78 0 R 77 0 R 76 0 R 75 0 R 74 0 R 73 0 R 72 0 R 71 0 R 70 0 R 69 0 R 68 0 R 67 0 R 66 0 R 65 0 R 64 0 R 63 0 R 62 0 R 61 0 R 60 0 R 59 0 R 58 0 R 57 0 R 56 0 R]
+>>
+endobj
+
+56 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K []
+>>
+endobj
+
+57 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [3]
+ /Pg 199 0 R
+>>
+endobj
+
+58 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K []
+>>
+endobj
+
+59 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [2]
+ /Pg 199 0 R
+>>
+endobj
+
+60 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [1]
+ /Pg 199 0 R
+>>
+endobj
+
+61 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [0]
+ /Pg 199 0 R
+>>
+endobj
+
+62 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [49]
+ /Pg 197 0 R
+>>
+endobj
+
+63 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [48]
+ /Pg 197 0 R
+>>
+endobj
+
+64 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [47]
+ /Pg 197 0 R
+>>
+endobj
+
+65 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [46]
+ /Pg 197 0 R
+>>
+endobj
+
+66 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K []
+>>
+endobj
+
+67 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [45]
+ /Pg 197 0 R
+>>
+endobj
+
+68 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [44]
+ /Pg 197 0 R
+>>
+endobj
+
+69 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [43]
+ /Pg 197 0 R
+>>
+endobj
+
+70 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [42]
+ /Pg 197 0 R
+>>
+endobj
+
+71 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [41]
+ /Pg 197 0 R
+>>
+endobj
+
+72 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [40]
+ /Pg 197 0 R
+>>
+endobj
+
+73 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [39]
+ /Pg 197 0 R
+>>
+endobj
+
+74 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [38]
+ /Pg 197 0 R
+>>
+endobj
+
+75 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [37]
+ /Pg 197 0 R
+>>
+endobj
+
+76 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [36]
+ /Pg 197 0 R
+>>
+endobj
+
+77 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [35]
+ /Pg 197 0 R
+>>
+endobj
+
+78 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [34]
+ /Pg 197 0 R
+>>
+endobj
+
+79 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [33]
+ /Pg 197 0 R
+>>
+endobj
+
+80 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [32]
+ /Pg 197 0 R
+>>
+endobj
+
+81 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [31]
+ /Pg 197 0 R
+>>
+endobj
+
+82 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [30]
+ /Pg 197 0 R
+>>
+endobj
+
+83 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [29]
+ /Pg 197 0 R
+>>
+endobj
+
+84 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K []
+>>
+endobj
+
+85 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [28]
+ /Pg 197 0 R
+>>
+endobj
+
+86 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [27]
+ /Pg 197 0 R
+>>
+endobj
+
+87 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [26]
+ /Pg 197 0 R
+>>
+endobj
+
+88 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [25]
+ /Pg 197 0 R
+>>
+endobj
+
+89 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [24]
+ /Pg 197 0 R
+>>
+endobj
+
+90 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [23]
+ /Pg 197 0 R
+>>
+endobj
+
+91 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [22]
+ /Pg 197 0 R
+>>
+endobj
+
+92 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [21]
+ /Pg 197 0 R
+>>
+endobj
+
+93 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [20]
+ /Pg 197 0 R
+>>
+endobj
+
+94 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [19]
+ /Pg 197 0 R
+>>
+endobj
+
+95 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [18]
+ /Pg 197 0 R
+>>
+endobj
+
+96 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [17]
+ /Pg 197 0 R
+>>
+endobj
+
+97 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [16]
+ /Pg 197 0 R
+>>
+endobj
+
+98 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [15]
+ /Pg 197 0 R
+>>
+endobj
+
+99 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [14]
+ /Pg 197 0 R
+>>
+endobj
+
+100 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [13]
+ /Pg 197 0 R
+>>
+endobj
+
+101 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [12]
+ /Pg 197 0 R
+>>
+endobj
+
+102 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K []
+>>
+endobj
+
+103 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [11]
+ /Pg 197 0 R
+>>
+endobj
+
+104 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [10]
+ /Pg 197 0 R
+>>
+endobj
+
+105 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [9]
+ /Pg 197 0 R
+>>
+endobj
+
+106 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [8]
+ /Pg 197 0 R
+>>
+endobj
+
+107 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [7]
+ /Pg 197 0 R
+>>
+endobj
+
+108 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [6]
+ /Pg 197 0 R
+>>
+endobj
+
+109 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [5]
+ /Pg 197 0 R
+>>
+endobj
+
+110 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [4]
+ /Pg 197 0 R
+>>
+endobj
+
+111 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 55 0 R
+ /K [3]
+ /Pg 197 0 R
+>>
+endobj
+
+112 0 obj
+<<
+ /Type /StructElem
+ /S /H1
+ /P 11 0 R
+ /T (Opgave 3)
+ /K [2]
+ /Pg 197 0 R
+>>
+endobj
+
+113 0 obj
+<<
+ /Type /StructElem
+ /S /Code
+ /P 11 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [138 0 R 137 0 R 136 0 R 135 0 R 134 0 R 133 0 R 132 0 R 131 0 R 130 0 R 129 0 R 128 0 R 127 0 R 126 0 R 125 0 R 124 0 R 123 0 R 122 0 R 121 0 R 120 0 R 119 0 R 118 0 R 117 0 R 116 0 R 115 0 R 114 0 R]
+>>
+endobj
+
+114 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [1]
+ /Pg 197 0 R
+>>
+endobj
+
+115 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [0]
+ /Pg 197 0 R
+>>
+endobj
+
+116 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K []
+>>
+endobj
+
+117 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [43]
+ /Pg 195 0 R
+>>
+endobj
+
+118 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [42]
+ /Pg 195 0 R
+>>
+endobj
+
+119 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [41]
+ /Pg 195 0 R
+>>
+endobj
+
+120 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [40]
+ /Pg 195 0 R
+>>
+endobj
+
+121 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [39]
+ /Pg 195 0 R
+>>
+endobj
+
+122 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [38]
+ /Pg 195 0 R
+>>
+endobj
+
+123 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [37]
+ /Pg 195 0 R
+>>
+endobj
+
+124 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [36]
+ /Pg 195 0 R
+>>
+endobj
+
+125 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [35]
+ /Pg 195 0 R
+>>
+endobj
+
+126 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [34]
+ /Pg 195 0 R
+>>
+endobj
+
+127 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [33]
+ /Pg 195 0 R
+>>
+endobj
+
+128 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [32]
+ /Pg 195 0 R
+>>
+endobj
+
+129 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [31]
+ /Pg 195 0 R
+>>
+endobj
+
+130 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [30]
+ /Pg 195 0 R
+>>
+endobj
+
+131 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [29]
+ /Pg 195 0 R
+>>
+endobj
+
+132 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [28]
+ /Pg 195 0 R
+>>
+endobj
+
+133 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [27]
+ /Pg 195 0 R
+>>
+endobj
+
+134 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [26]
+ /Pg 195 0 R
+>>
+endobj
+
+135 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [25]
+ /Pg 195 0 R
+>>
+endobj
+
+136 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K []
+>>
+endobj
+
+137 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [24]
+ /Pg 195 0 R
+>>
+endobj
+
+138 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 113 0 R
+ /K [23]
+ /Pg 195 0 R
+>>
+endobj
+
+139 0 obj
+<<
+ /Type /StructElem
+ /S /H1
+ /P 11 0 R
+ /T (Opgave 2)
+ /K [22]
+ /Pg 195 0 R
+>>
+endobj
+
+140 0 obj
+<<
+ /Type /StructElem
+ /S /Code
+ /P 11 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [151 0 R 150 0 R 149 0 R 148 0 R 147 0 R 146 0 R 145 0 R 144 0 R 143 0 R 142 0 R 141 0 R]
+>>
+endobj
+
+141 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [21]
+ /Pg 195 0 R
+>>
+endobj
+
+142 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [20]
+ /Pg 195 0 R
+>>
+endobj
+
+143 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [19]
+ /Pg 195 0 R
+>>
+endobj
+
+144 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [18]
+ /Pg 195 0 R
+>>
+endobj
+
+145 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [17]
+ /Pg 195 0 R
+>>
+endobj
+
+146 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [16]
+ /Pg 195 0 R
+>>
+endobj
+
+147 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [15]
+ /Pg 195 0 R
+>>
+endobj
+
+148 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [14]
+ /Pg 195 0 R
+>>
+endobj
+
+149 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [13]
+ /Pg 195 0 R
+>>
+endobj
+
+150 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [12]
+ /Pg 195 0 R
+>>
+endobj
+
+151 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 140 0 R
+ /K [11]
+ /Pg 195 0 R
+>>
+endobj
+
+152 0 obj
+<<
+ /Type /StructElem
+ /S /H1
+ /P 11 0 R
+ /T (Opgave 1)
+ /K [10]
+ /Pg 195 0 R
+>>
+endobj
+
+153 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 11 0 R
+ /K [9]
+ /Pg 195 0 R
+>>
+endobj
+
+154 0 obj
+<<
+ /Type /StructElem
+ /S /Div
+ /P 11 0 R
+ /K [158 0 R 155 0 R]
+>>
+endobj
+
+155 0 obj
+<<
+ /Type /StructElem
+ /S /Div
+ /P 154 0 R
+ /K [157 0 R 156 0 R]
+>>
+endobj
+
+156 0 obj
+<<
+ /Type /StructElem
+ /S /Span
+ /P 155 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [8]
+ /Pg 195 0 R
+>>
+endobj
+
+157 0 obj
+<<
+ /Type /StructElem
+ /S /Strong
+ /P 155 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [7]
+ /Pg 195 0 R
+>>
+endobj
+
+158 0 obj
+<<
+ /Type /StructElem
+ /S /Div
+ /P 154 0 R
+ /K [160 0 R 159 0 R]
+>>
+endobj
+
+159 0 obj
+<<
+ /Type /StructElem
+ /S /Span
+ /P 158 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [6]
+ /Pg 195 0 R
+>>
+endobj
+
+160 0 obj
+<<
+ /Type /StructElem
+ /S /Strong
+ /P 158 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [5]
+ /Pg 195 0 R
+>>
+endobj
+
+161 0 obj
+<<
+ /Type /StructElem
+ /S /P
+ /P 11 0 R
+ /K [3 4]
+ /Pg 195 0 R
+>>
+endobj
+
+162 0 obj
+<<
+ /Type /StructElem
+ /S /Span
+ /P 11 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [2]
+ /Pg 195 0 R
+>>
+endobj
+
+163 0 obj
+<<
+ /Type /StructElem
+ /S /Div
+ /P 11 0 R
+ /K [167 0 R 166 0 R 164 0 R]
+>>
+endobj
+
+164 0 obj
+<<
+ /Type /StructElem
+ /S /Div
+ /P 163 0 R
+ /K [165 0 R]
+>>
+endobj
+
+165 0 obj
+<<
+ /Type /StructElem
+ /S /Span
+ /P 164 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [1]
+ /Pg 195 0 R
+>>
+endobj
+
+166 0 obj
+<<
+ /Type /StructElem
+ /S /Div
+ /P 163 0 R
+ /K []
+>>
+endobj
+
+167 0 obj
+<<
+ /Type /StructElem
+ /S /Div
+ /P 163 0 R
+ /K [168 0 R]
+>>
+endobj
+
+168 0 obj
+<<
+ /Type /StructElem
+ /S /Figure
+ /P 167 0 R
+ /A [<<
+ /O /Layout
+ /Placement /Block
+ >>]
+ /K [0]
+ /Pg 195 0 R
+>>
+endobj
+
+169 0 obj
+<<
+ /Type /Font
+ /Subtype /Type0
+ /BaseFont /CLUNLM+LiberationSans-Bold
+ /Encoding /Identity-H
+ /DescendantFonts [170 0 R]
+ /ToUnicode 173 0 R
+>>
+endobj
+
+170 0 obj
+<<
+ /Type /Font
+ /Subtype /CIDFontType2
+ /BaseFont /CLUNLM+LiberationSans-Bold
+ /CIDSystemInfo <<
+ /Registry (Adobe)
+ /Ordering (Identity)
+ /Supplement 0
+ >>
+ /FontDescriptor 172 0 R
+ /DW 0
+ /CIDToGIDMap /Identity
+ /W [0 0 750 1 1 610.83984 2 2 556.15234 3 3 333.0078 4 6 556.15234 7 7 889.16016 8 8 610.83984 9 11 556.15234 12 12 666.9922 13 14 610.83984 15 15 333.0078 16 16 722.16797 17 17 777.83203 18 19 610.83984 20 20 556.15234 21 21 277.83203 22 22 722.16797 23 24 556.15234]
+>>
+endobj
+
+171 0 obj
+<<
+ /Length 12
+ /Filter /FlateDecode
+>>
+stream
+x {~
+endstream
+endobj
+
+172 0 obj
+<<
+ /Type /FontDescriptor
+ /FontName /CLUNLM+LiberationSans-Bold
+ /Flags 131076
+ /FontBBox [3.90625 -211.91406 827.14844 724.6094]
+ /ItalicAngle 0
+ /Ascent 728.02734
+ /Descent -210.44922
+ /CapHeight 687.9883
+ /StemV 168.6
+ /CIDSet 171 0 R
+ /FontFile2 174 0 R
+>>
+endobj
+
+173 0 obj
+<<
+ /Length 942
+ /Type /CMap
+ /WMode 0
+>>
+stream
+%!PS-Adobe-3.0 Resource-CMap
+%%DocumentNeededResources: procset CIDInit
+%%IncludeResource: procset CIDInit
+%%BeginResource: CMap Custom
+%%Title: (Custom Adobe Identity 0)
+%%Version: 1
+%%EndComments
+/CIDInit /ProcSet findresource begin
+12 dict begin
+begincmap
+/CIDSystemInfo 3 dict dup begin
+ /Registry (Adobe) def
+ /Ordering (Identity) def
+ /Supplement 0 def
+end def
+/CMapName /Custom def
+/CMapVersion 1 def
+/CMapType 0 def
+/WMode 0 def
+1 begincodespacerange
+<0000>
+endcodespacerange
+24 beginbfchar
+<0001> <0054>
+<0002> <0065>
+<0003> <0074>
+<0004> <0073>
+<0005> <006B>
+<0006> <0061>
+<0007> <006D>
+<0008> <006E>
+<0009> <0030>
+<000A> <0032>
+<000B> <0031>
+<000C> <0053>
+<000D> <0075>
+<000E> <0064>
+<000F> <003A>
+<0010> <0044>
+<0011> <004F>
+<0012> <0070>
+<0013> <0067>
+<0014> <0076>
+<0015> <0020>
+<0016> <0055>
+<0017> <0033>
+<0018> <0034>
+endbfchar
+endcmap
+CMapName currentdict /CMap defineresource pop
+end
+end
+%%EndResource
+%%EOF
+endstream
+endobj
+
+174 0 obj
+<<
+ /Length 6976
+ /Filter /FlateDecode
+>>
+stream
+xz tSwtkk%¾WHAƲ/<
V Ӧ8ehR@m&_LHI@
+I> ~ɆIZ#sg}@ H`k]Ɵ> fUwD^u ܰ/} t'w> ^ I`~ &Z[ %+"3 rU g ՑU=7i 3 | hmv~8`ӸN^?_hKo2hK1 v8(!q8oËC/q>L=8JapX܀n؉Vd18xNX' 1oc&s0>XI* @pWx~x?7mo`:m L&p|O_GK3 !0/[Szދ<<