";
//Fragen
echo "";
echo "";
//Upload Feld fuer Bild
echo "
-
- ";
+
+
+
+
+ ";
//Wenn ein Bild vorhanden ist, dann anzeigen
if($frage->bild!='')
{
- echo "\n ";
+ echo "\n ";
}
else
{
- echo "\nKein Bild vorhanden \n";
+ //echo "\nKein Bild vorhanden\n";
+ echo "\n \n";
+ if($frage->audio=='')
+ echo "Kein Bild vorhanden\n";
}
+ if($frage->audio!='')
+ {
+ echo ' ';
+ }
+ echo ' ';
//Zusaetzliche EingabeFelder anzeigen
echo "";
- echo "";
@@ -335,49 +557,62 @@ if($frage->frage_id!='')
$vorschlag = new vorschlag($conn);
if($vorschlag_id!='')
- if(!$vorschlag->load($vorschlag_id))
+ if(!$vorschlag->load($vorschlag_id, $sprache))
die($vorschlag->errormsg);
if($save_vorschlag_error)
{
$vorschlag->vorschlag_id = (isset($_POST['vorschlag_id'])?$_POST['vorschlag_id']:'');
$vorschlag->frage_id = $_GET['frage_id'];
$vorschlag->nummer = $_POST['nummer'];
- $vorschlag->antwort = $_POST['antwort'];
+ $vorschlag->punkte = $_POST['punkte'];
$vorschlag->text = $_POST['text'];
$vorschlag->bild = '';
}
//Vorschlag
echo 'Vorschlag'.($vorschlag_id!=''?' Edit':'').' ';
- echo "";
+ echo " ";
echo " ";
echo '";
echo " ";
echo '
';
$vorschlag = new vorschlag($conn);
- $vorschlag->getVorschlag($frage->frage_id);
+ $vorschlag->getVorschlag($frage_id, $sprache, false);
$i=0;
if(count($vorschlag->result)>0)
{
- echo 'Nummer Antwort Text Bild ';
+ echo 'Nummer Punkte Text Bild Audio ';
foreach ($vorschlag->result as $vs)
{
$i++;
- echo "$vs->nummer $vs->antwort $vs->text edit delete ";
+ echo "$vs->nummer
+ $vs->punkte
+ $vs->text
+
+ ";
+ if($vs->audio!='')
+ echo " ";
+ echo "
+ edit
+ delete
+ ";
}
echo '
';
}
diff --git a/cis/testtool/auswertung.html b/cis/testtool/auswertung.html
deleted file mode 100644
index 315053604..000000000
--- a/cis/testtool/auswertung.html
+++ /dev/null
@@ -1,178 +0,0 @@
-
-
-
-Unbenanntes Dokument
-
-
-
-
-
-
-
-
-
- Auswertung
-
-
-
-
-
-
-
-
- vor Gefährdungen
-
-
-
-
-
-
- Punkte
- Max-Punkte
- Anzahl der Gefährdungen
-
- geschützt
- teilweise geschützt
- nicht geschützt
-
-
-
-
- IT-Grundschutz
- IT-Sicherheitsmanagement
- 10
- 20
- 10
-
- 4
- 2
- 4
-
-
-
-
-
- Organisation
- 38
- 40
- 20
-
- 18
- 2
- 0
-
-
-
-
-
- Personal
-
-
-
-
-
-
-
-
-
-
-
-
- Notfallvorsorge-Konzept
-
-
-
-
-
-
-
-
-
-
-
-
- Datensicherungskonzept
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Gefährdungen
-
- Punkte
- Max-Punkte
- Anzahl der Gefährdungen
-
- geschützt
- teilweise geschützt
- nicht geschützt
-
-
-
-
-
- Feuer
-
-
-
-
-
-
-
-
-
-
-
-
- Wasser
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/cis/testtool/bild.php b/cis/testtool/bild.php
index ac84426dc..5b51da2e0 100644
--- a/cis/testtool/bild.php
+++ b/cis/testtool/bild.php
@@ -41,12 +41,17 @@ if(!$conn = pg_pconnect(CONN_STRING))
$qry = '';
if(isset($_GET['src']) && $_GET['src']=='frage' && isset($_GET['frage_id']))
{
- $qry = "SELECT bild FROM testtool.tbl_frage WHERE frage_id='".addslashes($_GET['frage_id'])."'";
+ $qry = "SELECT bild FROM testtool.tbl_frage_sprache WHERE frage_id='".addslashes($_GET['frage_id'])."' AND sprache='".addslashes($_GET['sprache'])."'";
}
elseif(isset($_GET['src']) && $_GET['src']=='vorschlag' && isset($_GET['vorschlag_id']))
{
- $qry = "SELECT bild FROM testtool.tbl_vorschlag WHERE vorschlag_id='".addslashes($_GET['vorschlag_id'])."'";
+ $qry = "SELECT bild FROM testtool.tbl_vorschlag_sprache WHERE vorschlag_id='".addslashes($_GET['vorschlag_id'])."' AND sprache='".addslashes($_GET['sprache'])."'";
}
+elseif(isset($_GET['src']) && $_GET['src']=='flag' && isset($_GET['sprache']))
+{
+ $qry = "SELECT flagge as bild FROM public.tbl_sprache WHERE sprache='".addslashes($_GET['sprache'])."'";
+}
+
else
echo 'Unkown type';
diff --git a/cis/testtool/frage.php b/cis/testtool/frage.php
index 6b2fdf104..70f69dc92 100644
--- a/cis/testtool/frage.php
+++ b/cis/testtool/frage.php
@@ -1,5 +1,5 @@
,
- * Andreas Oesterreicher and
- * Rudolf Hangl .
+ * Andreas Oesterreicher ,
+ * Rudolf Hangl and
+ * Gerald Simane-Sequens
+ */
+/**
+ * Formular zum Beantworten der Fragen
*/
header("Content-type: application/xhtml+xml");
-// Formular zum beantworten der Fragen
require_once('../config.inc.php');
require_once('../../include/functions.inc.php');
require_once('../../include/frage.class.php');
require_once('../../include/vorschlag.class.php');
require_once('../../include/antwort.class.php');
+require_once('../../include/gebiet.class.php');
$PHP_SELF=$_SERVER["PHP_SELF"];
session_start();
-//testumgebung
-//$_SESSION['pruefling_id']=1;
//Connection Herstellen
if(!$conn = pg_pconnect(CONN_STRING))
- die('Fehler beim oeffnen der Datenbankverbindung');
+ die('Fehler beim Oeffnen der Datenbankverbindung');
if(isset($_GET['gebiet_id']))
$gebiet_id = $_GET['gebiet_id'];
@@ -56,8 +58,8 @@ $MAX_VORSCHLAEGE_PRO_ZEILE=4;
-
-
+
+
");
+ }
}
+
+ $frage_id = $frage->getNextFrage($gebiet_id, $_SESSION['pruefling_id'], null, $demo);
+ $frage->load($frage_id);
}
//Anzeigen der Frage
if($frage->frage_id!='')
{
$frage_id = $frage->frage_id;
+ $frage->getFrageSprache($frage_id, $_SESSION['sprache']);
if(!$demo)
{
//Nachschauen ob diese Frage bereits angesehen wurde
$antwort = new antwort($conn);
- if(!$antwort->getAntwort($_SESSION['pruefling_id'],$frage_id))
+ $antwort->getAntwort($_SESSION['pruefling_id'],$frage_id);
+ if(count($antwort->result)==0)
{
//wenn diese noch nicht angesehen wurde, dann wird die begintime gesetzt
- $antwort = new antwort($conn);
- $antwort->begintime = date('Y-m-d H:i:s');
- $antwort->pruefling_id = $_SESSION['pruefling_id'];
- $antwort->frage_id = $frage_id;
- $antwort->new = true;
- if(!$antwort->save())
- echo 'Fehler beim Speichern der Erstansicht';
+ $prueflingfrage = new frage($conn);
+ if(!$prueflingfrage->getPrueflingfrage($_SESSION['pruefling_id'], $frage_id))
+ die('Diese Frage ist nicht fuer Sie bestimmt');
+
+ if($prueflingfrage->begintime=='')
+ {
+ $prueflingfrage->begintime = date('Y-m-d H:i:s');
+ $prueflingfrage->new = false;
+ if(!$prueflingfrage->save_prueflingfrage())
+ echo 'Fehler beim Speichern der Erstansicht';
+ }
}
}
echo '';
//Bild und Text der Frage anzeigen
if($frage->bild!='')
- echo " \n";
+ echo " \n";
+
+ //Sound einbinden
+ if($frage->audio!='')
+ echo ' ';
echo "$frage->text \n";
//Vorschlaege laden
$vs = new vorschlag($conn);
- $vs->getVorschlag($frage->frage_id);
+ $vs->getVorschlag($frage->frage_id, $_SESSION['sprache'], $gebiet->zufallvorschlag);
+ echo "frage_id\" method=\"POST\">";
echo '';
- //Antwort laden falls bereits vorhanden
- $antwort = new antwort($conn);
- $antwort->getAntwort($_SESSION['pruefling_id'],$frage->frage_id);
+
if(!$demo)
{
- echo " frage_id\" method=\"POST\">";
- echo " antwort_id\" />";
- echo "Antwort: antwort))."\" /> ";
- echo " ";
+ echo " ";
}
+ echo "";
echo ' ';
//Fusszeile mit Weiter Button und Sprung direkt zu einer Frage
- if(!$demo)
+ if(!$demo && !$levelgebiet)
{
- $qry = "SELECT nummer, frage_id FROM testtool.tbl_frage WHERE gebiet_id='".addslashes($gebiet_id)."' AND gruppe_kurzbz='$gruppe' AND demo=false ORDER BY nummer";
+ $qry = "SELECT tbl_pruefling_frage.nummer, tbl_pruefling_frage.frage_id
+ FROM testtool.tbl_pruefling_frage JOIN testtool.tbl_frage USING(frage_id)
+ WHERE gebiet_id='".addslashes($gebiet_id)."' AND pruefling_id='".addslashes($_SESSION['pruefling_id'])."' AND demo=false ORDER BY nummer";
//Nummern der Fragen Anzeigen
$result = pg_query($conn, $qry);
@@ -372,17 +480,21 @@ if($frage->frage_id!='')
}
}
- //Naechste Frage holen und Weiter-Button anzeigen
- $frage = new frage($conn);
- $nextfrage = $frage->getNextFrage($gebiet_id, $gruppe, $frage_id, $demo);
- if($nextfrage)
+ //Weiter Button nur bei nicht gelevelten Gebieten anzeigen
+ if(!$levelgebiet)
{
- echo " Weiter >> ";
- }
- else
- {
- //Wenns der letzte Eintrag ist, wieder zum ersten springen
- echo " Weiter >> ";
+ //Naechste Frage holen und Weiter-Button anzeigen
+ $frage = new frage($conn);
+ $nextfrage = $frage->getNextFrage($gebiet_id, $_SESSION['pruefling_id'], $frage_id, $demo);
+ if($nextfrage)
+ {
+ echo " Weiter >> ";
+ }
+ else
+ {
+ //Wenns der letzte Eintrag ist, wieder zum ersten springen
+ echo " Weiter >> ";
+ }
}
echo ' ';
@@ -390,7 +502,7 @@ if($frage->frage_id!='')
else
{
//Wenn kein Demo vorhanden ist
- echo "Start drücken um zu beginnen ";
+ echo "Start druecken um zu beginnen ";
}
?>
diff --git a/cis/testtool/gebietfertig.php b/cis/testtool/gebietfertig.php
index 5cef81894..f6cd811bc 100644
--- a/cis/testtool/gebietfertig.php
+++ b/cis/testtool/gebietfertig.php
@@ -24,8 +24,8 @@
-
-
+
+
diff --git a/cis/testtool/index.html b/cis/testtool/index.html
index 5ebc9f37a..fabea05c3 100644
--- a/cis/testtool/index.html
+++ b/cis/testtool/index.html
@@ -2,8 +2,8 @@
TestTool - FH Technikum Wien
-
-
+
+
diff --git a/cis/testtool/login.php b/cis/testtool/login.php
index 8e011dbe7..a28970de6 100644
--- a/cis/testtool/login.php
+++ b/cis/testtool/login.php
@@ -21,36 +21,57 @@
*/
require_once('../config.inc.php');
-//require_once('../../include/functions.inc.php');
require_once('../../include/person.class.php');
require_once('../../include/prestudent.class.php');
require_once('../../include/pruefling.class.php');
-//require_once('../../include/lehrveranstaltung.class.php');
+require_once('../../include/studiengang.class.php');
session_start();
$reload=false;
$reload_parent=false;
-if (isset($_POST['logout']))
+if (isset($_GET['logout']))
{
- $reload = true;
- session_destroy();
+ if(isset($_SESSION['prestudent_id']))
+ {
+ $reload = true;
+ session_destroy();
+ }
}
//Connection Herstellen
if(!$db_conn = pg_pconnect(CONN_STRING))
- die('Fehler beim oeffnen der Datenbankverbindung');
+ die('Fehler beim Oeffnen der Datenbankverbindung');
if (isset($_POST['prestudent']) && isset($_POST['gebdatum']))
{
$ps=new prestudent($db_conn,$_POST['prestudent']);
if ($_POST['gebdatum']==$ps->gebdatum)
{
+ $pruefling = new pruefling($db_conn);
+ if($pruefling->getPruefling($ps->prestudent_id))
+ {
+ $studiengang = $pruefling->studiengang_kz;
+ $semester = $pruefling->semester;
+ }
+ else
+ {
+ $studiengang = $ps->studiengang_kz;
+ $ps->getLastStatus($ps->prestudent_id);
+ $semester = $ps->ausbildungssemester;
+ }
+ if($semester=='')
+ $semester=1;
+
$_SESSION['prestudent_id']=$_POST['prestudent'];
- $_SESSION['studiengang_kz']=$ps->studiengang_kz;
+ $_SESSION['studiengang_kz']=$studiengang;
$_SESSION['nachname']=$ps->nachname;
$_SESSION['vorname']=$ps->vorname;
$_SESSION['gebdatum']=$ps->gebdatum;
+ $stg_obj = new studiengang($db_conn, $studiengang);
+ $_SESSION['sprache']=$stg_obj->sprache;
+
+ $_SESSION['semester']=$semester;
}
}
@@ -66,6 +87,33 @@ else
$ps->getPrestudentRT($datum);
}
+if(isset($_GET['type']) && $_GET['type']=='sprachechange' && isset($_GET['sprache']))
+{
+ $_SESSION['sprache']=$_GET['sprache'];
+}
+
+if(isset($_SESSION['prestudent_id']) && !isset($_SESSION['pruefling_id']))
+{
+ $pruefling = new pruefling($db_conn);
+
+ if(!$pruefling->getPruefling($_SESSION['prestudent_id']))
+ {
+ $pruefling->new = true;
+
+ $pruefling->studiengang_kz = $_SESSION['studiengang_kz'];
+ $pruefling->semester = $_SESSION['semester'];
+
+ $pruefling->idnachweis = '';
+ $pruefling->registriert = date('Y-m-d H:i:s');
+ $pruefling->prestudent_id = $_SESSION['prestudent_id'];
+ if($pruefling->save())
+ {
+ $_SESSION['pruefling_id']=$pruefling->pruefling_id;
+ $reload_parent=true;
+ }
+ }
+}
+
if(isset($_POST['save']) && isset($_SESSION['prestudent_id']))
{
$pruefling = new pruefling($db_conn);
@@ -81,10 +129,11 @@ if(isset($_POST['save']) && isset($_SESSION['prestudent_id']))
$pruefling->idnachweis = $_POST['idnachweis'];
$pruefling->registriert = date('Y-m-d H:i:s');
$pruefling->prestudent_id = $_SESSION['prestudent_id'];
- $pruefling->gruppe_kurzbz = $_POST['gruppe'];
+ $pruefling->semester = $_POST['semester'];
if($pruefling->save())
{
$_SESSION['pruefling_id']=$pruefling->pruefling_id;
+ $_SESSION['semester']=$pruefling->semester;
$reload_parent=true;
}
}
@@ -92,8 +141,8 @@ if(isset($_POST['save']) && isset($_SESSION['prestudent_id']))
-
-
+
+
parent.menu.location.reload()';
@@ -107,41 +156,66 @@ if(isset($_POST['save']) && isset($_SESSION['prestudent_id']))
';
+ echo '';
echo ' Sie sind angemeldet als '.$_SESSION['vorname'].' '.$_SESSION['nachname'];
echo ' ('.$_SESSION['gebdatum'].') ID: '.$_SESSION['prestudent_id'];
echo ' ';
echo ' ';
echo ' ';
+
+ $prestudent = new prestudent($db_conn, $prestudent_id);
+ $stg_obj = new studiengang($db_conn, $prestudent->studiengang_kz);
$pruefling = new pruefling($db_conn);
- $pruefling->getPruefling($prestudent_id);
- if($pruefling->pruefling_id!='')
+ if($pruefling->getPruefling($prestudent_id))
{
- $_SESSION['pruefling_id']=$pruefling->pruefling_id;
- echo '';
- }
- echo '';
- echo ' ';
- echo '';
- echo ' ';
-
+ else
+ {
+ echo 'Kein Pueflingseintrag vorhanden';
+ }
}
else
{
diff --git a/cis/testtool/menu.php b/cis/testtool/menu.php
index d00f85426..0672acd64 100644
--- a/cis/testtool/menu.php
+++ b/cis/testtool/menu.php
@@ -21,6 +21,7 @@
*/
require_once('../config.inc.php');
+require_once('../../include/gebiet.class.php');
session_start();
@@ -32,8 +33,8 @@ if(!$db_conn = pg_pconnect(CONN_STRING))
-
-
+
+
@@ -50,16 +51,33 @@ if (isset($_SESSION['pruefling_id']))
echo '';
echo '';
- $qry = 'SELECT * FROM testtool.vw_ablauf WHERE studiengang_kz='.$_SESSION['studiengang_kz'].' ORDER BY reihung';
+ $qry = "SELECT * FROM testtool.vw_ablauf WHERE studiengang_kz='".addslashes($_SESSION['studiengang_kz'])."' AND semester='".addslashes($_SESSION['semester'])."' ORDER BY reihung";
//echo $qry;
if($result = pg_query($db_conn, $qry))
+ {
while($row = pg_fetch_object($result))
- echo '
-
-
- '.$row->gebiet_bez.'
-
- ';
+ {
+ $gebiet = new gebiet($db_conn);
+ if($gebiet->check_gebiet($row->gebiet_id))
+ {
+ echo '
+
+
+ '.$row->gebiet_bez.'
+
+ ';
+ }
+ else
+ {
+ echo '
+
+
+ '.$row->gebiet_bez.' (invalid)
+
+ ';
+ }
+ }
+ }
echo '
';
echo '
';
}
diff --git a/cis/testtool/sound.php b/cis/testtool/sound.php
new file mode 100644
index 000000000..37858de92
--- /dev/null
+++ b/cis/testtool/sound.php
@@ -0,0 +1,65 @@
+,
+ * Andreas Oesterreicher and
+ * Rudolf Hangl .
+ */
+// Holt den Hexcode eines Bildes aus der DB wandelt es in Zeichen
+// um und gibt das ein Bild zurueck.
+// Aufruf mit audio);
+}
+?>
+
+
diff --git a/cis/testtool/topbar.html b/cis/testtool/topbar.html
index 453df415e..6ae54fa36 100644
--- a/cis/testtool/topbar.html
+++ b/cis/testtool/topbar.html
@@ -2,8 +2,8 @@
-
-
+
+
diff --git a/content/FASo.pdf b/content/FASo.pdf
index 8b4b3e1f2..1b119074f 100644
--- a/content/FASo.pdf
+++ b/content/FASo.pdf
@@ -322,341 +322,353 @@ endobj
<< /S /GoTo /D (chapter.15) >>
endobj
220 0 obj
-(Projektarbeit)
+(Freif\344cher)
endobj
221 0 obj
-<< /S /GoTo /D (section.15.1) >>
+<< /S /GoTo /D (subsection.15.0.1) >>
endobj
224 0 obj
-(Die Karteikarte Projektarbeit)
+(Drucken von Best\344tigungen)
endobj
225 0 obj
-<< /S /GoTo /D (subsection.15.1.1) >>
-endobj
-228 0 obj
-(Projektarbeitlistenfeld)
-endobj
-229 0 obj
-<< /S /GoTo /D (subsection.15.1.2) >>
-endobj
-232 0 obj
-(Details)
-endobj
-233 0 obj
-<< /S /GoTo /D (subsection.15.1.3) >>
-endobj
-236 0 obj
-(Betreuer)
-endobj
-237 0 obj
-<< /S /GoTo /D (section.15.2) >>
-endobj
-240 0 obj
-(Anlegen einer Diplomarbeit)
-endobj
-241 0 obj
-<< /S /GoTo /D (section.15.3) >>
-endobj
-244 0 obj
-(Anlegen einer Bachelorarbeit)
-endobj
-245 0 obj
-<< /S /GoTo /D (section.15.4) >>
-endobj
-248 0 obj
-(Anlegen eines Praktikums)
-endobj
-249 0 obj
-<< /S /GoTo /D (section.15.5) >>
-endobj
-252 0 obj
-(Anlegen eines Betreuers)
-endobj
-253 0 obj
-<< /S /GoTo /D (section.15.6) >>
-endobj
-256 0 obj
-(Verwendung der Daten)
-endobj
-257 0 obj
<< /S /GoTo /D (chapter.16) >>
endobj
-260 0 obj
-(Bachelor- und Diplompr\374fungen)
+228 0 obj
+(Projektarbeit)
endobj
-261 0 obj
+229 0 obj
<< /S /GoTo /D (section.16.1) >>
endobj
-264 0 obj
-(Diplompr\374fung)
+232 0 obj
+(Die Karteikarte Projektarbeit)
endobj
-265 0 obj
+233 0 obj
+<< /S /GoTo /D (subsection.16.1.1) >>
+endobj
+236 0 obj
+(Projektarbeitlistenfeld)
+endobj
+237 0 obj
+<< /S /GoTo /D (subsection.16.1.2) >>
+endobj
+240 0 obj
+(Details)
+endobj
+241 0 obj
+<< /S /GoTo /D (subsection.16.1.3) >>
+endobj
+244 0 obj
+(Betreuer)
+endobj
+245 0 obj
<< /S /GoTo /D (section.16.2) >>
endobj
-268 0 obj
-(Bachelorpr\374fung)
+248 0 obj
+(Anlegen einer Diplomarbeit)
endobj
-269 0 obj
+249 0 obj
<< /S /GoTo /D (section.16.3) >>
endobj
-272 0 obj
-(Rechtsklick-Funktionen)
+252 0 obj
+(Anlegen einer Bachelorarbeit)
endobj
-273 0 obj
+253 0 obj
+<< /S /GoTo /D (section.16.4) >>
+endobj
+256 0 obj
+(Anlegen eines Praktikums)
+endobj
+257 0 obj
+<< /S /GoTo /D (section.16.5) >>
+endobj
+260 0 obj
+(Anlegen eines Betreuers)
+endobj
+261 0 obj
+<< /S /GoTo /D (section.16.6) >>
+endobj
+264 0 obj
+(Verwendung der Daten)
+endobj
+265 0 obj
<< /S /GoTo /D (chapter.17) >>
endobj
-276 0 obj
-(Betriebsmittel)
+268 0 obj
+(Bachelor- und Diplompr\374fungen)
endobj
-277 0 obj
+269 0 obj
<< /S /GoTo /D (section.17.1) >>
endobj
-280 0 obj
-(Aufbau der Karteikarte Betriebsmittel)
+272 0 obj
+(Diplompr\374fung)
endobj
-281 0 obj
+273 0 obj
<< /S /GoTo /D (section.17.2) >>
endobj
-284 0 obj
-(Eingabe von Betriebsmittelentlehnungen)
+276 0 obj
+(Bachelorpr\374fung)
endobj
-285 0 obj
+277 0 obj
+<< /S /GoTo /D (section.17.3) >>
+endobj
+280 0 obj
+(Rechtsklick-Funktionen)
+endobj
+281 0 obj
<< /S /GoTo /D (chapter.18) >>
endobj
+284 0 obj
+(Betriebsmittel)
+endobj
+285 0 obj
+<< /S /GoTo /D (section.18.1) >>
+endobj
288 0 obj
-(Dokumente)
+(Aufbau der Karteikarte Betriebsmittel)
endobj
289 0 obj
-<< /S /GoTo /D (chapter.19) >>
+<< /S /GoTo /D (section.18.2) >>
endobj
292 0 obj
-(Funktionen)
+(Eingabe von Betriebsmittelentlehnungen)
endobj
293 0 obj
-<< /S /GoTo /D (section.19.1) >>
+<< /S /GoTo /D (chapter.19) >>
endobj
296 0 obj
-(Anlegen von Funktionen)
+(Dokumente)
endobj
297 0 obj
<< /S /GoTo /D (chapter.20) >>
endobj
300 0 obj
-(BIS-Meldung)
+(Funktionen)
endobj
301 0 obj
<< /S /GoTo /D (section.20.1) >>
endobj
304 0 obj
-(Die Studentenmeldung)
+(Anlegen von Funktionen)
endobj
305 0 obj
-<< /S /GoTo /D (subsection.20.1.1) >>
-endobj
-308 0 obj
-(Plausibilit\344tspr\374fung)
-endobj
-309 0 obj
-<< /S /GoTo /D (subsection.20.1.2) >>
-endobj
-312 0 obj
-(Erzeugen der XML-Datei)
-endobj
-313 0 obj
-<< /S /GoTo /D (subsection.20.1.3) >>
-endobj
-316 0 obj
-(Die FHR-Seite)
-endobj
-317 0 obj
-<< /S /GoTo /D (subsection.20.1.4) >>
-endobj
-320 0 obj
-(Fehlerkorrektur)
-endobj
-321 0 obj
-<< /S /GoTo /D (section.20.2) >>
-endobj
-324 0 obj
-(Die Mitarbeitermeldung)
-endobj
-325 0 obj
-<< /S /GoTo /D (subsection.20.2.1) >>
-endobj
-328 0 obj
-(Plausibilit\344tspr\374fung)
-endobj
-329 0 obj
-<< /S /GoTo /D (subsection.20.2.2) >>
-endobj
-332 0 obj
-(Erzeugen der XML-Datei)
-endobj
-333 0 obj
-<< /S /GoTo /D (section.20.3) >>
-endobj
-336 0 obj
-(Die F\046E - Projektmeldung)
-endobj
-337 0 obj
-<< /S /GoTo /D (subsection.20.3.1) >>
-endobj
-340 0 obj
-(Plausibilit\344tspr\374fung)
-endobj
-341 0 obj
-<< /S /GoTo /D (subsection.20.3.2) >>
-endobj
-344 0 obj
-(Erzeugen der XML-Datei)
-endobj
-345 0 obj
-<< /S /GoTo /D (subsection.20.3.3) >>
-endobj
-348 0 obj
-(Die FHR-Seite)
-endobj
-349 0 obj
<< /S /GoTo /D (chapter.21) >>
endobj
-352 0 obj
-(Mitarbeiter)
+308 0 obj
+(BIS-Meldung)
endobj
-353 0 obj
+309 0 obj
<< /S /GoTo /D (section.21.1) >>
endobj
-356 0 obj
-(Anzeigefilter)
+312 0 obj
+(Die Studentenmeldung)
endobj
-357 0 obj
+313 0 obj
+<< /S /GoTo /D (subsection.21.1.1) >>
+endobj
+316 0 obj
+(Plausibilit\344tspr\374fung)
+endobj
+317 0 obj
+<< /S /GoTo /D (subsection.21.1.2) >>
+endobj
+320 0 obj
+(Erzeugen der XML-Datei)
+endobj
+321 0 obj
+<< /S /GoTo /D (subsection.21.1.3) >>
+endobj
+324 0 obj
+(Die FHR-Seite)
+endobj
+325 0 obj
+<< /S /GoTo /D (subsection.21.1.4) >>
+endobj
+328 0 obj
+(Fehlerkorrektur)
+endobj
+329 0 obj
<< /S /GoTo /D (section.21.2) >>
endobj
-360 0 obj
-(Mitarbeiterdatenkarten)
+332 0 obj
+(Die Mitarbeitermeldung)
endobj
-361 0 obj
+333 0 obj
<< /S /GoTo /D (subsection.21.2.1) >>
endobj
-364 0 obj
-(Stammdaten)
+336 0 obj
+(Plausibilit\344tspr\374fung)
endobj
-365 0 obj
+337 0 obj
<< /S /GoTo /D (subsection.21.2.2) >>
endobj
-368 0 obj
-(Kontaktdaten)
+340 0 obj
+(Erzeugen der XML-Datei)
endobj
-369 0 obj
-<< /S /GoTo /D (subsection.21.2.3) >>
-endobj
-372 0 obj
-(BIS-Daten)
-endobj
-373 0 obj
-<< /S /GoTo /D (subsection.21.2.4) >>
-endobj
-376 0 obj
-(Betriebsmittel)
-endobj
-377 0 obj
-<< /S /GoTo /D (subsection.21.2.5) >>
-endobj
-380 0 obj
-(Funktionen)
-endobj
-381 0 obj
+341 0 obj
<< /S /GoTo /D (section.21.3) >>
endobj
-384 0 obj
-(Neuen Mitarbeiter anlegen)
+344 0 obj
+(Die F\046E - Projektmeldung)
endobj
-385 0 obj
+345 0 obj
+<< /S /GoTo /D (subsection.21.3.1) >>
+endobj
+348 0 obj
+(Plausibilit\344tspr\374fung)
+endobj
+349 0 obj
+<< /S /GoTo /D (subsection.21.3.2) >>
+endobj
+352 0 obj
+(Erzeugen der XML-Datei)
+endobj
+353 0 obj
+<< /S /GoTo /D (subsection.21.3.3) >>
+endobj
+356 0 obj
+(Die FHR-Seite)
+endobj
+357 0 obj
<< /S /GoTo /D (chapter.22) >>
endobj
-388 0 obj
-(Men\374leisten)
+360 0 obj
+(Mitarbeiter)
endobj
-389 0 obj
+361 0 obj
<< /S /GoTo /D (section.22.1) >>
endobj
-392 0 obj
-(Hauptmen\374leiste)
+364 0 obj
+(Anzeigefilter)
endobj
-393 0 obj
+365 0 obj
<< /S /GoTo /D (section.22.2) >>
endobj
-396 0 obj
-(Men\374leiste von Listenfeld 2)
+368 0 obj
+(Mitarbeiterdatenkarten)
endobj
-397 0 obj
+369 0 obj
+<< /S /GoTo /D (subsection.22.2.1) >>
+endobj
+372 0 obj
+(Stammdaten)
+endobj
+373 0 obj
+<< /S /GoTo /D (subsection.22.2.2) >>
+endobj
+376 0 obj
+(Kontaktdaten)
+endobj
+377 0 obj
+<< /S /GoTo /D (subsection.22.2.3) >>
+endobj
+380 0 obj
+(BIS-Daten)
+endobj
+381 0 obj
+<< /S /GoTo /D (subsection.22.2.4) >>
+endobj
+384 0 obj
+(Betriebsmittel)
+endobj
+385 0 obj
+<< /S /GoTo /D (subsection.22.2.5) >>
+endobj
+388 0 obj
+(Funktionen)
+endobj
+389 0 obj
+<< /S /GoTo /D (section.22.3) >>
+endobj
+392 0 obj
+(Neuen Mitarbeiter anlegen)
+endobj
+393 0 obj
<< /S /GoTo /D (chapter.23) >>
endobj
-400 0 obj
-(Extras)
+396 0 obj
+(Men\374leisten)
endobj
-401 0 obj
+397 0 obj
<< /S /GoTo /D (section.23.1) >>
endobj
-404 0 obj
-(Reihungstestverwaltung)
+400 0 obj
+(Hauptmen\374leiste)
endobj
-405 0 obj
+401 0 obj
<< /S /GoTo /D (section.23.2) >>
endobj
+404 0 obj
+(Men\374leiste von Listenfeld 2)
+endobj
+405 0 obj
+<< /S /GoTo /D (chapter.24) >>
+endobj
408 0 obj
-(Firmenverwaltung)
+(Extras)
endobj
409 0 obj
-<< /S /GoTo /D (section.23.3) >>
+<< /S /GoTo /D (section.24.1) >>
endobj
412 0 obj
-(Lehrveranstaltungverwaltung)
+(Reihungstestverwaltung)
endobj
413 0 obj
-<< /S /GoTo /D (section.23.4) >>
+<< /S /GoTo /D (section.24.2) >>
endobj
416 0 obj
-(Projektarbeitsbenotung)
+(Firmenverwaltung)
endobj
417 0 obj
-<< /S /GoTo /D (section.23.5) >>
+<< /S /GoTo /D (section.24.3) >>
endobj
420 0 obj
-(Gruppenverwaltung)
+(Lehrveranstaltungverwaltung)
endobj
421 0 obj
-<< /S /GoTo /D (appendix.A) >>
+<< /S /GoTo /D (section.24.4) >>
endobj
424 0 obj
-(Schluss)
+(Projektarbeitsbenotung)
endobj
425 0 obj
-<< /S /GoTo /D [426 0 R /Fit ] >>
+<< /S /GoTo /D (section.24.5) >>
endobj
-429 0 obj <<
-/Length 281
+428 0 obj
+(Gruppenverwaltung)
+endobj
+429 0 obj
+<< /S /GoTo /D (appendix.A) >>
+endobj
+432 0 obj
+(Schluss)
+endobj
+433 0 obj
+<< /S /GoTo /D [434 0 R /Fit ] >>
+endobj
+437 0 obj <<
+/Length 276
/Filter /FlateDecode
>>
stream
-xÚuQMOÃ0½çWø˜J$‹æ£Ç¡17´J‡ÑZA[±vøõ¸]‡6$)ÏŽýžìo`àV˜ð:‹5 £½'ù+GÖƒ7¨ƒGÈwð$× +—›ä9¿gBˆ:sŽF‚â’¦ÌJ‰1ýe •Û„2YTUWT}Q>Ôr×ÔmÝûmê®íÕæ«Êf”7¹@Ì Ô& Pê´åÑŠF|
-£!ŒSËy<Sʦä„ü¸¸kVxàsV'eu&}4âb/¢¨]jesâq¼,ª¶~?4‰²ÞÊǺlgOâ¥'NcŒVgéÌ›¯˜G^é1rU~óêåK¢ø.÷sݘ8ò÷ÃØ ³žiú
+xÚuQËNÃ0¼û+öèHØÝ]?‹ $¨‘8 ‡*
$‚$¢Iðõ8I‹Z$äÃx3Þ#¼ÂÀð2‹¥À¨½gù+°'MƃGÒ©'È·ð$W ¡‘Ëuò’ßEB "œã‘ bIsp ,G´¿2r“pEUuEÕÕþC-·MÝÖý°Û$™“Cݵ½ZõCÙŒÒâ:C ”4¦l6q´¢ŸµC¦lj9½OEËa
+Ž“‹Û†àªñ…ÕQYHÏFœíÅœig
1Ñœl^+/‹ªß÷M¢Œ7ò±.Ûƒ'Ù™'¨ÉÆ—ŒöÀ[/"‹½4zÄTÞ?kwßs’ÃäÁß?Šžü N½f¹
endstream
endobj
-426 0 obj <<
+434 0 obj <<
/Type /Page
-/Contents 429 0 R
-/Resources 428 0 R
+/Contents 437 0 R
+/Resources 436 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 435 0 R
+/Parent 443 0 R
>> endobj
-427 0 obj <<
+435 0 obj <<
/Type /XObject
/Subtype /Image
/Width 429
/Height 429
/BitsPerComponent 8
/ColorSpace /DeviceRGB
-/SMask 436 0 R
+/SMask 444 0 R
/Length 21752
/Filter /FlateDecode
>>
@@ -733,7 +745,7 @@ K
2".|¢ÄJWñ?øøñrU¤çTf€„aÒ×ÇRàÐ[!Ëçm9ZÓ`}yáa^ è Ãá!“#<˹núqü2/ë$yÛGƒðÉ&JŠq®Õ`Τ_Ò<,™a\\<åŸ2
D<(úãŸøàƒ>\zéÿ›2
endstream
endobj
-436 0 obj <<
+444 0 obj <<
/Type /XObject
/Subtype /Image
/Width 429
@@ -748,18 +760,18 @@ x
µK,Fb©j%–XŒÄR+ÔJ¬R,µBÄ*ÅR+ÔJ¬R,µBÔ*µ«KP+µJÄ*ÅR+ÔJR+µJÔ*µR«ÔJR+µJÔ*µ’«”JT+¹J©ÔJµ’«”J®T*¹R©ôJ•Ò«UJ°V( ž8üÎ
endstream
endobj
-430 0 obj <<
-/D [426 0 R /XYZ 77.386 776.032 null]
->> endobj
-431 0 obj <<
-/D [426 0 R /XYZ 77.386 755.708 null]
->> endobj
-428 0 obj <<
-/Font << /F17 432 0 R /F19 433 0 R /F18 434 0 R >>
-/XObject << /Im1 427 0 R >>
-/ProcSet [ /PDF /Text /ImageC ]
+438 0 obj <<
+/D [434 0 R /XYZ 77.386 776.032 null]
>> endobj
439 0 obj <<
+/D [434 0 R /XYZ 77.386 755.708 null]
+>> endobj
+436 0 obj <<
+/Font << /F17 440 0 R /F19 441 0 R /F18 442 0 R >>
+/XObject << /Im1 435 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>> endobj
+447 0 obj <<
/Length 120
/Filter /FlateDecode
>>
@@ -767,21 +779,21 @@ stream
xÚ=Œ±Â@C÷|…GX‚Óp½» º!²U¨`¡C'~Ÿ¦gÉÏ& βŠ5³¤,9'-î¸-2NÄÜÊT¯¯º`ÏN½å'®r~Ï~<„ìNÖè•Õw¸¹æÜ#¥UÄŒqÓm§þ£cȰ±þ
endstream
endobj
-438 0 obj <<
+446 0 obj <<
/Type /Page
-/Contents 439 0 R
-/Resources 437 0 R
+/Contents 447 0 R
+/Resources 445 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 435 0 R
+/Parent 443 0 R
>> endobj
-440 0 obj <<
-/D [438 0 R /XYZ 115.087 776.032 null]
+448 0 obj <<
+/D [446 0 R /XYZ 115.087 776.032 null]
>> endobj
-437 0 obj <<
-/Font << /F16 441 0 R >>
+445 0 obj <<
+/Font << /F16 449 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-479 0 obj <<
+487 0 obj <<
/Length 1193
/Filter /FlateDecode
>>
@@ -795,818 +807,835 @@ x
>…ßXö˺ º /ß-Á0<‰ÏÛk7f}þ£zX=f#—z 09ôVφ·ËO|íÜ+U'¹ÛxÖ[hI‡Ù ‚Šo‚j»•ת©•íà]›Ij4ÃdÇÞ?âÃtï„>ƒob'†{´5uÄm•…¢-Û‹Ó9ÆÑ¹hѸâ–6|ÝÆzw‰Ê{-Ÿ©t´½E¿Œ{”¥“f\aéá&1M).67*¹%Œ•“‚iA@Ð ØBì)¦&ƱW]7×9@—”PvØAÖ¾F©¹£"¤Ú´}öÛ÷Ó«ÿ æ
endstream
endobj
-478 0 obj <<
+486 0 obj <<
/Type /Page
-/Contents 479 0 R
-/Resources 477 0 R
+/Contents 487 0 R
+/Resources 485 0 R
/MediaBox [0 0 595.276 841.89]
-/Parent 435 0 R
-/Annots [ 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R ]
+/Parent 443 0 R
+/Annots [ 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R ]
>> endobj
-442 0 obj <<
+450 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 626.925 128.317 638.973]
/A << /S /GoTo /D (chapter*.2) >>
>> endobj
-443 0 obj <<
+451 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 601.271 151.471 613.32]
/A << /S /GoTo /D (chapter.1) >>
>> endobj
-444 0 obj <<
+452 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 589.579 259.472 599.085]
/A << /S /GoTo /D (section.1.1) >>
>> endobj
-445 0 obj <<
+453 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 575.779 209.669 585.285]
/A << /S /GoTo /D (subsection.1.1.1) >>
>> endobj
-446 0 obj <<
+454 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 561.978 209.669 571.484]
/A << /S /GoTo /D (subsection.1.1.2) >>
>> endobj
-447 0 obj <<
+455 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 548.178 216.534 557.683]
/A << /S /GoTo /D (subsection.1.1.3) >>
>> endobj
-448 0 obj <<
+456 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 534.377 208.676 543.883]
/A << /S /GoTo /D (subsection.1.1.4) >>
>> endobj
-449 0 obj <<
+457 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 508.724 145.626 518.664]
/A << /S /GoTo /D (chapter.2) >>
>> endobj
-450 0 obj <<
+458 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 494.923 142.504 504.429]
/A << /S /GoTo /D (section.2.1) >>
>> endobj
-451 0 obj <<
+459 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 479.002 281.291 490.628]
/A << /S /GoTo /D (section.2.2) >>
>> endobj
-452 0 obj <<
+460 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 465.201 290.931 476.828]
/A << /S /GoTo /D (subsection.2.2.1) >>
>> endobj
-453 0 obj <<
+461 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 453.521 232.625 463.027]
/A << /S /GoTo /D (subsection.2.2.2) >>
>> endobj
-454 0 obj <<
+462 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 437.6 204.633 449.227]
/A << /S /GoTo /D (section.2.3) >>
>> endobj
-455 0 obj <<
+463 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 423.799 299.964 437.649]
/A << /S /GoTo /D (subsection.2.3.1) >>
>> endobj
-456 0 obj <<
+464 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 409.999 209.148 421.625]
/A << /S /GoTo /D (subsection.2.3.2) >>
>> endobj
-457 0 obj <<
+465 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 396.198 266.101 407.825]
/A << /S /GoTo /D (subsection.2.3.3) >>
>> endobj
-458 0 obj <<
+466 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 381.792 267.067 394.691]
/A << /S /GoTo /D (section.2.4) >>
>> endobj
-459 0 obj <<
+467 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 368.597 284.935 380.224]
/A << /S /GoTo /D (section.2.5) >>
>> endobj
-460 0 obj <<
+468 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 354.796 257.269 366.423]
/A << /S /GoTo /D (subsection.2.5.1) >>
>> endobj
-461 0 obj <<
+469 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [117.609 340.996 226.63 352.622]
/A << /S /GoTo /D (subsection.2.5.2) >>
>> endobj
-462 0 obj <<
+470 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 329.316 223.77 338.822]
/A << /S /GoTo /D (section.2.6) >>
>> endobj
-463 0 obj <<
+471 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 303.663 158.325 313.603]
/A << /S /GoTo /D (chapter.3) >>
>> endobj
-464 0 obj <<
+472 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 289.862 229.946 299.368]
/A << /S /GoTo /D (section.3.1) >>
>> endobj
-465 0 obj <<
+473 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 264.209 149.132 274.149]
/A << /S /GoTo /D (chapter.4) >>
>> endobj
-466 0 obj <<
+474 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 250.408 286.137 259.914]
/A << /S /GoTo /D (section.4.1) >>
>> endobj
-467 0 obj <<
+475 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 236.607 230.246 246.113]
/A << /S /GoTo /D (section.4.2) >>
>> endobj
-468 0 obj <<
+476 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 208.845 139.999 220.751]
/A << /S /GoTo /D (chapter.5) >>
>> endobj
-469 0 obj <<
+477 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 185.301 140.535 195.241]
/A << /S /GoTo /D (chapter.6) >>
>> endobj
-470 0 obj <<
+478 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 169.379 224.274 181.006]
/A << /S /GoTo /D (section.6.1) >>
>> endobj
-471 0 obj <<
+479 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 155.579 285.623 167.205]
/A << /S /GoTo /D (section.6.2) >>
>> endobj
-472 0 obj <<
+480 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 141.778 270.705 153.405]
/A << /S /GoTo /D (section.6.3) >>
>> endobj
-473 0 obj <<
+481 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [76.389 118.245 196.664 128.185]
/A << /S /GoTo /D (chapter.7) >>
>> endobj
-474 0 obj <<
+482 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [92.66 104.445 225.811 113.951]
/A << /S /GoTo /D (section.7.1) >>
>> endobj
-480 0 obj <<
-/D [478 0 R /XYZ 77.386 776.032 null]
+488 0 obj <<
+/D [486 0 R /XYZ 77.386 776.032 null]
>> endobj
-482 0 obj <<
-/D [478 0 R /XYZ 77.386 655.683 null]
+490 0 obj <<
+/D [486 0 R /XYZ 77.386 655.683 null]
>> endobj
-477 0 obj <<
-/Font << /F23 481 0 R /F22 483 0 R /F16 441 0 R >>
+485 0 obj <<
+/Font << /F23 489 0 R /F22 491 0 R /F16 449 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-524 0 obj <<
-/Length 1351
+532 0 obj <<
+/Length 1374
/Filter /FlateDecode
>>
stream
-xÚåZMs›H½ëWpDÈ|23Ǹl§’Mmí&*oÕzsÀÖHb…AR•_¿=0 Á‘±”ÄR.‰1=¼î×ýºò¦òÞ.FƒW×y…
-)ì&Æ